diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2018-09-21 06:27:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-21 08:15:19 -0700 |
commit | d14f86f39a25649c923deecc24a283ba968b13f5 (patch) | |
tree | e72da91cc792951cbd406c9584f5650773f1b784 /meta | |
parent | f8d7394f314041de7bcbf06ccb6405f64c68fad0 (diff) | |
download | openembedded-core-d14f86f39a25649c923deecc24a283ba968b13f5.tar.gz openembedded-core-d14f86f39a25649c923deecc24a283ba968b13f5.tar.bz2 openembedded-core-d14f86f39a25649c923deecc24a283ba968b13f5.zip |
lib/oe/elf.py: Add LatticeMico32 architecture definition
Add the ELF definition for the LaticeMico32 architecture. This
architecture is 'elf' OS only as it does not target Linux.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/elf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py index e63d268c35..0ed59ae05c 100644 --- a/meta/lib/oe/elf.py +++ b/meta/lib/oe/elf.py @@ -13,6 +13,7 @@ def machine_dict(d): "i586" : (3, 0, 0, True, 32), "x86_64": (62, 0, 0, True, 64), "epiphany": (4643, 0, 0, True, 32), + "lm32": (138, 0, 0, False, 32), "mips": ( 8, 0, 0, False, 32), "mipsel": ( 8, 0, 0, True, 32), "microblaze": (189, 0, 0, False, 32), |