diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-23 23:59:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-23 23:59:41 +0000 |
commit | fe11a97fcde7c63109c3ad36570657807d0cd6ef (patch) | |
tree | ac8df082eeca9d70e88d4dd64936cc821b2c2f93 /lib/ExecutionEngine/Makefile | |
parent | b76d4965c18063955f5a7f027a1869da885769d5 (diff) | |
download | external_llvm-fe11a97fcde7c63109c3ad36570657807d0cd6ef.zip external_llvm-fe11a97fcde7c63109c3ad36570657807d0cd6ef.tar.gz external_llvm-fe11a97fcde7c63109c3ad36570657807d0cd6ef.tar.bz2 |
Substantial changes to refactor LLI to incorporate both the Jello JIT and
the traditional LLI interpreter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5125 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Makefile')
-rw-r--r-- | lib/ExecutionEngine/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index a0e73d7..c31fb5e 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,6 +1,10 @@ LEVEL = ../.. TOOLNAME = lli -USEDLIBS = bcreader vmcore analysis.a support.a target.a transforms.a +PARALLEL_DIRS = Interpreter JIT + +JITLIBS = lli-jit codegen x86 scalaropts.a +USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore analysis.a support.a target.a +#transforms.a # Have gcc tell the linker to export symbols from the program so that # dynamically loaded modules can be linked against them. |