Export symbols in tools that support loading plugins.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196447 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Will Dietz 2013-12-05 01:01:58 +00:00
parent 7afb463a65
commit 7437feefbb
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