mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
machine_dict: Add i686 to the ELF machine dictionary
An error like the following is thrown when building
baremetal applications on some x86 architectures:
(machine, osabi, abiversion, littleendian, bits) \
= oe.elf.machine_dict(d)[target_os][target_arch]
Exception: KeyError: i686
Since the i686 (target_arch) key does not exist in the dictionary.
Add the key to fix the error.
(From OE-Core rev: e7862d2cdd478556ec0310d2b3c140da9cb2ff0b)
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1471a16b2e
commit
0f9ba4d7a0
@@ -15,6 +15,7 @@ def machine_dict(d):
|
||||
"aarch64" : (183, 0, 0, True, 64),
|
||||
"aarch64_be" :(183, 0, 0, False, 64),
|
||||
"i586" : (3, 0, 0, True, 32),
|
||||
"i686" : (3, 0, 0, True, 32),
|
||||
"x86_64": (62, 0, 0, True, 64),
|
||||
"epiphany": (4643, 0, 0, True, 32),
|
||||
"lm32": (138, 0, 0, False, 32),
|
||||
|
||||
Reference in New Issue
Block a user