[OE-core] [OE-Core][PATCH 01/13] lib/oe/elf.py: Add powerpc64 architecture definition for musl
Serhey Popovych
serhe.popovych at gmail.com
Fri Dec 14 17:54:30 UTC 2018
Add the ELF definition for the powerpc64 architecture when building
with musl as libc.
Signed-off-by: Serhey Popovych <serhe.popovych at gmail.com>
---
meta/lib/oe/elf.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py
index 0ed59ae..4cc9a9a 100644
--- a/meta/lib/oe/elf.py
+++ b/meta/lib/oe/elf.py
@@ -63,6 +63,7 @@ def machine_dict(d):
"arm" : ( 40, 97, 0, True, 32),
"armeb": ( 40, 97, 0, False, 32),
"powerpc": ( 20, 0, 0, False, 32),
+ "powerpc64": ( 21, 0, 0, False, 64),
"i386": ( 3, 0, 0, True, 32),
"i486": ( 3, 0, 0, True, 32),
"i586": ( 3, 0, 0, True, 32),
--
2.7.4
More information about the Openembedded-core
mailing list