android 使用gdb调试的方式

1. 板子:

/system/bin/gdbserver 192.168.100.68:1234 --attach 1130

192.168.100.68  是pc端的地址 1130是你选择调试的进程号


2.pc设置

切换到android的根目录下执行

./prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-gdb out/target/product/generic/symbols/system/bin/app_process

set solib-search-path  out/target/product/generic/symbols/system/lib

target remote 192.168.100.160:1234

192.168.100.160为板子的ip地址


执行完了就可以添加断点进行gdb调试了。




你可能感兴趣的:(android)