1. diff --git a/tools/configure b/tools/configure
  2. index 7c41a0b..b7ef9a2 100755
  3. --- a/tools/configure
  4. +++ b/tools/configure
  5. @@ -40,7 +40,12 @@ prefixtools () {
  6.  }
  7.  
  8.  findarmgcc() {
  9. -  if [ "$ARG_ARM_EABI" = "1" ]; then
  10. +  # remove modelname checks when all ARM are changed to eabi
  11. +  if [ "$ARG_ARM_EABI" = "1" ] \
  12. +        || [ -z "$ARG_ARM_EABI" ] \
  13. +        && ( [ "$modelname" = "sansafuzev2" ] \
  14. +            || [ "$modelname" = "sansafuze" ] \
  15. +            || [ "$modelname" = "sansaclip" ] ); then
  16.      prefixtools arm-elf-eabi-
  17.      gccchoice="4.4.4"
  18.    else