From 3bd90e4dc7ce7b0f95562f30c31c8c873d3de769 Mon Sep 17 00:00:00 2001 From: Emily Toop Date: Tue, 24 Apr 2018 11:58:29 +0100 Subject: [PATCH] Add build script for Android cross compilation --- android_build_all.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 android_build_all.sh diff --git a/android_build_all.sh b/android_build_all.sh new file mode 100755 index 00000000..61430482 --- /dev/null +++ b/android_build_all.sh @@ -0,0 +1,4 @@ +# This will eventually become a complete build script, not just for Android +cargo build -p mentat_ffi --target i686-linux-android --release +cargo build -p mentat_ffi --target armv7-linux-androideabi --release +cargo build -p mentat_ffi --target aarch64-linux-android --release