diff options
author | spaun2002 <spaun2002mobile@gmail.com> | 2021-04-28 20:15:27 -0700 |
---|---|---|
committer | spaun2002 <spaun2002mobile@gmail.com> | 2021-05-05 01:26:34 -0700 |
commit | 6ca5f91fb59bb77a942e1287a6fcfec7811ffa36 (patch) | |
tree | 088f5c271f7257a536d04bca39d7cabaac1f99ba /packages/gcc | |
parent | 37c61914ce16e5a9b175d493719b7f986bd00a84 (diff) | |
download | crosstool-ng-6ca5f91fb59bb77a942e1287a6fcfec7811ffa36.tar.gz crosstool-ng-6ca5f91fb59bb77a942e1287a6fcfec7811ffa36.tar.bz2 crosstool-ng-6ca5f91fb59bb77a942e1287a6fcfec7811ffa36.zip |
Disable -Werror for GLIBC for all ARCH for GCC11.
This change replicates what GLIBC 2.23 has in the string/rawmemchr.c:
// #if __GNUC_PREREQ (11, 0)
// /* Likewise GCC 11, with a different warning option. */
// DIAG_IGNORE_NEEDS_COMMENT (11, "-Wstringop-overread");
// #endif
With -Werror multiple platforms failing on the string/rawmemchr.c:40 line.
Signed-off-by: Nik Konyuchenko <spaun2002mobile@gmail.com>
Diffstat (limited to 'packages/gcc')
-rw-r--r-- | packages/gcc/package.desc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gcc/package.desc b/packages/gcc/package.desc index a37f0c58..0ee344e2 100644 --- a/packages/gcc/package.desc +++ b/packages/gcc/package.desc @@ -2,5 +2,5 @@ repository='svn svn://gcc.gnu.org/svn/gcc' mirrors='$(CT_Mirrors GNU gcc/gcc-${CT_GCC_VERSION}) $(CT_Mirrors sourceware gcc/releases/gcc-${CT_GCC_VERSION})' relevantpattern='4.*|. *|.' origin='GNU' -milestones='4.8 4.9 5 6 7 8' +milestones='4.8 4.9 5 6 7 8 11' archive_formats='.tar.xz .tar.gz' |