Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Jan 2025 19:50:06 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 21e62383026c - main - lang/gluon: fix build on armv7
Message-ID:  <202501131950.50DJo6d4081766@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/ports/commit/?id=21e62383026c7851f72dae2e58516360b7a0b8aa

commit 21e62383026c7851f72dae2e58516360b7a0b8aa
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2025-01-13 10:31:27 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2025-01-13 19:49:52 +0000

    lang/gluon: fix build on armv7
    
    Same issue as i386 and powerpc.
---
 lang/gluon/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/gluon/Makefile b/lang/gluon/Makefile
index d2afde478786..9f19632f5c2a 100644
--- a/lang/gluon/Makefile
+++ b/lang/gluon/Makefile
@@ -394,7 +394,7 @@ PLIST_FILES=	bin/${PORTNAME}
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == i386 || ${ARCH} == powerpc
+.if ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc
 LTO_UNSAFE=	yes
 .endif
 



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