From dbba4871e1600cf515178ec1a299cd4a189aed8d Mon Sep 17 00:00:00 2001 From: lolbinarycat Date: Sat, 18 May 2024 02:11:10 -0400 Subject: [PATCH] Add mips64-none-elf- to automatically detected prefixes (#799) Co-authored-by: binarycat --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 3a25409b..930ee71f 100644 --- a/Makefile +++ b/Makefile @@ -444,6 +444,8 @@ else ifneq ($(call find-command,mips-linux-gnu-ld),) CROSS := mips-linux-gnu- else ifneq ($(call find-command,mips64-linux-gnu-ld),) CROSS := mips64-linux-gnu- +else ifneq ($(call find-command,mips64-none-elf-ld),) + CROSS := mips64-none-elf- else ifneq ($(call find-command,mips-ld),) CROSS := mips- else