Skip to content

Commit f2c1430

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/coreapp/compilers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ def preset_from_name(name: str) -> Optional[Preset]:
10881088
MSVC71 = MSVCCompiler(
10891089
id="msvc7.1",
10901090
platform=WIN9X,
1091-
cc=CL_WIN,
1091+
cc=CL_WIN.replace("CL.EXE", "cl.exe"),
10921092
)
10931093
# Watcom doesn't like '/' in paths passed to it so we need to replace them.
10941094
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)