本文介绍了Eclipse CDT生成的Makefile在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经用Eclipse(helios)CDT构建了一个hello world C ++项目。它编译好。但是我想看看Makefile CDT生成的。我找不到它在项目文件夹/ debug / release文件夹或src文件夹中。如果您使用当前构建器= CDT内部的默认设置
builder ,没有make文件。
如果选择当前builder = GNU make
,您将在debug文件夹中看到makefile。
I've built a hello world C++ project with Eclipse(helios) CDT. It compiled fine. But I would like to take a look at the Makefile CDT generated. I can't find it in project folder/debug/release folders or in the src folders. Where can I find this Makefile?
解决方案
If you use the default setttings with current builder = CDT internal builder
, there is no make file.if you select current builder = GNU make
, you will see the makefile in the debug folder.
这篇关于Eclipse CDT生成的Makefile在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!