From e00c505cfaf79a0067501a8ff59eb5b20e0c4e5f Mon Sep 17 00:00:00 2001 From: Diamond Lewis Date: Sun, 9 Jul 2023 21:45:52 -0500 Subject: [PATCH] Add mips-elf toolchain --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index dc36526..50dd084 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,8 @@ ifeq ($(call findcmd,mips-linux-gnu-ld),0) CROSS := mips-linux-gnu- else ifeq ($(call findcmd,mips64-elf-ld),0) CROSS := mips64-elf- +else ifeq ($(call findcmd,mips-elf-ld),0) + CROSS := mips-elf- else $(error Missing cross compilation toolchain) endif