diff options
author | Michael Sparmann <theseven@rockbox.org> | 2010-02-21 12:47:21 +0000 |
---|---|---|
committer | Michael Sparmann <theseven@rockbox.org> | 2010-02-21 12:47:21 +0000 |
commit | 2ec0312353e7dfd27ef120aedf5876d92c0c6589 (patch) | |
tree | d079c05fdeb6d72b1c07b06b5bce31ed88c822cc /tools | |
parent | 8ecced28cb5b0f2461cbef051f93fb3e286994bb (diff) |
Make configure remember that it is supposed to use the EABI toolchain when make reconf is run
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24806 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 0d02ac6f7e..fcdd2dd236 100755 --- a/tools/configure +++ b/tools/configure @@ -2935,6 +2935,9 @@ fi if test -n "$ccache"; then cmdline="--ccache " fi +if [ "$ARG_ARM_EABI" = "1" ]; then + cmdline="$cmdline--eabi " +fi cmdline="$cmdline--target=\$(MODELNAME) --ram=\$(MEMORYSIZE) --rbdir=\$(RBDIR) --type=$btype$advopts" ### end of cmdline |