GNU C 库可以在非 GNU(或 POSIX)平台上使用吗?

发布于 2024-10-03 17:07:03 字数 79 浏览 7 评论 0原文

只是想知道,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 技术交流群。

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

发布评论

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

评论(2

绝情姑娘 2024-10-10 17:07:03

是的,理论上是可能的,但在实践中并不值得。您需要将系统调用接口、动态链接器和其他部分移植到 Windows 或您选择的平台,而 Glibc 并不是一个理想的选择。

如果您确实需要一个独立的 C 库,我会考虑 newlibuClibc(或 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.

海的爱人是光 2024-10-10 17:07:03

前提是 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.

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