安装 gtk 和 glib
大家好,请告诉我如何安装 glib 和 gtk 我正在使用 ubuntu 10.04。我没有找到任何命令,请告诉我安装它的过程
hi every one kindly tell me how to install glib and gtk i am using ubuntu 10.04. i did;nt find any commands kindly tell me the procedure to install it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需输入:
glib
是一个依赖项,因此它也会被安装。另外,您可能对安装glade
感兴趣,因为我记得它也安装了gtk
参考:Simply type:
glib
is a dependency so it will be installed too. Also you might be interested in installingglade
as i remember it installs agtk
reference too:一旦使用 apt-get 安装它们,您就可以使用以下命令轻松查找它们在库列表中的调用方式:
pkg-config --list-all | grep query
例如,您将“query”替换为“glib”,在结果中您可以找到:
glib-2.0 GLib - C Utility Library
因此,当您编译代码并且想要将您的库与 pkg-config 链接,您可以使用以下命令:
gcc -o example example.c `pkg-config --libs --cflags glib-2.0`
And once you install them with apt-get, you can easily look up how are they called in your library list using the following command:
pkg-config --list-all | grep query
You replace "query" with "glib" for example, in the result you can find:
glib-2.0 GLib - C Utility Library
So when you compile your code and you want to link your library with pkg-config, you can use this command:
gcc -o example example.c `pkg-config --libs --cflags glib-2.0`