Skip to content

Commit

Permalink
Update config.guess and config.sub
Browse files Browse the repository at this point in the history
	* config.guess: Sync with upstream version 2018-06-26.
	* config.sub: Sync with upstream version 2018-07-02.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@262466 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
sh committed Jul 6, 2018
1 parent 2d9d0cc commit 141b6cc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>

* config.guess: Sync with upstream version 2018-06-26.
* config.sub: Sync with upstream version 2018-07-02.

2018-06-19 Bernhard M. Wiedemann <bwiedemann@suse.de>

* libtool.m4: Sort output of 'find' to enable deterministic builds.
Expand Down
6 changes: 3 additions & 3 deletions config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2018 Free Software Foundation, Inc.

timestamp='2018-05-19'
timestamp='2018-06-26'

# 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
Expand Down Expand Up @@ -894,8 +894,8 @@ EOF
# other systems with GNU libc and userland
echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
exit ;;
i*86:Minix:*:*)
echo "$UNAME_MACHINE"-pc-minix
*:Minix:*:*)
echo "$UNAME_MACHINE"-unknown-minix
exit ;;
aarch64:Linux:*:*)
echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
Expand Down
8 changes: 7 additions & 1 deletion config.sub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Configuration validation subroutine script.
# Copyright 1992-2018 Free Software Foundation, Inc.

timestamp='2018-05-24'
timestamp='2018-07-02'

# 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
Expand Down Expand Up @@ -1125,6 +1125,12 @@ case $basic_machine in
ps2)
basic_machine=i386-ibm
;;
riscv)
basic_machine=riscv32-unknown
;;
riscv-*)
basic_machine=`echo "$basic_machine" | sed 's/^riscv/riscv32/'`
;;
rm[46]00)
basic_machine=mips-siemens
;;
Expand Down

0 comments on commit 141b6cc

Please sign in to comment.