如何使用 g++ 编译 fltk 程序在Ubuntu中?
如何在 Ubuntu 中使用 g++ 编译 fltk 程序?
直截了当的问题。几个小时以来我一直在寻找并尝试很多东西。我见过的一些例子需要X11R6,但我在我的电脑上只能找到X11。如果有人能告诉我,我将不胜感激。
How can I compile a fltk program using g++ in Ubuntu?
Straight-forward question. I've been searching for and trying many things for a couple hours now. Some of the examples I have seen require X11R6, but I can only find X11 on my computer. If anyone can tell me, I would be extremely grateful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
打开终端。
cd 到包含名为 file22.cpp 的文本文件或您保存的文件的目录。
类型:
g++
fltk-config --cxxflags
file22.cppfltk-config --ldflags
-o go要运行类型:
./go
我已将其与 Ubuntu 8 一起使用Ubuntu 12.10 和 Mint 13 和 Mint 14。
都是Linux的。
如果使用 GUI Fluid,则使用 Files22.cxx。
g++
fltk-config --cxxflags
file22.cxxfltk-config --ldflags
-o goOpen a terminal.
cd to the directory that has your text file named file22.cpp or what ever you saved as.
Type:
g++
fltk-config --cxxflags
file22.cppfltk-config --ldflags
-o goTo run type:
./go
I have used this with Ubuntu 8 to Ubuntu 12.10 and Mint 13 and Mint 14.
Which are all Linux.
Files22.cxx is used if the GUI Fluid is used.
g++
fltk-config --cxxflags
file22.cxxfltk-config --ldflags
-o goSterling,您需要了解的一切都在这个页面上:http://www.fltk.org /doc-1.3/basics.html
Sterling, all you need to know is on this page: http://www.fltk.org/doc-1.3/basics.html
您拥有的
X11
是X11R6
。如果您告诉我们您的实际问题是什么,您会得到更好的答案。
X11
that you have isX11R6
.You'll get a better answer if you tell us what your actual problem is.
不要忘记反引号!;)
don't forget the backtiks!;)