summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-05-15 00:15:27 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-05-15 00:15:27 +0000
commite47eb279d50f38374a3f5b95a8c4bcc2112ed408 (patch)
tree885f2053aa3842e2725d2ed1bb04af3b42023141 /tools
parent84f40fa9c1fea93311fa1211569ba5a2bf33a620 (diff)
downloadllvm-e47eb279d50f38374a3f5b95a8c4bcc2112ed408.tar.gz
llvm-e47eb279d50f38374a3f5b95a8c4bcc2112ed408.tar.bz2
llvm-e47eb279d50f38374a3f5b95a8c4bcc2112ed408.tar.xz
Merging r208721:
------------------------------------------------------------------------ r208721 | thomas.stellard | 2014-05-13 15:37:03 -0400 (Tue, 13 May 2014) | 11 lines 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. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@208829 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 4a0c2ea68d..b912ea6779 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