Re: git: 7b0c8167940b - main - net/ntpd-rs: mark as broken on i386
Date: Sat, 20 Jul 2024 16:48:44 UTC
On 7/20/24 17:43, Jan Beich wrote: > Mikael Urankar <mikael@FreeBSD.org> writes: > >> +NOT_FOR_ARCHS= i386 >> +NOT_FOR_ARCHS_REASON= the ring crate requires SSE2 instruction on intel cpu > Why not pass -C target-feature=+sse2 like games/jumpy instead? Per [1] we are supposed to target Pentium Pro / Pentium II (i686), sse2 is not available on these cpus. This is enforced in our rust ports with [2]. [1] https://www.freebsd.org/platforms/i386/ [2] https://github.com/freebsd/freebsd-ports/blob/main/lang/rust/files/patch-compiler_rustc__target_src_spec_targets_i686__unknown__freebsd.rs