Merge pull request #45 from dplewis/mips-elf-toolchain

Add mips-elf toolchain
This commit is contained in:
Revo 2023-07-09 22:47:46 -04:00 committed by GitHub
commit 0177c09cdc

View File

@ -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