1.下载gdbserver
gdbserver的源代码在gdb的源代码包中
ftp://sourceware.org/pub/gdb/releases/gdb-6.8.tar.bz2
2.准备toolchain
使用codesoucery的toolchain
http://www.codesourcery.com/sgpp/lite/arm/portal/package3696/public/arm-none-linux-gnueabi/arm-2008q3-72-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
3.配置gdbserver
在gdb文件下下,能找到gdbserver文件夹
首先声明一个环境变量CC
export CC=YOUR-PATH-OF-GCC/arm-none-linux-gnueabi-gcc
配置
./configure --host=arm-none-linux --target=arm-none-linux
意思是说编译在arm-none-linux上运行的,能执行arm-none-linux目标文件的gdbserver
4.make 编译
就会生成一个gdbserver可执行文件
5.使用gdbserver远程调试应用程序
以串口为例
假设应用程序为hello
在arm板子上的命令行下运行
gdbserver /dev/ttyS0 hello
在开发机上运行
gdb hello
在gdb的提示符下运行
gdbserver的源代码在gdb的源代码包中
ftp://sourceware.org/pub/gdb/releases/gdb-6.8.tar.bz2
2.准备toolchain
使用codesoucery的toolchain
http://www.codesourcery.com/sgpp/lite/arm/portal/package3696/public/arm-none-linux-gnueabi/arm-2008q3-72-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
3.配置gdbserver
在gdb文件下下,能找到gdbserver文件夹
首先声明一个环境变量CC
export CC=YOUR-PATH-OF-GCC/arm-none-linux-gnueabi-gcc
配置
./configure --host=arm-none-linux --target=arm-none-linux
意思是说编译在arm-none-linux上运行的,能执行arm-none-linux目标文件的gdbserver
4.make 编译
就会生成一个gdbserver可执行文件
5.使用gdbserver远程调试应用程序
以串口为例
假设应用程序为hello
在arm板子上的命令行下运行
gdbserver /dev/ttyS0 hello
在开发机上运行
gdb hello
在gdb的提示符下运行
target remote YOUR SERIAL