diff --git a/backend/compilers/compilers.linux.yaml b/backend/compilers/compilers.linux.yaml index 03fc298e8..6ebf64aef 100644 --- a/backend/compilers/compilers.linux.yaml +++ b/backend/compilers/compilers.linux.yaml @@ -115,6 +115,7 @@ ps1: - gcc2.7.2.3-mipsel - gcc2.8.0-mipsel - gcc2.8.1-mipsel + - gcc2.8.1-psx - gcc2.91.66-mipsel - gcc2.95.2-mipsel diff --git a/backend/coreapp/compilers.py b/backend/coreapp/compilers.py index 3a7f968bc..bbd8b0e63 100644 --- a/backend/coreapp/compilers.py +++ b/backend/coreapp/compilers.py @@ -479,6 +479,12 @@ def available_platforms() -> List[Platform]: cc=PS1_GCC, ) +GCC281_PSX = GCCPS1Compiler( + id="gcc2.8.1-psx", + platform=PS1, + cc=PS1_GCC, +) + GCC29166_MIPSEL = GCCPS1Compiler( id="gcc2.91.66-mipsel", platform=PS1, @@ -1511,6 +1517,7 @@ def available_platforms() -> List[Platform]: GCC2723_MIPSEL, GCC280_MIPSEL, GCC281_MIPSEL, + GCC281_PSX, GCC29166_MIPSEL, GCC2952_MIPSEL, # PSP diff --git a/frontend/src/lib/i18n/locales/en/compilers.json b/frontend/src/lib/i18n/locales/en/compilers.json index fa8ccb007..f38ab0133 100644 --- a/frontend/src/lib/i18n/locales/en/compilers.json +++ b/frontend/src/lib/i18n/locales/en/compilers.json @@ -177,6 +177,7 @@ "gcc2.7.2.3-mipsel": "gcc 2.7.2.3 + maspsx", "gcc2.8.0-mipsel": "gcc 2.8.0 + maspsx", "gcc2.8.1-mipsel": "gcc 2.8.1 + maspsx", + "gcc2.8.1-psx": "gcc 2.8.1-psx + maspsx", "gcc2.91.66-mipsel": "gcc 2.91.66 + maspsx", "gcc2.95.2-mipsel": "gcc 2.95.2 + maspsx",