glibc/ports/sysdeps/arm/preconfigure

51 lines
1.1 KiB
Plaintext
Raw Normal View History

case "$machine" in
2005-10-10 15:29:32 +00:00
arm*)
base_machine=arm
case $config_os in
2011-05-09 14:10:56 +00:00
linux-gnueabi*)
2011-12-08 15:45:14 +00:00
# Lets ask the compiler which ARM family we've got
# Unfortunately it doesn't define any flags for implementations
# that you might pass to -mcpu or -mtune
# Note if you add patterns here you must ensure that
# an appropriate directory exists in sysdeps/arm
2011-12-08 15:45:14 +00:00
archcppflag=`echo "" |
$CC $CFLAGS $CPPFLAGS -E -dM - |
grep __ARM_ARCH |
sed -e 's/^#define //' -e 's/ .*//'`
case x$archcppflag in
x__ARM_ARCH_[89]*__)
machine=armv7
echo "Found compiler is configured for something newer than v7 - using v7"
;;
x__ARM_ARCH_7A__)
machine=armv7
echo "Found compiler is configured for $machine"
;;
x__ARM_ARCH_6T2__)
machine=armv6t2
echo "Found compiler is configured for $machine"
;;
*)
machine=arm
echo 2>&1 "arm/preconfigure: Did not find ARM architecture type; using default"
;;
esac
machine=arm/$machine
if [ "${CFLAGS+set}" != "set" ]; then
CFLAGS="-g -O2"
fi
CFLAGS="$CFLAGS -fno-unwind-tables"
2005-10-10 15:29:32 +00:00
;;
*)
echo "Old ABI no longer supported" 2>&1
exit 1
2005-10-10 15:29:32 +00:00
;;
esac
;;
esac