[oe-commits] [openembedded-core] branch master-next updated: meson: map powerpc64 TARGET_ARCH to ppc64 for the cross file

git at git.openembedded.org git at git.openembedded.org
Mon Oct 29 17:04:20 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.

The following commit(s) were added to refs/heads/master-next by this push:
     new eccd541  meson: map powerpc64 TARGET_ARCH to ppc64 for the cross file
eccd541 is described below

commit eccd5414c37be26df63a90154c1808f6f5618b7d
Author: Victor Kamensky <kamensky at cisco.com>
AuthorDate: Mon Oct 29 07:32:54 2018 -0700

    meson: map powerpc64 TARGET_ARCH to ppc64 for the cross file
    
    Meson uses 'ppc64' for 64 bit powerpc. Issue came up while
    building systemd for MACHINE that uses ppc64e5500 tune.
    
    Signed-off-by: Victor Kamensky <kamensky at cisco.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 7e63e12..3cbdcf1 100644
--- a/meta/classes/meson.bbclass
+++ b/meta/classes/meson.bbclass
@@ -52,6 +52,8 @@ def meson_cpu_family(var, d):
     arch = d.getVar(var)
     if arch == 'powerpc':
         return 'ppc'
+    elif arch == 'powerpc64':
+        return 'ppc64'
     elif arch == 'mipsel':
         return 'mips'
     elif re.match(r"i[3-6]86", arch):

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


More information about the Openembedded-commits mailing list