Does anyone know how to debug native Eclipse Android application on Windows? Linux users do not seem to have any problems with this.
The main goal is to start the debugging process from Eclipse (without any manipulation of the console after each start).
I went through many tutorials, but none of them allowed me to break execution on a set of breakpoints in C ++ code (I tried at least 10 of them).
I have no problem with CR LF in gdb.setup, I have C ++ code compiled with ndk-build -j8 NDK_DEBUG=1Eclipse. All my breakpoints are set as a response to the user's click, so gdb should already be connected. When I click "Debug As Native Android Application", I get the following output:
warning: Could not load shared library symbols for 72 libraries, eg / system / bin / linker.
Use the "info sharedlibrary" command to see the complete listing.
Do you need "set solib-search-path" or "set sysroot"?
warning: Unable to find dynamic linker breakpoint function.
GDB will retry eventurally. Meanwhile, it is likely
that gdb is unable to debug shared library initializers
or resolve pending breakpoints after dlopen ().
[New Thread 3239]
[New Thread 3241]
[New Thread 3242]
[New Thread 3243]
[New Thread 3244]
[New Thread 3245]
[New Thread 3246]
[New Thread 3247]
[New Thread 3248]
The target endianness is set automatically (currently little endian)
No symbol table is loaded. Use the "file" command.
No symbol table is loaded. Use the "file" command.
Any ideas on what the problem is?