GNU C 库可以在非 GNU(或 POSIX)平台上使用吗?
只是想知道,GNU C 库 (glibc) 是否可以在非 GNU 和/或非 POSIX 平台(例如 Microsoft Windows)上使用?
Just wondering, is the GNU C Library (glibc) usable on non-GNU and/or non-POSIX platforms such as Microsoft Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,理论上是可能的,但在实践中并不值得。您需要将系统调用接口、动态链接器和其他部分移植到 Windows 或您选择的平台,而 Glibc 并不是一个理想的选择。
如果您确实需要一个独立的 C 库,我会考虑 newlib 或 uClibc(或 FreeBSD 的/OpenBSD 的 libc)基于 glibc。 Glibc 是一个复杂的野兽,替代品要小得多并且更容易理解。
Yes, its possible in theory, but not really worth it in practice. You would need to port the syscall interface, dynamic linker, and other parts to Windows or your platform of choice, and Glibc is not an ideal candidate for this.
If you really need a self contained C library, I would consider newlib or uClibc (or FreeBSD's/OpenBSD's libc) over glibc. Glibc is a complex beast, the alternatives are much smaller and easier to understand.
前提是 glibc 已移植到相关内核中。然而,使用 Gnulib 作为原生 API 的包装器可能会更容易。
It is provided that glibc has been ported to the kernel in question. It may however be easier to use Gnulib instead as a wrapper around the native API.