mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
0be8ae3679
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
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
|