[Android] buildsystem: suggest what architecture values to use
Steve Lhomme
git at videolan.org
Fri Feb 13 07:51:43 UTC 2026
vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Jul 4 16:08:45 2025 +0200| [9dbc3a03df496b1b4f90c2703a689281f41dfa9f] | committer: Steve Lhomme
buildsystem: suggest what architecture values to use
> https://code.videolan.org/videolan/vlc-android/commit/9dbc3a03df496b1b4f90c2703a689281f41dfa9f
---
buildsystem/compile-medialibrary.sh | 2 +-
buildsystem/compile.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/buildsystem/compile-medialibrary.sh b/buildsystem/compile-medialibrary.sh
index a6a5c13f0b..8104912069 100755
--- a/buildsystem/compile-medialibrary.sh
+++ b/buildsystem/compile-medialibrary.sh
@@ -164,7 +164,7 @@ elif [ "$ANDROID_ABI" = "x86" ]; then
elif [ "$ANDROID_ABI" = "x86_64" ]; then
MESON_CPU="x86_64"
else
- diagnostic "Invalid arch specified: '$ANDROID_ABI'."
+ diagnostic "Invalid arch specified: '$ANDROID_ABI' (arm64-v8a|armeabi-v7a|x86_64|x86)."
diagnostic "Try --help for more information"
exit 1
fi
diff --git a/buildsystem/compile.sh b/buildsystem/compile.sh
index 9eadff51d5..cbcfe07781 100755
--- a/buildsystem/compile.sh
+++ b/buildsystem/compile.sh
@@ -154,7 +154,7 @@ elif [ "$ANDROID_ABI" = "x86_64" ]; then
ARCH="x86_64"
TRIPLET="x86_64-linux-android"
else
- diagnostic "Invalid arch specified: '$ANDROID_ABI'."
+ diagnostic "Invalid arch specified: '$ANDROID_ABI' (arm64-v8a|armeabi-v7a|x86_64|x86)."
diagnostic "Try --help for more information"
exit 1
fi
More information about the Android
mailing list