Skip to content

Commit c0d1fbb

Browse files
committed
unix: upgrade LLVM 15.0.7 -> 16.0.2
1 parent 6df41aa commit c0d1fbb

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

pythonbuild/downloads.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -156,23 +156,23 @@
156156
"sha256": "04cb77c660f09df017a57738ae9635ef23a506024789f2f18da1304b45af2023",
157157
"version": "14.0.3+20220508",
158158
},
159-
"llvm-15-x86_64-linux": {
160-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230114/llvm-15.0.7+20230114-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
161-
"size": 185056557,
162-
"sha256": "342c9055742335612589b526b19af7a8dd1fa279fddc0e7bf95523fc64a9a2dd",
163-
"version": "15.0.7+20230114",
159+
"llvm-16-x86_64-linux": {
160+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230430/llvm-16.0.2+20230430-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
161+
"size": 226085814,
162+
"sha256": "b5d5a0a486bb28ea7057189ecb797c178eeca8acaf93e895358eac450ee6d930",
163+
"version": "16.0.2+20230430",
164164
},
165165
"llvm-aarch64-macos": {
166-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230114/llvm-15.0.7+20230114-aarch64-apple-darwin.tar.zst",
167-
"size": 87441488,
168-
"sha256": "c41dae91b3fc6700bbefb92d63d3cb3e323328828b3df02fe2d59270ecd44f83",
169-
"version": "15.0.7+20230114",
166+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230430/llvm-16.0.2+20230430-aarch64-apple-darwin.tar.zst",
167+
"size": 116377876,
168+
"sha256": "c4adc46fc9e3f244bcabeb9610543e3b9ba3b795ba12b2bbbe61642ff0effb59",
169+
"version": "16.0.2+20230430",
170170
},
171171
"llvm-x86_64-macos": {
172-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230114/llvm-15.0.7+20230114-x86_64-apple-darwin.tar.zst",
173-
"size": 93773184,
174-
"sha256": "6c352e679f8af864f7a8b46b68c63169b3bed3a7692161a6f76be67a6124d830",
175-
"version": "15.0.7+20230114",
172+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20230430/llvm-16.0.2+20230430-x86_64-apple-darwin.tar.zst",
173+
"size": 123726853,
174+
"sha256": "7f8ef7f14b0188a2e3baffe155d3023b1a8e5f7fb7942fcf66f1a5b45053899c",
175+
"version": "16.0.2+20230430",
176176
},
177177
"m4": {
178178
"url": "https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.xz",

pythonbuild/utils.py

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

0 commit comments

Comments
 (0)