diff options
author | Chris Packham <judge.packham@gmail.com> | 2019-09-05 11:11:12 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2019-09-05 11:32:23 +1200 |
commit | 7b362e6dae1d0744b1f35a930e8ec515b1ccb00b (patch) | |
tree | d47abd41edf56fb2020638a231ad4d2a7ab8f762 /config/libc | |
parent | afaf7b9a25b5d77991002936be5c47fc5ff549de (diff) | |
download | crosstool-ng-7b362e6dae1d0744b1f35a930e8ec515b1ccb00b.tar.gz crosstool-ng-7b362e6dae1d0744b1f35a930e8ec515b1ccb00b.tar.bz2 crosstool-ng-7b362e6dae1d0744b1f35a930e8ec515b1ccb00b.zip |
Add glibc 2.30
Add the GNU C Library version 2.30. Bring forward the
typedef-caddr.patch. Skip the ARC patch for now.
https://sourceware.org/ml/libc-alpha/2019-08/msg00029.html
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/glibc.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 4138707f..48f49fe1 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -37,10 +37,12 @@ config GLIBC_DEP_BINUTILS # Glibc 2.29 requires GCC5+ or, for ppc64le, GCC6.2+. We only support the latest # release on GCC6 branch, so just assume it is newer than 6.2 +# Glibc 2.30 uncondtionally requires GCC 6.2+ config GLIBC_DEP_GCC def_bool y select GCC_REQUIRE_5_or_later if GLIBC_2_29_or_later select GCC_REQUIRE_6_or_later if GLIBC_2_29_or_later && ARCH_POWERPC && ARCH_64 && ARCH_LE + select GCC_REQUIRE_6_or_later if GLIBC_2_30_or_later # Glibc 2.29 requires bison 2.7 or later. All versions in ct-ng satisfy that # version requirement. |