GDB 8.3+ needs IPv6

... which wasn't enabled in uClibc-ng by default

Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
Alexey Neyman 2019-10-02 09:35:46 -07:00
parent 2880fcc519
commit 8a7f46f151
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -2,5 +2,5 @@ origin='GNU'
repository='git git://sourceware.org/git/binutils-gdb.git'
mirrors='$(CT_Mirrors GNU gdb) $(CT_Mirrors sourceware gdb/releases)'
relevantpattern='*.*|[a-z.]'
milestones='7.0 7.2 7.12 8.0'
milestones='7.0 7.2 7.12 8.0 8.3'
archive_formats='.tar.xz .tar.gz'