From: Xiaotian Wu Date: Fri, 7 Mar 2025 09:46:27 +0000 (+0800) Subject: lib/oe/elf.py: Add loongarch64 architecture definition for musl X-Git-Tag: yocto-5.2~298 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6498e4ca43dc2f8bc326bc6b6dbc8fd7f0bef79;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git lib/oe/elf.py: Add loongarch64 architecture definition for musl Add the ELF definition for the loongarch64 architecture when building with musl as libc. Signed-off-by: Xiaotian Wu Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py index e1bc7b89846..9794453092c 100644 --- a/meta/lib/oe/elf.py +++ b/meta/lib/oe/elf.py @@ -88,6 +88,7 @@ def machine_dict(d): "i586": ( 3, 0, 0, True, 32), "i686": ( 3, 0, 0, True, 32), "x86_64": ( 62, 0, 0, True, 64), + "loongarch64":( 258, 0, 0, True, 64), "mips": ( 8, 0, 0, False, 32), "mipsel": ( 8, 0, 0, True, 32), "mips64": ( 8, 0, 0, False, 64),