Skip to content

Commit 0e1c6de

Browse files
authored
Add Borland 3.1 compiler (#28)
1 parent 90a0d58 commit 0e1c6de

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

platforms/msdos/bcc3.1/Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# NOTE: This file is generated automatically via template.py. Do not edit manually!
2+
3+
4+
FROM alpine:3.18 as base
5+
6+
RUN mkdir -p /compilers/msdos/bcc3.1
7+
8+
RUN wget -O bcc3.1.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz"
9+
RUN tar xvzf bcc3.1.tar.gz -C /compilers/msdos/bcc3.1
10+
11+
RUN chown -R root:root /compilers/msdos/bcc3.1/
12+
RUN chmod +x /compilers/msdos/bcc3.1/*
13+
14+
15+
FROM scratch as release
16+
17+
COPY --from=base /compilers /compilers

values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,10 @@ compilers:
882882
platform: msdos
883883
template: common/default
884884
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc11.0.tar.gz
885+
- id: bcc3.1
886+
platform: msdos
887+
template: common/default
888+
file: https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz
885889

886890
# WIN32
887891
- id: msvc6.0

0 commit comments

Comments
 (0)