Index: [thread] [date] [subject] [author]
  From: Andrew Apted <ajapted@netspace.net.au>
  To  : ggi-develop@eskimo.com
  Date: Sat, 17 Jul 1999 00:13:02 +1000

Re: Debugging infos

Christoph Egger writes:

>  I can't debug any library-internal routines I wrote, because gdb says
>  there are no debug informations available, although I enabled the -g3
>  gcc-option on  ALL  files. 
>  Even on creating the library I use the -g3 option:
>  
>          $(CC) -g3 -s -shared $(ALL_OBJECTS) -o lib3dtk.so -lefence -lc -lm -lgic -lrecognizers -lggi -lgii
>  	      ^^^^

info gcc:

  `-s' Remove all symbol table and relocation information from the
       executable.

Solution: take out the `-s'.  And please RTFM.

Cheers,
___________________________________________________
                                               \  /
  Andrew Apted   <ajapted@netspace.net.au>      \/
 

Index: [thread] [date] [subject] [author]