¡@

Home 

c++ Programming Glossary: solib

Debugging core files generated on a Customer's box

http://stackoverflow.com/questions/10616417/debugging-core-files-generated-on-a-customers-box

you.tar.gz C tmp from customer gdb path to binary gdb set solib absolute prefix tmp from customer gdb core core # Note very.. from customer gdb core core # Note very important to set solib ... before loading core gdb where # Get meaningful stack trace..

How to avoid entering library's source files while debugging in Qt Creator with gdb?

http://stackoverflow.com/questions/1448426/how-to-avoid-entering-librarys-source-files-while-debugging-in-qt-creator-with

share improve this question You need to turn off auto solib add. From a normal gdb prompt you would type gdb set auto solib.. add. From a normal gdb prompt you would type gdb set auto solib add off In Qt Creator under Options Debugger Gdb you can specify.. a Gdb startup script. Create a file with the set auto solib add off command in it and then set your Gdb startup script to..

gdb says “cannot open shared object file”

http://stackoverflow.com/questions/932384/gdb-says-cannot-open-shared-object-file

read your .bashrc before it invokes gdb. Try to put 'set solib search path' and 'set solib absolute path in your .gdbinit file.. invokes gdb. Try to put 'set solib search path' and 'set solib absolute path in your .gdbinit file instead share improve this..