No need to explicitly inclue ExportSymbols now

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4543 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-11-04 20:50:57 +00:00
parent 1c588505b8
commit c9d8beff59
6 changed files with 6 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -22,8 +22,7 @@ USEDLIBS = mapping \
transformutils \
vmcore \
support
TOOLLINKOPTS = -ldl $(ExportSymbols)
TOOLLINKOPTS = -ldl
KEEP_SYMBOLS = 1
include $(LEVEL)/Makefile.common

View File

@ -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

View File

@ -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