为什么我无法链接我的 C/C++使用 NetBeans 的库?

发布于 2024-08-06 03:58:36 字数 572 浏览 4 评论 0原文

我已从 Cygwin 下载了 C/C++ 库 >,并按照此处的说明设置环境变量,在NetBeans。

我也经历过这个

事实上,我在另一台机器上遵循了相同的步骤,一切都很顺利。 但在我的机器上,没有建立关联。 例如:#include 表示没有这样的文件或目录

知道问题出在哪里吗?

我下载的Cygwin包也很好,我下载了两次。

I've downloaded C/C++ libraries from Cygwin, and set the environment variables according to the instructions here, in NetBeans.

I've also gone through this.

Actually I followed the same steps on a different machine and everything worked out fine.
But on my machine the associations aren't made.
for example: #include<stdio.h> says No such file or directory.

Any idea what the problem might be?

The Cygwin package I downloaded is also fine, I downloaded it twice.

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

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

发布评论

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

评论(2

半枫 2024-08-13 03:58:36

如果它抱怨 #include,那是编译问题,而不是链接问题。

如果您创建一个新的 C/C++ 应用程序项目并尝试构建它,会发生什么情况?

在项目属性的“构建”节点中,是否选择了正确的工具集合? (在你的情况下是Cygwin)。和工具 -> “C/C++”选项卡上的“选项”该工具集合设置是否正确?

If it's complaining about a #include, that's a compile issue, not a linking issue.

What happens if you create a new C/C++ application project and try to build it?

In the Build node of the project properties, is the correct Tool Collection selected? (Cygwin in your case). And the Tools -> Options, on the C/C++ tab, is that tool collection set up correctly?

归途 2024-08-13 03:58:36

您应该检查是否有文件 c:\cygwin\usr\include\stdio.h

You should check whether you have a file c:\cygwin\usr\include\stdio.h.

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