aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-26 19:01:11 +0000
committerChris Lattner <sabre@nondot.org>2009-02-26 19:01:11 +0000
commitc3ba2caf159c04ce6d691dff6c57859a52171791 (patch)
tree78b9f22b16013094a07780f8619826236ca8d39a
parent7c0246169f8dfe0237ddf5b697c32e2530d534f7 (diff)
downloadexternal_llvm-c3ba2caf159c04ce6d691dff6c57859a52171791.zip
external_llvm-c3ba2caf159c04ce6d691dff6c57859a52171791.tar.gz
external_llvm-c3ba2caf159c04ce6d691dff6c57859a52171791.tar.bz2
disable exports from a bunch more tools, those without plugins.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65558 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/llvm-ar/Makefile3
-rw-r--r--tools/llvm-bcanalyzer/Makefile3
-rw-r--r--tools/llvm-dis/Makefile3
-rw-r--r--tools/llvm-extract/Makefile3
-rw-r--r--tools/llvm-link/Makefile3
-rw-r--r--tools/llvm-nm/Makefile3
-rw-r--r--tools/llvm-prof/Makefile3
-rw-r--r--tools/llvm-ranlib/Makefile3
8 files changed, 24 insertions, 0 deletions
diff --git a/tools/llvm-ar/Makefile b/tools/llvm-ar/Makefile
index ec862e6..e4fe4e8 100644
--- a/tools/llvm-ar/Makefile
+++ b/tools/llvm-ar/Makefile
@@ -12,6 +12,9 @@ TOOLNAME = llvm-ar
LINK_COMPONENTS = archive
REQUIRES_EH := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
check-local::
diff --git a/tools/llvm-bcanalyzer/Makefile b/tools/llvm-bcanalyzer/Makefile
index 7873236..251f758 100644
--- a/tools/llvm-bcanalyzer/Makefile
+++ b/tools/llvm-bcanalyzer/Makefile
@@ -12,4 +12,7 @@ TOOLNAME = llvm-bcanalyzer
LINK_COMPONENTS := bitreader
REQUIRES_EH := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-dis/Makefile b/tools/llvm-dis/Makefile
index 6c8d0a3..dfd5e34 100644
--- a/tools/llvm-dis/Makefile
+++ b/tools/llvm-dis/Makefile
@@ -12,4 +12,7 @@ TOOLNAME = llvm-dis
LINK_COMPONENTS := bitreader
REQUIRES_EH := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-extract/Makefile b/tools/llvm-extract/Makefile
index 21fe37b..2ef8841 100644
--- a/tools/llvm-extract/Makefile
+++ b/tools/llvm-extract/Makefile
@@ -12,4 +12,7 @@ LEVEL = ../..
TOOLNAME = llvm-extract
LINK_COMPONENTS := ipo bitreader bitwriter
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-link/Makefile b/tools/llvm-link/Makefile
index fdb1c19..ddc7a59 100644
--- a/tools/llvm-link/Makefile
+++ b/tools/llvm-link/Makefile
@@ -11,4 +11,7 @@ LEVEL = ../..
TOOLNAME = llvm-link
LINK_COMPONENTS = linker bitreader bitwriter
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-nm/Makefile b/tools/llvm-nm/Makefile
index ee495bf..ecf5f8c 100644
--- a/tools/llvm-nm/Makefile
+++ b/tools/llvm-nm/Makefile
@@ -11,4 +11,7 @@ LEVEL = ../..
TOOLNAME = llvm-nm
LINK_COMPONENTS = archive bitreader
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-prof/Makefile b/tools/llvm-prof/Makefile
index d9beabb..3c4948e 100644
--- a/tools/llvm-prof/Makefile
+++ b/tools/llvm-prof/Makefile
@@ -12,4 +12,7 @@ TOOLNAME = llvm-prof
LINK_COMPONENTS = bitreader analysis
REQUIRES_EH := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-ranlib/Makefile b/tools/llvm-ranlib/Makefile
index 1d315c2..46a10e6 100644
--- a/tools/llvm-ranlib/Makefile
+++ b/tools/llvm-ranlib/Makefile
@@ -12,4 +12,7 @@ TOOLNAME = llvm-ranlib
LINK_COMPONENTS = archive
REQUIRES_EH := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common