Skip to content
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
1 change: 1 addition & 0 deletions backend/compilers/compilers.linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ macosx:
- gcc3-1041

msdos:
- wcc10.0a
- wcc10.5
- wcc10.5a
- wcc10.6
Expand Down
16 changes: 16 additions & 0 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1572,6 +1572,20 @@ def available_platforms() -> list[Platform]:
+ "\" | sed 's:/:\\\\:g')"
)

WATCOM_100A_C = WatcomCompiler(
id="wcc10.0a",
platform=MSDOS,
cc=WATCOM_CC,
)

WATCOM_100A_CPP = WatcomCompiler(
id="wpp10.0a",
base_compiler=WATCOM_100A_C,
platform=MSDOS,
language=Language.CXX,
cc=WATCOM_CXX,
)

WATCOM_105_C = WatcomCompiler(
id="wcc10.5",
platform=MSDOS,
Expand Down Expand Up @@ -1920,6 +1934,8 @@ def available_platforms() -> list[Platform]:
MSVC80,
MSVC80P,
# Watcom, DOS and Win32
WATCOM_100A_C,
WATCOM_100A_CPP,
WATCOM_105_C,
WATCOM_105_CPP,
WATCOM_105A_C,
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lib/i18n/locales/en/compilers.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@
"pspsnc_1.2.7503.0": "SN 1.2.7503.0",
"psp-gcc-1.3.1": "GCC 3.3.3+allegrex-2.2.1-psp-1.3.1",

"wcc10.0a": "Watcom Optimizing C i386 Compiler 10.0a",
"wpp10.0a": "Watcom Optimizing C++ i386 Compiler 10.0a",
"wcc10.5": "Watcom Optimizing C i386 Compiler 10.5",
"wpp10.5": "Watcom Optimizing C++ i386 Compiler 10.5",
"wcc10.5a": "Watcom Optimizing C i386 Compiler 10.5a",
Expand Down