Cygwin 和 Eclipse Helios 设置
我正在尝试使用 Cygwin 和 Eclipse Helios 学习 C++。 我安装了Cygwin下的所有开发工具;并安装了 Helios 的 CDT 包。
问题是我没有看到从 makefile 或任何其他选项创建 C++ 项目的选项。我只能从现有源代码中看到 C 项目、C++ 项目和新项目的选项。
这是我提到的:
:
- 有没有关于为 Cygwin 设置 Eclipse 的明确指南?
- 我在设置中遗漏了什么吗?
任何其他建议都会有所帮助。
I am trying to learn C++ with Cygwin and Eclipse Helios.
I got all the development tools under Cygwin installed; and installed the CDT package for Helios.
The problem is I don't see an option to create a C++ project from makefile or any other option. I can only see options for a C Project, C++ project and a new project from existing source code.
Here is what I referred to:
Questions:
- Is there any clear guide to setup Eclipse for Cygwin?
- Am I missing something in the setup?
any other suggestion will be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是问如何在 cygwin + Eclipse 中设置 GCC 吗? 本教程怎么样?
Are you asking how to setup GCC in cygwin + Eclipse? How about this tutorial?
我发现这个教程是一个非常好的来源。它
几乎
完美,除了需要向包含cygstdc++-6.dll
的文件夹添加一个路径,这会阻止在控制台上打印任何内容。因此,添加到Project Properties -> C/C++ 通用 ->路径和符号 ->包括 GNU C++
缺少的 dll 文件夹的路径:${CYGWIN_HOME}/usr/i686-pc-cygwin/sys-root/usr/bin
。I found this tutorial to be a very good source. It was
almost
perfect, apart that one more path needed to be add to the folder containingcygstdc++-6.dll
which prevented anything to be printed on console. So, add to theProject Properties -> C/C++ General -> Paths and Symbols -> Includes GNU C++
the path to the missing dll folder:${CYGWIN_HOME}/usr/i686-pc-cygwin/sys-root/usr/bin
.