安装 gtk 和 glib

发布于 2024-10-21 15:03:15 字数 70 浏览 5 评论 0原文

大家好,请告诉我如何安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荭秂 2024-10-28 15:03:15

只需输入:

sudo apt-get install libgtk2.0-dev

glib 是一个依赖项,因此它也会被安装。另外,您可能对安装 glade 感兴趣,因为我记得它也安装了 gtk 参考:

sudo apt-get install glade

Simply type:

sudo apt-get install libgtk2.0-dev

glib is a dependency so it will be installed too. Also you might be interested in installing glade as i remember it installs a gtk reference too:

sudo apt-get install glade
幻想少年梦 2024-10-28 15:03:15

一旦使用 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`

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文