diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-04-28 21:49:05 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-05-01 12:02:54 +1200 |
commit | 7e211419738abcb6db7cfc18c0553da36a504a36 (patch) | |
tree | 0d3258771e2bb27f124d79630e27dd6e8b2eb363 /packages/glibc | |
parent | dd4d19fce2296aaadd4443f8f8551f2f8e5aa7a4 (diff) | |
download | crosstool-ng-7e211419738abcb6db7cfc18c0553da36a504a36.tar.gz crosstool-ng-7e211419738abcb6db7cfc18c0553da36a504a36.tar.bz2 crosstool-ng-7e211419738abcb6db7cfc18c0553da36a504a36.zip |
glibc: Enable -Werror for more combinations of GCC/GLIBC
Newer GCC versions trigger warnings on older GLIBC versions. GLIBC 2.29
is warning free with GCC9. GLIBC 2.31 is warning free with GCC10. GLIBC
2.34 is warning free with GCC11.
Add milestones for 2.31 and 2.34 and use those to set the default value
for GLIBC_ENABLE_WERROR based on the GCC version.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/glibc')
-rw-r--r-- | packages/glibc/package.desc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/glibc/package.desc b/packages/glibc/package.desc index 7a749881..56e42a5d 100644 --- a/packages/glibc/package.desc +++ b/packages/glibc/package.desc @@ -3,6 +3,6 @@ repository='git git://sourceware.org/git/glibc.git' mirrors='$(CT_Mirrors GNU glibc)' # Cannot use MAJOR.MINOR as the relevant part because of 2.12: 2.12.2 was the most recent # bugfix release, but it didn't have glibc-ports released alongside it. -milestones='2.14 2.17 2.20 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.30 2.32' +milestones='2.14 2.17 2.20 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.30 2.31 2.32 2.34' archive_formats='.tar.xz .tar.bz2 .tar.gz' signature_format='packed/.sig' |