From: Rafael Espindola Date: Sun, 16 May 2010 03:13:23 +0000 (+0000) Subject: Avoid renaming loadable modules at install time. Now the gold plugin is named X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bbe03f8d296a0b92344d6ff0d898380b7bef78d5;p=oota-llvm.git Avoid renaming loadable modules at install time. Now the gold plugin is named LLVMgold.so both in both the build and install directories. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103897 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 2fc5eeb0c7c..408588132f6 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1128,7 +1128,12 @@ install-local:: uninstall-local:: $(Echo) Uninstall circumvented with NO_INSTALL else + +ifdef LOADABLE_MODULE +DestSharedLib = $(DESTDIR)$(PROJ_libdir)/$(LIBRARYNAME)$(SHLIBEXT) +else DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT) +endif install-local:: $(DestSharedLib) diff --git a/tools/gold/Makefile b/tools/gold/Makefile index 77eacb7ee5b..16273468107 100644 --- a/tools/gold/Makefile +++ b/tools/gold/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. -LIBRARYNAME = libLLVMgold +LIBRARYNAME = LLVMgold EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/gold.exports