~ruther/guix-local

ref: d48c2c7df38a63cfe5d2bce7dfe438d4a2ffa22d guix-local/gnu/packages/patches/llvm-roc-5.0.0-linkdl.patch -rw-r--r-- 606 bytes
d48c2c7d — Liliana Marie Prikler news: Add entry about Emacs native compilation. 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Taken from the Gentoo patch:
https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-devel/llvm-roc/files/llvm-roc-5.0.0-linkdl.patch

LLVMOffloadArch should link libdl to fix undefined symbol 'dlsym' when linking

--- a/llvm/lib/OffloadArch/offload-arch/CMakeLists.txt
+++ b/llvm/lib/OffloadArch/offload-arch/CMakeLists.txt
@@ -3,6 +3,7 @@ add_llvm_tool(offload-arch
   ${CMAKE_CURRENT_SOURCE_DIR}/offload-arch.cpp
   DEPENDS generated-table LLVMOffloadArch
 )
+target_link_libraries(LLVMOffloadArch PRIVATE ${CMAKE_DL_LIBS})
 target_link_libraries(offload-arch PRIVATE LLVMOffloadArch)
 
 if(CMAKE_HOST_UNIX)