aboutsummaryrefslogtreecommitdiffstats
path: root/examples/Kaleidoscope/Chapter4/Makefile
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2010-02-11 19:15:20 +0000
committerJeffrey Yasskin <jyasskin@google.com>2010-02-11 19:15:20 +0000
commit42fc5586241ddc5948ffff67eefe8cb2690534a8 (patch)
treedc3abc48e8f27927157bb70c7975a83435274aeb /examples/Kaleidoscope/Chapter4/Makefile
parentbbe99362e54a310b337c905ddc2e62a641bdb293 (diff)
downloadexternal_llvm-42fc5586241ddc5948ffff67eefe8cb2690534a8.zip
external_llvm-42fc5586241ddc5948ffff67eefe8cb2690534a8.tar.gz
external_llvm-42fc5586241ddc5948ffff67eefe8cb2690534a8.tar.bz2
Make Kaleidoscope not link against the interpreter, since that didn't
work anyway (Interpreter::getPointerToFunction doesn't return a callable pointer), and improve the error message when an ExecutionEngine can't be created. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95896 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Kaleidoscope/Chapter4/Makefile')
-rw-r--r--examples/Kaleidoscope/Chapter4/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Kaleidoscope/Chapter4/Makefile b/examples/Kaleidoscope/Chapter4/Makefile
index 7bc742f..30162d9 100644
--- a/examples/Kaleidoscope/Chapter4/Makefile
+++ b/examples/Kaleidoscope/Chapter4/Makefile
@@ -10,6 +10,6 @@ LEVEL = ../../..
TOOLNAME = Kaleidoscope-Ch4
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := core jit interpreter native
+LINK_COMPONENTS := core jit native
include $(LEVEL)/Makefile.common