如何在Netbeans/Windows下安装C标准库头?

发布于 2024-12-05 09:16:29 字数 115 浏览 1 评论 0原文

我希望能够在 Windows 环境中使用 Netbeans IDE 用 C 进行开发,但不知道如何在 Windows 计算机上安装 C 的标准库头。

谷歌搜索没有成功。

尖端? 谢谢。

I want to be able to develop in C using the Netbeans IDE in my Windows environment, but can't figure out how to install the standard library headers for C on a Windows machine.

Google searches offered no success.

Tips?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

左秋 2024-12-12 09:16:29

如果您需要 POSIX 支持并且习惯在 Linux 环境中编程,请采取看看 Cygwin使用 newlib C 库。否则,您可能正在寻找 MinGW,它针对 Microsoft C 运行时库

Cygwin 和 MinGW 都为标准 C 库提供了自己的一组标头。

使用 Cygwin 进行开发需要将其库安装在客户端计算机上。但是,您可以使用 mno-cygwin 编译器标志进行构建而是使用 MinGW-32 标头和运行时库。

MinGW 二进制文件应在 Windows 客户端上运行,无需安装任何额外的库。

If you want POSIX support and are used to programming in a Linux environment, take a look at Cygwin, which uses the newlib C library. Otherwise you're probably looking for MinGW, which compiles against the Microsoft C run-time library.

Both Cygwin and MinGW provide their own set of headers for the standard C library.

Developing with Cygwin will require its libraries to be installed on client machines. However, you can build with the mno-cygwin compiler flag to instead use the MinGW-32 headers and runtime libraries.

MinGW binaries should run on Windows clients without installing any extra libraries.

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