1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Rafaël Carré 2010-06-11 12:16:19 +00:00
parent b14c96df56
commit ba6d1b66f0

5
tools/configure vendored
View file

@ -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