Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Jan 2020 18:01:15 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356381 - head/share/mk
Message-ID:  <202001051801.005I1FYt053128@repo.freebsd.org>

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



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