Skip to content

Commit

Permalink
Simplify MSVC compiler command (#1311)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkst authored Aug 2, 2024
1 parent df81136 commit 4ba0e7e
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 @@ -1341,7 +1341,7 @@ def available_platforms() -> List[Platform]:
cc=MWCCARM_CC,
)

CL_WIN = '${WINE} "${COMPILER_DIR}"/Bin/CL.EXE /c /nologo /IZ:"${COMPILER_DIR}"/Include/ ${COMPILER_FLAGS} /Fd"Z:/tmp/" /Bk"Z:/tmp/" /Fo"Z:${OUTPUT}" "Z:${INPUT}"'
CL_WIN = '${WINE} "${COMPILER_DIR}/Bin/CL.EXE" /c /nologo /I"Z:${COMPILER_DIR}/Include/" ${COMPILER_FLAGS} /Fo"Z:${OUTPUT}" "Z:${INPUT}"'

MSVC40 = MSVCCompiler(
id="msvc4.0",
Expand Down

0 comments on commit 4ba0e7e

Please sign in to comment.