devcpp - 4.9.6.8 I created simple win32 app (from file|new|project) and got (in compilation process) sth like this:
mingw32-g++.exe -c main.cpp -o main.o - "C:/compiler/Dev-Cpp/include" -I"C:/compiler/Dev-Cpp/include/g++-3" -I"C:/compiler/Dev-Cpp/include" -fsave-memoized -fexceptions -fverbose-asm -g3 -O3 mingw32-g++.exe: no input files make: *** [main.o] Error 1
problem is that I can solve this by deleting quoation in makefile, but I can't force dev-cpp to do that automaticly - need some help
Log in to post a comment.
devcpp - 4.9.6.8
I created simple win32 app (from file|new|project)
and got (in compilation process) sth like this:
mingw32-g++.exe -c main.cpp -o main.o - "C:/compiler/Dev-Cpp/include" -I"C:/compiler/Dev-Cpp/include/g++-3" -I"C:/compiler/Dev-Cpp/include" -fsave-memoized
-fexceptions -fverbose-asm -g3 -O3
mingw32-g++.exe: no input files
make: *** [main.o] Error 1
problem is that I can solve this by deleting quoation in makefile, but I can't force dev-cpp to do that automaticly - need some help