summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2019-12-29 23:09:04 +0100
committercyBerta <cyberta@riseup.net>2019-12-29 23:09:04 +0100
commit59f7679c633284d772a91a9ee057034a8223e73a (patch)
tree3a71d7abbdf5fd3ecbfb05f0e9238b53d999be23
parentb8ce7160704ce735422cc69cfa9fc646bfae7237 (diff)
remove a outdated armeabi target for shapeshifter lib cross compiling
-rwxr-xr-xgo/android_build_shapeshifter.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/go/android_build_shapeshifter.sh b/go/android_build_shapeshifter.sh
index 7a884689..e39f9eb1 100755
--- a/go/android_build_shapeshifter.sh
+++ b/go/android_build_shapeshifter.sh
@@ -71,7 +71,7 @@ else
# To remove targets, simply delete them from the bracket.
# NOTE: We are only currently shipping the armeabi-v7a binary
# on Android, for space reasons.
- targets=(386 amd64 armv5 armv7 arm64)
+ targets=(386 x86_64 armv7 arm64)
export GOOS=android
for arch in ${targets[@]}; do
@@ -86,7 +86,7 @@ else
ndk_arch="x86"
suffix="x86"
binary="i686-linux-android-gcc"
- elif [ "$arch" = "amd64" ]; then
+ elif [ "$arch" = "x86_64" ]; then
ndk_platform="android-21"
ndk_arch="x86_64"
suffix="x86_64"