We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbd8d2a commit 0c1b1baCopy full SHA for 0c1b1ba
scripts/setup-llvm.py
@@ -51,12 +51,12 @@ def pick_artifact(
51
continue
52
if entry.get("build_type") != build_type:
53
54
- if bool(entry.get("is_lto")) != is_lto:
+ if bool(entry.get("lto")) != is_lto:
55
56
return entry
57
raise RuntimeError(
58
f"No matching LLVM artifact in manifest for version={base_version}, platform={platform}, "
59
- f"build_type={build_type}, is_lto={is_lto}"
+ f"build_type={build_type}, lto={is_lto}"
60
)
61
62
0 commit comments