diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-03-31 19:22:18 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-03-31 19:22:18 +0300 |
commit | fa8a0804b8fd7599367147754b4c82d555860374 (patch) | |
tree | e59d9a84e1fe1e812b5fe45f91d21c2dea6334c3 | |
parent | 4f5539f026fafe2a3bf190dd86e95f87d75a00e7 (diff) | |
download | fsf-binutils-gdb-fa8a0804b8fd7599367147754b4c82d555860374.zip fsf-binutils-gdb-fa8a0804b8fd7599367147754b4c82d555860374.tar.gz fsf-binutils-gdb-fa8a0804b8fd7599367147754b4c82d555860374.tar.bz2 |
* gdb/top.c (print_gdb_configuration): Announce --enable-threading.
This includes the reporting of --enable/disable-threading as part of
the GDB configuration description.
-rw-r--r-- | gdb/top.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1618,6 +1618,16 @@ This GDB was configured as follows:\n\ ")); #endif +#if CXX_STD_THREAD + fprintf_filtered (stream, _("\ + --enable-threading\n\ +")); +#else + fprintf_filtered (stream, _("\ + --disable-threading\n\ +")); +#endif + #ifdef RELOC_SRCDIR gdb_printf (stream, _("\ --with-relocated-sources=%s\n\ |