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
17 changes: 17 additions & 0 deletions platforms/psp/psp-gcc-1.7.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# NOTE: This file is generated automatically via template.py. Do not edit manually!


FROM alpine:3.18 as base

RUN mkdir -p /compilers/psp/psp-gcc-1.7.1

RUN wget -O psp-gcc-1.7.1.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/psp-gcc-1.7.1.tar.gz"
RUN tar xvzf psp-gcc-1.7.1.tar.gz -C /compilers/psp/psp-gcc-1.7.1

RUN chown -R root:root /compilers/psp/psp-gcc-1.7.1/
RUN chmod +x /compilers/psp/psp-gcc-1.7.1/*


FROM scratch as release

COPY --from=base /compilers /compilers
5 changes: 5 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,11 @@ compilers:
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/psp-gcc-1.3.1.tar.gz?2024-04-25

- id: psp-gcc-1.7.1
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/psp-gcc-1.7.1.tar.gz

# MAXOSX
- id: gcc-5370
platform: macosx
Expand Down