Skip to content

Commit

Permalink
Add msvc8.0 win32 (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
widberg authored Aug 1, 2024
1 parent a0caef8 commit df81136
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 @@ -198,3 +198,4 @@ win32:
- msvc6.6
- msvc7.0
- msvc7.1
- msvc8.0
7 changes: 7 additions & 0 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,12 @@ def available_platforms() -> List[Platform]:
platform=WIN32,
cc=CL_WIN,
)

MSVC80 = MSVCCompiler(
id="msvc8.0",
platform=WIN32,
cc=CL_WIN,
)
# Watcom doesn't like '/' in paths passed to it so we need to replace them.
WATCOM_ARGS = ' -zq -i="Z:${COMPILER_DIR}/h" -i="Z:${COMPILER_DIR}/h/nt" ${COMPILER_FLAGS} -fo"Z:${OUTPUT}" "Z:${INPUT}"'
WATCOM_CC = (
Expand Down Expand Up @@ -1667,6 +1673,7 @@ def available_platforms() -> List[Platform]:
MSVC66,
MSVC70,
MSVC71,
MSVC80,
# Watcom, DOS and Win32
WATCOM_105_C,
WATCOM_105_CPP,
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 @@ -97,6 +97,7 @@
"msvc6.6": "Microsoft Visual C/C++ 6.0 Service Pack 6",
"msvc7.0": "Microsoft Visual C/C++ 7.0 .NET 2002",
"msvc7.1": "Microsoft Visual C/C++ 7.1 .NET 2003",
"msvc8.0": "Microsoft Visual C/C++ 8.0",

"mwcc_20_72": "2.0 build 72 (MW 1.2base)",
"mwcc_20_79": "2.0 build 79 (MW 1.2sp2)",
Expand Down

0 comments on commit df81136

Please sign in to comment.