I use a RTOS is build in an lib.a file. If i break in my applicantions code, i can step into the code of the library.
Breakpoints i set inside sorces in my Library are ignored though. How can i break inside my Library?
I use a RTOS is build in an lib.a file. If i break in my applicantions code, i can step into the code of the library.
Breakpoints i set inside sorces in my Library are ignored though. How can i break inside my Library?
Did you compile your library with optimizations turned off and debug symbols added?
Bryan
Did you compile your library with optimizations turned off and debug symbols added?
Bryan
I compiled it with -g -O0 (-g2 would not work).
Only the breakpoints in my Source work. The Breakpoints (blue dots) have an extra blue check left of them. The ones wihout this check do not work.