diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-17 15:46:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-17 15:46:34 +0000 |
commit | 66e018bb800035d259a3e199b6a41b058bcdec0c (patch) | |
tree | add10f622eaee6acbd372fcafd799d9133d0b29b | |
parent | d9e6bfae0e3fefc7b3f2701f62c1776f436c4541 (diff) | |
download | bcm5719-llvm-66e018bb800035d259a3e199b6a41b058bcdec0c.tar.gz bcm5719-llvm-66e018bb800035d259a3e199b6a41b058bcdec0c.zip |
Whoops, didn't mean to check that in :(
llvm-svn: 6743
-rw-r--r-- | llvm/lib/ExecutionEngine/Makefile | 22 | ||||
-rw-r--r-- | llvm/tools/lli/Makefile | 22 |
2 files changed, 38 insertions, 6 deletions
diff --git a/llvm/lib/ExecutionEngine/Makefile b/llvm/lib/ExecutionEngine/Makefile index b97e4115ac0..54ed699f9e1 100644 --- a/llvm/lib/ExecutionEngine/Makefile +++ b/llvm/lib/ExecutionEngine/Makefile @@ -2,9 +2,25 @@ LEVEL = ../.. TOOLNAME = lli PARALLEL_DIRS = Interpreter JIT -JITLIBS = lli-jit codegen x86 -USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore scalaropts.a \ - analysis.a support.a target.a +# FIXME: This enables testing the Sparc JIT on x86. +# Perhaps in the future this should be a ./configure option. + +# Generic JIT libraries +JITLIBS = lli-jit codegen +ARCHLIBS = + +# What the X86 JIT requires +JITLIBS += x86 +ARCHLIBS += + +# What the Sparc JIT requires +JITLIBS += sparc +ARCHLIBS = sched livevar instrument.a profpaths transformutils.a \ + bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \ + mapping select postopts.a preopts + +USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore scalaropts \ + analysis.a support.a target.a $(ARCHLIBS) # Have gcc tell the linker to export symbols from the program so that # dynamically loaded modules can be linked against them. diff --git a/llvm/tools/lli/Makefile b/llvm/tools/lli/Makefile index b97e4115ac0..54ed699f9e1 100644 --- a/llvm/tools/lli/Makefile +++ b/llvm/tools/lli/Makefile @@ -2,9 +2,25 @@ LEVEL = ../.. TOOLNAME = lli PARALLEL_DIRS = Interpreter JIT -JITLIBS = lli-jit codegen x86 -USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore scalaropts.a \ - analysis.a support.a target.a +# FIXME: This enables testing the Sparc JIT on x86. +# Perhaps in the future this should be a ./configure option. + +# Generic JIT libraries +JITLIBS = lli-jit codegen +ARCHLIBS = + +# What the X86 JIT requires +JITLIBS += x86 +ARCHLIBS += + +# What the Sparc JIT requires +JITLIBS += sparc +ARCHLIBS = sched livevar instrument.a profpaths transformutils.a \ + bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \ + mapping select postopts.a preopts + +USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore scalaropts \ + analysis.a support.a target.a $(ARCHLIBS) # Have gcc tell the linker to export symbols from the program so that # dynamically loaded modules can be linked against them. |