summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-03-19 20:36:02 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-03-19 20:36:02 +0000
commit709048c47b61f310fbee126138c2056a120b8127 (patch)
tree946107370ad15ef5113fd19ec119786b05d7dbe3 /tools
parent0a98bd5bb8a9b6cab765323c3a9a4000eaf13f26 (diff)
downloadllvm-709048c47b61f310fbee126138c2056a120b8127.tar.gz
llvm-709048c47b61f310fbee126138c2056a120b8127.tar.bz2
llvm-709048c47b61f310fbee126138c2056a120b8127.tar.xz
Merging r202720:
------------------------------------------------------------------------ r202720 | thomas.stellard | 2014-03-03 07:22:00 -0800 (Mon, 03 Mar 2014) | 8 lines Add patch level to llvm version in CMake and Autoconf The shared library generated by autoconf will now be called libLLVM-$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)$(VERSION_SUFFIX).so and a symlink named libLLVM-$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_SUFFIX).so will also be created in the install directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@204262 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-shlib/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvm-shlib/Makefile b/tools/llvm-shlib/Makefile
index 92f3132ff5..4a0c2ea68d 100644
--- a/tools/llvm-shlib/Makefile
+++ b/tools/llvm-shlib/Makefile
@@ -10,10 +10,12 @@
LEVEL := ../..
LIBRARYNAME = LLVM-$(LLVMVersion)
+LIBRARYALIASNAME = LLVM-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(LLVM_VERSION_SUFFIX)
NO_BUILD_ARCHIVE := 1
LINK_LIBS_IN_SHARED := 1
SHARED_LIBRARY := 1
+SHARED_ALIAS := 1
include $(LEVEL)/Makefile.config