summaryrefslogtreecommitdiff
path: root/tools/lli/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-23 23:59:41 +0000
committerChris Lattner <sabre@nondot.org>2002-12-23 23:59:41 +0000
commitfe11a97fcde7c63109c3ad36570657807d0cd6ef (patch)
treeac8df082eeca9d70e88d4dd64936cc821b2c2f93 /tools/lli/Makefile
parentb76d4965c18063955f5a7f027a1869da885769d5 (diff)
downloadllvm-fe11a97fcde7c63109c3ad36570657807d0cd6ef.tar.gz
llvm-fe11a97fcde7c63109c3ad36570657807d0cd6ef.tar.bz2
llvm-fe11a97fcde7c63109c3ad36570657807d0cd6ef.tar.xz
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 'tools/lli/Makefile')
-rw-r--r--tools/lli/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/lli/Makefile b/tools/lli/Makefile
index a0e73d7150..c31fb5e2da 100644
--- a/tools/lli/Makefile
+++ b/tools/lli/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.