diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2023-05-03 20:48:54 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-15 07:00:29 +0200 |
commit | 07918b79b7b50fd806d55977085ac183b0ab2cbe (patch) | |
tree | 3572582d5818e754d7bddde0ee65aeb6ccd835d7 /Toolchain/BuildIt.sh | |
parent | 4809f60e2d15e1f82969e16cdbabcc61de7f8281 (diff) | |
download | serenity-07918b79b7b50fd806d55977085ac183b0ab2cbe.zip |
Toolchain+Ports: Update GCC to 13.1.0
This is a mostly straight-forward rebase of our patches on top of
13.1.0. The spec files needed a change, as GCC no longer supports STABS
debug information, but we were building GCC with support for it.
Highlights of this release include static `operator()`, The Equality
Operator You Are Looking For and extended `constexpr` support.
Diffstat (limited to 'Toolchain/BuildIt.sh')
-rwxr-xr-x | Toolchain/BuildIt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index 1caaf529fb..62f6b2a2af 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -82,8 +82,8 @@ BINUTILS_BASE_URL="https://ftp.gnu.org/gnu/binutils" # Note: If you bump the gcc version, you also have to update the matching # GCC_VERSION variable in the project's root CMakeLists.txt -GCC_VERSION="12.2.0" -GCC_MD5SUM="73bafd0af874439dcdb9fc063b6fb069" +GCC_VERSION="13.1.0" +GCC_MD5SUM="43e4de77f2218c83ca675257ea1af9ef" GCC_NAME="gcc-$GCC_VERSION" GCC_PKG="${GCC_NAME}.tar.xz" GCC_BASE_URL="https://ftp.gnu.org/gnu/gcc" |