summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/elf.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py
index df0a4593fa..46c884a775 100644
--- a/meta/lib/oe/elf.py
+++ b/meta/lib/oe/elf.py
@@ -61,6 +61,14 @@ def machine_dict(d):
61 "microblaze": (189, 0, 0, False, 32), 61 "microblaze": (189, 0, 0, False, 32),
62 "microblazeel":(189, 0, 0, True, 32), 62 "microblazeel":(189, 0, 0, True, 32),
63 }, 63 },
64 "linux-android" : {
65 "aarch64" : (183, 0, 0, True, 64),
66 "i686": ( 3, 0, 0, True, 32),
67 "x86_64": (62, 0, 0, True, 64),
68 },
69 "linux-androideabi" : {
70 "arm" : (40, 97, 0, True, 32),
71 },
64 "linux-musl" : { 72 "linux-musl" : {
65 "aarch64" : (183, 0, 0, True, 64), 73 "aarch64" : (183, 0, 0, True, 64),
66 "aarch64_be" :(183, 0, 0, False, 64), 74 "aarch64_be" :(183, 0, 0, False, 64),