head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.06.01.13.04.37; author pin; state Exp; branches; next ; commitid L78AqWDjd9Cr16IG; desc @@ 1.1 log @devel/cargo-c: update to 0.10.23 - cargo 0.97 @ text @$NetBSD: patch-.._vendor_memchr-2.8.1_src_arch_aarch64_mod.rs,v 1.1 2026/04/07 18:38:35 pin Exp $ Don't try to do neon / SIMD on big-endian aarch64. --- ../vendor/memchr-2.8.1/src/arch/aarch64/mod.rs.orig 2025-02-15 09:14:20.982023231 +0000 +++ ../vendor/memchr-2.8.1/src/arch/aarch64/mod.rs @@@@ -2,6 +2,8 @@@@ Vector algorithms for the `aarch64` target. */ +#[cfg(target_endian = "little")] pub mod neon; +#[cfg(target_endian = "little")] pub(crate) mod memchr; @