Skip to content

Commit

Permalink
gcc-2.7.2.2 for PSX (#846)
Browse files Browse the repository at this point in the history
* gcc-2.7.2.2

* fix unicode
  • Loading branch information
sonicdcer authored Sep 10, 2023
1 parent f551e82 commit c1ddb33
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/compilers/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@ def download_ps1():
"gcc2.7.1": f"{old_gcc_base_url}/gcc-2.7.1.tar.gz",
"gcc2.7.2": f"{old_gcc_base_url}/gcc-2.7.2.tar.gz",
"gcc2.7.2.1": f"{old_gcc_base_url}/gcc-2.7.2.1.tar.gz",
"gcc2.7.2.2": f"{old_gcc_base_url}/gcc-2.7.2.2.tar.gz",
"gcc2.7.2.3": f"{old_gcc_base_url}/gcc-2.7.2.3.tar.gz",
"gcc2.8.0": f"{old_gcc_base_url}/gcc-2.8.0.tar.gz",
"gcc2.8.1": f"{old_gcc_base_url}/gcc-2.8.1.tar.gz",
Expand All @@ -612,6 +613,7 @@ def download_ps1():
"gcc2.7.1": "gcc2.7.1-mipsel",
"gcc2.7.2": "gcc2.7.2-mipsel",
"gcc2.7.2.1": "gcc2.7.2.1-mipsel",
"gcc2.7.2.2": "gcc2.7.2.2-mipsel",
"gcc2.7.2.3": "gcc2.7.2.3-mipsel",
"gcc2.8.0": "gcc2.8.0-mipsel",
"gcc2.8.1": "gcc2.8.1-mipsel",
Expand Down
7 changes: 7 additions & 0 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,12 @@ def preset_from_name(name: str) -> Optional[Preset]:
cc=PS1_GCC,
)

GCC2722_MIPSEL = GCCPS1Compiler(
id="gcc2.7.2.2-mipsel",
platform=PS1,
cc=PS1_GCC,
)

GCC2723_MIPSEL = GCCPS1Compiler(
id="gcc2.7.2.3-mipsel",
platform=PS1,
Expand Down Expand Up @@ -1146,6 +1152,7 @@ def preset_from_name(name: str) -> Optional[Preset]:
GCC271_MIPSEL,
GCC2672MIPSEL,
GCC2721_MIPSEL,
GCC2722_MIPSEL,
GCC2723_MIPSEL,
GCC280_MIPSEL,
GCC281_MIPSEL,
Expand Down

0 comments on commit c1ddb33

Please sign in to comment.