diff --git a/clang/tools/driver/CMakeLists.txt b/clang/tools/driver/CMakeLists.txt --- a/clang/tools/driver/CMakeLists.txt +++ b/clang/tools/driver/CMakeLists.txt @@ -20,9 +20,9 @@ option(CLANG_PLUGIN_SUPPORT "Build clang with plugin support" ON) # Support plugins. This must be before add_clang_executable as it reads -# LLVM_NO_DEAD_STRIP. +# LLVM_SUPPORT_PLUGINS. if(CLANG_PLUGIN_SUPPORT) - set(LLVM_NO_DEAD_STRIP 1) + set(LLVM_SUPPORT_PLUGINS 1) endif() if(NOT CLANG_BUILT_STANDALONE) diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake --- a/llvm/cmake/modules/AddLLVM.cmake +++ b/llvm/cmake/modules/AddLLVM.cmake @@ -228,7 +228,7 @@ # to enable. See https://sourceware.org/bugzilla/show_bug.cgi?id=17704. endif() - if(NOT LLVM_NO_DEAD_STRIP) + if(NOT LLVM_SUPPORT_PLUGINS) if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") # ld64's implementation of -dead_strip breaks tools that use plugins. set_property(TARGET ${target_name} APPEND_STRING PROPERTY @@ -245,7 +245,7 @@ set_property(TARGET ${target_name} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--gc-sections") endif() - else() #LLVM_NO_DEAD_STRIP + else() #LLVM_SUPPORT_PLUGINS if(${CMAKE_SYSTEM_NAME} MATCHES "AIX") set_property(TARGET ${target_name} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,-bnogc") diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake --- a/llvm/cmake/modules/HandleLLVMOptions.cmake +++ b/llvm/cmake/modules/HandleLLVMOptions.cmake @@ -772,7 +772,7 @@ # Add flags for add_dead_strip(). # FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF? # But MinSizeRel seems to add that automatically, so maybe disable these -# flags instead if LLVM_NO_DEAD_STRIP is set. +# flags instead if LLVM_SUPPORT_PLUGINS is set. if(NOT CYGWIN AND NOT WIN32) if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") diff --git a/llvm/tools/bugpoint/CMakeLists.txt b/llvm/tools/bugpoint/CMakeLists.txt --- a/llvm/tools/bugpoint/CMakeLists.txt +++ b/llvm/tools/bugpoint/CMakeLists.txt @@ -22,7 +22,7 @@ ) # Support plugins. -set(LLVM_NO_DEAD_STRIP 1) +set(LLVM_SUPPORT_PLUGINS 1) add_llvm_tool(bugpoint BugDriver.cpp diff --git a/llvm/tools/llc/CMakeLists.txt b/llvm/tools/llc/CMakeLists.txt --- a/llvm/tools/llc/CMakeLists.txt +++ b/llvm/tools/llc/CMakeLists.txt @@ -20,7 +20,7 @@ ) # Support plugins. -set(LLVM_NO_DEAD_STRIP 1) +set(LLVM_SUPPORT_PLUGINS 1) add_llvm_tool(llc llc.cpp diff --git a/llvm/tools/opt/CMakeLists.txt b/llvm/tools/opt/CMakeLists.txt --- a/llvm/tools/opt/CMakeLists.txt +++ b/llvm/tools/opt/CMakeLists.txt @@ -25,7 +25,7 @@ ) # Support plugins. -set(LLVM_NO_DEAD_STRIP 1) +set(LLVM_SUPPORT_PLUGINS 1) add_llvm_tool(opt AnalysisWrappers.cpp