Skip to content

Commit

Permalink
Add Borland 3.1 compiler (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gillou68310 authored Jan 27, 2025
1 parent 90a0d58 commit 0e1c6de
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
17 changes: 17 additions & 0 deletions platforms/msdos/bcc3.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/msdos/bcc3.1

RUN wget -O bcc3.1.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz"
RUN tar xvzf bcc3.1.tar.gz -C /compilers/msdos/bcc3.1

RUN chown -R root:root /compilers/msdos/bcc3.1/
RUN chmod +x /compilers/msdos/bcc3.1/*


FROM scratch as release

COPY --from=base /compilers /compilers
4 changes: 4 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,10 @@ compilers:
platform: msdos
template: common/default
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc11.0.tar.gz
- id: bcc3.1
platform: msdos
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz

# WIN32
- id: msvc6.0
Expand Down

0 comments on commit 0e1c6de

Please sign in to comment.