From cf1c2b363307c750939287c9bdc50aff9c2be71a Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sat, 1 Feb 2014 13:19:42 +0100 Subject: [PATCH] nope --- src/build/compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build/compile.sh b/src/build/compile.sh index 1f18b9b94..8f11b7c7c 100755 --- a/src/build/compile.sh +++ b/src/build/compile.sh @@ -58,7 +58,7 @@ elif [ "$1" == "crosscompile" ]; then COMPILE_FOR_ANDROID=yes [ -z "$march" ] && march=armv6; [ -z "$mtune" ] && mtune=generic-armv6; - TOOLCHAIN_PREFIX="arm-none-linux-uclibceabi" + TOOLCHAIN_PREFIX="arm-none-linux-gnueabi" export CC="$TOOLCHAIN_PREFIX-gcc" CONFIGURE_FLAGS="--host=$TOOLCHAIN_PREFIX --enable-static-link" CFLAGS="-uclibc --static $CFLAGS"; @@ -68,7 +68,7 @@ elif [ "$1" == "crosscompile" ]; then COMPILE_FOR_ANDROID=yes [ -z "$march" ] && march=armv7-a; [ -z "$mtune" ] && mtune=generic-armv7-a; - TOOLCHAIN_PREFIX="arm-none-linux-uclibceabi" + TOOLCHAIN_PREFIX="arm-none-linux-gnueabi" export CC="$TOOLCHAIN_PREFIX-gcc" CONFIGURE_FLAGS="--host=$TOOLCHAIN_PREFIX --enable-static-link" CFLAGS="-uclibc --static $CFLAGS";