I have install, uninstall and reinstall dev c++ from sourceforge many times. Everytime I get the same error in compiling a project even if I have a program like:
#include<stdio.h>#include<stdlib.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */intmain(intargc,char*argv[]){printf("hello");return0;}
The error is called fatal error and the exact description is:
can't create main.o: No such file or directory
recipe for target 'main.o' failed
I have tried running dev c++ as administrator, downloading iostream.h-ftream.h and copying them in the 'include' directory of compiler even if changing the compile from 64bit to 32bit(with no hope).None of them is working
Any other solutions?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
After a lot of searching I discovered that the real time protection of the antivirus program or the firewall of windows reads the extention ".exe" as a virus and causes this fatal error so you only have to disable real time protection.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have install, uninstall and reinstall dev c++ from sourceforge many times. Everytime I get the same error in compiling a project even if I have a program like:
The error is called fatal error and the exact description is:
The Makefile.win file is:
I have tried running dev c++ as administrator, downloading iostream.h-ftream.h and copying them in the 'include' directory of compiler even if changing the compile from 64bit to 32bit(with no hope).None of them is working
Any other solutions?
After a lot of searching I discovered that the real time protection of the antivirus program or the firewall of windows reads the extention ".exe" as a virus and causes this fatal error so you only have to disable real time protection.