ltrace 0.7.3-4ubuntu1 source package in Ubuntu

Changelog

ltrace (0.7.3-4ubuntu1) trusty; urgency=medium

  * Merge with Debian; remaining changes:
    - Set architecture to linux-any.
    - sysdeps/linux-gnu/trace.c: try to make PTRACE scope sysctl more
      discoverable.
    - Use libelf-dev instead of libelfg0-dev
    - Define _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE in debian/rules CFLAGS.
      The configure script has a bug where it can't properly cope with the need
      to define these before detecting the use of elfutils.

ltrace (0.7.3-4) unstable; urgency=low

  * Get rid of dh_autoreconf (not needed)
  * Added "mips" and "mipsel" architectures
  * Continue after unexpected breakpoint (closes: #649569)

ltrace (0.7.3-3) unstable; urgency=low

  * Really add support for armhf
  * Fix new compilation error on sparc

ltrace (0.7.3-2) unstable; urgency=low

  * Build without libunwind to avoid problems in transition
  * Added support for powerpcspe (closes: #692486)
  * Added support for armhf
  * Fix compilation on sparc

ltrace (0.7.3-1) unstable; urgency=low

  * New upstream release (closes: #675607), including:
    + support dlopen()'d libraries (closes: #537781)
    + support PIE binaries (closes: #614018)
    + fix -T option (closes: #548400)
    + use $HOST_CPU instead of $(uname -m) (closes: #457696)
    + don't hardcode gcc or assume -liberty and -lsupc++ exist (closes: #593639)
    + support threaded programs (closes: #282068, #591412)
  * Fix "free(): invalid pointer" crash (closes: #724253)
  * Fix FTBFS on alpha (closes: #678721)
  # Added "s390x" to the list of supported archs (closes: #645615)
  * Fixed dpkg-shlibdeps warning: don't link against
    libstdc++ or libsupc++ if we have libiberty
  * Switch to 3.0 (quilt) source format
  * Standards-Version: 3.9.5
  * Lintian clean

ltrace (0.5.3-2.2) unstable; urgency=medium

  * Non-maintainer upload
  * Build-depend on libiberty-dev instead of binutils-dev (Closes: #730933)
 -- Matthias Klose <email address hidden>   Mon, 06 Jan 2014 12:57:31 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Trusty
Original maintainer:
Ubuntu Developers
Architectures:
linux-any
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
ltrace_0.7.3.orig.tar.bz2 471.3 KiB 0e6f8c077471b544c06def7192d983861ad2f8688dd5504beae62f0c5f5b9503
ltrace_0.7.3-4ubuntu1.debian.tar.gz 12.7 KiB 3876c331b3a66d4a75a40d1d0e3d41d1c8468eff752a0492040f30ed4290a8ff
ltrace_0.7.3-4ubuntu1.dsc 1.2 KiB 939c2bbbed97dcb8a75412925dba060299feced677762b3ae650eb60be28660b

Available diffs

View changes file

Binary packages built by this source

ltrace: Tracks runtime library calls in dynamically linked programs

 ltrace is a debugging program which runs a specified command until it
 exits. While the command is executing, ltrace intercepts and records
 the dynamic library calls which are called by
 the executed process and the signals received by that process.
 It can also intercept and print the system calls executed by the program.
 .
 The program to be traced need not be recompiled for this, so you can
 use it on binaries for which you don't have the source handy.
 .
 You should install ltrace if you need a sysadmin tool for tracking the
 execution of processes.