N.B. C++17 is required to build the asset processing program that we use (ZAPD), so check your OS version can support this before proceeding.
For macOS, use Homebrew to install the following dependencies:
- coreutils
- make
- python3
- bash
- clang-format
- libxml2
- libiconv
You can install them with the following commands:
brew update
brew install coreutils make python3 bash clang-format libxml2 libiconv(The repository expects Homebrew-installed programs to be either linked correctly in $PATH etc. or in their default locations.)
The following instructions are written for MacOS users but should apply to any Unix-like system, with maybe some modifications at the end regarding the bash_profile.
Create destination dir for binutils
sudo mkdir -p /opt/crossCreate and enter local working dir
mkdir ~/binutils-tmp
cd ~/binutils-tmpGet and extract binutils source
curl -O https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.xz
tar xjf binutils-2.46.0.tar.xzCreate and enter a build directory
mkdir build-binutils
cd build-binutilsConfigure the build
../binutils-2.46.0/configure --target=mips-linux-gnu --prefix=/opt/cross --with-system-zlib --disable-gprof --disable-gdb --disable-werrorMake and install binutils
make -j$(nproc)
sudo make installEdit your ~/.bash_profile/~/.zprofile (or whichever shell you use) to add the new binutils binaries to the system PATH
echo 'export PATH="$PATH:/opt/cross/bin"' >> ~/.bash_profileReload ~/.bash_profile (or just launch a new terminal tab)
source ~/.bash_profileIf this worked, you can now delete the temporary directory ~/binutils-tmp.
Apple's version of make is very out-of-date, so you should use the brew-installed gmake in place of make in this repo from now on.
You should now be able to continue from step 2 of the Linux instructions.
If you'd like to compile with GCC instead of IDO (e.g. for modding), you can build it from source similarly to how we built binutils:
Install dependences
brew install gcc@15 gmp isl libmpc mpfrCreate and enter local working dir
mkdir ~/gcc-tmp
cd ~/gcc-tmpGet and extract gcc source
curl -O https://ftp.gnu.org/gnu/gcc/gcc-15.2.0/gcc-15.2.0.tar.xz
tar xvf gcc-15.2.0.tar.xzCreate and enter a build directory
mkdir build-gcc
cd build-gccConfigure the build
CC=gcc-15 CXX=g++-15 ../gcc-15.2.0/configure --target=mips-linux-gnu --prefix=/opt/cross --disable-nls --enable-languages=c --with-gmp=$(brew --prefix)/opt/gmp --with-mpfr=$(brew --prefix)/opt/mpfr --with-mpc=$(brew --prefix)/opt/libmpc --with-isl=$(brew --prefix)/opt/islMake and install gcc
CC=gcc-15 CXX=g++-15 make all-gcc -j$(nproc)
sudo make install-gccIf this worked, you can now delete the temporary directory ~/gcc-tmp.