From 4cefb5ece8208be8c8aacc9be75045f40cb2e820 Mon Sep 17 00:00:00 2001 From: Connor Abbott Date: Tue, 7 May 2024 10:13:44 +0100 Subject: [PATCH] docs/android: Fix example meson cross file again I copied it over wrong, it should be cpu_family that's changed to aarch64 to avoid "error: undefined symbol: blake3_hash_many_neon". Fixes: 57abef5af1f3 ("docs/android: Fix example meson cross file") Part-of: --- docs/android.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/android.rst b/docs/android.rst index 3ac75171e57..0034706bb75 100644 --- a/docs/android.rst +++ b/docs/android.rst @@ -34,8 +34,8 @@ Then, create your Meson cross file to use it, something like this [host_machine] system = 'android' - cpu_family = 'arm' - cpu = 'aarch64' + cpu_family = 'aarch64' + cpu = 'armv8' endian = 'little' Now, use that cross file for your Android build directory (as in this