From 620ceb06469c54e90b9cce09774d16373538643c Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 31 Dec 2024 11:28:11 +0800 Subject: [PATCH] Update windows-msvc-sysroot fallback url to version 2024-12-25 --- src/compiler/clang.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/clang.rs b/src/compiler/clang.rs index 01bfdbc..83a95f0 100644 --- a/src/compiler/clang.rs +++ b/src/compiler/clang.rs @@ -14,7 +14,7 @@ use crate::compiler::common::{ const MSVC_SYSROOT_REPOSITORY: &str = "trcrsired/windows-msvc-sysroot"; const MSVC_SYSROOT_ASSET_NAME: &str = "windows-msvc-sysroot.tar.xz"; -const FALLBACK_DOWNLOAD_URL: &str = "https://github.com/trcrsired/windows-msvc-sysroot/releases/download/20241217/windows-msvc-sysroot.tar.xz"; +const FALLBACK_DOWNLOAD_URL: &str = "https://github.com/trcrsired/windows-msvc-sysroot/releases/download/2024-12-25/windows-msvc-sysroot.tar.xz"; #[derive(Debug)] pub struct Clang;