summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLogan Chien <tzuhsiang.chien@gmail.com>2013-07-21 03:46:55 +0000
committerLogan Chien <tzuhsiang.chien@gmail.com>2013-07-21 03:46:55 +0000
commit3659fd3552053fb649dc0d8383114ab008a69279 (patch)
treec3c2aa5ebe794070e7da153cd243dc0601680958 /examples
parentd17303c47f5654f7ecae25b340cac84128add856 (diff)
downloadllvm-3659fd3552053fb649dc0d8383114ab008a69279.tar.gz
llvm-3659fd3552053fb649dc0d8383114ab008a69279.tar.bz2
llvm-3659fd3552053fb649dc0d8383114ab008a69279.tar.xz
Fix exception demo: Add mcjit to link component.
Fix exception demo when we are building the examples with configure/make. This commit updates the link components in the Makefile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/ExceptionDemo/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ExceptionDemo/Makefile b/examples/ExceptionDemo/Makefile
index 480744730e..58d9def0b7 100644
--- a/examples/ExceptionDemo/Makefile
+++ b/examples/ExceptionDemo/Makefile
@@ -11,6 +11,6 @@ TOOLNAME = ExceptionDemo
EXAMPLE_TOOL = 1
REQUIRES_EH = 1
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := jit mcjit nativecodegen
include $(LEVEL)/Makefile.common