Reputation: 199
This is the log I received from Dev-Cpp when I tried to compile a program:
Compiler: Default compiler
Building Makefile: "C:\Dev-Cpp\Makefile.win"
Executing make...
make.exe -f "C:\Dev-Cpp\Makefile.win" all
make.exe: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4ff283)
Execution terminated
I have googled for the answer, I've tried the "PATH" fix, and make my MINGW stuff first like this.
C:\Dev-Cpp\mingw32\bin;C:\Dev-Cpp\bin;
Yet I still can't compile, I've even restarted my computer (Windows 7 x64), and still the same error. So I'm wondering if you guys have any answers that can help. Thanks in advance!
Upvotes: 3
Views: 7164
Reputation: 1
perhaps recursion problem in macro expansion.
Makefile:
rtest=$(info $(words $1))$(call rtest,$1 1)</b>
$(info $(call rtest))
# eof Makefile
yields :
2152
2153
mingw32-make: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x00007ffdbdea2f57)
2154
Upvotes: 0
Reputation: 2672
I have used the old Dev-C++ in the past and I've have had it break randomly on me at times.. (crucial times I might add).
Bloodshed Dev-C++ hasn't been updated for years and development has actually stopped on it.
If you really like the environment consider getting the updated and maintained Orwell Dev C++ that is improved, faster and much cleaner.
Upvotes: 3
Reputation: 15184
No additional PATH is normally needed for compilation with Dev-CPP.
Seems to be a very old Dev-CPP version. My version neither has a \Dev-Cpp\bin
directory, nor a Makefile.win
in the main location. Maybe your installation is defective.
Did you install the compiler system along with Dev-CPP (and make executeable).
Please remove everything and use a modern, up to date version of DevCpp for 32 or 64 bit.
One hint: Do not install DevCpp into a directiory with ' '
spaces, like /Program Files/
etc. Better, use C:\Apps\Dev-Cpp
or sth. like that.
To the critics who say "Dev-Cpp is very old, drop it". No, thats wrong. Dev-Cpp is imho actually the best free IDE/Compiler system for Windows - and I have a lot of them installed (Netbeans, CodeBlocks, VS2010, VS2012rc, dropped Eclipse/CDT). Please have a look here ... Dev-Cpp retains the simplicity of the early Turbo-Compiler and connects that with 32/64bit gcc 4.6. Although I use VS2010/12rc for serious development, I always create the projects in parallel for Dev-Cpp in order to get gcc compatibility.
Regards
rbo
Upvotes: 2