From 8a61aab88e7368cf0ae42a628b927aea4abfdcf1 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Sun, 21 Jul 2013 03:46:55 +0000 Subject: [PATCH] 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. llvm-svn: 186785 --- llvm/examples/ExceptionDemo/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/examples/ExceptionDemo/Makefile b/llvm/examples/ExceptionDemo/Makefile index 480744730eb7..58d9def0b7ee 100644 --- a/llvm/examples/ExceptionDemo/Makefile +++ b/llvm/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