diff options
author | Nick Hainke <vincent@systemli.org> | 2023-04-27 23:03:14 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-05 15:46:37 +0200 |
commit | 29128b0bd43532404d965d22338554fce624db6a (patch) | |
tree | c176068e338aa6aa35867bc6270b9899dc912866 /toolchain/gcc/Config.version | |
parent | 1e88a16248601da03d78da7939d412588ad0ea52 (diff) | |
download | upstream-29128b0bd43532404d965d22338554fce624db6a.tar.gz upstream-29128b0bd43532404d965d22338554fce624db6a.tar.bz2 upstream-29128b0bd43532404d965d22338554fce624db6a.zip |
toolchain: gcc: add support for GCC 13
Release Notes:
https://gcc.gnu.org/pipermail/gcc-announce/2023/000175.html
Manually Refreshed:
- 910-mbsd_multi.patch
- 970-macos_arm64-building-fix.patch
Automatically Refreshed:
- 010-documentation.patch
- 230-musl_libssp.patch
- 300-mips_Os_cpu_rtx_cost_model.patch
- 820-libgcc_pic.patch
- 840-armv4_pass_fix-v4bx_to_ld.patch
- 850-use_shared_libgcc.patch
- 870-ppc_no_crtsavres.patch
- 920-specs_nonfatal_getenv.patch
Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'toolchain/gcc/Config.version')
-rw-r--r-- | toolchain/gcc/Config.version | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/gcc/Config.version b/toolchain/gcc/Config.version index 7d4bedfbe9..1c1b0a04a1 100644 --- a/toolchain/gcc/Config.version +++ b/toolchain/gcc/Config.version @@ -2,7 +2,12 @@ config GCC_VERSION_11 default y if GCC_USE_VERSION_11 bool +config GCC_VERSION_13 + default y if GCC_USE_VERSION_13 + bool + config GCC_VERSION string default "11.3.0" if GCC_VERSION_11 + default "13.1.0" if GCC_VERSION_13 default "12.2.0" |