git: 80071be5fd05 - main - cad/veryl: Fix runaway builds problem by disabling LTO
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 27 Sep 2024 08:38:54 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=80071be5fd055ca1bba56fde29de15c933d3c774 commit 80071be5fd055ca1bba56fde29de15c933d3c774 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2024-09-27 05:01:16 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2024-09-27 08:38:47 +0000 cad/veryl: Fix runaway builds problem by disabling LTO Reported by: fallout --- cad/veryl/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cad/veryl/Makefile b/cad/veryl/Makefile index e8a334b404ca..72c007db7494 100644 --- a/cad/veryl/Makefile +++ b/cad/veryl/Makefile @@ -1,6 +1,7 @@ PORTNAME= veryl DISTVERSIONPREFIX= v DISTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= cad MAINTAINER= yuri@FreeBSD.org @@ -545,4 +546,6 @@ CARGO_CRATES= addr2line-0.22.0 \ PLIST_FILES= bin/${PORTNAME} +WITHOUT_LTO= yes # this fixes runaway build problem with rust-1.81.0 and eartier + .include <bsd.port.mk>