Download the .zip
from the latest release
This is a fork of FIX94/Nintendont specifically used for supporting Project Slippi.
See README.md for standard Nintendont if you're new to Nintendont.
See documentation in SLIPPI.md for more information.
I recommend using Kadano's guide if you're new to Wii homebrew. Many guides in the wild are out of date or weren't very good to begin with.
.zip
from the latest release. Unzip to the root of your SD card such that boot.dol
, meta.xml
, and icon.png
all end up under /apps/Nintendont Melee
./games/
.See README.md for standard Nintendont if you're new to Nintendont.
You will need to install part of the devkitPro toolchain to build Nintendont. Visit the getting started page and find the instructions for your system. I recommend installing GBA, Wii, and GC packages. GBA is required to get devkitARM
which isn't provided in the others. You effectively need devkitARM
devkitPPC
and libogc
.
We maintain a docker image for building on CI which can also be used for building locally without the need to install devkitPro. Simply run docker run --volume=${PWD}:/work --workdir=/work nikhilnarayana/devkitpro-slippi make
from the root repo directory.
To build on windows, you need to run the Incremental Build.bat
file in the Nintendont root.
libwinpthread-1.dll error:
make -C multidol
make[1]: Entering directory '../Nintendont/multidol'
ASSEMBLE crt0.S
COMPILE cache.c
COMPILE main.c
COMPILE global.c
COMPILE apploader.c
COMPILE dip.c
COMPILE utils.c
LINK multidol_ldr.elf
collect2.exe: error: ld returned 53 exit status
make[1]: *** [Makefile:44: multidol_ldr.elf] Error 1
make[1]: Leaving directory '../Nintendont/multidol'
make: *** [Makefile:34: multidol] Error 2
For some reason the devkitPro installer might not install things correctly. In order to fix the above error, you will need to go to your devkitPPC/bin
directory, grab the file called libwinpthread-1.dll
, and copy it to devkitPPC/powerpc-eabi/bin/
, this should fix the issue.