diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-04-03 20:53:15 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-04-03 20:53:15 +0000 |
commit | e4bda114530953554602e1e88db35f1ce65e3ed9 (patch) | |
tree | 58e4670477f083541ed08ecb2a55e8741491a905 | |
parent | 1604f0773ba1d7e07083e8d31eec6ec88ccec2c8 (diff) | |
download | bcm5719-llvm-e4bda114530953554602e1e88db35f1ce65e3ed9.tar.gz bcm5719-llvm-e4bda114530953554602e1e88db35f1ce65e3ed9.zip |
suppress GCC warning about noexcept functions changing mangling
llvm-svn: 299385
-rw-r--r-- | libcxx/CMakeLists.txt | 3 | ||||
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt index ffd8d532a72..53904a16aa6 100644 --- a/libcxx/CMakeLists.txt +++ b/libcxx/CMakeLists.txt @@ -466,7 +466,8 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") add_compile_flags_if_supported( -Wno-literal-suffix - -Wno-c++14-compat) + -Wno-c++14-compat + -Wno-noexcept-type) endif() if (LIBCXX_ENABLE_WERROR) add_compile_flags_if_supported(-Werror) diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index d607710a0cb..c941f65b2c5 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -813,6 +813,7 @@ class Configuration(object): self.cxx.addWarningFlagIfSupported('-Wno-pessimizing-move') self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions') self.cxx.addWarningFlagIfSupported('-Wno-user-defined-literals') + self.cxx.addWarningFlagIfSupported('-Wno-noexcept-type') # These warnings should be enabled in order to support the MSVC # team using the test suite; They enable the warnings below and # expect the test suite to be clean. |