diff options
-rw-r--r-- | tools/llc/Makefile | 25 | ||||
-rw-r--r-- | tools/opt/Makefile | 3 |
2 files changed, 24 insertions, 4 deletions
diff --git a/tools/llc/Makefile b/tools/llc/Makefile index da1e7c5..77ee126 100644 --- a/tools/llc/Makefile +++ b/tools/llc/Makefile @@ -1,8 +1,27 @@ LEVEL = ../.. TOOLNAME = llc -USEDLIBS = mapping sparc target.a regalloc sched select preopts postopts.a target.a \ - instrument livevar bcreader bcwriter ipo ipa.a datastructure.a \ - scalaropts transforms analysis transformutils vmcore support +USEDLIBS = mapping \ + sparc target.a \ + regalloc \ + sched \ + select \ + codegen \ + preopts \ + postopts.a \ + target.a \ + instrument \ + livevar \ + bcreader \ + bcwriter \ + ipo \ + ipa.a \ + datastructure.a \ + scalaropts \ + transforms \ + analysis \ + transformutils \ + vmcore \ + support TOOLLINKOPTS = -ldl $(ExportSymbols) KEEP_SYMBOLS = 1 diff --git a/tools/opt/Makefile b/tools/opt/Makefile index 0b90147..bde049f 100644 --- a/tools/opt/Makefile +++ b/tools/opt/Makefile @@ -2,7 +2,8 @@ LEVEL = ../.. TOOLNAME = opt USEDLIBS = bcreader bcwriter instrument profpaths \ - sparc target.a mapping regalloc.a sched select preopts postopts.a \ + sparc target.a mapping regalloc.a sched select codegen preopts \ + postopts.a \ livevar scalaropts \ ipo ipa.a datastructure transforms target.a analysis \ transformutils vmcore support |