我可以在 cygwin 安装上使用 link.h 吗?
我已经安装了最新版本的 Cygwin,在安装过程中选择了以下软件包:
- libgcc1
- gcc
- gcc-core
并创建了一个仅包含这一行的文件(test.c):
#include <link.h>
然后从我的 Cygwin bash 中运行以下命令:
$ gcc test.c
... 但得到了这个错误:
test.c:1:18: link.h: No such file or directory
有什么想法可以修复它吗?
I have installed the latest version of Cygwin, selecting the following packages during setup:
- libgcc1
- gcc
- gcc-core
And created a file (test.c) with only this line:
#include <link.h>
Then ran the following from my Cygwin bash:
$ gcc test.c
... but got this error:
test.c:1:18: link.h: No such file or directory
Any ideas how I can fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cygwin基于Win32子系统,这意味着它使用Windows的可执行格式(COFF)和动态链接器,即它没有ELF动态链接器。因此,提供 ELF 特定的
可能没有什么意义。Cygwin is based on the Win32 subsystem, which means it uses Windows' executable format (COFF) and dynamic linker, i.e. it does not have an ELF dynamic linker. Hence providing the ELF-specific
<link.h>
would probably make little sense.