forked from OSchip/llvm-project
Fix configure and make build of clang-interpreter.
Replaced 'jit' link component with 'mcjit'. Updated the required libraries. llvm-svn: 217033
This commit is contained in:
parent
d49305bfef
commit
fe3add79bf
|
@ -15,12 +15,14 @@ NO_INSTALL = 1
|
|||
# No plugins, optimize startup time.
|
||||
TOOL_NO_EXPORTS = 1
|
||||
|
||||
LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter irreader \
|
||||
LINK_COMPONENTS := mcjit interpreter nativecodegen bitreader bitwriter irreader \
|
||||
ipo linker selectiondag asmparser instrumentation objcarcopts option
|
||||
USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \
|
||||
clangParse.a clangSema.a clangStaticAnalyzerFrontend.a \
|
||||
clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \
|
||||
clangAnalysis.a clangRewrite.a clangRewriteFrontend.a \
|
||||
clangEdit.a clangAST.a clangLex.a clangBasic.a
|
||||
clangEdit.a clangAST.a clangLex.a clangBasic.a LLVMCore.a \
|
||||
LLVMExecutionEngine.a LLVMMC.a LLVMMCJIT.a LLVMRuntimeDyld.a \
|
||||
LLVMObject.a LLVMSupport.a LLVMProfileData.a
|
||||
|
||||
include $(CLANG_LEVEL)/Makefile
|
||||
|
|
Loading…
Reference in New Issue