From: Vikram S. Adve Date: Wed, 18 Sep 2002 02:20:58 +0000 (+0000) Subject: gcc3.1.1 seems much more selective about what it loads from archives, and X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0a4aa5a026f30da4476cc6af8e05ddd6e03c6273;p=oota-llvm.git gcc3.1.1 seems much more selective about what it loads from archives, and does not link in many passes that are loaded by gcc2.95.3. So use object files instead of archives in many more cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3803 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccas/Makefile b/tools/gccas/Makefile index 59fcad041a8..56f2480b078 100644 --- a/tools/gccas/Makefile +++ b/tools/gccas/Makefile @@ -1,7 +1,7 @@ LEVEL = ../.. TOOLNAME = gccas -USEDLIBS = asmparser bcwriter transforms.a ipo.a scalaropts.a analysis.a \ - target.a transformutils.a ipa.a vmcore support.a +USEDLIBS = asmparser bcwriter transforms ipo scalaropts analysis \ + target.a transformutils ipa vmcore support.a include $(LEVEL)/Makefile.common