Skip to content

Commit

Permalink
Update conda_build/windows.py
Browse files Browse the repository at this point in the history
Co-authored-by: Isuru Fernando <isuruf@gmail.com>
  • Loading branch information
finnagin and isuruf authored Dec 12, 2023
1 parent 8341468 commit 3a8eb9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_build/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def msvc_env_cmd(bits, config, override=None):
"If this recipe does not use a compiler, this message is safe to ignore. "
"Otherwise, use {{compiler('<language>')}} jinja2 in requirements/build."
)
if bits == "arm64":
log.warn("The legacy MSVC compiler setup does not support arm64 builds. ")
if bits not in ["64", "32"]:
log.warn(f"The legacy MSVC compiler setup does not support {bits} builds. ")
return ""
if override:
log.warn(
Expand Down

0 comments on commit 3a8eb9b

Please sign in to comment.