Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 11 May 2019 16:27:32
Message-Id: 1557591988.841da5b1492396772efe8d80342e7f61f82b469b.dilfridge@gentoo
1 commit: 841da5b1492396772efe8d80342e7f61f82b469b
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Sat May 11 16:26:28 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat May 11 16:26:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=841da5b1
7
8 eclass: Add risc-v endianness information
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 eclass/toolchain-funcs.eclass | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
16 index 27324b0ca60..2e027015c68 100644
17 --- a/eclass/toolchain-funcs.eclass
18 +++ b/eclass/toolchain-funcs.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2018 Gentoo Foundation
21 +# Copyright 2002-2019 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: toolchain-funcs.eclass
25 @@ -695,6 +695,7 @@ tc-endian() {
26 mips*) echo big;;
27 powerpc*le) echo little;;
28 powerpc*) echo big;;
29 + riscv*) echo little;;
30 s390*) echo big;;
31 sh*b*) echo big;;
32 sh*) echo little;;