Skip to content

Commit

Permalink
Add msvc4.1 (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkst authored Nov 26, 2024
1 parent 05803e7 commit b1d7c94
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/compilers/compilers.linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ msdos:

win32:
- msvc4.0
- msvc4.1
- msvc4.2
- msvc6.0
- msvc6.3
Expand Down
7 changes: 7 additions & 0 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,6 +1336,12 @@ def available_platforms() -> List[Platform]:
cc=CL_WIN,
)

MSVC41 = MSVCCompiler(
id="msvc4.1",
platform=WIN32,
cc=CL_WIN,
)

MSVC42 = MSVCCompiler(
id="msvc4.2",
platform=WIN32,
Expand Down Expand Up @@ -1649,6 +1655,7 @@ def available_platforms() -> List[Platform]:
PBX_GCC3,
# WIN32
MSVC40,
MSVC41,
MSVC42,
MSVC60,
MSVC63,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lib/i18n/locales/en/compilers.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"mips_pro_744": "MIPS Pro 7.4.4",

"msvc4.0": "Microsoft Visual C/C++ 4.0",
"msvc4.1": "Microsoft Visual C/C++ 4.1",
"msvc4.2": "Microsoft Visual C/C++ 4.2",
"msvc6.0": "Microsoft Visual C/C++ 6.0",
"msvc6.3": "Microsoft Visual C/C++ 6.0 Service Pack 3",
Expand Down

0 comments on commit b1d7c94

Please sign in to comment.