forked from OSchip/llvm-project
No need to explicitly inclue ExportSymbols now
llvm-svn: 4543
This commit is contained in:
parent
f131358f59
commit
a416ad30df
|
@ -5,6 +5,6 @@ USEDLIBS = bcreader vmcore analysis.a support.a target.a transforms.a
|
|||
# Have gcc tell the linker to export symbols from the program so that
|
||||
# dynamically loaded modules can be linked against them.
|
||||
#
|
||||
TOOLLINKOPTS = -ldl $(ExportSymbols)
|
||||
TOOLLINKOPTS = -ldl
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -2,7 +2,7 @@ LEVEL = ../..
|
|||
TOOLNAME = analyze
|
||||
USEDLIBS = asmparser bcreader scalaropts.a transforms.a analysis ipa \
|
||||
datastructure target.a transformutils.a vmcore support
|
||||
TOOLLINKOPTS = -ldl $(ExportSymbols)
|
||||
TOOLLINKOPTS = -ldl
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -5,6 +5,6 @@ USEDLIBS = bcreader vmcore codegen x86 support.a target.a
|
|||
# Have gcc tell the linker to export symbols from the program so that
|
||||
# dynamically loaded modules can be linked against them.
|
||||
#
|
||||
TOOLLINKOPTS = -ldl $(ExportSymbols)
|
||||
TOOLLINKOPTS = -ldl
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -22,8 +22,7 @@ USEDLIBS = mapping \
|
|||
transformutils \
|
||||
vmcore \
|
||||
support
|
||||
TOOLLINKOPTS = -ldl $(ExportSymbols)
|
||||
|
||||
TOOLLINKOPTS = -ldl
|
||||
KEEP_SYMBOLS = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -5,6 +5,6 @@ USEDLIBS = bcreader vmcore analysis.a support.a target.a transforms.a
|
|||
# Have gcc tell the linker to export symbols from the program so that
|
||||
# dynamically loaded modules can be linked against them.
|
||||
#
|
||||
TOOLLINKOPTS = -ldl $(ExportSymbols)
|
||||
TOOLLINKOPTS = -ldl
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
|
@ -7,8 +7,8 @@ USEDLIBS = bcreader bcwriter instrument profpaths \
|
|||
livevar scalaropts \
|
||||
ipo ipa.a datastructure transforms target.a analysis \
|
||||
transformutils vmcore support
|
||||
TOOLLINKOPTS = -ldl $(ExportSymbols)
|
||||
|
||||
TOOLLINKOPTS = -ldl
|
||||
KEEP_SYMBOLS = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
Loading…
Reference in New Issue