c++ - Qt - debug dynamic library -
i'm working on qt
application arm
, using 1 of our own qt
library. application compiles , runs fine. now, want debug. i've library source open in qt creator
, compiled lib files deployed @ /usr/lib
on target (arm
board). setting break points in qt creator
not working i.e., debugger never stopping @ breakpoints.
how debug dynamically loaded libraries?
you don't debug libraries, debug processes. attach process runs on target. if process has loaded library, breakpoints become active.
Comments
Post a Comment