Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: Lennyk <lennyk430@gmail.com>
To: Michael Snyder <msnyder@vmware.com>
Cc: "gdb@sourceware.org" <gdb@sourceware.org>
Subject: Re: Core dump information when code is optimized
Date: Mon, 20 Apr 2009 14:47:00 -0000	[thread overview]
Message-ID: <49EC2AC1.6080903@gmail.com> (raw)
In-Reply-To: <49E76456.80907@vmware.com>

Thanks!

In the meantime I found how to separate the debug and symbol information 
from the binary executable - using objcopy:

1) Copy only the debug & symbol information from the binary to another file:
    objcopy --only-keep-debug <your_binary_filename> <output_file>
2) Strip the original binary file from its debug & symbol information:
    objcopy --strip-debug <your_binary_filename>
3) Link between the stripped binary and the debug & symbol information 
file created in step (1):
    objcopy --add-gnu-debuglink=<file_with_debug_info> <stripped_binary>

That's it! now the binary executable is optimized in size - and the core 
dump generates debug & symbol information from the created output file 
(in step (1)).

Enjoy,
Lenny.

Michael Snyder wrote:
> Lennyk wrote:
>> Hi,
>>
>> When I compile only with -O1 flag - my core dump information does not 
>> show line number or offset (when a segmentation fault has occurred).
>> Only when I add the -g flag does the core dump contain line number 
>> information - but the executable's size grows significantly!
>>
>> Is there a way to get this information with core dump - but maintain 
>> the optimized sized executable?
>
> It is -g that matters, not -O.
>
> -g generates line info.  This info goes into your executable, but it
> does not increase your memory footprint -- only the size of the file.
> In other words this line info is not copied into memory at runtime.
>
> Which means that it also does not appear in the corefile, so your
> corefile should not get significantly bigger.
>
>


      reply	other threads:[~2009-04-20  8:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-16  7:00 Lennyk
2009-04-16  9:00 ` Joel Brobecker
2009-04-17  7:59 ` Michael Snyder
2009-04-20 14:47   ` Lennyk [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49EC2AC1.6080903@gmail.com \
    --to=lennyk430@gmail.com \
    --cc=gdb@sourceware.org \
    --cc=msnyder@vmware.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox