diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-26 19:07:40 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-26 19:07:40 +0000 |
commit | 03ee04bef64cba234816eb7b1c280cbfa30e782e (patch) | |
tree | 15c1c732a1109ac2640e7b6df35c9784ee3edb78 /llvm/examples/ExceptionDemo | |
parent | d693c19a73632ab24501bd14759813c5c3e80bd8 (diff) | |
download | bcm5719-llvm-03ee04bef64cba234816eb7b1c280cbfa30e782e.tar.gz bcm5719-llvm-03ee04bef64cba234816eb7b1c280cbfa30e782e.zip |
The exception demo needs its symbols exported.
llvm-svn: 180622
Diffstat (limited to 'llvm/examples/ExceptionDemo')
-rw-r--r-- | llvm/examples/ExceptionDemo/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/examples/ExceptionDemo/CMakeLists.txt b/llvm/examples/ExceptionDemo/CMakeLists.txt index 88c9ab7c181..432e683a13f 100644 --- a/llvm/examples/ExceptionDemo/CMakeLists.txt +++ b/llvm/examples/ExceptionDemo/CMakeLists.txt @@ -4,3 +4,5 @@ set(LLVM_REQUIRES_EH 1) add_llvm_example(ExceptionDemo ExceptionDemo.cpp ) + +set_target_properties(ExceptionDemo PROPERTIES ENABLE_EXPORTS 1) |