Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Jul 2016 21:03:50 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r302400 - head
Message-ID:  <201607072103.u67L3opm029500@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607072103.u67L3opm029500>