svn commit: r356381 - head/share/mk

Ed Maste emaste at FreeBSD.org
Sun Jan 5 18:01:16 UTC 2020


Author: emaste
Date: Sun Jan  5 18:01:15 2020
New Revision: 356381
URL: https://svnweb.freebsd.org/changeset/base/356381

Log:
  src.opts.mk: disable BINUTILS_BOOTSTRAP on all mips* and sparc64
  
  Extend r356379 to include 32-bit mips and sparc64.  Using a decade-old
  binutils linker with a contemporary compiler (either Clang or GCC) is
  a combination unlikely to be used by anyone else, and it's not going
  to be a good use of our time investigating and addressing any issues
  that arise.  Expect that all architectures newly migrated to external
  GCC will also use external binutils.

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Sun Jan  5 17:12:41 2020	(r356380)
+++ head/share/mk/src.opts.mk	Sun Jan  5 18:01:15 2020	(r356381)
@@ -489,7 +489,7 @@ MK_BSDINSTALL:=	no
 MK_SVNLITE:=	no
 .endif
 
-.if ${__T:Mmips64*} && ${MK_GCC} == "no"
+.if (${__TT} == "mips" || ${__TT} == "sparc64") && ${MK_GCC} == "no"
 MK_BINUTILS_BOOTSTRAP:=	no
 .endif
 


More information about the svn-src-all mailing list