summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/utils/PerfectShuffle/Makefile4
-rw-r--r--llvm/utils/TableGen/Makefile3
2 files changed, 7 insertions, 0 deletions
diff --git a/llvm/utils/PerfectShuffle/Makefile b/llvm/utils/PerfectShuffle/Makefile
index 0eb3a9947ff..28709fefd31 100644
--- a/llvm/utils/PerfectShuffle/Makefile
+++ b/llvm/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/llvm/utils/TableGen/Makefile b/llvm/utils/TableGen/Makefile
index 6e55c53df0e..ba0e157ec38 100644
--- a/llvm/utils/TableGen/Makefile
+++ b/llvm/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
OpenPOWER on IntegriCloud