From: Andrea Adami Date: Fri, 7 Dec 2018 23:23:23 +0000 (+0100) Subject: meson.bbclass: map mips64el TARGET_ARCH to mips64 for the cross file X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c6751ee7a36dfce8a6cfe7acc77624e69d65546;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass index 3cbdcf18c20..f01f6e35652 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: