如何在 Eclipse 中为 C++ 获取 Xlib 代码乌班图
我有一些带有以下 Xlib 标头的代码,但不知道该怎么做才能使其工作...我找不到这些标头。
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>
抱歉刚接触这个.. 好的,现在我可以在 Eclipse IDE 中查看 Foldrrs 中的标头了。 我收到以下错误。源代码没有问题,因为朋友已经从终端运行了它,我想从 eclipse ide 执行此操作:
在函数 main' 中: /home/abbas/workspace/test3/Debug/../src/test3.cpp:51:未定义的引用
XOpenDisplay'
以及许多其他相同类型的错误,但功能不同。
Collect2: ld 返回 1 退出状态 make: *** [test3] 错误 1
请地狱!!
I have some code with the following headers for Xlib but don't know what to do to make it work...I can't find these headers.
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>
Sorry new to this..
Okay so now I can view the headers in the foldrrs in my eclipse IDE.
and i get the following errors.Thee is no problem with the source as friends have run it from the terminal,and i want to do it from eclipse ide:
In function main':
XOpenDisplay'
/home/abbas/workspace/test3/Debug/../src/test3.cpp:51: undefined reference to
and many other errors of the same type but the functions are different.
collect2: ld returned 1 exit status
make: *** [test3] Error 1
Plzz hellpp!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
右键单击项目文件夹>属性> C/C++ 构建 >设置> GCC C++ 链接器 >图书馆>添加“X11”
Right click on Project Folder> Properties> C/C++ Build > Settings > GCC C++ Linker > Libraries > add "X11"