de5e3891b9
* Fix for /bin/bash: mips-linux-gnu-as: command not found. * Fix for sha1sum: 'papermario.z64'$'\r': No such file or directory. |
||
---|---|---|
asm | ||
include | ||
src | ||
tools | ||
.clang-format | ||
.clang-tidy | ||
.gitignore | ||
.gitmodules | ||
checksum.sha1 | ||
diff_settings.py | ||
diff.py | ||
docker-compose.yml | ||
docker-sync.yml | ||
Dockerfile | ||
format.sh | ||
Makefile | ||
papermario.ld | ||
Readme.md | ||
undefined_syms.txt |
Paper Mario Decompilation
Setup
Requirements
You'll need Linux or Windows 10 (WSL) to work on this project.
Dependencies
- *mips-linux-gnu binutils: You may be able to just download this via your package manager (
sudo apt install binutils-mips-linux-gnu
), or you'll have to build it yourself. (guide todo)
Ubuntu and co (easy mode):
For a quick and easy way to install all relevant decomp-related tools on Ubuntu and other similar distros,
sudo apt install -y binutils-mips-linux-gnu build-essential pkg-config python3 python3-pip wget git clang-tidy clang-format nano vbindiff zlib1g-dev libyaml-dev libcapstone-dev
Building mips-linux-gnu
todo
Fork and clone the repo
Click the "fork" button in the top right corner of the main repo's webpage (https://github.com/ethteck/papermario) to fork this repo to your own GitHub account. After this, clone the repo to your computer via the command below:
git clone https://github.com/YOUR_GITHUB_USERNAME/papermario.git
The Rom
You'll need a US Paper Mario rom to work on this project. Copy it into the root directory of the repository with the name baserom.z64
.
Make setup
run make setup
to set up tools and extract the rom
Make
run make
to rebuild the rom. Get OK
? If so, you're all set! Otherwise, please feel free to reach out to us in the discord.
FAQ
make setup
failed with this error? One of the packages from the Ubuntu and co (easy mode) script did not install correctly. Try to run as sudosudo su
, run the script again and append--fix-missing
to it.
/bin/bash: mips-linux-gnu-as: command not found
Makefile:92: recipe for target 'build/asm/boot.o' failed
make: *** [build/asm/boot.o] Error 127
make
failed with this error? This is a Windows line ending issue rungit checkout checksum.sha1
to fix it.
sha1sum -c checksum.sha1
sha1sum: 'papermario.z64'$'\r': No such file or directory
: FAILED open or read
sha1sum: WARNING: 1 listed file could not be read
Makefile:118: recipe for target 'verify' failed
make: *** [verify] Error 1