[PATCH 10/13] script language API for GDB

Doug Evans xdje42@gmail.com
Thu Dec 5 17:22:00 GMT 2013


This patch contains the changes to top.c.
The #ifdef HAVE_PYTHON has been removed, and the "finish initialization"
script made non-python-specific.

2013-12-05  Doug Evans  <xdje42@gmail.com>

	* top.c (gdb_init): Delete #ifdef HAVE_PYTHON call to
	finish_python_initialization.  Replace with call to
	finish_script_initialization.

diff --git a/gdb/top.c b/gdb/top.c
index 8ce1a9f..52b0fd6 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1860,11 +1860,9 @@ gdb_init (char *argv0)
   if (deprecated_init_ui_hook)
     deprecated_init_ui_hook (argv0);
 
-#ifdef HAVE_PYTHON
-  /* Python initialization can require various commands to be
+  /* Python initialization, for example, can require various commands to be
      installed.  For example "info pretty-printer" needs the "info"
      prefix to be installed.  Keep things simple and just do final
-     python initialization here.  */
-  finish_python_initialization ();
-#endif
+     script initialization here.  */
+  finish_script_initialization ();
 }



More information about the Gdb-patches mailing list