[llvm] 32973b0 - [CMake] Followup to #102396 and restore old DynamicLibrary symbols behavior (#102671)

via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 11 12:58:47 PDT 2024


Author: Steven Wu
Date: 2024-08-11T12:58:44-07:00
New Revision: 32973b08d8cb02c213d96df453ff323470304645

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

LOG: [CMake] Followup to #102396 and restore old DynamicLibrary symbols behavior (#102671)

Followup to #102138 and #102396, restore more old behavior to fix
ppc64-aix bot.

Added: 
    

Modified: 
    llvm/unittests/Support/DynamicLibrary/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/Support/DynamicLibrary/CMakeLists.txt b/llvm/unittests/Support/DynamicLibrary/CMakeLists.txt
index d8dff1ef4a3f77..e976cba23ee8cf 100644
--- a/llvm/unittests/Support/DynamicLibrary/CMakeLists.txt
+++ b/llvm/unittests/Support/DynamicLibrary/CMakeLists.txt
@@ -17,10 +17,9 @@ set_output_directory(DynamicLibraryLib
 
 add_llvm_unittest(DynamicLibraryTests
   DynamicLibraryTest.cpp
-
-  EXPORT_SYMBOLS
   )
 target_link_libraries(DynamicLibraryTests PRIVATE DynamicLibraryLib)
+export_executable_symbols(DynamicLibraryTests)
 
 function(dynlib_add_module NAME)
   add_library(${NAME} MODULE


        


More information about the llvm-commits mailing list