summaryrefslogtreecommitdiff
path: root/lib/ultralib/README.md
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2025-02-21 16:03:51 -0800
committerGitHub <noreply@github.com>2025-02-21 17:03:51 -0700
commit8c6ae625aef6d07741cd8925f422f43ae24b198c (patch)
tree741fafdf5cf11006a23a9019451082c269fe4922 /lib/ultralib/README.md
parentf013a028f42a1b11134bc5f22f28e9f48236b6f0 (diff)
Ultralib Update (#233)
* git subrepo pull (merge) lib/ultralib subrepo: subdir: "lib/ultralib" merged: "74f0eee" upstream: origin: "git@github.com:decompals/ultralib.git" branch: "main" commit: "2717d45" git-subrepo: version: "0.4.9" origin: "https://github.com/ingydotnet/git-subrepo" commit: "cce3d93" * New ultralib fixes * Update some includes in tools * git subrepo commit (merge) lib/ultralib subrepo: subdir: "lib/ultralib" merged: "3a702eaf" upstream: origin: "git@github.com:decompals/ultralib.git" branch: "main" commit: "48f9f908" git-subrepo: version: "0.4.9" origin: "git@github.com:ingydotnet/git-subrepo.git" commit: "ea10886" * Update warnings file
Diffstat (limited to 'lib/ultralib/README.md')
-rw-r--r--lib/ultralib/README.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/ultralib/README.md b/lib/ultralib/README.md
index 8fa9b97..8128718 100644
--- a/lib/ultralib/README.md
+++ b/lib/ultralib/README.md
@@ -64,9 +64,15 @@ If building without an target archive, than you can use `COMPARE=0` like the the
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:
+If building for use with modern linkers, than you can use `MODERN_LD=1` like the following:
-- `make VERSION=L TARGET=libgultra_rom FIXUPS=1 setup`
-- `make VERSION=L TARGET=libgultra_rom FIXUPS=1`
+- `make VERSION=L TARGET=libgultra_rom MODERN_LD=1 setup`
+- `make VERSION=L TARGET=libgultra_rom MODERN_LD=1`
-note that running with `FIXUPS=1` will automatically set `COMPARE=0`.
+note that running with `MODERN_LD=1` will automatically set `COMPARE=0`.
+
+It is also possible to build archives using modern gcc by using `MODERN_GCC=1` like the following:
+
+- `make VERSION=L TARGET=libgultra_rom MODERN_GCC=1`
+
+note that running with `MODERN_GCC=1` will automatically set `COMPARE=0` and `MODERN_LD=0`.