config.sub: Update to version 2010-05-21.
* config.sub: Update to version 2010-05-21. * config.guess: Update to version 2010-04-03. Also, move a changelog entry to correct ChangeLog. From-SVN: r159820
This commit is contained in:
parent
a13812e2c8
commit
1ab55d6970
4 changed files with 20 additions and 13 deletions
|
@ -1,10 +1,7 @@
|
|||
2010-05-24 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
Sandra Loosemore <sandra@codesourcery.com>
|
||||
2010-05-25 Maxim Kuvyrkov <maxim@codesourcery.com>
|
||||
|
||||
* config/arm/neon-testgen.ml: Use dg-add-options arm_neon.
|
||||
* doc/sourcebuild.texi (Effective-Target Keywords): Update arm_neon_ok
|
||||
description. Add arm_neon_fp16_ok.
|
||||
(Add Options): Add arm_neon and arm_neon_fp16.
|
||||
* config.sub: Update to version 2010-05-21.
|
||||
* config.guess: Update to version 2010-04-03.
|
||||
|
||||
2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
|
||||
|
||||
|
|
6
config.guess
vendored
6
config.guess
vendored
|
@ -4,7 +4,7 @@
|
|||
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
||||
# Free Software Foundation, Inc.
|
||||
|
||||
timestamp='2009-12-30'
|
||||
timestamp='2010-04-03'
|
||||
|
||||
# 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
|
||||
|
@ -92,7 +92,7 @@ if test $# != 0; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
trap 'exit 1' 1 2 15
|
||||
trap 'exit 1' HUP INT TERM
|
||||
|
||||
# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
|
||||
# compiler to aid in system detection is discouraged as it requires
|
||||
|
@ -106,7 +106,7 @@ trap 'exit 1' 1 2 15
|
|||
|
||||
set_cc_for_build='
|
||||
trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
|
||||
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
|
||||
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" HUP INT PIPE TERM ;
|
||||
: ${TMPDIR=/tmp} ;
|
||||
{ tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
|
||||
{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
|
||||
|
|
10
config.sub
vendored
10
config.sub
vendored
|
@ -4,7 +4,7 @@
|
|||
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
||||
# Free Software Foundation, Inc.
|
||||
|
||||
timestamp='2010-03-22'
|
||||
timestamp='2010-05-21'
|
||||
|
||||
# This file is (in principle) common to ALL GNU software.
|
||||
# The presence of a machine in this file suggests that SOME GNU software
|
||||
|
@ -124,8 +124,9 @@ esac
|
|||
# Here we must recognize all the valid KERNEL-OS combinations.
|
||||
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
|
||||
case $maybe_os in
|
||||
nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
|
||||
uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
|
||||
nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
|
||||
linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
|
||||
knetbsd*-gnu* | netbsd*-gnu* | \
|
||||
kopensolaris*-gnu* | \
|
||||
storm-chaos* | os2-emx* | rtmk-nova*)
|
||||
os=-$maybe_os
|
||||
|
@ -1307,7 +1308,8 @@ case $os in
|
|||
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
||||
| -chorusos* | -chorusrdb* | -cegcc* \
|
||||
| -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
||||
| -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
|
||||
| -mingw32* | -linux-gnu* | -linux-android* \
|
||||
| -linux-newlib* | -linux-uclibc* \
|
||||
| -uxpv* | -beos* | -mpeix* | -udk* \
|
||||
| -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
|
||||
| -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
|
||||
|
|
|
@ -75,6 +75,14 @@
|
|||
* Makefile.in: Fix reference to ada Make-lang.in.
|
||||
Remove support for LANG_MAKEFILES.
|
||||
|
||||
2010-05-24 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
Sandra Loosemore <sandra@codesourcery.com>
|
||||
|
||||
* config/arm/neon-testgen.ml: Use dg-add-options arm_neon.
|
||||
* doc/sourcebuild.texi (Effective-Target Keywords): Update arm_neon_ok
|
||||
description. Add arm_neon_fp16_ok.
|
||||
(Add Options): Add arm_neon and arm_neon_fp16.
|
||||
|
||||
2010-05-24 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* diagnostic.c: Don't include flags.h.
|
||||
|
|
Loading…
Add table
Reference in a new issue