1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Export symbols in tools that support loading plugins.

llvm-svn: 196447
This commit is contained in:
Will Dietz 2013-12-05 01:01:58 +00:00
parent 5e586ea3ed
commit dd5418f361
4 changed files with 3 additions and 3 deletions

View File

@ -3,3 +3,4 @@ set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} bitreader asmparser irreader)
add_llvm_tool(llc
llc.cpp
)
set_target_properties(llc PROPERTIES ENABLE_EXPORTS 1)

View File

@ -25,3 +25,4 @@ add_llvm_tool(lli
RemoteTarget.cpp
RemoteTargetExternal.cpp
)
set_target_properties(lli PROPERTIES ENABLE_EXPORTS 1)

View File

@ -3,3 +3,4 @@ set(LLVM_LINK_COMPONENTS bitreader asmparser bitwriter instrumentation scalaropt
add_llvm_tool(llvm-stress
llvm-stress.cpp
)
set_target_properties(llvm-stress PROPERTIES ENABLE_EXPORTS 1)

View File

@ -12,7 +12,4 @@ TOOLNAME := llvm-stress
LINK_COMPONENTS := object
LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts ipo
# This tool has no plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
include $(LEVEL)/Makefile.common