minGW と msys をインストールしました。Eclipse CDT では、クロス gcc ツールチェーンを使用する c++ プロジェクトを作成しました。
Eclipse は、コマンド ラインから使用できる make ファイルを作成したため、make all
プロジェクトを実行すると正しくコンパイルされますが、Eclipse を使用してビルドすると、次のメッセージが表示されて失敗します
**** Build of configuration Debug for project cpp ****
make all
Building file: ../src/main.cpp
Invoking: Cross G++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/main.d" -MT"src/main.d" -o "src/main.o" "../src/main.cpp"
make: *** [src/main.o] Error 1
**** Build Finished ****