From: Serhey Popovych Date: Fri, 14 Dec 2018 17:54:30 +0000 (+0200) Subject: lib/oe/elf.py: Add powerpc64 architecture definition for musl X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~15869 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c09ab40fd92a49d16352639331db9c7e5171515;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git lib/oe/elf.py: Add powerpc64 architecture definition for musl Add the ELF definition for the powerpc64 architecture when building with musl as libc. Signed-off-by: Serhey Popovych Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py index 0ed59ae05c1..4cc9a9a0972 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),