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 backend/compilers/compilers.linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ common:
gba:
- agbcc
- agbccpp
- gcc2.96

gc_wii:
- mwcc_233_144
Expand Down
7 changes: 7 additions & 0 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,12 @@ def available_platforms() -> list[Platform]:
base_compiler=AGBCC,
)

GCC_296 = GCCCompiler(
id="gcc2.96",
platform=GBA,
cc='"${COMPILER_DIR}"/usr/local/bin/arm-elf-gcc $COMPILER_FLAGS -S -o - "$INPUT" | arm-none-eabi-as -mcpu=arm7tdmi -o "$OUTPUT"',
)

AGBCC_ARM = GCCCompiler(
id="agbcc_arm",
platform=GBA,
Expand Down Expand Up @@ -1686,6 +1692,7 @@ def available_platforms() -> list[Platform]:
OLD_AGBCC,
AGBCC_ARM,
AGBCCPP,
GCC_296,
# N3DS
ARMCC_40_771,
ARMCC_40_821,
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lib/i18n/locales/en/compilers.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"agbccpp": "agbccpp",

"gcc2.96": "gcc2.96",

"armcc_40_771": "4.0 build 771",
"armcc_40_821": "4.0 build 821",
"armcc_40_865": "4.0 build 865",
Expand Down