mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 01:21:06 +00:00
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
|