We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b1cb70 commit 2a7a5b3Copy full SHA for 2a7a5b3
warp/_src/build_dll.py
@@ -190,6 +190,10 @@ def find_host_compiler() -> str:
190
os.environ[pair[0]] = pair[1]
191
192
cl_path = shutil.which("cl.exe")
193
+ if not cl_path:
194
+ if verbose_cmd:
195
+ print("Warning: cl.exe not found in PATH after running vcvars64.bat")
196
+ return ""
197
vc_tools_version = os.environ.get("VCToolsVersion", "")
198
if not vc_tools_version:
199
if verbose_cmd:
0 commit comments