Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add msvc4.1 #25

Merged
merged 1 commit into from
Nov 26, 2024
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/win32/msvc4.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/win32/msvc4.1

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

RUN chown -R root:root /compilers/win32/msvc4.1/
RUN chmod +x /compilers/win32/msvc4.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 @@ -922,6 +922,10 @@ compilers:
file: https://github.com/itsmattkc/MSVC400/archive/821e942fd95bd16d01649401de7943ef87ae9f54.zip
bin_dir: MSVC400-*/BIN
include_dir: MSVC400-*/INCLUDE
- id: msvc4.1
platform: win32
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/msvc4.1.tar.gz
- id: msvc4.2
platform: win32
template: win32/msvc
Expand Down