diff options
author | Alexey Neyman <stilor@att.net> | 2017-08-27 19:44:40 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-08-27 20:27:21 -0700 |
commit | 24b0e666b599253ff4884558a095a9d730694133 (patch) | |
tree | 06f5ae0e47689e16d84f982579b0c363e7221620 /config/libc | |
parent | 4d012dd5663a593c2cca851d60a6bac414ffdb09 (diff) | |
download | crosstool-ng-24b0e666b599253ff4884558a095a9d730694133.tar.gz crosstool-ng-24b0e666b599253ff4884558a095a9d730694133.tar.bz2 crosstool-ng-24b0e666b599253ff4884558a095a9d730694133.zip |
Apply ucontext patch to mainstream GCC releases
Not applicable to 4.8, as GLIBC2.26 requires 4.9 or newer. Record
that dependency.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/bionic.in | 2 | ||||
-rw-r--r-- | config/libc/glibc.in | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/config/libc/bionic.in b/config/libc/bionic.in index eafc482a..41b87a16 100644 --- a/config/libc/bionic.in +++ b/config/libc/bionic.in @@ -3,7 +3,7 @@ ## depends on ! WINDOWS && ! BARE_METAL ## depends on ARCH_ARM || ARCH_MIPS || ARCH_X86 ## depends on EXPERIMENTAL -## depends on GCC_6_or_later +## select GCC_REQUIRE_6_or_later ## ## select LIBC_SUPPORT_THREADS_POSIX ## diff --git a/config/libc/glibc.in b/config/libc/glibc.in index ee90884c..c600326c 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -26,6 +26,14 @@ config GLIBC_DEP_KERNEL_HEADERS_VERSION def_bool y select LINUX_REQUIRE_3_2_or_later if GLIBC_2_24_or_later +config GLIBC_DEP_BINUTILS + def_bool y + select BINUTILS_REQUIRE_2_25_or_later if GLIBC_2_26_or_later + +config GLIBC_DEP_GCC + def_bool y + select GCC_REQUIRE_4_9_or_later if GLIBC_2_26_or_later + config THREADS default "nptl" |