为什么我无法链接我的 C/C++使用 NetBeans 的库?
我已从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它抱怨 #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?
您应该检查是否有文件
c:\cygwin\usr\include\stdio.h
。You should check whether you have a file
c:\cygwin\usr\include\stdio.h
.