~ubuntu-branches/debian/experimental/gdb/experimental

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Hector Oron
  • Date: 2014-11-09 16:29:31 UTC
  • mfrom: (1.2.14)
  • Revision ID: package-import@ubuntu.com-20141109162931-1q6gwbm2lbkap9k3
Tags: 7.8.1-1
* Imported Upstream version 7.8.1
  - GDB 7.8.1 provides the following fixes and improvements over GDB 7.8:
    + PR python/17364 (Need better printer names in bound_registers.py)
    + PR build/17104 (CFLAGS="-Wall -Wextra" gdb/confgure --with-babeltrace
      fails)
    + PR gdb/17345 (babeltrace (1.1.2 and later) complains about the ctf
      data generated by GDB)
    + PR build/17298 (gcore: Couldn't get registers: No such process)
    + PR python/17342 (Xmethod Python is not Python 3 compatible)
    + PR python/17355 (Crash on Python frame filters with unreadable arg)
    + PR guile/17367 (computation of guild path wrong when pkg-config script
      supplied as arg to --with-guile)
    + PR gdb/17247 (gdb freezes on multi threaded app)
    + PR gdb/17347 (Regression: GDB stopped on run with attached process)
    + PR gdb/17407 (Regression for Linux vDSO reading)
    + PR server/17457 (aarch64/gdbserver: wrong floating point registers
      display)
    + PR server/17487 (state->dr_control_mirror == 0 failed assertion in
      gdbserver on Windows)
    + PR gdb/17472 (with annotations, input while executing in the foreground
      crashes readline/gdb)
    + PR gdb/17471 (repeating a background command makes it foreground)
    + PR cli/17300 (crash in non-stop mode with continue -a &
      (readline_callback_read_char() called with no handler!))
    + PR python/17372 (python hangs when displaying help())
    + PR python/17408 (../../gdb/infrun.c:5256: internal-error:
      switch_back_to_stepped_thread: Assertion `!schedlock_applies(1)'
      failed.)
  - Fix --batch mode parameter
    (Closes: #763518)
* d/control*:
  - Bump Standars Version stanza, no changes needed.
  - -dbg depends on main binary version.
* d/rules: fix FTBFS caused by dpkg 1.17.17 changes.
  (Closes: #766754)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
DEB_HOST_GNU_SYSTEM := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM)
35
35
DEB_HOST_GNU_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
36
36
DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 
37
DEB_TARGET_ARCH := $(shell dpkg-architecture -qDEB_TARGET_ARCH)
 
38
DEB_TARGET_GNU_TYPE := $(shell dpkg-architecture -qDEB_TARGET_GNU_TYPE)
37
39
 
38
40
# Cross configuration support.  Check for an environment variable
39
41
# $GDB_TARGET, or a file debian/target.
44
46
endif
45
47
endif
46
48
 
47
 
DEB_TARGET_ARCH := $(shell dpkg-architecture -f \
48
 
                     -a$(GDB_TARGET) -qDEB_HOST_ARCH 2>/dev/null)
49
 
DEB_TARGET_GNU_TYPE := $(shell dpkg-architecture -f \
50
 
                         -a$(DEB_TARGET_ARCH) -qDEB_HOST_GNU_TYPE 2>/dev/null)
51
49
DEB_TARGET_ALIAS ?= $(DEB_TARGET_GNU_TYPE)
52
50
 
53
51
ifneq ($(GDB_TARGET),)