Skip to content

Commit 674c6f8

Browse files
authored
Add Borland C++ Compiler 2.0 (#42)
1 parent 62b8e15 commit 674c6f8

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

platforms/msdos/bcc2.0/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/bcc2.0
7+
8+
RUN wget -O bcc2.0.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/bcc2.0.tar.gz"
9+
RUN tar xvzf bcc2.0.tar.gz -C /compilers/msdos/bcc2.0
10+
11+
RUN chown -R root:root /compilers/msdos/bcc2.0/
12+
RUN chmod +x /compilers/msdos/bcc2.0/*
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
@@ -956,6 +956,10 @@ compilers:
956956
platform: msdos
957957
template: common/default
958958
file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc11.0.tar.gz
959+
- id: bcc2.0
960+
platform: msdos
961+
template: common/default
962+
file: https://github.com/decompme/compilers/releases/download/compilers/bcc2.0.tar.gz
959963
- id: bcc3.1
960964
platform: msdos
961965
template: common/default

0 commit comments

Comments
 (0)