Skip to content

Commit

Permalink
Another macOS build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvander committed Jul 12, 2021
1 parent 9d4c9c5 commit 5e7e177
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion AMBuildScript
Expand Up @@ -228,7 +228,10 @@ class AMXXConfig(object):
if have_clang:
cxx.cxxflags += ['-Wno-implicit-exception-spec-mismatch']
if cxx.version >= 'apple-clang-10.0':
cxx.cxxflags += ['-Wno-inconsistent-missing-override']
cxx.cxxflags += [
'-Wno-inconsistent-missing-override',
'-Wno-varargs',
]
if cxx.version >= 'apple-clang-5.1' or cxx.version >= 'clang-3.4':
cxx.cxxflags += ['-Wno-deprecated-register']
else:
Expand Down

0 comments on commit 5e7e177

Please sign in to comment.