Debug external shared library in Qt Creator Android project
Mobile and Embedded
2
Posts
1
Posters
2.4k
Views
1
Watching
-
I have Qt Quick Android app which uses external C++ library, it's a binary with .so extension.
I build this library by myself using CMake and CMAKE_BUILD_TYPE is set to Debug. When I launch app in Qt Creator debug mode I can stop on breakpoints in my Qt code, but it doesn't jump into library calls, I see only assembler listings.
Is it possible to tell debugger where library source code is and is it even possible to debug external libraries like this?
-
See the answer on SO: http://stackoverflow.com/q/31076312/1645784