summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-shlib
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-05-13 19:37:03 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-05-13 19:37:03 +0000
commit9541307c277095fc7819d315deed0fc0a8ca41a9 (patch)
tree6eddebf694f0d9b9c688eea2158ce93f556cb991 /llvm/tools/llvm-shlib
parentcc1edb5a4515e2cca8fa66cdd5d966801411e71f (diff)
downloadbcm5719-llvm-9541307c277095fc7819d315deed0fc0a8ca41a9.tar.gz
bcm5719-llvm-9541307c277095fc7819d315deed0fc0a8ca41a9.zip
autoconf: Fix soname for libLLVM-Major.Minor.so (2nd try)
We were using libLLVM-Major.Minor.Patch.so for the soname, but we need the soname to stay consistent for all Major.Minor.* releases otherwise operating system distributors will need to rebuild all packages that link with LLVM every time there is a new point release. This patch also reverses the compatibility symlink, so libLLVM-Major.Minor.Patch.so is now a symlink that points to libLLVM-Major-Minor.so. llvm-svn: 208721
Diffstat (limited to 'llvm/tools/llvm-shlib')
-rw-r--r--llvm/tools/llvm-shlib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-shlib/Makefile b/llvm/tools/llvm-shlib/Makefile
index 7bbc24cae7a..19077a3858a 100644
--- a/llvm/tools/llvm-shlib/Makefile
+++ b/llvm/tools/llvm-shlib/Makefile
@@ -9,8 +9,8 @@
LEVEL := ../..
-LIBRARYNAME = LLVM-$(LLVMVersion)
-LIBRARYALIASNAME = LLVM-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(LLVM_VERSION_SUFFIX)
+LIBRARYNAME = LLVM-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(LLVM_VERSION_SUFFIX)
+LIBRARYALIASNAME = LLVM-$(LLVMVersion)
NO_BUILD_ARCHIVE := 1
LINK_LIBS_IN_SHARED := 1
OpenPOWER on IntegriCloud