Skip to content

Commit 2b08be0

Browse files
committed
downloads: upgrade LLVM 18.0.8 -> 19.1.0
1 parent d0dfafd commit 2b08be0

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

pythonbuild/downloads.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -177,24 +177,24 @@
177177
},
178178
# Remember to update LLVM_URL in src/release.rs whenever upgrading.
179179
"llvm-18-x86_64-linux": {
180-
"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",
181-
"size": 242840506,
182-
"sha256": "080c233fc7d75031b187bbfef62a4f9abc01188effb0c68fbc7dc4bc7370ee5b",
183-
"version": "18.0.8+20240713",
180+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20241214/llvm-19.1.0+20241214-gnu_only-x86_64-unknown-linux-gnu.tar.zst",
181+
"size": 251197833,
182+
"sha256": "cbd9e41f582edd04d244421735d4269cda9d61fe485ec5f3c0e94913df3ba422",
183+
"version": "19.1.0+20241214",
184184
},
185185
# Remember to update LLVM_URL in src/release.rs whenever upgrading.
186186
"llvm-aarch64-macos": {
187-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-aarch64-apple-darwin.tar.zst",
188-
"size": 136598617,
189-
"sha256": "320da8d639186e020e7d54cdc35b7a5473b36cef08fdf7b22c03b59a273ba593",
190-
"version": "18.0.8+20240713",
187+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20241214/llvm-19.1.0+20241214-aarch64-apple-darwin.tar.zst",
188+
"size": 143868620,
189+
"sha256": "05ebc62e85e871c011f1d10411c5fb6dad2cc802233d46abc42e693a9b529778",
190+
"version": "19.1.0+20241214",
191191
},
192192
# Remember to update LLVM_URL in src/release.rs whenever upgrading.
193193
"llvm-x86_64-macos": {
194-
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-x86_64-apple-darwin.tar.zst",
195-
"size": 136599290,
196-
"sha256": "3032161d1cadb8996b07fe5762444c956842b5a7d798b2fcfe5a04574fdf7549",
197-
"version": "18.0.8+20240713",
194+
"url": "https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20241214/llvm-19.1.0+20241214-x86_64-apple-darwin.tar.zst",
195+
"size": 143101266,
196+
"sha256": "39e5e47df6c575d30298843d3bc2ecb9d8b413a902b55f5bec7b0fae87376d05",
197+
"version": "19.1.0+20241214",
198198
},
199199
"m4": {
200200
"url": "https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.xz",

src/release.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,14 +583,14 @@ pub fn produce_install_only_stripped(tar_gz_path: &Path, llvm_dir: &Path) -> Res
583583
static LLVM_URL: Lazy<Url> = Lazy::new(|| {
584584
if cfg!(target_os = "macos") {
585585
if std::env::consts::ARCH == "aarch64" {
586-
Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-aarch64-apple-darwin.tar.zst").unwrap()
586+
Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20241214/llvm-19.1.0+20241214-aarch64-apple-darwin.tar.zst").unwrap()
587587
} else if std::env::consts::ARCH == "x86_64" {
588-
Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20240713/llvm-18.0.8+20240713-x86_64-apple-darwin.tar.zst").unwrap()
588+
Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20241214/llvm-19.1.0+20241214-x86_64-apple-darwin.tar.zst").unwrap()
589589
} else {
590590
panic!("unsupported macOS architecture");
591591
}
592592
} else if cfg!(target_os = "linux") {
593-
Url::parse("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").unwrap()
593+
Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20241214/llvm-19.1.0+20241214-gnu_only-x86_64-unknown-linux-gnu.tar.zst").unwrap()
594594
} else {
595595
panic!("unsupported platform");
596596
}

0 commit comments

Comments
 (0)