diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-02 00:27:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-02 00:27:42 +0000 |
commit | 117f8cd896c9ea7d4d92fd5b53301d0e66603d1b (patch) | |
tree | d24080a9d2e335c29de1dc1285b417a1c2cc5ef6 /Makefile.rules | |
parent | c929c667563f9638da1d3b06bd8d57290567b79e (diff) | |
download | external_llvm-117f8cd896c9ea7d4d92fd5b53301d0e66603d1b.zip external_llvm-117f8cd896c9ea7d4d92fd5b53301d0e66603d1b.tar.gz external_llvm-117f8cd896c9ea7d4d92fd5b53301d0e66603d1b.tar.bz2 |
Remove obsolete CORE_IS_ARCHIVE stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.rules b/Makefile.rules index 3e577bb..18fd56f 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -643,14 +643,6 @@ endif # (defined by the user's project) and "LLVM" libs (defined # by the # LLVM project). #--------------------------------------------------------- -# Some versions of gcc on Alpha produce too many symbols, so use a .a file -ifeq ($(ARCH),Alpha) -USEDLIBS := $(subst LLVMCore, LLVMCore.a, $(USEDLIBS)) -LLVMLIBS := $(subst LLVMCore, LLVMCore.a, $(LLVMLIBS)) -CORE_IS_ARCHIVE := 1 -else -CORE_IS_ARCHIVE := 0 -endif ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions)) |