diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-01-18 11:41:18 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-19 23:49:39 +0000 |
commit | bf2b73e1f38826709ba6014ecabc45c01c70bd22 (patch) | |
tree | 88b1e71cb5e7679a3ed7f552a8ef72b1f0f441b3 /meta/classes/libc-package.bbclass | |
parent | 1b1a533133e68b1850cd4194d51b53e819fa9183 (diff) | |
download | poky-bf2b73e1f38826709ba6014ecabc45c01c70bd22.tar.gz |
classes, conf, lib: Add support for powerpc64le
LE is default for modern powerpc64, power8+
PowerPC64 Little Endian Linux ABI specifies Power8 as the minimum ISA.
The basic ABI can run on earlier versions of the 64 bit PowerPC ISA,
but it was helpful to define a new, minimum instruction set for Linux
distribution releases during the switch to Little Endian.
(From OE-Core rev: b9c73fb6d1afb3367d871a3d6bf7d0d6a53968a9)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/libc-package.bbclass')
-rw-r--r-- | meta/classes/libc-package.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index de816bcec1..de3b4250c7 100644 --- a/meta/classes/libc-package.bbclass +++ b/meta/classes/libc-package.bbclass | |||
@@ -248,6 +248,7 @@ python package_do_split_gconvs () { | |||
248 | "sh4": " --uint32-align=4 --big-endian ", \ | 248 | "sh4": " --uint32-align=4 --big-endian ", \ |
249 | "powerpc": " --uint32-align=4 --big-endian ", \ | 249 | "powerpc": " --uint32-align=4 --big-endian ", \ |
250 | "powerpc64": " --uint32-align=4 --big-endian ", \ | 250 | "powerpc64": " --uint32-align=4 --big-endian ", \ |
251 | "powerpc64le": " --uint32-align=4 --little-endian ", \ | ||
251 | "mips": " --uint32-align=4 --big-endian ", \ | 252 | "mips": " --uint32-align=4 --big-endian ", \ |
252 | "mipsisa32r6": " --uint32-align=4 --big-endian ", \ | 253 | "mipsisa32r6": " --uint32-align=4 --big-endian ", \ |
253 | "mips64": " --uint32-align=4 --big-endian ", \ | 254 | "mips64": " --uint32-align=4 --big-endian ", \ |