From ba6d1b66f0fb2684735c74adf30c8be693221318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Fri, 11 Jun 2010 12:16:19 +0000 Subject: [PATCH] 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 --- tools/configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/configure b/tools/configure index 494ace45a8..b7d17411b4 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