[libcxx-commits] [libcxx] r364142 - Disable -Wignored-attributes for now
Eric Fiselier via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Jun 22 17:17:14 PDT 2019
Author: ericwf
Date: Sat Jun 22 17:17:14 2019
New Revision: 364142
URL: http://llvm.org/viewvc/llvm-project?rev=364142&view=rev
Log:
Disable -Wignored-attributes for now
Modified:
libcxx/trunk/CMakeLists.txt
Modified: libcxx/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/CMakeLists.txt?rev=364142&r1=364141&r2=364142&view=diff
==============================================================================
--- libcxx/trunk/CMakeLists.txt (original)
+++ libcxx/trunk/CMakeLists.txt Sat Jun 22 17:17:14 2019
@@ -582,6 +582,7 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "
-Wno-deprecated # FIXME: Remove this and fix all occurrences.
-Wno-shift-sign-overflow # FIXME: Why do we need this with clang-cl but not clang?
-Wno-double-promotion # FIXME: remove me
+ -Wno-ignored-attributes # FIXME: Caused by _LIBCPP_NODEBUG_TYPE not being supported on older clangs
)
endif()
elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
More information about the libcxx-commits
mailing list