弄了好几次,特别讨厌,上网找了方法 解决了
1、在“工具”-》编译选项-》"Add following commands when calling complier"下面的编辑框里加上 -g3
2、在下面的"Add these commands to the linker command line" 下的编辑框上加上 -g3
3、转到programs页,把gcc行修改为:gcc.exe -D__DEBUG__
4、把g++行修改为g++.exe -D__DEBUG__ ,点击ok。
重新编译,就能调试了。