diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-11 23:55:20 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-11 23:56:17 -0300 |
commit | 4948c3c3f2c0e4daeba495e01b7ca69b779f1227 (patch) | |
tree | 4fe7efb7427d2e0073893909d44d379876176bbf /community/llvm5/cmake-fix-libLLVM-name.patch | |
parent | e9798406b16a3ce5d0291c56777193fd54db9967 (diff) | |
download | aports-4948c3c3f2c0e4daeba495e01b7ca69b779f1227.tar.bz2 aports-4948c3c3f2c0e4daeba495e01b7ca69b779f1227.tar.xz |
community/llvm5: move from unmaintained
Turns out ghc still needs it
Diffstat (limited to 'community/llvm5/cmake-fix-libLLVM-name.patch')
-rw-r--r-- | community/llvm5/cmake-fix-libLLVM-name.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/llvm5/cmake-fix-libLLVM-name.patch b/community/llvm5/cmake-fix-libLLVM-name.patch new file mode 100644 index 0000000000..cb29fe2efc --- /dev/null +++ b/community/llvm5/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) |