c++ graphics.h -lbgi not found(c++ graphics.h -lbgi not found)
问题描述
我有这个代码:
#include<graphics.h>
int main( )
{
initwindow( 700 , 700 , "MY First Program");
circle(200, 200, 150);
getch();
return 0;
}
但我收到此错误:
ld||cannot find -lbgi|
||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
我将它添加到链接器选项以及其他内容中.
I added it to linker options and also the other things.
我该怎么办?
推荐答案
下载 this 并将其放入 C 编译器的 lib 文件夹中.也不要忘记添加链接器:
Download this and put it in your C compiler's lib folder. Also do not forget to add in the linkers:
-lbgi
-lgdi32
-lcomdlg32
-luuid
-loleaut32
-lole32
执行上述操作后,您将获得属于initgraph()
或其他的实际编译错误.
After doing above, you would get the actual compile error belonging to initgraph()
or other.
它在 Codeblocks 13.12 中对我有用.
It is worked for me in Codeblocks 13.12.
这篇关于c++ graphics.h -lbgi not found的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c++ graphics.h -lbgi not found
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01