From: maier Date: Tue, 18 Sep 2012 22:21:39 +0000 (+0000) Subject: Add -Wno-long-long to the flags for clang X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca99f9c17a3098612ef4a9cfaec1621bf3dc7a85;p=dealii-svn.git Add -Wno-long-long to the flags for clang git-svn-id: https://svn.dealii.org/branches/branch_cmake@26491 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/cmake/setup_compiler_flags_gnu.cmake b/deal.II/contrib/cmake/setup_compiler_flags_gnu.cmake index 0715c56a8b..1de1a23321 100644 --- a/deal.II/contrib/cmake/setup_compiler_flags_gnu.cmake +++ b/deal.II/contrib/cmake/setup_compiler_flags_gnu.cmake @@ -65,6 +65,7 @@ IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang") ENABLE_IF_AVAILABLE(CMAKE_CXX_FLAGS "-Wno-unneeded-internal-declaration") ENABLE_IF_AVAILABLE(CMAKE_CXX_FLAGS "-Wno-unused-function") ENABLE_IF_AVAILABLE(CMAKE_CXX_FLAGS "-Wno-unused-variable") + ENABLE_IF_AVAILABLE(CMAKE_CXX_FLAGS "-Wno-long-long") ENDIF()