Date: Fri, 3 May 2024 01:18:46 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 7cd1b6f6d4ba - main - devel/cargo-leptos: Fix build on i386 Message-ID: <202405030118.4431IkIc082013@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=7cd1b6f6d4ba6ec2c5dd2d5553665985116cfd53 commit 7cd1b6f6d4ba6ec2c5dd2d5553665985116cfd53 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2024-05-03 01:18:18 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2024-05-03 01:18:18 +0000 devel/cargo-leptos: Fix build on i386 Reported by: fallout --- devel/cargo-leptos/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/cargo-leptos/Makefile b/devel/cargo-leptos/Makefile index bf4d05f5c548..cccc85d70371 100644 --- a/devel/cargo-leptos/Makefile +++ b/devel/cargo-leptos/Makefile @@ -15,7 +15,7 @@ USES= cargo USE_GITHUB= yes GH_ACCOUNT= leptos-rs -CARGO_FEATURES= ${ARCH:S/i386/YES/:C/^[a-z].*//:S/YES/sse sse2/} # add sse sse2 features only on i386 +RUSTFLAGS= ${ARCH:S/i386/YES/:C/^[a-z].*//:S/YES/-C target-feature=+sse,+sse2/} # add sse sse2 target-features only on i386 CARGO_CRATES= addr2line-0.21.0 \ adler-1.0.2 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405030118.4431IkIc082013>