head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.07.15.06.56.26; author wiz; state Exp; branches; next ; commitid nbMOBwPxx1glzING; desc @@ 1.1 log @devel/cargo-c: update to 0.10.24 From pin@@ via wip. - cargo 0.98 - itertools 0.15 @ text @$NetBSD: patch-.._vendor_memchr-2.8.3_src_arch_aarch64_mod.rs,v 1.1 2026/06/01 13:04:37 pin Exp $ Don't try to do neon / SIMD on big-endian aarch64. --- ../vendor/memchr-2.8.3/src/arch/aarch64/mod.rs.orig 2025-02-15 09:14:20.982023231 +0000 +++ ../vendor/memchr-2.8.3/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; @