diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-05 21:13:32 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-05 21:13:32 +0200 |
commit | ebe7330c39ce5e8a8be3ef8f66417cf4b68c7a1f (patch) | |
tree | 0695d06483ccfa4b675522fbdebdfccc15747b1d /config.guess | |
parent | 89ddac3e53fa2c74cdad8bb601293870ecd3324c (diff) | |
parent | bead834de8c5411c771b428a03f7f61045799b58 (diff) | |
download | egawk-ebe7330c39ce5e8a8be3ef8f66417cf4b68c7a1f.tar.gz egawk-ebe7330c39ce5e8a8be3ef8f66417cf4b68c7a1f.tar.bz2 egawk-ebe7330c39ce5e8a8be3ef8f66417cf4b68c7a1f.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config.guess b/config.guess index c4bd827a..bbd48b60 100755 --- a/config.guess +++ b/config.guess @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2016-05-15' +timestamp='2017-01-01' # 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 @@ -50,7 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -1000,6 +1000,9 @@ EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; + mips64el:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; @@ -1032,6 +1035,9 @@ EOF ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; + riscv32:Linux:*:* | riscv64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; |