mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 06:32:12 +02:00
meson.bbclass: map mips64el TARGET_ARCH to mips64 for the cross file
Meson uses 'mips64' for both big- and little-endian MIPS64 machines, so map mips64el to mips64. (From OE-Core rev: 8d1023f222f32ef64d37c3cb15b7dcf9c3e5990d) Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a9093bc81b
commit
3c6751ee7a
@@ -56,6 +56,8 @@ def meson_cpu_family(var, d):
|
||||
return 'ppc64'
|
||||
elif arch == 'mipsel':
|
||||
return 'mips'
|
||||
elif arch == 'mips64el':
|
||||
return 'mips64'
|
||||
elif re.match(r"i[3-6]86", arch):
|
||||
return "x86"
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user