summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/elf.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/elf.py')
-rw-r--r--meta/lib/oe/elf.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py
index df0a4593fa..eab2349a4f 100644
--- a/meta/lib/oe/elf.py
+++ b/meta/lib/oe/elf.py
@@ -1,4 +1,6 @@
1# 1#
2# Copyright OpenEmbedded Contributors
3#
2# SPDX-License-Identifier: GPL-2.0-only 4# SPDX-License-Identifier: GPL-2.0-only
3# 5#
4 6
@@ -19,6 +21,7 @@ def machine_dict(d):
19 "x86_64": (62, 0, 0, True, 64), 21 "x86_64": (62, 0, 0, True, 64),
20 "epiphany": (4643, 0, 0, True, 32), 22 "epiphany": (4643, 0, 0, True, 32),
21 "lm32": (138, 0, 0, False, 32), 23 "lm32": (138, 0, 0, False, 32),
24 "loongarch64":(258, 0, 0, True, 64),
22 "mips": ( 8, 0, 0, False, 32), 25 "mips": ( 8, 0, 0, False, 32),
23 "mipsel": ( 8, 0, 0, True, 32), 26 "mipsel": ( 8, 0, 0, True, 32),
24 "microblaze": (189, 0, 0, False, 32), 27 "microblaze": (189, 0, 0, False, 32),
@@ -43,6 +46,7 @@ def machine_dict(d):
43 "ia64": (50, 0, 0, True, 64), 46 "ia64": (50, 0, 0, True, 64),
44 "alpha": (36902, 0, 0, True, 64), 47 "alpha": (36902, 0, 0, True, 64),
45 "hppa": (15, 3, 0, False, 32), 48 "hppa": (15, 3, 0, False, 32),
49 "loongarch64":(258, 0, 0, True, 64),
46 "m68k": ( 4, 0, 0, False, 32), 50 "m68k": ( 4, 0, 0, False, 32),
47 "mips": ( 8, 0, 0, False, 32), 51 "mips": ( 8, 0, 0, False, 32),
48 "mipsel": ( 8, 0, 0, True, 32), 52 "mipsel": ( 8, 0, 0, True, 32),
@@ -61,6 +65,14 @@ def machine_dict(d):
61 "microblaze": (189, 0, 0, False, 32), 65 "microblaze": (189, 0, 0, False, 32),
62 "microblazeel":(189, 0, 0, True, 32), 66 "microblazeel":(189, 0, 0, True, 32),
63 }, 67 },
68 "linux-android" : {
69 "aarch64" : (183, 0, 0, True, 64),
70 "i686": ( 3, 0, 0, True, 32),
71 "x86_64": (62, 0, 0, True, 64),
72 },
73 "linux-androideabi" : {
74 "arm" : (40, 97, 0, True, 32),
75 },
64 "linux-musl" : { 76 "linux-musl" : {
65 "aarch64" : (183, 0, 0, True, 64), 77 "aarch64" : (183, 0, 0, True, 64),
66 "aarch64_be" :(183, 0, 0, False, 64), 78 "aarch64_be" :(183, 0, 0, False, 64),