patches/gdb/6.3/660-debian_dwarf-cfa-restore.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 17 16:22:51 2007 +0000 (2007-05-17)
changeset 96 aa1a9fbd6eb8
permissions -rw-r--r--
Debug facilities:
- add a framework to easily add new ones
- add gdb as a first debug facility
- add patches for gdb
After the kernel checked its installed headers, clean up the mess of .checked.* files.
Reorder scripts/crosstool.sh:
- dump the configuration early
- renice early
- get info about build system early, when setting up the environment
- when in cross or native, the host tools are those of the build system, and only in this case
- elapsed time calculations moved to scripts/functions
Remove handling of the color: it's gone once and for all.
Update tools/addToolVersion.sh:
- handle debug facilities
- commonalise some code
- remove dead tools (cygwin, tcc)
Point to my address for bug reports.
     1 Status: Checked in to HEAD after 6.3.
     2 
     3 2004-11-09  Daniel Jacobowitz  <dan@debian.org>
     4 
     5 	* dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Correct allocated
     6 	size.
     7 
     8 Index: src/gdb/dwarf2-frame.c
     9 ===================================================================
    10 RCS file: /cvs/src/src/gdb/dwarf2-frame.c,v
    11 retrieving revision 1.45
    12 diff -u -p -r1.45 dwarf2-frame.c
    13 --- src/gdb/dwarf2-frame.c	7 Nov 2004 21:16:11 -0000	1.45
    14 +++ src/gdb/dwarf2-frame.c	9 Nov 2004 14:42:52 -0000
    15 @@ -162,7 +162,7 @@ dwarf2_frame_state_alloc_regs (struct dw
    16  static struct dwarf2_frame_state_reg *
    17  dwarf2_frame_state_copy_regs (struct dwarf2_frame_state_reg_info *rs)
    18  {
    19 -  size_t size = rs->num_regs * sizeof (struct dwarf2_frame_state_reg_info);
    20 +  size_t size = rs->num_regs * sizeof (struct dwarf2_frame_state_reg);
    21    struct dwarf2_frame_state_reg *reg;
    22  
    23    reg = (struct dwarf2_frame_state_reg *) xmalloc (size);