[oe-commits] [meta-openembedded] 38/64: nodejs: Add support for building on ppc64le

git at git.openembedded.org git at git.openembedded.org
Fri Mar 2 00:22:31 UTC 2018


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

armin_kuster pushed a commit to branch master
in repository meta-openembedded.

commit 74880c14647f3d875e18ea4eea4081419f82e021
Author: Gunnar Mills <gmills at linux.vnet.ibm.com>
AuthorDate: Fri Feb 16 14:41:46 2018 -0600

    nodejs: Add support for building on ppc64le
    
    ppc64le is a little-endian mode of ppc64.
    Nodejs determines the endianness of the system and
    since it already supports bi-endian ppc64, just pass
    nodejs "ppc64" when the TARGET_ARCH is ppc64le.
    
    Signed-off-by: Gunnar Mills <gmills at linux.vnet.ibm.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-devtools/nodejs/nodejs_8.9.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_8.9.0.bb b/meta-oe/recipes-devtools/nodejs/nodejs_8.9.0.bb
index 1cab6a4..3806aac 100644
--- a/meta-oe/recipes-devtools/nodejs/nodejs_8.9.0.bb
+++ b/meta-oe/recipes-devtools/nodejs/nodejs_8.9.0.bb
@@ -26,7 +26,7 @@ def map_nodejs_arch(a, d):
     if   re.match('i.86$', a): return 'ia32'
     elif re.match('x86_64$', a): return 'x64'
     elif re.match('aarch64$', a): return 'arm64'
-    elif re.match('powerpc64$', a): return 'ppc64'
+    elif re.match('(powerpc64|ppc64le)$', a): return 'ppc64'
     elif re.match('powerpc$', a): return 'ppc'
     return a
 

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


More information about the Openembedded-commits mailing list