Qtcreator单步调试报错:The GDB process terminated

交叉编译链:arm-poky-linux-gnueabi-gcc

在Ubuntu中的Qtcreator做单步调试时,出现The GDB process terminated。

Qtcreator单步调试报错:The GDB process terminated_第1张图片

在打开qtcreator之前,我执行

source /opt/poky/1.7/environment-setup-cortexa9hf-vfp-neon-poky-linux-gnueabi

gdb环境变量从/usr/bin/gdb --> arm-poky-linux-gnueabi-gdb

Qtcreator从环境中获取gcc,gdb等环境变量。

GDB本地调试时,无法获取到/usr/bin/gdb,所以GDB进程终止。

而arm Qt程序做gdb调试时,会直接退出。

Qtcreator单步调试报错:The GDB process terminated_第2张图片

同样。

如果需要编译arm Qt程序,必须先声明环境变量source /opt/poky/1.7/environment-setup-cortexa9hf-vfp-neon-poky-linux-gnueabi

否则会出现:

Qtcreator单步调试报错:The GDB process terminated_第3张图片

 

 

 

 

你可能感兴趣的:(QT)