We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fec85d commit e5f560fCopy full SHA for e5f560f
warp/_src/build_dll.py
@@ -200,6 +200,10 @@ def find_host_compiler() -> str:
200
print("Warning: VCToolsVersion not set after running vcvars64.bat")
201
return ""
202
cl_version = vc_tools_version.split(".")
203
+ if len(cl_version) < 2:
204
+ if verbose_cmd:
205
+ print(f"Warning: Invalid VCToolsVersion format: {vc_tools_version}")
206
+ return ""
207
208
# ensure at least VS2019 version, see list of MSVC versions here https://en.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B
209
cl_required_major = 14
0 commit comments