Eclipse for Linux “Launch Failed. Binary Not Found.”错误
When you program in C, and your in Eclipse on a Unix based machine, you must build an object file before you can compile it. So if you dont “BUILD” your file, then it will not be able to link and load that object file, and hence it does not have the required binary numbers to execute.
In Eclipse, if you use the Shortcut CTRL + B, this will build the program, its the same thing as doing gcc in the linux command line, for those of you that use EMACS you know what im talking about.
或者:Project->Properties->C/C++ Build->Settings->Binary Parsers
选择GNU Elf Parser 1 楼 grhappygr 2011-08-21 Thank you !!!My english is poor ,but your answer is the my answer.Finally fint it !