diff options
author | Duncan Sands <baldrick@free.fr> | 2009-02-05 10:21:34 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-02-05 10:21:34 +0000 |
commit | 7a2e7e5c2054cac76dc80c23b68a294aebf34259 (patch) | |
tree | d2f3f80fe7e211c93e1d95c63eef58a862a1c7b4 /tools | |
parent | 105de28dabdc79486afab046ebe2aff45fd86236 (diff) | |
download | llvm-7a2e7e5c2054cac76dc80c23b68a294aebf34259.tar.gz |
Revert the previous commit. It seems it didn't
really solve the problem. Also it changed the
name from libLLVMgold to LLVMgold (correcting
the name resulted in the original problem
suddenly reappearing).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63861 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gold/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/gold/Makefile b/tools/gold/Makefile index b976b2d7f667..37a7e4ef7fcb 100644 --- a/tools/gold/Makefile +++ b/tools/gold/Makefile @@ -15,7 +15,11 @@ LIBRARYNAME = LLVMgold # early so we can set up LINK_COMPONENTS before including Makefile.rules include $(LEVEL)/Makefile.config -LOADABLE_MODULE = 1 +LINK_LIBS_IN_SHARED=1 +SHARED_LIBRARY = 1 +BUILD_ARCHIVE = 0 +DONT_BUILD_RELINKED = 1 + LINK_COMPONENTS := include $(LEVEL)/Makefile.common |