Eclipse / Cygwin
NDK 8c
Building a shared library
I can\'t get gdbserver to start anymore after switching to armeabi-v7a. I\'ve searched online for hours
I had the same issue. I configured eclipse following this article.
Then I change from armeabi
to armeabi-v7a
. Then I couldn't debug.
I fixed this issue:
1) You must fix the folders in "Debug configurations"
...obj/local/armeabi/app_process to ...obj/local/armeabi-v7a/app_process
...obj/local/armeabi/gdb2.setup to obj/local/armeabi-v7a/gdb2.setup
.../toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gdb to toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gdb
2) May be this is workaround but it works. In "Debug configurations" ->Debugger->Shared Libraries add <project path>/obj/local/armeabi-v7a
and check "Load shared library symbols automatically"