From 5ee2ad6a174a8cad19b5dd0442ae98bac34b08da Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Tue, 20 Aug 2013 17:45:32 +0200 Subject: [PATCH] Added generic-armv7-a to compile script --- src/build/compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/compile.sh b/src/build/compile.sh index 2986c8c51..9f86365da 100755 --- a/src/build/compile.sh +++ b/src/build/compile.sh @@ -46,7 +46,7 @@ elif [ "$1" == "crosscompile" ]; then elif [ "$2" == "android-armv7" ]; then COMPILE_FOR_ANDROID=yes [ -z "$march" ] && march=armv7; - [ -z "$mtune" ] && mtune=generic; + [ -z "$mtune" ] && mtune=generic-armv7-a; TOOLCHAIN_PREFIX="arm-none-linux-gnueabi" export CC="$TOOLCHAIN_PREFIX-gcc" CONFIGURE_FLAGS="--host=$TOOLCHAIN_PREFIX"