From: Chris Lattner Date: Fri, 2 Jun 2006 00:27:42 +0000 (+0000) Subject: Remove obsolete CORE_IS_ARCHIVE stuff. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=117f8cd896c9ea7d4d92fd5b53301d0e66603d1b;p=oota-llvm.git Remove obsolete CORE_IS_ARCHIVE stuff. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28648 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 3e577bbcf0f..18fd56f2def 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))