[Lldb-commits] [lldb] a921f58 - Revert "[CMake] Re-enable -Wno-gnu-anonymous-struct & -Wno-nested-anon-types."

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 18 17:00:49 PST 2019


Author: Jonas Devlieghere
Date: 2019-11-18T17:00:35-08:00
New Revision: a921f587f7b0df7dc37ff44117321cfa7849edb6

URL: https://github.com/llvm/llvm-project/commit/a921f587f7b0df7dc37ff44117321cfa7849edb6
DIFF: https://github.com/llvm/llvm-project/commit/a921f587f7b0df7dc37ff44117321cfa7849edb6.diff

LOG: Revert "[CMake] Re-enable -Wno-gnu-anonymous-struct & -Wno-nested-anon-types."

Whoops, they should be enabled, not disabled.

Added: 
    

Modified: 
    lldb/cmake/modules/LLDBConfig.cmake

Removed: 
    


################################################################################
diff  --git a/lldb/cmake/modules/LLDBConfig.cmake b/lldb/cmake/modules/LLDBConfig.cmake
index 5e45eb559d2d..54c6283d0f46 100644
--- a/lldb/cmake/modules/LLDBConfig.cmake
+++ b/lldb/cmake/modules/LLDBConfig.cmake
@@ -363,18 +363,6 @@ if (CXX_SUPPORTS_NO_VLA_EXTENSION)
   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-vla-extension")
 endif ()
 
-check_cxx_compiler_flag("-Wno-gnu-anonymous-struct"
-                        CXX_SUPPORTS_NO_GNU_ANONYMOUS_STRUCT)
-if (CXX_SUPPORTS_NO_GNU_ANONYMOUS_STRUCT)
-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-gnu-anonymous-struct")
-endif ()
-
-check_cxx_compiler_flag("-Wno-nested-anon-types"
-                        CXX_SUPPORTS_NO_NESTED_ANON_TYPES)
-if (CXX_SUPPORTS_NO_NESTED_ANON_TYPES)
-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-nested-anon-types")
-endif ()
-
 # Disable MSVC warnings
 if( MSVC )
   add_definitions(


        


More information about the lldb-commits mailing list