Browse Source

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 <serhe.popovych@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Serhey Popovych 5 years ago
parent
commit
2c09ab40fd
1 changed files with 1 additions and 0 deletions
  1. 1 0
      meta/lib/oe/elf.py

+ 1 - 0
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),