[llvm] Add -lpthread for powerpc64le shared libs build (PR #132265)

Zarko Todorovski via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 15:49:01 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"
----------------
ZarkoT wrote:

Thank you. 

Though looks like the build is fixed by some other changes already: https://lab.llvm.org/buildbot/#/builders/145/builds/5917. 

I'll close this PR in this case. 

https://github.com/llvm/llvm-project/pull/132265


More information about the llvm-commits mailing list