aboutsummaryrefslogtreecommitdiff
path: root/depends/config.guess
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2017-01-04 17:34:27 +0800
committerfanquake <fanquake@gmail.com>2017-01-11 08:44:01 +0800
commit8ac18303da0776e25e98b2c1c952aa54091a0690 (patch)
tree397a1cef78421444b22629d4cad40765da2587a6 /depends/config.guess
parent649cf5fe894b3f2db93d99392239c1405921c02e (diff)
downloadbitcoin-8ac18303da0776e25e98b2c1c952aa54091a0690.tar.xz
[depends] Latest config.guess and config.sub
Diffstat (limited to 'depends/config.guess')
-rwxr-xr-xdepends/config.guess12
1 files changed, 9 insertions, 3 deletions
diff --git a/depends/config.guess b/depends/config.guess
index c4bd827a7b..bbd48b60e8 100755
--- a/depends/config.guess
+++ b/depends/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 ;;