summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Díaz <daniel.diaz@linaro.org>2017-11-13 12:06:25 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-03 09:26:37 +0000
commit31e762865678f2d16d8ec0ee5ad91a7dab6bf8fb (patch)
treee60ab6e50cb4ba8cb16b84c2745a8d18c8dec0d1
parent5ccae89a4aba55102ad50bc61cd6f675b2da45f1 (diff)
downloadpoky-31e762865678f2d16d8ec0ee5ad91a7dab6bf8fb.tar.gz
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 (From OE-Core rev: 3a599e9d9df4aee25b6aa887563ef833559d96f8) Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/cross-canadian.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
index 1928455cf7..cce09c93da 100644
--- a/meta/classes/cross-canadian.bbclass
+++ b/meta/classes/cross-canadian.bbclass
@@ -38,7 +38,7 @@ python () {
38 extralibcs = [""] 38 extralibcs = [""]
39 if "musl" in d.getVar("BASECANADIANEXTRAOS"): 39 if "musl" in d.getVar("BASECANADIANEXTRAOS"):
40 extralibcs.append("musl") 40 extralibcs.append("musl")
41 for variant in ["", "spe", "x32", "eabi", "n32", "ilp32"]: 41 for variant in ["", "spe", "x32", "eabi", "n32", "_ilp32"]:
42 for libc in extralibcs: 42 for libc in extralibcs:
43 entry = "linux" 43 entry = "linux"
44 if variant and libc: 44 if variant and libc: