diff --git a/dist-build/android-mips64.sh b/dist-build/android-mips64.sh new file mode 100755 index 00000000..579969d3 --- /dev/null +++ b/dist-build/android-mips64.sh @@ -0,0 +1,4 @@ +#!/bin/sh +export TARGET_ARCH=mips64r6 +export CFLAGS="-Os -march=${TARGET_ARCH}" +ARCH=mips64 HOST_COMPILER=mips64el-linux-android "$(dirname "$0")/android-build.sh" diff --git a/dist-build/android-x86-64.sh b/dist-build/android-x86-64.sh new file mode 100755 index 00000000..78fdb49b --- /dev/null +++ b/dist-build/android-x86-64.sh @@ -0,0 +1,4 @@ +#!/bin/sh +export TARGET_ARCH=x86-64 +export CFLAGS="-Os -march=${TARGET_ARCH}" +ARCH=x86_64 HOST_COMPILER=x86_64-linux-android "$(dirname "$0")/android-build.sh"