From b6d48443fdfce3572650b525991de8fb17b8dd5f Mon Sep 17 00:00:00 2001 From: Iain Sandoe Date: Wed, 3 Sep 2014 13:13:50 +0000 Subject: Fix configure and make build of clang-interpreter. Replaced 'jit' link component with 'mcjit'. Updated the required libraries. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@217033 91177308-0d34-0410-b5e6-96231b3b80d8 --- examples/clang-interpreter/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/clang-interpreter/Makefile b/examples/clang-interpreter/Makefile index d571337735..2eff90b32b 100644 --- a/examples/clang-interpreter/Makefile +++ b/examples/clang-interpreter/Makefile @@ -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 -- cgit v1.2.3