No need to explicitly inclue ExportSymbols now
llvm-svn: 4543
diff --git a/llvm/lib/ExecutionEngine/Makefile b/llvm/lib/ExecutionEngine/Makefile
index b5b7c3d..a0e73d7 100644
--- a/llvm/lib/ExecutionEngine/Makefile
+++ b/llvm/lib/ExecutionEngine/Makefile
@@ -5,6 +5,6 @@
# 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
diff --git a/llvm/tools/analyze/Makefile b/llvm/tools/analyze/Makefile
index 9add20b..57152ac 100644
--- a/llvm/tools/analyze/Makefile
+++ b/llvm/tools/analyze/Makefile
@@ -2,7 +2,7 @@
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
diff --git a/llvm/tools/jello/Makefile b/llvm/tools/jello/Makefile
index 3543c82..4653e1a 100644
--- a/llvm/tools/jello/Makefile
+++ b/llvm/tools/jello/Makefile
@@ -5,6 +5,6 @@
# 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
diff --git a/llvm/tools/llc/Makefile b/llvm/tools/llc/Makefile
index 186d5ab..503dfa0 100644
--- a/llvm/tools/llc/Makefile
+++ b/llvm/tools/llc/Makefile
@@ -22,8 +22,7 @@
transformutils \
vmcore \
support
-TOOLLINKOPTS = -ldl $(ExportSymbols)
-
+TOOLLINKOPTS = -ldl
KEEP_SYMBOLS = 1
include $(LEVEL)/Makefile.common
diff --git a/llvm/tools/lli/Makefile b/llvm/tools/lli/Makefile
index b5b7c3d..a0e73d7 100644
--- a/llvm/tools/lli/Makefile
+++ b/llvm/tools/lli/Makefile
@@ -5,6 +5,6 @@
# 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
diff --git a/llvm/tools/opt/Makefile b/llvm/tools/opt/Makefile
index bde049f..14fe05d 100644
--- a/llvm/tools/opt/Makefile
+++ b/llvm/tools/opt/Makefile
@@ -7,8 +7,8 @@
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