2011-05-11 Hector Oron <zumbi@debian.org>

Konstantinos Margaritis  <markos@debian.org>

	* config.guess (arm*:Linux:*:*): Add support for gnueabihf.
This commit is contained in:
Ben Elliston 2011-05-11 13:18:20 +10:00
parent 626f5d2f5e
commit 0783756885
2 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-05-11 Hector Oron <zumbi@debian.org>
Konstantinos Margaritis <markos@debian.org>
* config.guess (arm*:Linux:*:*): Add support for gnueabihf.
2011-03-31 Kirk Hays <khays@hayshaus.com> 2011-03-31 Kirk Hays <khays@hayshaus.com>
Ben Elliston <bje@gnu.org> Ben Elliston <bje@gnu.org>

10
config.guess vendored
View File

@ -4,7 +4,7 @@
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
# 2011 Free Software Foundation, Inc. # 2011 Free Software Foundation, Inc.
timestamp='2011-02-02' timestamp='2011-05-11'
# This file is free software; you can redistribute it and/or modify it # This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by # under the terms of the GNU General Public License as published by
@ -882,7 +882,13 @@ EOF
then then
echo ${UNAME_MACHINE}-unknown-linux-gnu echo ${UNAME_MACHINE}-unknown-linux-gnu
else else
echo ${UNAME_MACHINE}-unknown-linux-gnueabi if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
| grep -q __ARM_PCS_VFP
then
echo ${UNAME_MACHINE}-unknown-linux-gnueabi
else
echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
fi
fi fi
exit ;; exit ;;
avr32*:Linux:*:*) avr32*:Linux:*:*)