From 0a4aa5a026f30da4476cc6af8e05ddd6e03c6273 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Wed, 18 Sep 2002 02:20:58 +0000 Subject: [PATCH] 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 --- tools/gccas/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.34.1