diff options
author | Alexey Neyman <stilor@att.net> | 2019-10-02 09:35:46 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2019-10-02 09:35:46 -0700 |
commit | 8a7f46f151cd689c1564f4649108eb75439b8003 (patch) | |
tree | bb0250d3b51e78260c087fb23e45d11a7babd47a /config/debug | |
parent | 2880fcc519465536e37071577ba2cea0739a319e (diff) | |
download | crosstool-ng-8a7f46f151cd689c1564f4649108eb75439b8003.tar.gz crosstool-ng-8a7f46f151cd689c1564f4649108eb75439b8003.tar.bz2 crosstool-ng-8a7f46f151cd689c1564f4649108eb75439b8003.zip |
GDB 8.3+ needs IPv6
... which wasn't enabled in uClibc-ng by default
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/debug')
-rw-r--r-- | config/debug/gdb.in.native | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/debug/gdb.in.native b/config/debug/gdb.in.native index 101e8246..917a770b 100644 --- a/config/debug/gdb.in.native +++ b/config/debug/gdb.in.native @@ -6,7 +6,8 @@ config GDB_NATIVE depends on ! BARE_METAL depends on ! LIBC_BIONIC depends on CC_LANG_CXX || !GDB_8_0_or_later - select LIBC_UCLIBC_WCHAR if LIBC_UCLIBC + select LIBC_UCLIBC_WCHAR if LIBC_UCLIBC && GDB_8_0_or_later + select LIBC_UCLIBC_IPV6 if LIBC_UCLIBC && GDB_8_3_or_later select EXPAT_TARGET select NCURSES_TARGET help @@ -18,6 +19,7 @@ config GDB_GDBSERVER default y depends on ! BARE_METAL select LIBC_UCLIBC_WCHAR if LIBC_UCLIBC && GDB_8_0_or_later + select LIBC_UCLIBC_IPV6 if LIBC_UCLIBC && GDB_8_3_or_later help Build and install a gdbserver for the target, to run on the target. |