Interpreter, JIT moved to lib/ExecutionEngine (includes -> llvm/ExecutionEngine)

Build lli using executionengine library


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8372 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2003-09-05 19:42:34 +00:00
parent dbff77238f
commit d1cab3e6ce
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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"