summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-05-13 16:18:55 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-05-13 16:18:55 +0000
commita37c778eba23fc27cae7d5686f75d693f7d206a7 (patch)
tree07472312b704de825d3083c0574efd3c99e66bce /tools
parentfdae312e65f6bf6a419c03878e2780826c4e91a5 (diff)
downloadllvm-a37c778eba23fc27cae7d5686f75d693f7d206a7.tar.gz
llvm-a37c778eba23fc27cae7d5686f75d693f7d206a7.tar.bz2
llvm-a37c778eba23fc27cae7d5686f75d693f7d206a7.tar.xz
autoconf: Fix soname for libLLVM-Major.Minor.so
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-shlib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-shlib/Makefile b/tools/llvm-shlib/Makefile
index 7bbc24cae7..19077a3858 100644
--- a/tools/llvm-shlib/Makefile
+++ b/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