I'd like to trace some code in GIMP and therefore need GIMP with debug symbols enabled. I don't remember whether I have enabled them during compilation. How to check that without recompiling the program?
A:
You can use file
and objdump
on Linux. In particular, you can look at whether file says "stripped" or "not stripped", and whether objdump --syms
outputs anything useful (for me, it says "no symbols" for a regular build).
Matthew Flaschen
2010-07-19 19:02:16
Stripped means no symbols, right?
Lukasz Czerwinski
2010-07-25 13:57:59