From a764ec929eec2abdedd76cb5b593c8ec6a6abcfd Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Sat, 22 Aug 2026 11:06:51 +0900 Subject: Enable supported MIPS32 assembly in CI Use the little endian MIPS32 toolchain since the generated assembly is little-endian, and define the architecture feature macros needed to select the AES, BN, SHA-1, and SHA-256 assembly implementations. Do not generate or build SHA-512 assembly for MIPS32. The generator accepts the O32 ABI, but the resulting implementation still uses 64-bit instructions and requires the MIPS64 ISA. It is therefore not valid for generic MIPS32 targets. --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a2a85e7..06dda17 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -68,7 +68,7 @@ jobs: packages+=(qemu-user-static binfmt-support g++-14-loongarch64-linux-gnu) ;; mips32) - packages+=(qemu-user-static binfmt-support g++-mips-linux-gnu) + packages+=(qemu-user-static binfmt-support g++-mipsel-linux-gnu) ;; mips64) packages+=(qemu-user-static binfmt-support g++-mips64el-linux-gnuabi64) -- cgit v1.2.3-55-g6feb