Skip to content

Commit d9b5449

Browse files
committed
workaround for CL.EXE/cl.exe case sensitivity with wibo
1 parent c05228d commit d9b5449

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/coreapp/compilers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ def preset_from_name(name: str) -> Optional[Preset]:
10451045
MSVC71 = MSVCCompiler(
10461046
id="msvc7.1",
10471047
platform=WIN9X,
1048-
cc=CL_WIN,
1048+
cc=CL_WIN.replace("CL.EXE", "cl.exe"),
10491049
)
10501050
# Watcom doesn't like '/' in paths passed to it so we need to replace them.
10511051
WATCOM_ARGS = ' -zq -i="Z:${COMPILER_DIR}/h" -i="Z:${COMPILER_DIR}/h/nt" ${COMPILER_FLAGS} -fo"Z:${OUTPUT}" "Z:${INPUT}"'

0 commit comments

Comments
 (0)