From e3ef21625829a2f281045216d47edb952ade5bdb Mon Sep 17 00:00:00 2001 From: Wenyong Huang Date: Mon, 13 Dec 2021 17:49:21 +0800 Subject: [PATCH] Add mipsel to wamrc supported target list (#887) Add "mipsel" (mips little endian) to wamrc supported target list --- core/iwasm/compilation/aot_llvm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/iwasm/compilation/aot_llvm.c b/core/iwasm/compilation/aot_llvm.c index 139b47b3..a1fe757b 100644 --- a/core/iwasm/compilation/aot_llvm.c +++ b/core/iwasm/compilation/aot_llvm.c @@ -1069,6 +1069,7 @@ static ArchItem valid_archs[] = { { "i386", false }, { "xtensa", false }, { "mips", true }, + { "mipsel", false }, { "aarch64v8", false }, { "aarch64v8.1", false }, { "aarch64v8.2", false },