gdb 调试程序出现的错误
要调试的程序如下,环境:win7(64bits)+C-Free4.0+MinGW2.95+gdb5.2.1#include<stdio.h>
int main(void)
{
int a[5],i;
printf("Please input integer:\n");
for(i=0;i<=4;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<=4;i++)
{
printf("%d\n",a[i]);
}
return 0;
}
出现的错误是:
Error: dll starting at 0x76f21000 not found.
Error: dll starting at 0x75fd1000 not found.
Error: dll starting at 0x76f21000 not found.
Error: dll starting at 0x77041000 not found.
Program exited normally.
无论是什么程序,运行后,都出现这样的提示信息,这是什么原因引起的?网上搜索了一下没有想要的答案诶,就看到一个在stack over flow上的,说是查找的.dll文件不正确(看不太懂~~全英文)
网址:http://
希望能解决下
[ 本帖最后由 wssy213 于 2014-9-22 22:25 编辑 ]