From aa11fe53eac62de0d500b061f3b89a61268036dd Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Thu, 16 Apr 2015 10:11:42 -0700 Subject: [PATCH] Probably fix build on Clang. --- AMBuildScript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AMBuildScript b/AMBuildScript index 953b5cb..c4f9d89 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -147,6 +147,8 @@ class MMSConfig(object): cfg.cxxflags += ['-Wno-delete-non-virtual-dtor'] if cxx.name == 'gcc': cfg.cflags += ['-mfpmath=sse'] + if cxx.name == 'clang': + cfg.cxxflags += ['-Wno-implicit-exception-spec-mismatch'] elif cxx.name == 'msvc': if builder.options.debug == '1':