Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ src
*.bin
*.z64
progress*.csv
*.json
*.inc.c
*.ply
ctx.c
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "tools/splat"]
path = tools/splat
url = https://github.com/ethteck/splat.git
[submodule "tools/asm-differ"]
path = tools/asm-differ
url = https://github.com/simonlindholm/asm-differ.git
Expand Down
5 changes: 0 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,13 @@ FROM ubuntu:24.04 AS build
ENV DEBIAN_FRONTEND=noninteractive

COPY packages.txt /

RUN apt-get update && \
apt-get install -y --no-install-recommends $(cat /packages.txt) && \
rm -rf /var/lib/apt/lists/*

COPY requirements.txt /
RUN python3 -m pip install -r /requirements.txt --no-cache-dir --disable-pip-version-check --break-system-packages

COPY tools/splat/requirements.txt /splat-requirements.txt
RUN python3 -m pip install -r /splat-requirements.txt --no-cache-dir --disable-pip-version-check --break-system-packages


COPY .bash_aliases /home/ubuntu/.bash_aliases

RUN mkdir /sssv
Expand Down
9 changes: 9 additions & 0 deletions GCC.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
When building SSSV with the crash screen, you will need to add this towards the end of the sssv.us.ld

```c
crash_screen : {
build/src.us/debug/crash_screen.c.o(.text .data .rodata .bss);
build/lib/libultra_rom.a:getcurrfaultthread.o(.text);
build/lib/libultra_rom.a:settime.o(.text)
}
```
Loading