Does anybody experience mixing -g (debugging symbols) and -O2 (best safe optimization) with gcc compiler?
I have to debug crashes of a release program distributed to final users that could send me back the core file.
I've always used to call:
gdb << myprogram >> << core file >>
and see where the trouble is. Now I can just see the call-trace but having no debugging symbols I'm quite in trouble.
Any idea?