From 0af0ec1b7df8740c7a4b9264f032cfd6dd87d144 Mon Sep 17 00:00:00 2001 From: Rui Salvaterra Date: Wed, 28 Jul 2021 12:33:09 +0100 Subject: [PATCH 1/1] toolchain/gcc: bump gcc 11 to 11.2 Patches automatically refreshed. Signed-off-by: Rui Salvaterra --- toolchain/gcc/Config.version | 2 +- toolchain/gcc/common.mk | 4 ++-- .../gcc/patches/{11.1.0 => 11.2.0}/002-case_insensitive.patch | 0 .../gcc/patches/{11.1.0 => 11.2.0}/010-documentation.patch | 0 .../patches/{11.1.0 => 11.2.0}/110-Fix-MIPS-PR-84790.patch | 0 .../gcc/patches/{11.1.0 => 11.2.0}/230-musl_libssp.patch | 0 .../{11.1.0 => 11.2.0}/300-mips_Os_cpu_rtx_cost_model.patch | 0 .../patches/{11.1.0 => 11.2.0}/810-arm-softfloat-libgcc.patch | 0 toolchain/gcc/patches/{11.1.0 => 11.2.0}/820-libgcc_pic.patch | 0 .../{11.1.0 => 11.2.0}/840-armv4_pass_fix-v4bx_to_ld.patch | 0 .../patches/{11.1.0 => 11.2.0}/850-use_shared_libgcc.patch | 0 .../gcc/patches/{11.1.0 => 11.2.0}/851-libgcc_no_compat.patch | 0 .../gcc/patches/{11.1.0 => 11.2.0}/870-ppc_no_crtsavres.patch | 0 .../gcc/patches/{11.1.0 => 11.2.0}/881-no_tm_section.patch | 0 .../gcc/patches/{11.1.0 => 11.2.0}/900-bad-mips16-crt.patch | 0 toolchain/gcc/patches/{11.1.0 => 11.2.0}/910-mbsd_multi.patch | 2 +- .../{11.1.0 => 11.2.0}/920-specs_nonfatal_getenv.patch | 2 +- .../patches/{11.1.0 => 11.2.0}/930-fix-mips-noexecstack.patch | 0 .../931-libffi-fix-MIPS-softfloat-build-issue.patch | 0 ...0-gotools-fix-compilation-when-making-cross-compiler.patch | 0 20 files changed, 5 insertions(+), 5 deletions(-) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/002-case_insensitive.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/010-documentation.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/110-Fix-MIPS-PR-84790.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/230-musl_libssp.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/300-mips_Os_cpu_rtx_cost_model.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/810-arm-softfloat-libgcc.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/820-libgcc_pic.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/840-armv4_pass_fix-v4bx_to_ld.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/850-use_shared_libgcc.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/851-libgcc_no_compat.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/870-ppc_no_crtsavres.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/881-no_tm_section.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/900-bad-mips16-crt.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/910-mbsd_multi.patch (98%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/920-specs_nonfatal_getenv.patch (90%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/930-fix-mips-noexecstack.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/931-libffi-fix-MIPS-softfloat-build-issue.patch (100%) rename toolchain/gcc/patches/{11.1.0 => 11.2.0}/960-gotools-fix-compilation-when-making-cross-compiler.patch (100%) diff --git a/toolchain/gcc/Config.version b/toolchain/gcc/Config.version index e8cc3215be..dd61d1e210 100644 --- a/toolchain/gcc/Config.version +++ b/toolchain/gcc/Config.version @@ -19,7 +19,7 @@ config GCC_VERSION default "7.5.0" if GCC_VERSION_7 default "9.3.0" if GCC_VERSION_9 default "10.3.0" if GCC_VERSION_10 - default "11.1.0" if GCC_VERSION_11 + default "11.2.0" if GCC_VERSION_11 default "8.4.0" config GCC_USE_IREMAP diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index 36849de007..76c5fc114a 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -44,8 +44,8 @@ ifeq ($(PKG_VERSION),10.3.0) PKG_HASH:=64f404c1a650f27fc33da242e1f2df54952e3963a49e06e73f6940f3223ac344 endif -ifeq ($(PKG_VERSION),11.1.0) - PKG_HASH:=4c4a6fb8a8396059241c2e674b85b351c26a5d678274007f076957afa1cc9ddf +ifeq ($(PKG_VERSION),11.2.0) + PKG_HASH:=d08edc536b54c372a1010ff6619dd274c0f1603aa49212ba20f7aa2cda36fa8b endif PATCH_DIR=../patches/$(GCC_VERSION) diff --git a/toolchain/gcc/patches/11.1.0/002-case_insensitive.patch b/toolchain/gcc/patches/11.2.0/002-case_insensitive.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/002-case_insensitive.patch rename to toolchain/gcc/patches/11.2.0/002-case_insensitive.patch diff --git a/toolchain/gcc/patches/11.1.0/010-documentation.patch b/toolchain/gcc/patches/11.2.0/010-documentation.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/010-documentation.patch rename to toolchain/gcc/patches/11.2.0/010-documentation.patch diff --git a/toolchain/gcc/patches/11.1.0/110-Fix-MIPS-PR-84790.patch b/toolchain/gcc/patches/11.2.0/110-Fix-MIPS-PR-84790.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/110-Fix-MIPS-PR-84790.patch rename to toolchain/gcc/patches/11.2.0/110-Fix-MIPS-PR-84790.patch diff --git a/toolchain/gcc/patches/11.1.0/230-musl_libssp.patch b/toolchain/gcc/patches/11.2.0/230-musl_libssp.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/230-musl_libssp.patch rename to toolchain/gcc/patches/11.2.0/230-musl_libssp.patch diff --git a/toolchain/gcc/patches/11.1.0/300-mips_Os_cpu_rtx_cost_model.patch b/toolchain/gcc/patches/11.2.0/300-mips_Os_cpu_rtx_cost_model.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/300-mips_Os_cpu_rtx_cost_model.patch rename to toolchain/gcc/patches/11.2.0/300-mips_Os_cpu_rtx_cost_model.patch diff --git a/toolchain/gcc/patches/11.1.0/810-arm-softfloat-libgcc.patch b/toolchain/gcc/patches/11.2.0/810-arm-softfloat-libgcc.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/810-arm-softfloat-libgcc.patch rename to toolchain/gcc/patches/11.2.0/810-arm-softfloat-libgcc.patch diff --git a/toolchain/gcc/patches/11.1.0/820-libgcc_pic.patch b/toolchain/gcc/patches/11.2.0/820-libgcc_pic.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/820-libgcc_pic.patch rename to toolchain/gcc/patches/11.2.0/820-libgcc_pic.patch diff --git a/toolchain/gcc/patches/11.1.0/840-armv4_pass_fix-v4bx_to_ld.patch b/toolchain/gcc/patches/11.2.0/840-armv4_pass_fix-v4bx_to_ld.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/840-armv4_pass_fix-v4bx_to_ld.patch rename to toolchain/gcc/patches/11.2.0/840-armv4_pass_fix-v4bx_to_ld.patch diff --git a/toolchain/gcc/patches/11.1.0/850-use_shared_libgcc.patch b/toolchain/gcc/patches/11.2.0/850-use_shared_libgcc.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/850-use_shared_libgcc.patch rename to toolchain/gcc/patches/11.2.0/850-use_shared_libgcc.patch diff --git a/toolchain/gcc/patches/11.1.0/851-libgcc_no_compat.patch b/toolchain/gcc/patches/11.2.0/851-libgcc_no_compat.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/851-libgcc_no_compat.patch rename to toolchain/gcc/patches/11.2.0/851-libgcc_no_compat.patch diff --git a/toolchain/gcc/patches/11.1.0/870-ppc_no_crtsavres.patch b/toolchain/gcc/patches/11.2.0/870-ppc_no_crtsavres.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/870-ppc_no_crtsavres.patch rename to toolchain/gcc/patches/11.2.0/870-ppc_no_crtsavres.patch diff --git a/toolchain/gcc/patches/11.1.0/881-no_tm_section.patch b/toolchain/gcc/patches/11.2.0/881-no_tm_section.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/881-no_tm_section.patch rename to toolchain/gcc/patches/11.2.0/881-no_tm_section.patch diff --git a/toolchain/gcc/patches/11.1.0/900-bad-mips16-crt.patch b/toolchain/gcc/patches/11.2.0/900-bad-mips16-crt.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/900-bad-mips16-crt.patch rename to toolchain/gcc/patches/11.2.0/900-bad-mips16-crt.patch diff --git a/toolchain/gcc/patches/11.1.0/910-mbsd_multi.patch b/toolchain/gcc/patches/11.2.0/910-mbsd_multi.patch similarity index 98% rename from toolchain/gcc/patches/11.1.0/910-mbsd_multi.patch rename to toolchain/gcc/patches/11.2.0/910-mbsd_multi.patch index b167436752..9f9d3226e8 100644 --- a/toolchain/gcc/patches/11.1.0/910-mbsd_multi.patch +++ b/toolchain/gcc/patches/11.2.0/910-mbsd_multi.patch @@ -114,7 +114,7 @@ Date: Tue Jul 31 00:52:27 2007 +0000 ; On SVR4 targets, it also controls whether or not to emit a --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi -@@ -9054,6 +9054,17 @@ This option is only supported for C and +@@ -9055,6 +9055,17 @@ This option is only supported for C and @option{-Wall} and by @option{-Wpedantic}, which can be disabled with @option{-Wno-pointer-sign}. diff --git a/toolchain/gcc/patches/11.1.0/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/11.2.0/920-specs_nonfatal_getenv.patch similarity index 90% rename from toolchain/gcc/patches/11.1.0/920-specs_nonfatal_getenv.patch rename to toolchain/gcc/patches/11.2.0/920-specs_nonfatal_getenv.patch index edbef09c6c..dda33c0202 100644 --- a/toolchain/gcc/patches/11.1.0/920-specs_nonfatal_getenv.patch +++ b/toolchain/gcc/patches/11.2.0/920-specs_nonfatal_getenv.patch @@ -7,7 +7,7 @@ Date: Sat Apr 21 03:02:39 2012 +0000 --- a/gcc/gcc.c +++ b/gcc/gcc.c -@@ -10090,8 +10090,10 @@ getenv_spec_function (int argc, const ch +@@ -10100,8 +10100,10 @@ getenv_spec_function (int argc, const ch } if (!value) diff --git a/toolchain/gcc/patches/11.1.0/930-fix-mips-noexecstack.patch b/toolchain/gcc/patches/11.2.0/930-fix-mips-noexecstack.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/930-fix-mips-noexecstack.patch rename to toolchain/gcc/patches/11.2.0/930-fix-mips-noexecstack.patch diff --git a/toolchain/gcc/patches/11.1.0/931-libffi-fix-MIPS-softfloat-build-issue.patch b/toolchain/gcc/patches/11.2.0/931-libffi-fix-MIPS-softfloat-build-issue.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/931-libffi-fix-MIPS-softfloat-build-issue.patch rename to toolchain/gcc/patches/11.2.0/931-libffi-fix-MIPS-softfloat-build-issue.patch diff --git a/toolchain/gcc/patches/11.1.0/960-gotools-fix-compilation-when-making-cross-compiler.patch b/toolchain/gcc/patches/11.2.0/960-gotools-fix-compilation-when-making-cross-compiler.patch similarity index 100% rename from toolchain/gcc/patches/11.1.0/960-gotools-fix-compilation-when-making-cross-compiler.patch rename to toolchain/gcc/patches/11.2.0/960-gotools-fix-compilation-when-making-cross-compiler.patch -- 2.30.2