about summary refs log tree commit diff
path: root/sysdeps/arc/preconfigure
blob: a79db0239ae635a8375d08a4dec5fc68ad9b2630 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
case "$machine" in
arc*)
  base_machine=arc
  machine=arc

  gccfloat=`$CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | grep __ARC_FPU_| wc -l`
  if test "$gccfloat" != "0"; then
    with_fp_cond=1
  else
    with_fp_cond=0
  fi
  ;;

esac