these utils don't need exports.
authorChris Lattner <sabre@nondot.org>
Thu, 26 Feb 2009 19:02:23 +0000 (19:02 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Feb 2009 19:02:23 +0000 (19:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65559 91177308-0d34-0410-b5e6-96231b3b80d8

utils/PerfectShuffle/Makefile
utils/TableGen/Makefile

index 0eb3a9947ffe26e9986eb56b546598e7d4e4e037..28709fefd319bd1307501ccc3698ed2d9d5426d3 100644 (file)
@@ -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
 
index 6e55c53df0ec200d62cfde50bd9349301e87b4f5..ba0e157ec385b1e22155ec9bdda7c5cd8d4f647b 100644 (file)
@@ -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