使用自定义目录在 eclipse cdt c++ 中构建生成文件项目
你好,我在 eclipse helios cdt 中有一个 C++ makefile 项目。
我的外部 makefile 在 projectdirectory/bin 中生成二进制输出文件 如果我构建项目 eclipse 运行 makefile 并且没有编译问题,但是如果我运行它.. eclipse 找不到文件..
有什么建议吗?
hi i have a c++ makefile project in eclipse helios cdt.
my external makefile make the binary output files in projectdirectory/bin
if i build project eclipse runs the makefile and there are no compilation problem but if i run it.. eclipse doesn't find the files..
some advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您转到“运行”菜单并选择“调试配置”或“运行配置”(无论您关心哪个),选择“C/C++ 应用程序”,然后按“新建”图标,该图标是一个带有黄色的白色小页面。右上角的加号图标。
在右侧,您应该看到一个文本字段“C/C++ 应用程序:”,其中包含“搜索项目...”和“浏览...”按钮。选择“浏览...”并导航到构建输出可执行文件的位置。
这应该足以让您启动并运行。
If you goto the "Run" menu and select "Debug Configurations" or "Run Configurations" (whichever concerns you), select "C/C++ Application", and then press the 'New' icon which is a little white page with a yellow plus icon in the top right.
On the right hand side you should see a text field "C/C++ Application:" with the buttons "Search Project..." and "Browse...". Select "Browse..." and navigate to the location of the build output executable.
This should be sufficient to get you up and running.