mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
toolchain-funcs.eclass: fix or1k* tuple detection
Before the change the only recognised CHOST was 'or1k'. After the change CHOSTs like 'or1k-linux-musl' are also recognised as 'openrisc'. Reported-by: adam@pimentel.space Bug: https://bugs.gentoo.org/763606 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
This commit is contained in:
@@ -27,7 +27,8 @@ test-tc-arch-kernel() {
|
||||
tbegin "tc-arch-kernel() (KV=2.6.30)"
|
||||
test-tc-arch-kernel 2.6.30 \
|
||||
i{3..6}86:x86 x86_64:x86 \
|
||||
powerpc{,64}:powerpc i{3..6}86-gentoo-freebsd:i386
|
||||
powerpc{,64}:powerpc i{3..6}86-gentoo-freebsd:i386 \
|
||||
or1k:openrisc or1k-linux-musl:openrisc
|
||||
tend $?
|
||||
|
||||
#
|
||||
|
||||
@@ -665,7 +665,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
|
||||
mips*) echo mips;;
|
||||
nios2*) echo nios2;;
|
||||
nios*) echo nios;;
|
||||
or1k|or32*) echo openrisc;;
|
||||
or1k*|or32*) echo openrisc;;
|
||||
powerpc*)
|
||||
# Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees
|
||||
# have been unified into simply 'powerpc', but until 2.6.16,
|
||||
|
||||
Reference in New Issue
Block a user