Skip to content
Snippets Groups Projects
Commit 15b07e4f authored by Eli Zaretskii's avatar Eli Zaretskii
Browse files

Include xxHash support status in GDB configuration report

gdb/ChangeLog
2019-12-21  Eli Zaretskii  <eliz@gnu.org>

	* top.c (print_gdb_configuration): Print "--with-xxhash" or
	"--without-xxhash" according to HAVE_LIBXXHASH.
parent 39aa1497
No related branches found
No related tags found
No related merge requests found
2019-12-21 Eli Zaretskii <eliz@gnu.org>
* top.c (print_gdb_configuration): Print "--with-xxhash" or
"--without-xxhash" according to HAVE_LIBXXHASH.
2019-12-20 Weimin Pan <weimin.pan@oracle.com> 2019-12-20 Weimin Pan <weimin.pan@oracle.com>
* ctfread.c (ctf_file_key): Change type to objfile_key. * ctfread.c (ctf_file_key): Change type to objfile_key.
(struct ctf_context): Remove typedef. (struct ctf_context): Remove typedef.
......
...@@ -1478,35 +1478,43 @@ This GDB was configured as follows:\n\ ...@@ -1478,35 +1478,43 @@ This GDB was configured as follows:\n\
#endif #endif
#if HAVE_LIBBABELTRACE #if HAVE_LIBBABELTRACE
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--with-babeltrace\n\ --with-babeltrace\n\
")); "));
#else #else
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--without-babeltrace\n\ --without-babeltrace\n \
")); "));
#endif #endif
#if HAVE_LIBIPT #if HAVE_LIBIPT
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--with-intel-pt\n\ --with-intel-pt\n\
")); "));
#else #else
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--without-intel-pt\n\ --without-intel-pt\n\
")); "));
#endif #endif
#if HAVE_LIBMPFR #if HAVE_LIBMPFR
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--with-mpfr\n\ --with-mpfr\n\
")); "));
#else #else
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--without-mpfr\n\ --without-mpfr\n\
")); "));
#endif #endif
#if HAVE_LIBXXHASH
fprintf_filtered (stream, _("\
--with-xxhash\n\
"));
#else
fprintf_filtered (stream, _("\
--without-xxhash\n\
"));
#endif
#ifdef WITH_PYTHON_PATH #ifdef WITH_PYTHON_PATH
fprintf_filtered (stream, _("\ fprintf_filtered (stream, _("\
--with-python=%s%s\n\ --with-python=%s%s\n\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment