https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/pull/25 From c65cba2e73f9118e128b9ab7e655ee0f8a7798e7 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Sun, 1 Mar 2020 19:24:22 -0500 Subject: [PATCH] Link additional required LLVM libraries Without these additional required dependencies, linking fails with errors such as: `undefined reference to llvm::errs()'` --- CMakeLists.txt | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1794a07..c7b852a 100644 --- a/lib/comgr/CMakeLists.txt +++ b/lib/comgr/CMakeLists.txt @@ -207,7 +207,11 @@ install(FILES DESTINATION "${AMD_COMGR_PACKAGE_PREFIX}") set(CLANG_LIBS - clangFrontendTool) + clangFrontendTool + clangFrontend + clangBasic + clangDriver + clangSerialization) set(LLD_LIBS lldELF @@ -218,8 +222,20 @@ if (LLVM_LINK_LLVM_DYLIB) else() llvm_map_components_to_libnames(LLVM_LIBS ${LLVM_TARGETS_TO_BUILD} + Option DebugInfoDWARF - Symbolize) + Symbolize + Support + Object + BitWriter + MC + MCParser + MCDisassembler + Core + IRReader + CodeGen + Linker + BinaryFormat) endif() target_link_libraries(amd_comgr sts.patch'>logtreecommitdiff
path: root/gnu/packages/patches/python-3-fix-tests.patch
AgeCommit message (Expand)Author
2021-01-12gnu: python: Update to 3.9.1 and streamline package definition....* gnu/packages/python.scm (python-3.8): Rename to... (python-3.9): ... this. Update version to 3.9.1. [arguments]{make-flags}: Restore test_socket test. [phases]{unset-SOURCE_DATE_EPOCH, reset-SOURCE_DATE_EPOCH}: Remove phases. {rebuild-bytecode}: Simplify code. Set the invalidation-mode argument of the compileall module to "unchecked-hash", to ensure determinism. (python-3): Adjust to refer to python-3.9. * gnu/packages/patches/python-3-fix-tests.patch: Rebase and extend patch. * gnu/packages/patches/python-3.8-fix-tests.patch: Delete file. * gnu/local.mk (dist_patch_DATA): De-register it. Maxim Cournoyer