diff options
author | Harald Judt <h.judt@gmx.at> | 2020-06-05 00:43:06 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-06-24 19:29:42 +0300 |
commit | efc535dcdf688b8edd00c932dca80cd71a323e0f (patch) | |
tree | 58ee4dda2e866cb2239314997f6abdcec6160d80 /dev-lisp/c2ffi/files | |
parent | dev-lisp/c2ffi: Bump version to c2ffi-10.0.0 (diff) | |
download | gentoo-efc535dcdf688b8edd00c932dca80cd71a323e0f.tar.gz gentoo-efc535dcdf688b8edd00c932dca80cd71a323e0f.tar.bz2 gentoo-efc535dcdf688b8edd00c932dca80cd71a323e0f.zip |
dev-lisp/c2ffi: Remove c2ffi-9.0.0
Signed-off-by: Harald Judt <h.judt@gmx.at>
Closes: https://github.com/gentoo/gentoo/pull/16072
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-lisp/c2ffi/files')
-rw-r--r-- | dev-lisp/c2ffi/files/c2ffi-9.0.0.20191017-fix-lib-location.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-lisp/c2ffi/files/c2ffi-9.0.0.20191017-fix-lib-location.patch b/dev-lisp/c2ffi/files/c2ffi-9.0.0.20191017-fix-lib-location.patch deleted file mode 100644 index 8b09b25aa739..000000000000 --- a/dev-lisp/c2ffi/files/c2ffi-9.0.0.20191017-fix-lib-location.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 3a496f89064de85af04ce101918c2ec5cebf7846 Mon Sep 17 00:00:00 2001 -From: Harald Judt <h.judt@gmx.at> -Date: Fri, 8 Nov 2019 10:35:02 +0100 -Subject: Fix CLANG and LLVM libraries not found - -This commit gets the build working again here on Gentoo. - -Adding LLVM_LIBRARY_DIRS fixes the CLANG libs not found error. - -Adding llvm_map_components_to_libnames fixes LLMV not found error. ---- - CMakeLists.txt | 12 ++++++++++-- - 1 file changed, 10 insertions(+), 2 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 99dbe4b..f93b9b3 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -39,6 +39,15 @@ target_include_directories(c2ffi PUBLIC - ${LLVM_INCLUDE_DIRS} - ${SOURCE_ROOT}/src/include - ) -+target_link_directories(c2ffi PUBLIC -+ ${LLVM_LIBRARY_DIRS} -+) -+message(STATUS "LLVM_LIBRARY_DIRS=${LLVM_LIBRARY_DIRS}") -+ -+llvm_map_components_to_libnames(llvm_libs core support mcparser bitreader profiledata) -+ -+message(STATUS "llvm_libs=${llvm_libs}") -+ - target_link_libraries(c2ffi PUBLIC - clangFrontendTool - clangFrontend -@@ -64,10 +73,9 @@ target_link_libraries(c2ffi PUBLIC - clangIndex - clangToolingCore - clangTooling -+ ${llvm_libs} - ) - --llvm_config(c2ffi USE_SHARED core support mcparser bitreader profiledata) -- - set(APP_BIN_DIR "${CMAKE_BINARY_DIR}/bin") - set_target_properties(c2ffi PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${APP_BIN_DIR}" --- -2.23.0 - |