chore: rename ArchiveSrcDir

This commit is contained in:
Haolan
2025-09-10 11:47:02 +08:00
parent 8ce6c3b9ab
commit 073e79d03b
7 changed files with 24 additions and 24 deletions

View File

@@ -29,10 +29,10 @@ func withDefaultCCFlags(ccflags []string) []string {
// GetNewlibESP32Config returns the configuration for downloading and building newlib for ESP32
func GetNewlibESP32Config() compile.LibConfig {
return compile.LibConfig{
Url: "https://github.com/goplus/newlib/archive/refs/tags/esp-4.3.0_20250211-patch3.tar.gz",
Name: "newlib-esp32",
Version: "esp-4.3.0_20250211-patch3",
ArchiveSrcDir: "newlib-esp-4.3.0_20250211-patch3",
Url: "https://github.com/goplus/newlib/archive/refs/tags/esp-4.3.0_20250211-patch3.tar.gz",
Name: "newlib-esp32",
Version: "esp-4.3.0_20250211-patch3",
ResourceSubDir: "newlib-esp-4.3.0_20250211-patch3",
}
}