dAgeCKo [[email protected]] wrote: > Hello, > > under Linux, when using libtool for making libraries, we must use > libtool to start the debugger. The other solution is to install the > project (threw make install) and then debug from here. But this is too > complicated to do that each time. > > Unfortunately, qt creator does not provide any way to change how to > start the debugger.
You can use any script or binary as "debugger". In your case I'd try to use a wrapper script containing something like #!/bin/bash exec libtool --mode=execute /usr/bin/gdb "$@" Andre' So I'm hoping this could be an interresting feature for a next release. _______________________________________________ Qt-creator mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/qt-creator _______________________________________________ Qt-creator mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/qt-creator
