Home

Awesome

ultralib

Reverse engineering of libultra

Compatibility

Currently this repo supports building the following versions:

IDO / GCClibultra.a / libgultra.alibultra_d.a / libgultra_d.alibultra_rom.a / libgultra_rom.a
2.0E:x: / N/A:x: / N/A:x: / N/A
2.0F:x: / N/A:x: / N/A:x: / N/A
2.0G:x: / N/A:x: / N/A:x: / N/A
2.0HN/A / :x:N/A / :x:N/A / :x:
2.0I:heavy_check_mark: / :heavy_check_mark::x: / :heavy_check_mark::heavy_check_mark: / :heavy_check_mark:
2.0I_patch:x: / :x::x: / :x::x: / :x:
2.0J:heavy_check_mark: / :heavy_check_mark::x: / :heavy_check_mark::heavy_check_mark: / :heavy_check_mark:
2.0K:heavy_check_mark: / :heavy_check_mark::x: / :heavy_check_mark::heavy_check_mark: / :heavy_check_mark:
2.0L:heavy_check_mark: / :heavy_check_mark::x: / :heavy_check_mark::heavy_check_mark: / :heavy_check_mark:
ique_v1.5:x::x::x:

Preparation

After cloning the repo, put a copy of the target archive(s) in their correct version folder in base/. For example, if your target archive is libgultra_rom.a 2.0L then you'd place it in base/L/. If you will be building without a target archive by setting COMPARE=0 then you can skip this step.

Build dependencies

The build process requires the following packages:

Under Debian / Ubunutu you can install them with the following commands:

sudo apt update
sudo apt install build-essential python3

If building any libultra you can install binutils-mips-linux-gnu with:

sudo apt install binutils-mips-linux-gnu

Building

Run make setup with the proper flags set followed by make with optional jobs. For example, if building the 2.0L PC archive you'd do the following:

Every target flag combination requires separate a setup command.

If building without an target archive, than you can use COMPARE=0 like the the following:

note that running setup without COMPARE=0 and no archive will result in an error, and only needs to be run once instead of per target flag combination

If building for use with modern linkers, than you can use FIXUPS=1 like the the following:

note that running with FIXUPS=1 will automatically set COMPARE=0.

It is also possible to build archives using modern gcc by using MODERN_GCC=1 like the following:

note that running with MODERN_GCC=1 will automatically set COMPARE=0 and FIXUPS=0.