从linux执行X11程序
我的大学使用的是linux操作系统,我们可以启动xserver,然后会出现空的gui,我编写了程序来显示一行,我编译了代码,没问题。但是当我执行程序时它显示分段错误,如何在gui中执行程序?
My college uses a linux os, we can start xserver and then empty gui will appear, i wrote program to display a line, i compiled the code it 's fine. but when i execute the program it shows segmentation fault, how to execute the program in gui??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的程序出现段错误,它可能与 GUI 无关。您可能正在尝试访问未授予您的内存。
对于您关于如何编写 GUI 的问题,我最好的建议是使用 Qt 或 GTK 等库来抽象出困难、奇怪的 Xserver 代码。
If your program segfaults, it probably has nothing to do with the GUI. You are probably attempting to access memory you weren't granted.
For your question on how to program a GUI, my best suggestion would be to use a library like Qt or GTK to abstract away the hard, strange Xserver code.