From: Daniel Dunbar Date: Thu, 16 Sep 2010 00:42:38 +0000 (+0000) Subject: build: Add support for a CLANG_ORDER_FILE build variable to specify the path to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6dbcaf3849709e271ffad5974150a6adbbfbb064;p=clang build: Add support for a CLANG_ORDER_FILE build variable to specify the path to the order file to use for the clang executable. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114052 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/driver/Makefile b/tools/driver/Makefile index 0f5d962c22..585a918f4a 100644 --- a/tools/driver/Makefile +++ b/tools/driver/Makefile @@ -23,6 +23,10 @@ ifdef CLANG_IS_PRODUCTION 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