[llvm] r186785 - Fix exception demo: Add mcjit to link component.

Logan Chien tzuhsiang.chien at gmail.com
Sat Jul 20 20:46:55 PDT 2013


Author: logan
Date: Sat Jul 20 22:46:55 2013
New Revision: 186785

URL: http://llvm.org/viewvc/llvm-project?rev=186785&view=rev
Log:
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.

Modified:
    llvm/trunk/examples/ExceptionDemo/Makefile

Modified: llvm/trunk/examples/ExceptionDemo/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ExceptionDemo/Makefile?rev=186785&r1=186784&r2=186785&view=diff
==============================================================================
--- llvm/trunk/examples/ExceptionDemo/Makefile (original)
+++ llvm/trunk/examples/ExceptionDemo/Makefile Sat Jul 20 22:46:55 2013
@@ -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





More information about the llvm-commits mailing list