summaryrefslogtreecommitdiffstats
path: root/scripts/genie.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r--scripts/genie.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index 9c02cca4b45..4e615f14f1f 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -1063,6 +1063,11 @@ end
"-Wno-xor-used-as-pow", -- clang 10.0 complains that expressions like 10 ^ 7 look like exponention
}
end
+ if version >= 140000 then
+ buildoptions {
+ "-Wno-bitwise-instead-of-logical", -- clang 14.0 complains about &, | on bools in asmjit
+ }
+ end
else
if version < 70000 then
print("GCC version 7.0 or later needed")