Skip to content

Commit 564854b

Browse files
committed
Upgrade LLVM 17.0.6 -> 18.0.8
1 parent 7dcdddd commit 564854b

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
@@ -175,23 +175,23 @@
175175
"sha256": "04cb77c660f09df017a57738ae9635ef23a506024789f2f18da1304b45af2023",
176176
"version": "14.0.3+20220508",
177177
},
178-
"llvm-17-x86_64-linux": {
179-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240222/llvm-17.0.6+20240222-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
180-
"size": 229404408,
181-
"sha256": "fc5e9092a8915dde438c3b491c5e6321594de541245b619f391edba719e4bd4f",
182-
"version": "17.0.6+20240222",
178+
"llvm-18-x86_64-linux": {
179+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
180+
"size": 242840506,
181+
"sha256": "080c233fc7d75031b187bbfef62a4f9abc01188effb0c68fbc7dc4bc7370ee5b",
182+
"version": "18.0.8+20240713",
183183
},
184184
"llvm-aarch64-macos": {
185-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240222/llvm-17.0.6+20240222-aarch64-apple-darwin.tar.zst",
186-
"size": 131303875,
187-
"sha256": "e1acf616780f32787b37b5534cb342c0e1e4a56b80cb9283f537fd8c9976e0d1",
188-
"version": "17.0.6+20240222",
185+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-aarch64-apple-darwin.tar.zst",
186+
"size": 136598617,
187+
"sha256": "320da8d639186e020e7d54cdc35b7a5473b36cef08fdf7b22c03b59a273ba593",
188+
"version": "18.0.8+20240713",
189189
},
190190
"llvm-x86_64-macos": {
191-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240222/llvm-17.0.6+20240222-x86_64-apple-darwin.tar.zst",
192-
"size": 131306317,
193-
"sha256": "086d8c2fcb0e856b17a76f1c722a006fb62981e1c0f5f7a0ce3c912bd983c4d0",
194-
"version": "17.0.6+20240222",
191+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-x86_64-apple-darwin.tar.zst",
192+
"size": 136599290,
193+
"sha256": "3032161d1cadb8996b07fe5762444c956842b5a7d798b2fcfe5a04574fdf7549",
194+
"version": "18.0.8+20240713",
195195
},
196196
"m4": {
197197
"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
@@ -416,7 +416,7 @@ def clang_toolchain(host_platform: str, target_triple: str) -> str:
416416
if "musl" in target_triple:
417417
return "llvm-14-x86_64-linux"
418418
else:
419-
return "llvm-17-x86_64-linux"
419+
return "llvm-18-x86_64-linux"
420420
elif host_platform == "macos":
421421
if platform.mac_ver()[2] == "arm64":
422422
return "llvm-aarch64-macos"

0 commit comments

Comments
 (0)