rm -f hello.exe .objs/main.o
process_begin: CreateProcess((null), rm -f hello.exe .objs/main.o, ...) failed.
It seems that compilation fails now because you don't have the "rm" command.
"rm" is part of GNU fileutils (which you can get
here for win32).
If you don't want to download it, go to "Settings/Configure plugins/Compiler", switch to the tab "Makefile variables" and change the value of RM from "rm -f" to "del /f".
I think the problem with cleaning is that the program appears to be using '/' instead of '\' in the filename paths. It seems to be a simple wxFileName formatting issue.
I have put great effort to avoid such problems. Other programs want forward slashes, others backward slashes, others work with both kinds and others need quotes around the filenames in
some of their options but not all. It's a nightmare, but I think that there is no such problem currently in Code::Blocks. I have tested all different kind of combinations, for all supported compilers, and it works great (except the BCC's ilink32 command - which I fixed in CVS).
About the crash on exit, it has to do with the managers de-initialization. I 'm really close to fixing it...
Yiannis,