Next: , Previous: , Up: GDB/MI   [Contents][Index]


27.4 GDB/MI Development and Front Ends

The application which takes the MI output and presents the state of the program being debugged to the user is called a front end.

Since GDB/MI is used by a variety of front ends to GDB, changes to the MI interface may break existing usage. This section describes how the protocol changes and how to request previous version of the protocol when it does.

Some changes in MI need not break a carefully designed front end, and for these the MI version will remain unchanged. The following is a list of changes that may occur within one level, so front ends should parse MI output in a way that can handle them:

If the changes are likely to break front ends, the MI version level will be increased by one. The new versions of the MI protocol are not compatible with the old versions. Old versions of MI remain available, allowing front ends to keep using them until they are modified to use the latest MI version.

Since --interpreter=mi always points to the latest MI version, it is recommended that front ends request a specific version of MI when launching GDB (e.g. --interpreter=mi2) to make sure they get an interpreter with the MI version they expect.

The following table gives a summary of the released versions of the MI interface: the version number, the version of GDB in which it first appeared and the breaking changes compared to the previous version.

MI versionGDB versionBreaking changes
1
5.1
None
2
6.0
  • The -environment-pwd, -environment-directory and -environment-path commands now returns values using the MI output syntax, rather than CLI output syntax.
  • -var-list-children’s children result field is now a list, rather than a tuple.
  • -var-update’s changelist result field is now a list, rather than a tuple.
3
9.1
  • The output of information about multi-location breakpoints has changed in the responses to the -break-insert and -break-info commands, as well as in the =breakpoint-created and =breakpoint-modified events. The multiple locations are now placed in a locations field, whose value is a list.
4
13.1
  • The syntax of the "script" field in breakpoint output has changed in the responses to the -break-insert and -break-info commands, as well as the =breakpoint-created and =breakpoint-modified events. The previous output was syntactically invalid. The new output is a list.

If your front end cannot yet migrate to a more recent version of the MI protocol, you can nevertheless selectively enable specific features available in those recent MI versions, using the following commands:

-fix-multi-location-breakpoint-output

Use the output for multi-location breakpoints which was introduced by MI 3, even when using MI versions below 3. This command has no effect when using MI version 3 or later.

-fix-breakpoint-script-output

Use the output for the breakpoint "script" field which was introduced by MI 4, even when using MI versions below 4. This command has no effect when using MI version 4 or later.

The best way to avoid unexpected changes in MI that might break your front end is to make your project known to GDB developers and follow development on gdb@sourceware.org and gdb-patches@sourceware.org.


Next: , Previous: , Up: GDB/MI   [Contents][Index]