views:

51

answers:

1

I compiled the Qt Framework with debugging enabled, but the script stripped the debugging symbols from the libraries and saved them as *.debug files -- just like here. Sadly I need these symbols inside the .so files, so I can continue working with them. There seems no way to teach my debugger to load external (non-PDB) symbols. So another way of solving my problem might be converting the .debug files to PDB format, which might also be a problem.

Thank you very much!

A: 

Which OS are you on that has .so files but also PDB symbols? I'm confused :-(.

SamB
Well, it's part of my diploma thesis and I'm working on Linux and Windows. Anyways, it doesn't matter anymore, I recompiled it omitting the strip command.
Bernd Schmickler