summaryrefslogtreecommitdiff
path: root/tools/llvm-link
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
commite3ff456fd1a87fa3cc9aef6003e10d4f0bd9f752 (patch)
tree78b9f22b16013094a07780f8619826236ca8d39a /tools/llvm-link
parentc953a8853f79a199290099c13deb88fe227c44d8 (diff)
downloadllvm-e3ff456fd1a87fa3cc9aef6003e10d4f0bd9f752.tar.gz
llvm-e3ff456fd1a87fa3cc9aef6003e10d4f0bd9f752.tar.bz2
llvm-e3ff456fd1a87fa3cc9aef6003e10d4f0bd9f752.tar.xz
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
Diffstat (limited to 'tools/llvm-link')
-rw-r--r--tools/llvm-link/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/llvm-link/Makefile b/tools/llvm-link/Makefile
index fdb1c196fe..ddc7a59b32 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