There is a dynamic library compiled with debug information and sources for it. When debugging an application that uses this library, QtCreator shows characters from this library, but how to match them with the source?
Source: https://ru.stackoverflow.com/questions/779058/
All Articles
readelf -S /path/to/libmy.so | grep debugreadelf -S /path/to/libmy.so | grep debug... if you don’t have them, then just rebuild and make sure you collect with the-gkey ... after that it will most likely work out of the box if the source code doesn’t move ... - Fat-Zer