Author Topic: Debug symbols, where are they.  (Read 2831 times)

Offline GiuliaReis

  • Single posting newcomer
  • *
  • Posts: 5
Debug symbols, where are they.
« on: January 27, 2011, 05:53:52 pm »
I selected the "Process debugging symbols..." tab but after rebuild the app I do'nt get them.
I looked in the Debug direcory and others but nothing.
I'm doing something wrong? C::B 10.5 Ubuntu 10.10

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Debug symbols, where are they.
« Reply #1 on: January 27, 2011, 06:36:53 pm »
Hm, search google for gcc split symbols or something like that.
The default mode for gcc/g++ is to embed the symbols in the executable/library.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline GiuliaReis

  • Single posting newcomer
  • *
  • Posts: 5
Re: Debug symbols, where are they.
« Reply #2 on: February 04, 2011, 12:17:04 pm »
Hm, search google for gcc split symbols or something like that.
The default mode for gcc/g++ is to embed the symbols in the executable/library.
Yep, that did the trick gdb -c core -f file
thanks Rob