aboutsummaryrefslogtreecommitdiffstats
path: root/community/llvm4/cmake-fix-libLLVM-name.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-11-06 17:22:06 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-11-14 18:44:44 +0100
commit5264d838ede53a1afd1b238ad278041b6e4203cf (patch)
treecae212e2c200a462ffc0e01fa1a25a840dc3e8b2 /community/llvm4/cmake-fix-libLLVM-name.patch
parent826612567b84723123e7b1e6ea82721f0cf65163 (diff)
downloadaports-5264d838ede53a1afd1b238ad278041b6e4203cf.tar.bz2
aports-5264d838ede53a1afd1b238ad278041b6e4203cf.tar.xz
community/llvm4: move from main
The default (latest) llvm package is now llvm5.
Diffstat (limited to 'community/llvm4/cmake-fix-libLLVM-name.patch')
-rw-r--r--community/llvm4/cmake-fix-libLLVM-name.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/llvm4/cmake-fix-libLLVM-name.patch b/community/llvm4/cmake-fix-libLLVM-name.patch
new file mode 100644
index 0000000000..cb29fe2efc
--- /dev/null
+++ b/community/llvm4/cmake-fix-libLLVM-name.patch
@@ -0,0 +1,26 @@
+Include version in name of shared libs
+
+libLLVM.so -> libLLVM-$MAJOR.$MINOR.so
+
+Source: http://pkgs.fedoraproject.org/cgit/rpms/llvm3.9.git/tree/llvm-soversion.patch?id=3dac83eaa5b88f550ae50125b14b8f644e10617b
+--- a/cmake/modules/AddLLVM.cmake
++++ b/cmake/modules/AddLLVM.cmake
+@@ -450,6 +450,18 @@
+ PREFIX ""
+ )
+ endif()
++
++ # Set SOVERSION on shared libraries that lack explicit SONAME
++ # specifier, on *nix systems that are not Darwin.
++ if(UNIX AND NOT APPLE AND NOT ARG_SONAME)
++ set_target_properties(${name}
++ PROPERTIES
++ # Concatenate the version numbers since ldconfig expects exactly
++ # one component indicating the ABI version, while LLVM uses
++ # major+minor for that.
++ SOVERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}
++ VERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX})
++ endif()
+ endif()
+
+ if(ARG_MODULE OR ARG_SHARED)