Skip to content

Commit ff3734d

Browse files
committed
downloads: llvm 16.0.3 -> 17.0.1 on Linux
CI is having issues on macOS for some reason. So holding it back for the moment.
1 parent f46db10 commit ff3734d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pythonbuild/downloads.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@
165165
"sha256": "04cb77c660f09df017a57738ae9635ef23a506024789f2f18da1304b45af2023",
166166
"version": "14.0.3+20220508",
167167
},
168-
"llvm-16-x86_64-linux": {
169-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230506/llvm-16.0.3+20230506-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
170-
"size": 226142860,
171-
"sha256": "5fbddd82919fb855684aa79c4f862248e1ceda9334259062803965e5d3d264d4",
172-
"version": "16.0.3+2023506",
168+
"llvm-17-x86_64-linux": {
169+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230926/llvm-17.0.1+20230926-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
170+
"size": 229558479,
171+
"sha256": "427cc6f515f1fff87710cc264fb235570e245678fe0f655fad26d78f61fcb016",
172+
"version": "17.0.1+20230926",
173173
},
174174
"llvm-aarch64-macos": {
175175
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230506/llvm-16.0.3+20230506-aarch64-apple-darwin.tar.zst",

pythonbuild/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def clang_toolchain(host_platform: str, target_triple: str) -> str:
398398
if "musl" in target_triple:
399399
return "llvm-14-x86_64-linux"
400400
else:
401-
return "llvm-16-x86_64-linux"
401+
return "llvm-17-x86_64-linux"
402402
elif host_platform == "macos":
403403
if platform.mac_ver()[2] == "arm64":
404404
return "llvm-aarch64-macos"

0 commit comments

Comments
 (0)