36 lines
1.0 KiB
Diff
36 lines
1.0 KiB
Diff
From 427232f0f36bfcaafcb1ec2f8da3d1daad0b1121 Mon Sep 17 00:00:00 2001
|
|
From: Nicolas Ojeda Bar <n.oje.bar@gmail.com>
|
|
Date: Tue, 8 Nov 2016 23:56:50 +0100
|
|
Subject: [PATCH 06/10] Adapt config.guess for RISC-V
|
|
|
|
---
|
|
config/gnu/config.guess | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/config/gnu/config.guess b/config/gnu/config.guess
|
|
index b79252d..8335398 100755
|
|
--- 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 ;;
|
|
--
|
|
2.9.3
|
|
|