diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d0e2c0..5f5c875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- Add support for LLVM esp-19.1.2_20250211 (#477) +- Add support for LLVM esp-19.1.2_20250225 (#477, #479) ### Fixed - Return an error if GET request fails (#471) diff --git a/src/toolchain/llvm.rs b/src/toolchain/llvm.rs index 6c6dd3a..7108ae6 100644 --- a/src/toolchain/llvm.rs +++ b/src/toolchain/llvm.rs @@ -27,7 +27,7 @@ const OLD_LLVM_16_VERSION: &str = "esp-16.0.0-20230516"; const DEFAULT_LLVM_16_VERSION: &str = "esp-16.0.4-20231113"; const DEFAULT_LLVM_17_VERSION: &str = "esp-17.0.1_20240419"; const DEFAULT_LLVM_18_VERSION: &str = "esp-18.1.2_20240912"; -const DEFAULT_LLVM_19_VERSION: &str = "esp-19.1.2_20250211"; +const DEFAULT_LLVM_19_VERSION: &str = "esp-19.1.2_20250225"; pub const CLANG_NAME: &str = "xtensa-esp32-elf-clang"; #[derive(Debug, Clone, Default)]