X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
Message-ID: <47C421F4.7E50D1EB@dessent.net>
Date: Tue, 26 Feb 2008 06:28:04 -0800
From: Brian Dessent <brian@dessent.net>
X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U)
MIME-Version: 1.0
To: cygwin@cygwin.com
Subject: Re: gdb, no line numbers after gcc -g ???
References: <Pine.GSO.4.64.0802261259480.22280@brains.eng.cse.dmu.ac.uk>  <47C41CB6.1B6B8E05@dessent.net> <Pine.GSO.4.64.0802261411120.23279@brains.eng.cse.dmu.ac.uk>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes
Reply-To: cygwin@cygwin.com
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Hugh Sasse wrote:

> OK, it works for a hello world, it says the symbols are loaded.
> Therefore, as was most likely, I've munged something.  How do I
> interrogate object files to see which is/are missing the symbol data
> (if that's what would throw everything else off the scent)?

You can use "objdump -h file.o" and look at the sections.  If you see
.stab and .stabstr then you have STABS debug symbols (default for -g);
if you have .debug_{abbrev,info,line,frame,pubnames,aranges,str} then
you have Dwarf-2 debug symbols, which you get with -gdwarf-2 and are
generally more sophisticated and better supported by gdb.  If you see
neither of those sets of sections, you have no debug data.

Brian

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

