[patch 1/3] uml: add dwarf sections to static link script

blaisorblade_at_yahoo.it
Date: 07/30/05

  • Next message: serge_at_hallyn.com: "Re: [patch 0/15] lsm stacking v0.3: intro"
    To: akpm@osdl.org
    Date:	Sat, 30 Jul 2005 21:05:33 +0200
    
    

    From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>

    Inside the linker script, insert the code for DWARF debug info sections. This
    may help GDB'ing a Uml binary. Actually, it seems that ld is able to guess
    what I added correctly, but normal linker scripts include this section so it
    should be correct anyway adding it.

    Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>

    ---
     linux-2.6.git-paolo/arch/um/kernel/uml.lds.S |   25 +++++++++++++++++++++++++
     1 files changed, 25 insertions(+)
    diff -puN arch/um/kernel/uml.lds.S~uml-add-dwarf-sections-to-static-link-script arch/um/kernel/uml.lds.S
    --- linux-2.6.git/arch/um/kernel/uml.lds.S~uml-add-dwarf-sections-to-static-link-script	2005-07-30 13:41:40.000000000 +0200
    +++ linux-2.6.git-paolo/arch/um/kernel/uml.lds.S	2005-07-30 13:41:40.000000000 +0200
    @@ -103,4 +103,29 @@ SECTIONS
       .stab.index 0 : { *(.stab.index) }
       .stab.indexstr 0 : { *(.stab.indexstr) }
       .comment 0 : { *(.comment) }
    +  /* DWARF debug sections.
    +     Symbols in the DWARF debugging sections are relative to the beginning
    +     of the section so we begin them at 0.  */
    +  /* DWARF 1 */
    +  .debug          0 : { *(.debug) }
    +  .line           0 : { *(.line) }
    +  /* GNU DWARF 1 extensions */
    +  .debug_srcinfo  0 : { *(.debug_srcinfo) }
    +  .debug_sfnames  0 : { *(.debug_sfnames) }
    +  /* DWARF 1.1 and DWARF 2 */
    +  .debug_aranges  0 : { *(.debug_aranges) }
    +  .debug_pubnames 0 : { *(.debug_pubnames) }
    +  /* DWARF 2 */
    +  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
    +  .debug_abbrev   0 : { *(.debug_abbrev) }
    +  .debug_line     0 : { *(.debug_line) }
    +  .debug_frame    0 : { *(.debug_frame) }
    +  .debug_str      0 : { *(.debug_str) }
    +  .debug_loc      0 : { *(.debug_loc) }
    +  .debug_macinfo  0 : { *(.debug_macinfo) }
    +  /* SGI/MIPS DWARF 2 extensions */
    +  .debug_weaknames 0 : { *(.debug_weaknames) }
    +  .debug_funcnames 0 : { *(.debug_funcnames) }
    +  .debug_typenames 0 : { *(.debug_typenames) }
    +  .debug_varnames  0 : { *(.debug_varnames) }
     }
    _
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at  http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at  http://www.tux.org/lkml/
    

  • Next message: serge_at_hallyn.com: "Re: [patch 0/15] lsm stacking v0.3: intro"

    Relevant Pages