Deprecate MI version 1

MI version 1 is long since obsolete.  Rather than remove it
immediately (though I did send a patch for that), instead let's
deprecate it in GDB 13 and then remove it for GDB 14.

This version of the patch incorporates Simon's warning change, and
Luis' recommendation to mention the gdb versions here.
This commit is contained in:
Tom Tromey
2022-09-21 10:46:51 -06:00
parent 5a9886170b
commit 560f8d05a1
2 changed files with 12 additions and 0 deletions

View File

@ -170,11 +170,16 @@ interp_set (struct interp *interp, bool top_level)
if (interpreter_p != interp->name ())
interpreter_p = interp->name ();
bool warn_about_mi1 = false;
/* Run the init proc. */
if (!interp->inited)
{
interp->init (top_level);
interp->inited = true;
if (streq (interp->name (), "mi1"))
warn_about_mi1 = true;
}
/* Do this only after the interpreter is initialized. */
@ -184,6 +189,11 @@ interp_set (struct interp *interp, bool top_level)
clear_interpreter_hooks ();
interp->resume ();
if (warn_about_mi1)
warning (_("MI version 1 is deprecated in GDB 13 and "
"will be removed in GDB 14. Please upgrade "
"to a newer version of MI."));
}
/* Look up the interpreter for NAME. If no such interpreter exists,