Skip to content

Commit

Permalink
sync ds pokemon compiler flags with repos (#798)
Browse files Browse the repository at this point in the history
* sync ds pokemon compiler flags with repos

* remove char signed for diamond
  • Loading branch information
red031000 committed Jun 30, 2023
1 parent 97ef072 commit 42e4379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1477,12 +1477,12 @@ def preset_from_name(name: str) -> Optional[Preset]:
Preset(
"Pokémon Diamond / Pearl",
MWCC_30_123,
"-O4,p -proc arm946e -gccext,on -fp soft -lang c99 -Cpp_exceptions off -interworking -enum int",
"-O4,p -enum int -proc arm946e -gccext,on -fp soft -lang c99 -inline on,noauto -Cpp_exceptions off -gccinc -interworking -gccdep -MD -g",
),
Preset(
"Pokémon HeartGold / SoulSilver",
MWCC_30_137,
"-O4,p -enum int -lang c99 -Cpp_exceptions off -gccext,on -gccinc -interworking -gccdep -MD",
"-O4,p -enum int -proc arm946e -gccext,on -fp soft -lang c99 -char signed -inline on,noauto -Cpp_exceptions off -gccinc -interworking -gccdep -MD -g",
),
# MACOS9
Preset("The Sims", MWCPPC_24, "-lang=c++ -O3 -str pool -g"),
Expand Down

0 comments on commit 42e4379

Please sign in to comment.