[llvm-commits] CVS: llvm/tools/lli/Makefile lli.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Fri Sep 5 14:43:02 PDT 2003
Changes in directory llvm/tools/lli:
Makefile updated: 1.39 -> 1.40
lli.cpp updated: 1.26 -> 1.27
---
Log message:
Interpreter, JIT moved to lib/ExecutionEngine (includes -> llvm/ExecutionEngine)
Build lli using executionengine library
---
Diffs of the changes:
Index: llvm/tools/lli/Makefile
diff -u llvm/tools/lli/Makefile:1.39 llvm/tools/lli/Makefile:1.40
--- llvm/tools/lli/Makefile:1.39 Mon Sep 1 15:30:17 2003
+++ llvm/tools/lli/Makefile Fri Sep 5 14:42:34 2003
@@ -1,12 +1,11 @@
LEVEL = ../..
TOOLNAME = lli
-PARALLEL_DIRS = Interpreter JIT
# Get the $(ARCH) setting
include $(LEVEL)/Makefile.config
# Generic JIT libraries
-JITLIBS = lli-jit codegen
+JITLIBS = lli-jit codegen executionengine
ARCHLIBS =
# You can enable the X86 JIT on a non-X86 host by setting the flag
Index: llvm/tools/lli/lli.cpp
diff -u llvm/tools/lli/lli.cpp:1.26 llvm/tools/lli/lli.cpp:1.27
--- llvm/tools/lli/lli.cpp:1.26 Fri Sep 5 13:41:58 2003
+++ llvm/tools/lli/lli.cpp Fri Sep 5 14:42:34 2003
@@ -9,10 +9,10 @@
//
//===----------------------------------------------------------------------===//
-#include "ExecutionEngine.h"
-#include "GenericValue.h"
#include "Support/CommandLine.h"
#include "Support/Debug.h"
+#include "llvm/ExecutionEngine/ExecutionEngine.h"
+#include "llvm/ExecutionEngine/GenericValue.h"
#include "llvm/Bytecode/Reader.h"
#include "llvm/Module.h"
#include "llvm/Target/TargetMachineImpls.h"
More information about the llvm-commits
mailing list