From c20cc5da2bbc7050b3b070818e265df46e4164fd Mon Sep 17 00:00:00 2001 From: Nadia Holmquist Pedersen Date: Sun, 14 Mar 2021 09:16:44 +0100 Subject: [PATCH] Also look for mips-elf- toolchain --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ae68f648..0334a6f0 100644 --- a/Makefile +++ b/Makefile @@ -284,6 +284,8 @@ else ifneq ($(call find-command,mips64-linux-gnu-ld),) CROSS := mips64-linux-gnu- else ifneq ($(call find-command,mips64-elf-ld),) CROSS := mips64-elf- +else ifneq ($(call find-command,mips-elf-ld),) + CROSS := mips-elf- else $(error Unable to detect a suitable MIPS toolchain installed) endif