* [PATCH] meson.bbclass: map mips64el TARGET_ARCH to mips64 for the cross file
@ 2018-12-07 23:23 Andrea Adami
0 siblings, 0 replies; only message in thread
From: Andrea Adami @ 2018-12-07 23:23 UTC (permalink / raw)
To: openembedded-core
Meson uses 'mips64' for both big- and little-endian MIPS64 machines,
so map mips64el to mips64.
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
meta/classes/meson.bbclass | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass
index 3cbdcf18c2..f01f6e3565 100644
--- a/meta/classes/meson.bbclass
+++ b/meta/classes/meson.bbclass
@@ -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:
--
2.17.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-12-07 23:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-07 23:23 [PATCH] meson.bbclass: map mips64el TARGET_ARCH to mips64 for the cross file Andrea Adami
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox