1case "$machine" in 2arc*) 3 base_machine=arc 4 machine=arc 5 6 gccfloat=`$CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | grep __ARC_FPU_| wc -l` 7 if test "$gccfloat" != "0"; then 8 with_fp_cond=1 9 else 10 with_fp_cond=0 11 fi 12 ;; 13 14esac 15