summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-26 19:02:23 +0000
committerChris Lattner <sabre@nondot.org>2009-02-26 19:02:23 +0000
commit13d5b71a957f51fc86e3d21606a312b391039a4b (patch)
tree1291b4d082060f8db789660d8ea4f64296184f3a
parente3ff456fd1a87fa3cc9aef6003e10d4f0bd9f752 (diff)
downloadllvm-13d5b71a957f51fc86e3d21606a312b391039a4b.tar.gz
llvm-13d5b71a957f51fc86e3d21606a312b391039a4b.tar.bz2
llvm-13d5b71a957f51fc86e3d21606a312b391039a4b.tar.xz
these utils don't need exports.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65559 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/PerfectShuffle/Makefile4
-rw-r--r--utils/TableGen/Makefile3
2 files changed, 7 insertions, 0 deletions
diff --git a/utils/PerfectShuffle/Makefile b/utils/PerfectShuffle/Makefile
index 0eb3a9947f..28709fefd3 100644
--- a/utils/PerfectShuffle/Makefile
+++ b/utils/PerfectShuffle/Makefile
@@ -10,5 +10,9 @@
LEVEL = ../..
TOOLNAME = llvm-PerfectShuffle
NO_INSTALL = 1
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common
diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile
index 6e55c53df0..ba0e157ec3 100644
--- a/utils/TableGen/Makefile
+++ b/utils/TableGen/Makefile
@@ -14,5 +14,8 @@ USEDLIBS = LLVMSupport.a LLVMSystem.a
REQUIRES_EH := 1
REQUIRES_RTTI := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common