diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-08-26 17:31:12 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-04-28 09:56:20 +0100 |
commit | 1178f01adf9c3b3a5b0fa564aa4d570e26a26819 (patch) | |
tree | 6a3c5a423e9cc2bd7d84a6ef34a69b7eee610c67 | |
parent | 880ae75a2b7106045ed2ae212bbc28e4dc0ad667 (diff) | |
download | gdb-1178f01adf9c3b3a5b0fa564aa4d570e26a26819.zip gdb-1178f01adf9c3b3a5b0fa564aa4d570e26a26819.tar.gz gdb-1178f01adf9c3b3a5b0fa564aa4d570e26a26819.tar.bz2 |
gdb: initialise extension languages after processing early startup files
Now (thanks to the last few commits) all extension languages are
fully initialised in their finish_initialization method, this commit
delays the call to this method until after the early initialization
files have been processed.
Right now there's no benefit from doing this, but in a later commit I
plan to add new options for Python that will control how Python is
initialized.
With this commit in place, my next commits will allow the user to add
options to their early initialization file and alter how Python starts
up.
There should be no user visible changes after this commit.
gdb/ChangeLog:
* main.c (captured_main_1): Add a call to
finish_ext_lang_initialization.
* top.c (gdb_init): Remove call to finish_ext_lang_initialization.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/main.c | 3 | ||||
-rw-r--r-- | gdb/top.c | 6 |
3 files changed, 9 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9c7dcd8..5cf8439 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com> + * main.c (captured_main_1): Add a call to + finish_ext_lang_initialization. + * top.c (gdb_init): Remove call to finish_ext_lang_initialization. + +2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com> + * guile/guile.c (gdbscm_set_backtrace): Add declaration. (gdbscm_finish_initialization): Add code moved from _initialize_guile. @@ -1053,6 +1053,9 @@ captured_main_1 (struct captured_main_args *context) execute_cmdargs (&cmdarg_vec, CMDARG_EARLYINIT_FILE, CMDARG_EARLYINIT_COMMAND, &ret); + /* Finish initializing the extension languges. */ + finish_ext_lang_initialization (); + /* Recheck if we're starting up quietly after processing the startup scripts and commands. */ if (!quiet) @@ -2408,12 +2408,6 @@ gdb_init () set_language (language_c); expected_language = current_language; /* Don't warn about the change. */ - /* 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 - script initialization here. */ - finish_ext_lang_initialization (); - /* Create $_gdb_major and $_gdb_minor convenience variables. */ init_gdb_version_vars (); } |