[oe-commits] [openembedded-core] 10/17: cross-canadian: update GNU name for ILP32 triplet

git at git.openembedded.org git at git.openembedded.org
Tue Jan 2 22:39:54 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 d09aa58922e5251917dc5c79af7079f0d1dbb294
Author: Daniel Díaz <daniel.diaz at linaro.org>
AuthorDate: Mon Nov 13 12:06:25 2017 -0600

    cross-canadian: update GNU name for ILP32 triplet
    
    As discussed and agreed in Linaro Connect Budapest 2017 [1],
    the GNU name for ARM64 with 32-bit ABI has been changed, e.g.,
    from:
      aarch64_ilp32-linux-gnu
    to:
      aarch64-linux-gnu_ilp32
    
    The current code has "ilp32" as an OS variant; this change
    updates that variant to include the underscore in order to
    match the agreed convention.
    
    More information about ARM64 ILP32 can be found here:
    * https://wiki.debian.org/Arm64ilp32Port
    * https://wiki.linaro.org/Platform/arm64-ilp32
    
    [1] https://lists.linaro.org/pipermail/cross-distro/2017-March/000864.html
    
    Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/cross-canadian.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
index 1928455..cce09c9 100644
--- a/meta/classes/cross-canadian.bbclass
+++ b/meta/classes/cross-canadian.bbclass
@@ -38,7 +38,7 @@ python () {
     extralibcs = [""]
     if "musl" in d.getVar("BASECANADIANEXTRAOS"):
         extralibcs.append("musl")
-    for variant in ["", "spe", "x32", "eabi", "n32", "ilp32"]:
+    for variant in ["", "spe", "x32", "eabi", "n32", "_ilp32"]:
         for libc in extralibcs:
             entry = "linux"
             if variant and libc:

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


More information about the Openembedded-commits mailing list