I recently installed CodeBlocks with mingw32 on Windows 7 Ultimate 32bit in order to dust off my c skills, but this problem has me somewhat stumped.

I decided to fire off a short Fibonacci generator to make sure my setup was working, but I ran into a hurdle.

The program compiles, links and whatnot like a charm and I get a corresponding executable which runs as expected.

The problems occur if I try to compile again, then I get the following:

c:/codeblocks/mingw/bin/../lib/gcc/mingw32/4.4.1/../../../../mingw32/bin/ld.exe: cannot open output file bin\Debug\Fibonacci.exe: Permission denied

I can't even edit the permissions of the generated executable.

I've checked the usual suspects:

  • Executable is verily not running.
  • Path to executable is read/writable to mingw32 (otherwise it wouldn't be able to build in the first place)
  • I'm not running cygwin in any shape or form.

And now for the funny bit: Usually after a few minutes, any executables generated by mingw32 which are displaying this Access Denied behaviour will automatically vanish without any intervention from me.

I've googled this somewhat, but most of the other results were either vague or inapplicable.

I wonder whether there is some Windows 7 security setting playing havoc with my .exe's, but I'm not that knowledgeable about Win 7 as to know where to begin searching.

Any one have any ideas?

link|improve this question
3  
Here's a total guess... if you're building to the bin\Debug directory then code::blocks may be doing something with its integrated debugger, keeping a file handle open on the executable. Try building it for release and see if you have the same problem – Brian Gordon Oct 5 '11 at 0:34
1  
I think @BrianGordon's guess is a good one. If the program is running, kill it before trying to rebuild. – Keith Thompson Oct 5 '11 at 0:38
It behaves the same in Debug and Release and also if I run gcc from cmd. On a side note, it seems only to happen AFTER I actually run the executable. I'm starting to think it's definately a security settings thing. – gzzzur Oct 5 '11 at 1:04
1  
The executables vanish? As in they get deleted automatically? Sounds like a virus scanner issue. – tinman Oct 7 '11 at 12:40
1  
Victor T. : I just get Permission denied tinman: No anti-virus installed, I just run mcafee stinger occasionally. I'm going to have a look at UAC tonight. – gzzzur Oct 7 '11 at 21:16
show 3 more comments
feedback

4 Answers

up vote 2 down vote accepted

If you think the executable is locked by a process, try Process Explorer from SysInternals. In the File/handle, enter Fibonacci.exe and you should see who holds the file.

If it is not enough, you can use Process Monitor (from SysInternals, again) to follow the activity of all processes on your system on Fibonacci.exe. With a little bit of analysis (call stacks), you'll may find out why the access to the file is denied and what make it disappear.

link|improve this answer
I picked your answer because it looks like the most plausible solution given my problem statement. I wasn't able to try it out though, since the machine I had it running on crashed. Since I've now decided to go with linux it kind of makes this a moot point for me. – gzzzur Oct 25 '11 at 13:50
feedback

I had exactly the same problem right after switching off some (in my opinion unneccessary) windows services. It turned out that when I switched ON again the "Application Experience" everything resumed working fine.

May be you simply have to turn on this service?

link|improve this answer
feedback

Your program is still running. You have to kill it by closing the command line window. If you press control alt delete, task manager, process`s (kill the ones that match your filename).

link|improve this answer
feedback

I had the same behaviour, and fixed it by running Code::Blocks as administrator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.