From 567f1e231e495ba9cfb220e9895e1e7e4aab04af Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Fri, 27 Sep 2024 10:01:45 +0200 Subject: [PATCH] Update to GCC 14 (#445) * feat: Update GCC version * docs: Update changelog --- CHANGELOG.md | 1 + src/toolchain/gcc.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97401b8c..1843b945 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Changed +- Update GCC version to 14.2.0 (#442) ### Removed diff --git a/src/toolchain/gcc.rs b/src/toolchain/gcc.rs index e02827cf..3de8be67 100644 --- a/src/toolchain/gcc.rs +++ b/src/toolchain/gcc.rs @@ -16,7 +16,7 @@ use std::{env, fs::File}; use tokio::fs::remove_dir_all; const DEFAULT_GCC_REPOSITORY: &str = "https://github.com/espressif/crosstool-NG/releases/download"; -const DEFAULT_GCC_RELEASE: &str = "13.2.0_20230928"; +const DEFAULT_GCC_RELEASE: &str = "14.2.0_20240906"; pub const RISCV_GCC: &str = "riscv32-esp-elf"; pub const XTENSA_GCC: &str = "xtensa-esp-elf";