Skip to content

Commit

Permalink
Merge pull request mevansam#17 from paleozogt/android-toolchain
Browse files Browse the repository at this point in the history
allow TOOLCHAIN_VERSION to be overridden
  • Loading branch information
mevansam committed Jan 30, 2013
2 parents 84287ba + 1d1db0d commit 6d7946d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build-droid/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ pushd $TMPDIR

export ANDROID_API_LEVEL="14"
export ARM_TARGET="armv7"
export TOOLCHAIN_VERSION="4.7"

if [ -z $TOOLCHAIN_VERSION ]
then
export TOOLCHAIN_VERSION="4.7"
fi

# Platforms to build for (changing this may break the build)
PLATFORMS="arm-linux-androideabi"
Expand Down

0 comments on commit 6d7946d

Please sign in to comment.