[oe-commits] [openembedded-core] 01/03: meson.bbclass: map mips64el TARGET_ARCH to mips64 for the cross file

git at git.openembedded.org git at git.openembedded.org
Sat Dec 8 10:47:13 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2ccf83d6cfa428f74375e80b2e1e6d38feaba1bd
Author: Andrea Adami <andrea.adami at gmail.com>
AuthorDate: Sat Dec 8 00:23:23 2018 +0100

    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.
    
    Signed-off-by: Andrea Adami <andrea.adami at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/meson.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass
index 3cbdcf1..f01f6e3 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:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list