[cfe-commits] r114052 - /cfe/trunk/tools/driver/Makefile

Daniel Dunbar daniel at zuster.org
Wed Sep 15 17:42:39 PDT 2010


Author: ddunbar
Date: Wed Sep 15 19:42:38 2010
New Revision: 114052

URL: http://llvm.org/viewvc/llvm-project?rev=114052&view=rev
Log:
build: Add support for a CLANG_ORDER_FILE build variable to specify the path to
the order file to use for the clang executable.

Modified:
    cfe/trunk/tools/driver/Makefile

Modified: cfe/trunk/tools/driver/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/driver/Makefile?rev=114052&r1=114051&r2=114052&view=diff
==============================================================================
--- cfe/trunk/tools/driver/Makefile (original)
+++ cfe/trunk/tools/driver/Makefile Wed Sep 15 19:42:38 2010
@@ -23,6 +23,10 @@
 TOOL_NO_EXPORTS := 1
 endif
 
+ifdef CLANG_ORDER_FILE
+TOOL_ORDER_FILE := $(CLANG_ORDER_FILE)
+endif
+
 # Include tool version information on OS X.
 TOOL_INFO_PLIST := Info.plist
 





More information about the cfe-commits mailing list