Skip to content

Commit

Permalink
workaround for CL.EXE/cl.exe case sensitivity with wibo
Browse files Browse the repository at this point in the history
  • Loading branch information
mkst committed Sep 18, 2023
1 parent c05228d commit d9b5449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ def preset_from_name(name: str) -> Optional[Preset]:
MSVC71 = MSVCCompiler(
id="msvc7.1",
platform=WIN9X,
cc=CL_WIN,
cc=CL_WIN.replace("CL.EXE", "cl.exe"),
)
# 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}"'
Expand Down

0 comments on commit d9b5449

Please sign in to comment.