Merge pull request #1275 from luoliwoshang/update/clang

internal/crosscompile:update clang with older glibc & more small size
This commit is contained in:
xushiwei
2025-09-10 13:38:00 +08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -48,8 +48,8 @@ var (
)
var (
espClangBaseUrl = "https://github.com/goplus/espressif-llvm-project-prebuilt/releases/download/19.1.2_20250820"
espClangVersion = "19.1.2_20250820"
espClangBaseUrl = "https://github.com/goplus/espressif-llvm-project-prebuilt/releases/download/19.1.2_20250905-3"
espClangVersion = "19.1.2_20250905-3"
)
// cacheRoot can be overridden for testing

View File

@@ -605,7 +605,7 @@ func TestESPClangDownloadWhenNotExists(t *testing.T) {
}
server := createTestServer(t, map[string]string{
"clang-esp-19.1.2_20250820-linux.tar.xz": string(archiveContent),
fmt.Sprintf("clang-esp-%s-linux.tar.xz", espClangVersion): string(archiveContent),
})
defer server.Close()