From 0a7e44de0eafabb2b1231af237f9b103360d27e3 Mon Sep 17 00:00:00 2001 From: thecozies <79979276+thecozies@users.noreply.github.com> Date: Mon, 18 Sep 2023 08:18:03 -0500 Subject: [PATCH] restore mips-n64 (#680) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index aa23214c..1c6b5390 100644 --- a/Makefile +++ b/Makefile @@ -407,6 +407,8 @@ DEP_FILES := $(O_FILES:.o=.d) $(LIBZ_O_FILES:.o=.d) $(GODDARD_O_FILES:.o=.d) $(B # detect prefix for MIPS toolchain ifneq ($(call find-command,mips64-elf-ld),) CROSS := mips64-elf- +else ifneq ($(call find-command,mips-n64-ld),) + CROSS := mips-n64- else ifneq ($(call find-command,mips64-ld),) CROSS := mips64- else ifneq ($(call find-command,mips-linux-gnu-ld),)