aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-04 20:50:57 +0000
committerChris Lattner <sabre@nondot.org>2002-11-04 20:50:57 +0000
commitc9d8beff59246e01aa3eb14e5b3a1c19897144f8 (patch)
tree174bcb84996cae26848ec11cbe0a3b0c89d5111c
parent1c588505b88c8052c0450e384f2d0d0281ea8a63 (diff)
downloadexternal_llvm-c9d8beff59246e01aa3eb14e5b3a1c19897144f8.zip
external_llvm-c9d8beff59246e01aa3eb14e5b3a1c19897144f8.tar.gz
external_llvm-c9d8beff59246e01aa3eb14e5b3a1c19897144f8.tar.bz2
No need to explicitly inclue ExportSymbols now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4543 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/ExecutionEngine/Makefile2
-rw-r--r--tools/analyze/Makefile2
-rw-r--r--tools/jello/Makefile2
-rw-r--r--tools/llc/Makefile3
-rw-r--r--tools/lli/Makefile2
-rw-r--r--tools/opt/Makefile2
6 files changed, 6 insertions, 7 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile
index b5b7c3d..a0e73d7 100644
--- a/lib/ExecutionEngine/Makefile
+++ b/lib/ExecutionEngine/Makefile
@@ -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
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile
index 9add20b..57152ac 100644
--- a/tools/analyze/Makefile
+++ b/tools/analyze/Makefile
@@ -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
diff --git a/tools/jello/Makefile b/tools/jello/Makefile
index 3543c82..4653e1a 100644
--- a/tools/jello/Makefile
+++ b/tools/jello/Makefile
@@ -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
diff --git a/tools/llc/Makefile b/tools/llc/Makefile
index 186d5ab..503dfa0 100644
--- a/tools/llc/Makefile
+++ b/tools/llc/Makefile
@@ -22,8 +22,7 @@ USEDLIBS = mapping \
transformutils \
vmcore \
support
-TOOLLINKOPTS = -ldl $(ExportSymbols)
-
+TOOLLINKOPTS = -ldl
KEEP_SYMBOLS = 1
include $(LEVEL)/Makefile.common
diff --git a/tools/lli/Makefile b/tools/lli/Makefile
index b5b7c3d..a0e73d7 100644
--- a/tools/lli/Makefile
+++ b/tools/lli/Makefile
@@ -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
diff --git a/tools/opt/Makefile b/tools/opt/Makefile
index bde049f..14fe05d 100644
--- a/tools/opt/Makefile
+++ b/tools/opt/Makefile
@@ -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