Gentoo Archives: gentoo-dev

From: Matthias Maier <tamiko@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] [PATCH] toolchain-funcs.eclass: We only support little-endian Alpha
Date: Sat, 01 Jul 2017 12:48:43
Message-Id: 877ezs1fxh.fsf@kestrel.kyomu.43-1.org
In Reply to: [gentoo-dev] [PATCH] toolchain-funcs.eclass: We only support little-endian Alpha by James Le Cuirot
1 On Sat, Jul 1, 2017, at 03:55 CDT, James Le Cuirot <chewi@g.o> wrote:
2
3 > Funny that no one noticed this for 10 years. :) Thanks to klausman for
4 > clearing this up.
5 > ---
6 > eclass/toolchain-funcs.eclass | 2 +-
7 > 1 file changed, 1 insertion(+), 1 deletion(-)
8 >
9 > diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
10 > index 121db46e62b5..777fce905f3e 100644
11 > --- a/eclass/toolchain-funcs.eclass
12 > +++ b/eclass/toolchain-funcs.eclass
13 > @@ -572,7 +572,7 @@ tc-endian() {
14 > case ${host} in
15 > aarch64*be) echo big;;
16 > aarch64) echo little;;
17 > - alpha*) echo big;;
18 > + alpha*) echo little;;
19 > arm*b*) echo big;;
20 > arm*) echo little;;
21 > cris*) echo little;;
22
23 Acked.
24
25 Matthias