summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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