Add simple compile scripts for android-mips64 and android-x86_64 (w/o optimizations)

This commit is contained in:
Emiliano Bonassi 2015-07-06 23:27:45 +02:00 committed by Frank Denis
parent 944d4db270
commit 8f4ac9c585
2 changed files with 8 additions and 0 deletions

4
dist-build/android-mips64.sh Executable file
View File

@ -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"

4
dist-build/android-x86-64.sh Executable file
View File

@ -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"