mirror of https://github.com/n64decomp/sm64.git
add mips-suse-linux toolchain support
This commit is contained in:
parent
9921382a68
commit
b8eba7683a
2
Makefile
2
Makefile
|
|
@ -313,6 +313,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-suse-linux-ld),)
|
||||
CROSS := mips-suse-linux-
|
||||
else
|
||||
$(error Unable to detect a suitable MIPS toolchain installed)
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ distributions with support in the makefile, and examples of distros that offer t
|
|||
* `mips64-elf-` (Arch AUR)
|
||||
* `mips-linux-gnu-` (Ubuntu and other Debian-based distros)
|
||||
* `mips64-linux-gnu-` (RHEL/CentOS/Fedora)
|
||||
* `mips-suse-linux-` (openSUSE)
|
||||
|
||||
You may also use [Docker](#docker-installation) to handle installing an image with minimal dependencies.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue