svn commit: r302400 - head
Bryan Drewery
bdrewery at FreeBSD.org
Thu Jul 7 21:03:51 UTC 2016
Author: bdrewery
Date: Thu Jul 7 21:03:50 2016
New Revision: 302400
URL: https://svnweb.freebsd.org/changeset/base/302400
Log:
WITH_SYSTEM_COMPILER: Don't enable for xdev or native-xtools.
Otherwise they get no compiler.
Reported by: swills
Tested by: swills
Approved by: re (gjb)
Sponsored by: EMC / Isilon Storage Division
Modified:
head/Makefile.inc1
Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1 Thu Jul 7 20:58:16 2016 (r302399)
+++ head/Makefile.inc1 Thu Jul 7 21:03:50 2016 (r302400)
@@ -82,7 +82,7 @@ MK_CROSS_COMPILER= no
# Check if there is a local compiler that can satisfy as an external compiler.
.if ${MK_SYSTEM_COMPILER} == "yes" && ${MK_CROSS_COMPILER} == "yes" && \
(${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
- !make(showconfig)
+ !make(showconfig) && !make(native-xtools) && !make(xdev*)
# Which compiler is expected to be used?
.if ${MK_CLANG_BOOTSTRAP} == "yes"
_expected_compiler_type= clang
More information about the svn-src-all
mailing list