2017-08-05 15:19:56 +00:00
|
|
|
From 68a8eb8f3bbc254cd5cb685f058bc5b0ef1029e7 Mon Sep 17 00:00:00 2001
|
2016-11-22 22:21:33 +00:00
|
|
|
From: Nicolas Ojeda Bar <n.oje.bar@gmail.com>
|
|
|
|
Date: Tue, 8 Nov 2016 23:56:50 +0100
|
2017-08-05 15:19:56 +00:00
|
|
|
Subject: [PATCH 07/12] Adapt config.guess for RISC-V
|
2016-11-22 22:21:33 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
config/gnu/config.guess | 5 ++++-
|
|
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/config/gnu/config.guess b/config/gnu/config.guess
|
2017-05-10 11:50:40 +00:00
|
|
|
index b79252d6b..8335398b2 100755
|
2016-11-22 22:21:33 +00:00
|
|
|
--- a/config/gnu/config.guess
|
|
|
|
+++ b/config/gnu/config.guess
|
|
|
|
@@ -2,7 +2,7 @@
|
|
|
|
# Attempt to guess a canonical system name.
|
|
|
|
# Copyright 1992-2013 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
-timestamp='2013-06-10'
|
|
|
|
+timestamp='2016-10-23'
|
|
|
|
|
|
|
|
# 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
|
|
|
|
@@ -1001,6 +1001,9 @@ EOF
|
|
|
|
ppcle:Linux:*:*)
|
|
|
|
echo powerpcle-unknown-linux-${LIBC}
|
|
|
|
exit ;;
|
|
|
|
+ riscv*:Linux:*:*)
|
|
|
|
+ echo ${UNAME_MACHINE}-unknown-linux
|
|
|
|
+ exit ;;
|
|
|
|
s390:Linux:*:* | s390x:Linux:*:*)
|
|
|
|
echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
|
|
|
|
exit ;;
|
|
|
|
--
|
2017-06-26 09:53:06 +00:00
|
|
|
2.13.1
|
2016-11-22 22:21:33 +00:00
|
|
|
|