Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jan 2025 23:47:23 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 1b82d05b8519 - main - audio/gnome-podcasts: fix build on armv7
Message-ID:  <202501212347.50LNlNgx034453@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1b82d05b851917d17de439397e132d33e005e4e1

commit 1b82d05b851917d17de439397e132d33e005e4e1
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2025-01-20 15:30:33 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-01-21 23:46:26 +0000

    audio/gnome-podcasts: fix build on armv7
    
    This avoids an address space exhaustion due to LTO.
    
    Approved by:    portmgr (build fix blanket)
    MFH:            2025Q1
---
 audio/gnome-podcasts/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/audio/gnome-podcasts/Makefile b/audio/gnome-podcasts/Makefile
index 6ff33a240a50..d090c729730f 100644
--- a/audio/gnome-podcasts/Makefile
+++ b/audio/gnome-podcasts/Makefile
@@ -27,7 +27,7 @@ GLIB_SCHEMAS=	org.gnome.Podcasts.gschema.xml
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == i386 || ${ARCH} == powerpc
+.if ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH:Marmv?}
 # https://github.com/rust-lang/rust/issues/85598
 LTO_UNSAFE=	yes
 .endif



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