diff options
-rw-r--r-- | config/libc/glibc.in | 5 | ||||
-rw-r--r-- | packages/gcc/package.desc | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 001cd2f1..e89ed8ce 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -403,8 +403,9 @@ config GLIBC_SSP # GCC8-related fixes were only available in glibc 2.27. config GLIBC_ENABLE_WERROR bool "Enable -Werror during the build" - depends on !(ARCH_POWERPC && ARCH_64 && GLIBC_V_2_32) - depends on !(ARCH_SPARC && GLIBC_V_2_32) + default n if GLIBC_2_32_or_later && ARCH_POWERPC && ARCH_64 + default n if GLIBC_2_32_or_later && ARCH_SPARC + default n if GLIBC_2_32_or_later && GCC_11_or_later default y if GCC_7_or_older default y if GCC_8_or_later && GLIBC_2_27_or_later help 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' |