From: Jonathan Perry-Houts Date: Tue, 8 Dec 2015 03:36:27 +0000 (-0800) Subject: Disable warnings caused by a bug in Debian's openmpi library. X-Git-Tag: v8.4.0-rc2~171^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1961%2Fhead;p=dealii.git Disable warnings caused by a bug in Debian's openmpi library. --- diff --git a/cmake/setup_compiler_flags_gnu.cmake b/cmake/setup_compiler_flags_gnu.cmake index 96246f3683..4cccd53561 100644 --- a/cmake/setup_compiler_flags_gnu.cmake +++ b/cmake/setup_compiler_flags_gnu.cmake @@ -77,6 +77,11 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-Wno-long-long") # ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-Wno-deprecated-declarations") +# +# Disable warning generated by Debian version of openmpi +# +ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-Wno-literal-suffix") + IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang") # # Silence Clang warnings about unused compiler parameters (works around a