2013-12-10 19:13:32 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
Core
|
|
|
|
ExecutionEngine
|
2014-10-31 23:27:16 +08:00
|
|
|
MC
|
2013-12-10 19:13:32 +08:00
|
|
|
MCJIT
|
2015-03-31 08:03:36 +08:00
|
|
|
RuntimeDyld
|
2013-12-10 19:13:32 +08:00
|
|
|
Support
|
2015-08-27 23:13:14 +08:00
|
|
|
Target
|
2013-12-10 19:13:32 +08:00
|
|
|
nativecodegen
|
|
|
|
)
|
|
|
|
|
2014-07-22 23:41:18 +08:00
|
|
|
# Enable EH and RTTI for this demo
|
2015-08-27 23:13:14 +08:00
|
|
|
if(NOT LLVM_ENABLE_EH)
|
|
|
|
message(FATAL_ERROR "ExceptionDemo must require EH.")
|
|
|
|
endif()
|
2015-03-31 08:03:43 +08:00
|
|
|
|
2010-02-10 07:22:43 +08:00
|
|
|
add_llvm_example(ExceptionDemo
|
|
|
|
ExceptionDemo.cpp
|
|
|
|
)
|
2013-04-27 03:07:40 +08:00
|
|
|
|
2015-03-19 04:09:13 +08:00
|
|
|
export_executable_symbols(ExceptionDemo)
|