diff options
author | Logan Chien <tzuhsiang.chien@gmail.com> | 2013-07-21 03:46:55 +0000 |
---|---|---|
committer | Logan Chien <tzuhsiang.chien@gmail.com> | 2013-07-21 03:46:55 +0000 |
commit | 8a61aab88e7368cf0ae42a628b927aea4abfdcf1 (patch) | |
tree | 6351ec3401930a1a0778b4708b40ddb0f3bf0bd8 /llvm/examples | |
parent | b1ca98c4d096cac07b47edb471462931ce34a9cd (diff) | |
download | bcm5719-llvm-8a61aab88e7368cf0ae42a628b927aea4abfdcf1.tar.gz bcm5719-llvm-8a61aab88e7368cf0ae42a628b927aea4abfdcf1.zip |
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
Diffstat (limited to 'llvm/examples')
-rw-r--r-- | llvm/examples/ExceptionDemo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/ExceptionDemo/Makefile b/llvm/examples/ExceptionDemo/Makefile index 480744730eb..58d9def0b7e 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 |