Skip to content

Commit 7d92c6f

Browse files
committed
[depends] Latest config.guess and config.sub
1 parent 22d8700 commit 7d92c6f

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

depends/config.guess

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Attempt to guess a canonical system name.
33
# Copyright 1992-2017 Free Software Foundation, Inc.
44

5-
timestamp='2017-01-01'
5+
timestamp='2017-03-05'
66

77
# This file is free software; you can redistribute it and/or modify it
88
# under the terms of the GNU General Public License as published by
@@ -837,10 +837,11 @@ EOF
837837
UNAME_PROCESSOR=`/usr/bin/uname -p`
838838
case ${UNAME_PROCESSOR} in
839839
amd64)
840-
echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
841-
*)
842-
echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
840+
UNAME_PROCESSOR=x86_64 ;;
841+
i386)
842+
UNAME_PROCESSOR=i586 ;;
843843
esac
844+
echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
844845
exit ;;
845846
i*:CYGWIN*:*)
846847
echo ${UNAME_MACHINE}-pc-cygwin
@@ -1343,6 +1344,9 @@ EOF
13431344
NSR-?:NONSTOP_KERNEL:*:*)
13441345
echo nsr-tandem-nsk${UNAME_RELEASE}
13451346
exit ;;
1347+
NSX-?:NONSTOP_KERNEL:*:*)
1348+
echo nsx-tandem-nsk${UNAME_RELEASE}
1349+
exit ;;
13461350
*:NonStop-UX:*:*)
13471351
echo mips-compaq-nonstopux
13481352
exit ;;

depends/config.sub

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Configuration validation subroutine script.
33
# Copyright 1992-2017 Free Software Foundation, Inc.
44

5-
timestamp='2017-01-01'
5+
timestamp='2017-04-02'
66

77
# This file is free software; you can redistribute it and/or modify it
88
# under the terms of the GNU General Public License as published by
@@ -263,7 +263,7 @@ case $basic_machine in
263263
| fido | fr30 | frv | ft32 \
264264
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
265265
| hexagon \
266-
| i370 | i860 | i960 | ia64 \
266+
| i370 | i860 | i960 | ia16 | ia64 \
267267
| ip2k | iq2000 \
268268
| k1om \
269269
| le32 | le64 \
@@ -315,6 +315,7 @@ case $basic_machine in
315315
| ubicom32 \
316316
| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
317317
| visium \
318+
| wasm32 \
318319
| we32k \
319320
| x86 | xc16x | xstormy16 | xtensa \
320321
| z8k | z80)
@@ -388,7 +389,7 @@ case $basic_machine in
388389
| h8300-* | h8500-* \
389390
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
390391
| hexagon-* \
391-
| i*86-* | i860-* | i960-* | ia64-* \
392+
| i*86-* | i860-* | i960-* | ia16-* | ia64-* \
392393
| ip2k-* | iq2000-* \
393394
| k1om-* \
394395
| le32-* | le64-* \
@@ -446,6 +447,7 @@ case $basic_machine in
446447
| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
447448
| vax-* \
448449
| visium-* \
450+
| wasm32-* \
449451
| we32k-* \
450452
| x86-* | x86_64-* | xc16x-* | xps100-* \
451453
| xstormy16-* | xtensa*-* \
@@ -948,6 +950,9 @@ case $basic_machine in
948950
nsr-tandem)
949951
basic_machine=nsr-tandem
950952
;;
953+
nsx-tandem)
954+
basic_machine=nsx-tandem
955+
;;
951956
op50n-* | op60c-*)
952957
basic_machine=hppa1.1-oki
953958
os=-proelf
@@ -1243,6 +1248,9 @@ case $basic_machine in
12431248
basic_machine=a29k-wrs
12441249
os=-vxworks
12451250
;;
1251+
wasm32)
1252+
basic_machine=wasm32-unknown
1253+
;;
12461254
w65*)
12471255
basic_machine=w65-wdc
12481256
os=-none

0 commit comments

Comments
 (0)