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.
This commit is contained in:
Ed Maste 2020-01-05 18:01:15 +00:00
parent 895dd2f8fa
commit 6eb84c961a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356381

View File

@ -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