gio 和 gvfs 库支持哪些平台?
当使用 GNOME 堆栈中的 GIO 和 GVFS 库编写应用程序时,我的应用程序可用于哪些平台?例如,是否可以在 Windows、Solaris 或 *BSD 上编译该应用程序? GIO/GVFS 和依赖库在这些系统上是否可以作为二进制包使用?
When writing an application using the GIO and GVFS libraries from the GNOME stack what platforms will my application be available for? Will it be possible to compile the application on Windows, Solaris or *BSD, for example? Are the GIO/GVFS and dependent libraries available as binary packages on those systems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GIO 是 glib 的一部分;它使用 POSIX API,因此它应该可以在所有 *nix 系统上运行,并且它确实对 Windows 有一些支持。 GVFS 是一个客户端-服务器系统,包含 *nix-only 标头,并且似乎根本不支持 Windows。
我将从 http://www.gtk.org/download-windows.html 上的 glib 二进制文件开始 然后从那里开始。
GIO is part of glib; it uses POSIX APIs so it should work on all *nix systems, and it does have some support for Windows. GVFS is a client-server system, includes *nix-only headers and doesn't seem like it supports Windows at all.
I would start with the glib binaries on http://www.gtk.org/download-windows.html and go from there.