From: Chris Lattner Date: Sun, 19 Jan 2003 21:55:43 +0000 (+0000) Subject: * Prune down library list. In particular, llc doesn't need all of IPO, and none... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=784fac874c1333698da5ce27fd66f7dd42dd1f60;p=oota-llvm.git * Prune down library list. In particular, llc doesn't need all of IPO, and none of data structure and IPA completely! * Do not keep symbols by default! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5375 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llc/Makefile b/tools/llc/Makefile index fd4912944ac..301515a6911 100644 --- a/tools/llc/Makefile +++ b/tools/llc/Makefile @@ -11,20 +11,16 @@ USEDLIBS = mapping \ target.a \ instrument \ livevar \ + ipo.a \ + scalaropts.a \ + transforms.a \ + analysis.a \ + transformutils.a \ bcreader \ - bcwriter \ - ipo \ - scalaropts \ - transforms \ - analysis \ - ipa \ - datastructure \ - transformutils \ + bcwriter \ vmcore \ support TOOLLINKOPTS = -ldl -KEEP_SYMBOLS = 1 - include $(LEVEL)/Makefile.common