From 246fd7ca83e5a2f00540026414986ac8aa7ae2bf Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 26 Feb 2009 19:02:23 +0000 Subject: [PATCH] these utils don't need exports. llvm-svn: 65559 --- utils/PerfectShuffle/Makefile | 4 ++++ utils/TableGen/Makefile | 3 +++ 2 files changed, 7 insertions(+) diff --git a/utils/PerfectShuffle/Makefile b/utils/PerfectShuffle/Makefile index 0eb3a9947ff..28709fefd31 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 6e55c53df0e..ba0e157ec38 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