Date: Wed, 31 Jan 2024 08:22:32 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: e22931d36aaa - main - devel/cargo-c: fix build on powerpc Message-ID: <202401310822.40V8MW7W037367@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=e22931d36aaa47e847b9519fc8be279249ca1a8b commit e22931d36aaa47e847b9519fc8be279249ca1a8b Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2024-01-31 08:12:34 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2024-01-31 08:22:28 +0000 devel/cargo-c: fix build on powerpc Same issue as on armv?. --- devel/cargo-c/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/cargo-c/Makefile b/devel/cargo-c/Makefile index 12f583611b0e..7f5baadbbc3c 100644 --- a/devel/cargo-c/Makefile +++ b/devel/cargo-c/Makefile @@ -28,7 +28,7 @@ PLIST_FILES= bin/cargo-capi \ .include <bsd.port.pre.mk> # prevent address space exhaustion on armv6/armv7 -.if ${ARCH:Marmv?} +.if ${ARCH:Marmv?} || ${ARCH} == powerpc LTO_UNSAFE= yes .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401310822.40V8MW7W037367>