From 2231057d1e4a0c92b2b41c0dd62a8609d17b264b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 23 Mar 2023 14:12:39 +0000 Subject: [PATCH] android build: allow specifying "x86_64" as target in build.sh --- contrib/android/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/android/build.sh b/contrib/android/build.sh index 0c58faaf8..17a5dfcb5 100755 --- a/contrib/android/build.sh +++ b/contrib/android/build.sh @@ -18,11 +18,11 @@ BUILD_UID=$(/usr/bin/stat -c %u "$PROJECT_ROOT") # check arguments if [[ -n "$3" \ && ( "$1" == "kivy" || "$1" == "qml" ) \ - && ( "$2" == "all" || "$2" == "armeabi-v7a" || "$2" == "arm64-v8a" || "$2" == "x86" ) \ + && ( "$2" == "all" || "$2" == "armeabi-v7a" || "$2" == "arm64-v8a" || "$2" == "x86" || "$2" == "x86_64" ) \ && ( "$3" == "debug" || "$3" == "release" || "$3" == "release-unsigned" ) ]] ; then info "arguments $*" else - fail "usage: build.sh " + fail "usage: build.sh " exit 1 fi