diff options
author | Chris Packham <judge.packham@gmail.com> | 2024-07-12 15:18:51 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-07-24 10:45:07 +1200 |
commit | a211eaefd11d8e91fdf105d63caa72dd98af3a9f (patch) | |
tree | c98e7dbbe55bf82ffc7b83254efd498b9e8f8c35 /config | |
parent | 839bfbec6d1a8758e6507c009add0832784cd715 (diff) | |
download | crosstool-ng-a211eaefd11d8e91fdf105d63caa72dd98af3a9f.tar.gz crosstool-ng-a211eaefd11d8e91fdf105d63caa72dd98af3a9f.tar.bz2 crosstool-ng-a211eaefd11d8e91fdf105d63caa72dd98af3a9f.zip |
gdb: Add gdb 15.1
https://sourceware.org/pipermail/gdb-announce/2024/000140.html
The release notes state that "Building GDB and GDBserver now requires a
C++17 compiler (for instance, GCC 9 or later)". Looks like we already
satisfy this requirement with GDB_DEP_NO_STD_FUTURE.
gdbserver now has a dependency on iconv.h, for uclibc configurations we
need to make sure this is satisfied.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/debug/gdb.in.native | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/debug/gdb.in.native b/config/debug/gdb.in.native index 5afed525..20abb1ec 100644 --- a/config/debug/gdb.in.native +++ b/config/debug/gdb.in.native @@ -7,6 +7,7 @@ config GDB_NATIVE depends on CC_LANG_CXX select LIBC_UCLIBC_WCHAR if LIBC_UCLIBC_NG select LIBC_UCLIBC_IPV6 if LIBC_UCLIBC_NG && GDB_8_3_or_later + select LIBC_UCLIBC_LIBICONV if LIBC_UCLIBC_NG && GDB_15_or_later select EXPAT_TARGET select NCURSES_TARGET select GMP_TARGET if GDB_11_or_later @@ -21,6 +22,7 @@ config GDB_GDBSERVER depends on ! BARE_METAL select LIBC_UCLIBC_WCHAR if LIBC_UCLIBC_NG select LIBC_UCLIBC_IPV6 if LIBC_UCLIBC_NG && GDB_8_3_or_later + select LIBC_UCLIBC_LIBICONV if LIBC_UCLIBC_NG && GDB_15_or_later help Build and install a gdbserver for the target, to run on the target. |