From d7c292792ef171a01ea731e0704ec282beb7ebeb Mon Sep 17 00:00:00 2001 From: Jonathan Perry-Houts Date: Mon, 7 Dec 2015 19:36:27 -0800 Subject: [PATCH] Disable warnings caused by a bug in Debian's openmpi library. --- cmake/setup_compiler_flags_gnu.cmake | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.5