libdevel-gdb-perl 2.02-6 source package in Ubuntu

Changelog

libdevel-gdb-perl (2.02-6) unstable; urgency=medium

  [ Holger Levsen ]
  * Import Debian changes 2.02-4.1

  [ Debian Janitor ]
  * Apply multi-arch hints. + libdevel-gdb-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sun, 20 Nov 2022 14:29:26 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdevel-gdb-perl_2.02-6.dsc 2.1 KiB 32b6552d4c5119e0c574a7118f988a1468e60305ffee402315faf791f35fc5fc
libdevel-gdb-perl_2.02.orig.tar.gz 12.6 KiB 9c85c92b19a8aefc4264f24ea18a6b1c25b49324cc4211bfff1ccdbbdba614ee
libdevel-gdb-perl_2.02-6.debian.tar.xz 4.2 KiB 1f1bcf8352b5ead279317d7cb4a8db0cc2aa5fa4caa75b3eeec57a0b8a39b504

Available diffs

No changes file available.

Binary packages built by this source

libdevel-gdb-perl: module to open and communicate with a gdb session

 The Devel::GDB package provides an interface for communicating
 with GDB. Internally, it uses the GDB/MI interpreter
 (see http://sourceware.org/gdb/current/onlinedocs/gdb_25.html),
 which accurately informs the caller of the program state and,
 through the use of tokens, guarantees that the results returned
 actually correspond to the request sent.
 By contrast, GDB's console interpreter returns all responses on
 STDOUT, and thus there is no way to ensure that a particular response
 corresponds to a particular request.
 .
 Therefore, it is obviously preferable to use GDB/MI when programmatically
 interacting with GDB. This can be done via the send_cmd family of functions
 (send_cmd, send_cmd_excl, and send_cmd_async). There are, however,
 some cases when there is no GDB/MI command corresponding to a particular
 console command, or it has not yet been implemented (for example, -symbol-type,
 corresponding to the console command ptype, is not yet implemented as of GDB
 6.6). In this case, the get function provides a workaround by capturing all
 output sent to the console stream.