diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-11 12:16:19 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-11 12:16:19 +0000 |
| commit | ba6d1b66f0fb2684735c74adf30c8be693221318 (patch) | |
| tree | bd60030921e850749aa72909ca2c16cea4a7e957 /tools | |
| parent | b14c96df56fc0c26d2c75593e0f9b68d6348d62c (diff) | |
| download | rockbox-ba6d1b66f0fb2684735c74adf30c8be693221318.zip rockbox-ba6d1b66f0fb2684735c74adf30c8be693221318.tar.gz rockbox-ba6d1b66f0fb2684735c74adf30c8be693221318.tar.bz2 rockbox-ba6d1b66f0fb2684735c74adf30c8be693221318.tar.xz | |
Warn when building an ARM target with non-eabi default compiler
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26773 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 494ace4..b7d1741 100755 --- a/tools/configure +++ b/tools/configure @@ -45,6 +45,11 @@ findarmgcc() { for model in $models_not_checked_with_eabi; do if [ "$modelname" = "$model" ]; then ARG_ARM_EABI="0" + echo "**************************************************************" + echo "**** Target $modelname is using non EABI compiler !" + echo "**** Please test a build with --eabi and enable" + echo "**** EABI compiler for this target" + echo "**************************************************************" fi done fi |