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) nput type='hidden' name='id' value='90456b324290a6839ba0b77fa84a80caa72b020f'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/storage.scm
AgeCommit message (Expand)Author
2024-09-28gnu: ceph: Update to 17.2.7....Fixes a build failure introduced with newer versions of Boost. * gnu/packages/patches/ceph-fix-for-newer-boost.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/storage.scm (ceph): Update to 17.2.7. Use the patch. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I00f2d369d7a86926b00c680d5ab0fe8044ca9065 Yann Dupont
2024-08-31gnu: ceph: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/storage.scm (ceph)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Iaf40b14919b7b6e962d4b7bc7670c79819359c76 Maxime Devos