From: Logan Chien Date: Sun, 21 Jul 2013 03:46:55 +0000 (+0000) Subject: Fix exception demo: Add mcjit to link component. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3659fd3552053fb649dc0d8383114ab008a69279;p=oota-llvm.git 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 --- diff --git a/examples/ExceptionDemo/Makefile b/examples/ExceptionDemo/Makefile index 480744730eb..58d9def0b7e 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