aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2013-04-17 01:02:02 +0000
committerYao Qi <yao@codesourcery.com>2013-04-17 01:02:02 +0000
commitab11614906ce02b01fc6ef39b35757fa16a467f9 (patch)
tree4c326c4d4b518f2ce32626ba1ad0679356b58f5f /gdb/top.c
parentf51aeeb2953812f64db308e4442a402bf7645cc9 (diff)
downloadgdb-ab11614906ce02b01fc6ef39b35757fa16a467f9.zip
gdb-ab11614906ce02b01fc6ef39b35757fa16a467f9.tar.gz
gdb-ab11614906ce02b01fc6ef39b35757fa16a467f9.tar.bz2
gdb/
* top.c (print_gdb_configuration): Print configure-time parameter on using libbabeltrace or not.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 6a402ba..480b67e 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1242,6 +1242,15 @@ This GDB was configured as follows:\n\
--without-zlib\n\
"));
#endif
+#if HAVE_LIBBABELTRACE
+ fprintf_filtered (stream, _("\
+ --with-babeltrace\n\
+"));
+#else
+ fprintf_filtered (stream, _("\
+ --without-babeltrace\n\
+"));
+#endif
}