Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Mar 2022 20:20:14 GMT
From:      =?utf-8?Q?Stefan E=C3=9Fer?= <se@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 9816cb187260 - stable/13 - Skip -flto for all MIPS ports
Message-ID:  <202203042020.224KKEEH015336@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by se:

URL: https://cgit.FreeBSD.org/src/commit/?id=9816cb18726019e8315b8858be981f8640adad76

commit 9816cb18726019e8315b8858be981f8640adad76
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2021-11-16 23:10:25 +0000
Commit:     Stefan Eßer <se@FreeBSD.org>
CommitDate: 2022-03-04 20:16:44 +0000

    Skip -flto for all MIPS ports
    
    There likely should be a macro for the ports that support lto, but I'm
    making sure that all the mips things build before decommissioning it and
    this is the only thing that's broken...
    
    Sponsored by:           Netflix
    
    (cherry picked from commit d677d4be0c23a8061710232334e9dc703e591bc4)
---
 usr.bin/gh-bc/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/usr.bin/gh-bc/Makefile b/usr.bin/gh-bc/Makefile
index e5f68b704d79..213559478b88 100644
--- a/usr.bin/gh-bc/Makefile
+++ b/usr.bin/gh-bc/Makefile
@@ -62,8 +62,8 @@ MAN_SRC_BC=	bc/A.1
 MAN_SRC_DC=	dc/A.1
 
 # prevent floating point incompatibilities caused by -flto on some architectures
-.if ${MACHINE_ARCH} != mips && ${MACHINE_ARCH} != mips64 && \
-    ${MACHINE_ARCH} != powerpc64 && ${MACHINE_ARCH} != riscv64
+.if ${MACHINE_ARCH:Mmips*} == "" && ${MACHINE_ARCH} != powerpc64 && \
+	${MACHINE_ARCH} != riscv64
 CFLAGS+=	-flto
 .endif
 



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