没有符号表信息+分段错误

时间:2014-01-21 23:07:26

标签: c++ windows debugging codeblocks

我正在尝试使用Code :: Blocks运行一个简单的图形程序。我能够没有错误地构建它,但是当我运行它时,我收到一条错误消息,No symbol table info available和分段错误。这是我的代码:

#include <graphics.h> 
#include <iostream>

using namespace std;

int main()
{
   initwindow(800,600);
   circle(200,300,600);
   closegraph();
   return 0;
}    

这是我的构建输出:

-------------- Build: Debug in aa (compiler: GNU GCC Compiler)---------------

mingw32-g++.exe -Wall -fexceptions -g -o alla.exe -Wall -g  -c E:\C++\aa\main.cpp -o     obj\Debug\main.o
mingw32-g++.exe  -o bin\Debug\aa.exe obj\Debug\main.o  -lbgi -lgdi32 -lcomdlg32 -    luuid -loleaut32 -lole32  -lbgi
Output file is bin\Debug\aa.exe with size 1.02 MB
Process terminated with status 0 (0 minute(s), 1 second(s))
0 error(s), 0 warning(s) (0 minute(s), 1 second(s))

可能是什么问题?

0 个答案:

没有答案