The branch main has been updated by imp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=7a0c0ff7ee25ff1efa3dbedcb20d2c80178639cc

commit 7a0c0ff7ee25ff1efa3dbedcb20d2c80178639cc
Author:     Warner Losh <i...@freebsd.org>
AuthorDate: 2021-07-15 03:06:08 +0000
Commit:     Warner Losh <i...@freebsd.org>
CommitDate: 2021-07-15 03:06:19 +0000

    loader: make sure CPUTYPE is ignored when building
    
    CPUTYPE?=native causes -march=native to be added to the command
    line. When the host machine is haswell, this causes some versions of
    clang to generate code that can't execute in the efi boot loader
    environment. Set _CPUCFLAGS= to undo what's done bsd.cpu.mk. bsd.cpu.mk
    is included too early to control with NO_CPU_CFLAGS here. The only other
    option is to put that in all the Makefiles, and this is less tedious and
    error prone.
    
    PR:                     194641
    Sponsored by:           Netflix
    Differential Revision:  https://reviews.freebsd.org/D31187
    MFC After:              1 week
---
 stand/defs.mk | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/stand/defs.mk b/stand/defs.mk
index 54b7a7250c48..d50c89879613 100644
--- a/stand/defs.mk
+++ b/stand/defs.mk
@@ -15,6 +15,14 @@ MAN=
 NO_PIC=
 INTERNALLIB=
 .endif
+# Should be NO_CPU_FLAGS, but bsd.cpu.mk is included too early in bsd.init.mk
+# via the early include of bsd.opts.mk. Moving Makefile.inc include earlier in
+# that file causes weirdness, so this is the next best thing. We need to do 
this
+# because the loader needs very specific flags to work right, and things like
+# CPUTYPE?=native prevent that, and introduce an endless game of whack-a-mole
+# to disable more and more features. Boot loader performance is never improved
+# enough to make that hassle worth chasing.
+_CPUCFLAGS=
 
 .include <src.opts.mk>
 .include <bsd.linker.mk>
_______________________________________________
dev-commits-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"

Reply via email to