I don't know, but would it make more or less sense to just have a build target that just builds the release binaries, rather than a variable? From: Bill Wendling Sent: 9/27/2012 3:14 AM To: [email protected] Subject: [cfe-commits] r164739 - /cfe/trunk/tools/Makefile Author: void Date: Wed Sep 26 19:11:09 2012 New Revision: 164739
URL: http://llvm.org/viewvc/llvm-project?rev=164739&view=rev Log: Use a variable to stop us from building clang testing tools. <rdar://problem/11202465> Modified: cfe/trunk/tools/Makefile Modified: cfe/trunk/tools/Makefile URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/Makefile?rev=164739&r1=164738&r2=164739&view=diff ============================================================================== --- cfe/trunk/tools/Makefile (original) +++ cfe/trunk/tools/Makefile Wed Sep 26 19:11:09 2012 @@ -14,6 +14,10 @@ DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool \ clang-check +ifeq ($(CLANG_NO_TEST_TOOLS),YES) +DIRS := driver libclang +endif + # Recurse into the extra repository of tools if present. OPTIONAL_DIRS := extra _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
