eclipse+c++成长之路之----Launch failed.Binary not found和The selection cannot be launched,and there are no

按照https://www.cnblogs.com/jiftle/p/7156057.html
创建了一个工程,然后build时,总是报错:Launch failed.Binary not found

的时候,先保存写好的hello world 然后在点小锤子,编译就通过了,
由于是第一次运行,直接点击运行时 会报错The selection cannot be launched,and there are no recent launches
这个时候,右键项目选择run as 或,然后就会生成运行记录,以后在点击 run就可以了

【备注】
1 关于创建C++项目时,直接选择 exectuable下的empty project就可以,这个eclipse 自己自带的 生成 makefile文件,不用专门创建 makefile project
2. 不能是void main 必须得是 int main() 感觉Linux下得C++ 规则好多啊
3. eclipse中一个工程一个登陆文件夹,如果是两个独立得工程要分成两个文件夹,像软件开机登陆时下面得三个工程全部位于eclipse-workspace一个文件夹下是不可取得,,三个工程登陆时应该是三个不同路径,而不是一个路径。
eclipse+c++成长之路之----Launch failed.Binary not found和The selection cannot be launched,and there are no_第1张图片4.先编译,在debug或者run ,如果直接run的话,会报错Launch failed.Binary not found
编译没通过,而且直接run的话,也会报这个错。。。。

关于eclipse下的C++真的是一把辛酸泪啊。。。。从Windows下直接转到Linux真得好不容易。。。。。

你可能感兴趣的:(Linux,C/C++)