diff options
author | Serhey Popovych <serhe.popovych@gmail.com> | 2018-12-14 19:54:30 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-15 17:10:51 +0000 |
commit | 71ec61ed7a584e2a0d12deb9c6607ab29f2287eb (patch) | |
tree | bf5c45fce3b94905f91cb21193ec5cd9712b6b88 | |
parent | 217035f0982bd6e800e5631d54b49be9623cb1f8 (diff) | |
download | poky-71ec61ed7a584e2a0d12deb9c6607ab29f2287eb.tar.gz |
lib/oe/elf.py: Add powerpc64 architecture definition for musl
Add the ELF definition for the powerpc64 architecture when building
with musl as libc.
(From OE-Core rev: 2c09ab40fd92a49d16352639331db9c7e5171515)
Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oe/elf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py index 0ed59ae05c..4cc9a9a097 100644 --- a/meta/lib/oe/elf.py +++ b/meta/lib/oe/elf.py | |||
@@ -63,6 +63,7 @@ def machine_dict(d): | |||
63 | "arm" : ( 40, 97, 0, True, 32), | 63 | "arm" : ( 40, 97, 0, True, 32), |
64 | "armeb": ( 40, 97, 0, False, 32), | 64 | "armeb": ( 40, 97, 0, False, 32), |
65 | "powerpc": ( 20, 0, 0, False, 32), | 65 | "powerpc": ( 20, 0, 0, False, 32), |
66 | "powerpc64": ( 21, 0, 0, False, 64), | ||
66 | "i386": ( 3, 0, 0, True, 32), | 67 | "i386": ( 3, 0, 0, True, 32), |
67 | "i486": ( 3, 0, 0, True, 32), | 68 | "i486": ( 3, 0, 0, True, 32), |
68 | "i586": ( 3, 0, 0, True, 32), | 69 | "i586": ( 3, 0, 0, True, 32), |