tags:

views:

24

answers:

1

I'm getting the following error when trying to output a stack trace through GDB:

global symbol 'object' found in a.cpp psymtab but not in symtab

What does this error mean exactly, and is it caused by my code or is it a GDB issue?

A: 

I think it's gdb issue. Try gdb 7.0 or 7.1

ks1322
Thanks, turns out my older version of GDB was causing the problem.
210