diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-27 21:42:05 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-27 21:42:05 +0000 |
commit | 80f0eb3a8232e068e46f2bc6b018c5c24e354405 (patch) | |
tree | 1fb73a32279cbaef8193d4d414fb6a771d9e96a5 /llvm/lib/ExecutionEngine | |
parent | 56d27325c0fa36383c5c4e9857309d8877e58546 (diff) | |
download | bcm5719-llvm-80f0eb3a8232e068e46f2bc6b018c5c24e354405.tar.gz bcm5719-llvm-80f0eb3a8232e068e46f2bc6b018c5c24e354405.zip |
Link in Sparc libs for the JIT, even on X86 to be able to support debugging
of Sparc JIT (printing out instrs) on X86. Con: this increases linking time.
llvm-svn: 6361
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/Makefile | 22 |
1 files changed, 19 insertions, 3 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. |