尝试在Eclipse中进行调试,在[十六进制数]"''''''

时间:2014-08-07 18:07:17

标签: c eclipse debugging

我的C程序运行没有问题。错误是调试。它识别断点并且F8通过它们没问题,但没有变量出现。

以下是我的调试设置

http://i60.tinypic.com/28peus.jpg

enter image description here

enter image description here

任何帮助都会很棒,谢谢

修改

这是代码,但无关紧要:

#include <stdio.h>
#include <stdlib.h>

int main(){

    int i = 3;

    int j = 4;

    printf("%d %d\n", i, j);

    return 0;


}

这是调试窗口的样子。注意缺少变量和错误文本为红色:

enter image description here

同样,我可以添加断点,在该窗口中不会显示任何内容。

Sasikanth,我不确定你要求的截图是什么?

编辑2

啊,我明白了。这是请求的scrnshot

enter image description here

有人有任何想法吗?

1 个答案:

答案 0 :(得分:3)

所以我实际上能够解决这个问题。经过大量的研究,我意识到我的gdb.exe文件已经过时了。更新MinGW修复它(因此它不是Eclipse问题)

感谢您帮助的尝试!