我可以在 cygwin 安装上使用 link.h 吗?

发布于 2024-09-14 22:15:03 字数 378 浏览 5 评论 0原文

我已经安装了最新版本的 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 技术交流群。

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

发布评论

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

评论(1

盛夏尉蓝 2024-09-21 22:15:03

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.

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