diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2021-01-27 13:51:13 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-27 19:17:18 +0100 |
commit | f397527e0d226704d2dc179fdc92d16d33b12bb7 (patch) | |
tree | d8fb3448d36c908c878c5076d29eb4ce3bd90a7f /dev-util/ccls | |
parent | dev-util/bitcoin-tx: remove unused patch(es) (diff) | |
download | gentoo-f397527e0d226704d2dc179fdc92d16d33b12bb7.tar.gz gentoo-f397527e0d226704d2dc179fdc92d16d33b12bb7.tar.bz2 gentoo-f397527e0d226704d2dc179fdc92d16d33b12bb7.zip |
dev-util/ccls: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/19234
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-util/ccls')
-rw-r--r-- | dev-util/ccls/files/ccls-0.20190823.6-cmake-support-CLANG_LINK_CLANG_DYLIB.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-util/ccls/files/ccls-0.20190823.6-cmake-support-CLANG_LINK_CLANG_DYLIB.patch b/dev-util/ccls/files/ccls-0.20190823.6-cmake-support-CLANG_LINK_CLANG_DYLIB.patch deleted file mode 100644 index e625ba814d8e..000000000000 --- a/dev-util/ccls/files/ccls-0.20190823.6-cmake-support-CLANG_LINK_CLANG_DYLIB.patch +++ /dev/null @@ -1,57 +0,0 @@ -From 7e795e9b9ec20f02cab23e63d1e52189aa33ab4e Mon Sep 17 00:00:00 2001 -From: Fangrui Song <i@maskray.me> -Date: Fri, 1 Nov 2019 10:36:38 -0700 -Subject: [PATCH] cmake: support CLANG_LINK_CLANG_DYLIB - ---- - CMakeLists.txt | 34 +++++++++++++++++++--------------- - 1 file changed, 19 insertions(+), 15 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 278e0735..092f178f 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -70,21 +70,25 @@ endif() - - find_package(Clang REQUIRED) - --target_link_libraries(ccls PRIVATE -- clangIndex -- clangFormat -- clangTooling -- clangToolingInclusions -- clangToolingCore -- clangFrontend -- clangParse -- clangSerialization -- clangSema -- clangAST -- clangLex -- clangDriver -- clangBasic --) -+if(CLANG_LINK_CLANG_DYLIB) -+ target_link_libraries(ccls PRIVATE clang-cpp) -+else() -+ target_link_libraries(ccls PRIVATE -+ clangIndex -+ clangFormat -+ clangTooling -+ clangToolingInclusions -+ clangToolingCore -+ clangFrontend -+ clangParse -+ clangSerialization -+ clangSema -+ clangAST -+ clangLex -+ clangDriver -+ clangBasic -+ ) -+endif() - - if(LLVM_LINK_LLVM_DYLIB) - target_link_libraries(ccls PRIVATE LLVM) --- -2.26.2 - |