[llvm] Add -lpthread for powerpc64le shared libs build (PR #132265)
Sam James via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 13:41:57 PDT 2025
================
@@ -1320,6 +1320,13 @@ if(LLVM_LINK_LLVM_DYLIB AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
message(FATAL_ERROR "LLVM_LINK_LLVM_DYLIB not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
endif()
+#The shared libs build for Linux on PowerPC requires -lpthread
+if(BUILD_SHARED_LIBS AND ${CMAKE_SYSTEM_NAME} MATCHES "Linux" AND LLVM_HOST_TRIPLE MATCHES "powerpc*")
+ append("-lpthread"
----------------
thesamesam wrote:
You want to add a dependency on `Threads::Threads` instead.
https://github.com/llvm/llvm-project/pull/132265
More information about the llvm-commits
mailing list