From 24ac7aa93124e90e585e0f57de306d0efcde4526 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sun, 2 Feb 2014 19:09:03 +0100 Subject: [PATCH] Added --target=arm-apple-darwin10 --- src/build/compile.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/build/compile.sh b/src/build/compile.sh index b443f5d38..25d4f44da 100755 --- a/src/build/compile.sh +++ b/src/build/compile.sh @@ -96,9 +96,11 @@ elif [ "$1" == "crosscompile" ]; then elif [ "$2" == "ios" ] || [ "$2" == "ios-armv6" ]; then [ -z "$march" ] && march=armv6; [ -z "$mtune" ] && mtune=generic-armv6; + CONFIGURE_FLAGS="--target=arm-apple-darwin10" elif [ "$2" == "ios-armv7" ]; then [ -z "$march" ] && march=armv7-a; [ -z "$mtune" ] && mtune=generic-armv7-a; + CONFIGURE_FLAGS="--target=arm-apple-darwin10" else echo "Please supply a proper platform [android android-armv6 android-armv7 rpi mac ios ios-armv6 ios-armv7] to cross-compile" exit 1