diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-05-13 16:18:55 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-05-13 16:18:55 +0000 |
commit | e10c886248b00ba376f244fc8f544f763762b284 (patch) | |
tree | 72dbf58c30ae58bfd2ab4ef30801fe86f6b9f4d3 /llvm/tools | |
parent | 4a6cac43827d66e05b46a2cd8f90e371c206e727 (diff) | |
download | bcm5719-llvm-e10c886248b00ba376f244fc8f544f763762b284.tar.gz bcm5719-llvm-e10c886248b00ba376f244fc8f544f763762b284.zip |
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.
llvm-svn: 208708
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-shlib/Makefile | 4 |
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 |