如何在Netbeans/Windows下安装C标准库头?
我希望能够在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要 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.