
Fix the builds with LLVM_TOOL_LLVM_DRIVER_BUILD enabled. LLVM_ENABLE_EXPORTED_SYMBOLS_IN_EXECUTABLES is not completely compatible with export_executable_symbols as the later will be ignored if the previous is set to NO. Fix the issue by passing if symbols need to be exported to llvm_add_exectuable so the link flag can be determined directly without calling export_executable_symbols_* later.
22 lines
313 B
CMake
22 lines
313 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
MC
|
|
MCJIT
|
|
RuntimeDyld
|
|
Support
|
|
Target
|
|
nativecodegen
|
|
)
|
|
|
|
# Enable EH and RTTI for this demo
|
|
if(NOT LLVM_ENABLE_EH)
|
|
message(FATAL_ERROR "ExceptionDemo must require EH.")
|
|
endif()
|
|
|
|
add_llvm_example(ExceptionDemo
|
|
ExceptionDemo.cpp
|
|
|
|
EXPORT_SYMBOLS
|
|
)
|