We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c05228d commit d9b5449Copy full SHA for d9b5449
backend/coreapp/compilers.py
@@ -1045,7 +1045,7 @@ def preset_from_name(name: str) -> Optional[Preset]:
1045
MSVC71 = MSVCCompiler(
1046
id="msvc7.1",
1047
platform=WIN9X,
1048
- cc=CL_WIN,
+ cc=CL_WIN.replace("CL.EXE", "cl.exe"),
1049
)
1050
# Watcom doesn't like '/' in paths passed to it so we need to replace them.
1051
WATCOM_ARGS = ' -zq -i="Z:${COMPILER_DIR}/h" -i="Z:${COMPILER_DIR}/h/nt" ${COMPILER_FLAGS} -fo"Z:${OUTPUT}" "Z:${INPUT}"'
0 commit comments