I'm still with ndk-gdb, now I'm trying to solve the main problem that made me complete another question, to which I myself answered xD
ndk-gdb tells me that there is no character table for my current library. This is similar to the file that I am debugging, where it does not match the file that the emulator launches. But I reloaded the application. It also says “use the file command”, but the file only when I debug the local program, right? This is not suitable when I debug remotely, like using Android.
So what should I do? I am looking for a solution from 3 days, but I still do not know. Maybe I should ask, what are the other reasons for this message besides the file problem?
Thanks. Some information: ndk-build and ndk-gdb, called in the proyect parent directory. android api level 10 (2.3.3) android ndk r7b
Android.mk file contents:
MY_LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(MY_LOCAL_PATH) include $(CLEAR_VARS) LOCAL_MODULE := wrapper LOCAL_SRC_FILES := wrapper.c \ aes.c \ password.c \ sha256.c \ aescrypt.c include $(BUILD_SHARED_LIBRARY)
source share