mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
fix for building with clang 14 as asmjit uses | & operators on bools [smf]
This commit is contained in:
parent
1158318356
commit
33f069cac0
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user