First of all ensure that the make.exe that is running is the one installed with Dev-C++. Unfortunately when Dev-C++ runs it appends its binary path to the end of the PATH environment variable not the beginning. This is a bug IMO, and if other tools are installed had have the path set, it is possible to pick-up a foreign make utility since it is a common name for such tools.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I verified, make.exe is the original one, besides i also tried th ming32-make.exe, and it throws the same exception. On the other hand, simple .cpp files can be compiled without any problem with these make.exe-s, only the project compile throws this exception.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello!
When i try to compile a project, Dev c++ throws an exception:
Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4217b3).
Compiler: Default compiler
Building Makefile: "D:\Dev-Cpp\Makefile.win"
Executing make...
make.exe -f "D:\Dev-Cpp\Makefile.win" all
make.exe: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4217b3)
Execution terminated.
Does anyone know a solution?
Thanks in advance!
First of all ensure that the make.exe that is running is the one installed with Dev-C++. Unfortunately when Dev-C++ runs it appends its binary path to the end of the PATH environment variable not the beginning. This is a bug IMO, and if other tools are installed had have the path set, it is possible to pick-up a foreign make utility since it is a common name for such tools.
I verified, make.exe is the original one, besides i also tried th ming32-make.exe, and it throws the same exception. On the other hand, simple .cpp files can be compiled without any problem with these make.exe-s, only the project compile throws this exception.
One perhaps unrelated point - compiling projects in your Dev directory is not a good idea.
What version of Dev are you using, with what OS?
Wayne