Skip to content

Commit

Permalink
Add msvc8.0 win32
Browse files Browse the repository at this point in the history
  • Loading branch information
widberg authored and mkst committed Aug 1, 2024
1 parent 0153d41 commit f05282c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
23 changes: 23 additions & 0 deletions platforms/win32/msvc8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# NOTE: This file is generated automatically via template.py. Do not edit manually!


FROM alpine:3.18 as base

# download zip first to allow for Docker caching

RUN wget -O d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip "https://github.com/widberg/msvc8.0/archive/d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip"
RUN unzip d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip

RUN mkdir -p /compilers/win32/msvc8.0/Bin
RUN mkdir -p /compilers/win32/msvc8.0/Include

RUN cp -r msvc8.0-*/bin/* /compilers/win32/msvc8.0/Bin
RUN cp -r msvc8.0-*/include/* /compilers/win32/msvc8.0/Include

RUN chown -R root:root /compilers/win32/msvc8.0/
RUN chmod +x /compilers/win32/msvc8.0/Bin/*


FROM scratch as release

COPY --from=base /compilers /compilers
6 changes: 6 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,12 @@ compilers:
file: https://github.com/itsmattkc/MSVC420/archive/df2c13aad74c094988c6c7e784234c2e778a0e91.zip
bin_dir: MSVC420-*/bin
include_dir: MSVC420-*/include
- id: msvc8.0
platform: win32
template: win32/msvc
file: https://github.com/widberg/msvc8.0/archive/d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip
bin_dir: msvc8.0-*/bin
include_dir: msvc8.0-*/include

# DREAMCAST
- id: shc-v5.1r11
Expand Down

0 comments on commit f05282c

Please sign in to comment.