svn commit: r325202 - head

Bryan Drewery bdrewery at FreeBSD.org
Tue Oct 31 02:52:37 UTC 2017


Author: bdrewery
Date: Tue Oct 31 02:52:36 2017
New Revision: 325202
URL: https://svnweb.freebsd.org/changeset/base/325202

Log:
  native-xtools: Allow SYSTEM_COMPILER to be used after r325001.
  
  Now that a proper sysroot is used and a separate target list, it should
  be safe to skip building the initial cross-compiler.
  
  X-MFC-With:	r325001
  MFC after:	1 month
  Sponsored by:	Dell EMC Isilon

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Tue Oct 31 02:49:28 2017	(r325201)
+++ head/Makefile.inc1	Tue Oct 31 02:52:36 2017	(r325202)
@@ -133,7 +133,7 @@ WANT_COMPILER_VERSION!= \
 # TARGET_ARCH!=MACHINE_ARCH.
 .if ${MK_SYSTEM_COMPILER} == "yes" && \
     (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
-    !make(showconfig) && !make(native-xtools) && !make(xdev*) && \
+    !make(showconfig) && !make(xdev*) && \
     ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE} && \
     (${COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
     ${COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \


More information about the svn-src-all mailing list