I have a project in Eclipse and I want to use my own makefile. I went to
project → properties → C / C ++ Build
and unverified "Automatic file creation." I have a makefile named Makefile in the base directory of the project, which simply contains:
all: g++ *.cpp -o Simulator.exe
When I try to build, I get the following error:
Building the MinGW GCC configuration for the CacheOptimization project
(Cannot start the make program: startup failed)
How can I fix this and compile my code eclipse?
c ++ windows eclipse-cdt makefile
Amir rachum
source share