I/Oを含むC++プログラムをビルドしようとすると、Eclipseでエラーが発生します。eclipseで入力と出力を持つC++プログラムをコンパイルできません
02:19:02 **** Incremental Build of configuration Debug for project SecondProject ****
make all
Building target: SecondProject
Invoking: GCC C++ Linker
g++ -o "SecondProject"
g++: fatal error: no input files
makefile:45: recipe for target 'SecondProject' failed
compilation terminated.
make: *** [SecondProject] Error 1
ユーザー入力を必要としない他のC++プログラムでもうまくコンパイルされます。
しかし、私は問題なくコマンドラインを使用するとうまくコンパイルできます。なぜこうなった?そのための修正はありますか?
ユーザー入力とは何も関係なく、ソースファイルがありません。問題は – Danh