I am trying to debug with QTCreator my shared library which is being called with dlopen and dlsym. QT debugger does not stop at breakpoints in the shared library.
When I run my app with with GDB it works correctly.
The SO has debugging symbols.
how can I get QTCreator to debug my app?
Thanks.
Update:
I created a gdb startup script with the full path to my project and it now works. Thing is, I don't want this script to run for every project using QT.
Is it possible to do this per project?