ppradeepk / golangide

Automatically exported from code.google.com/p/golangide
0 stars 0 forks source link

Doesn't rebuild the modified file unless the output exe is manually deleted. #115

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
> What steps will reproduce the problem?

1. Create a new .go file with some code.
2. Build and run.
3. Modify code
4. Build and run

> What is the expected output? What do you see instead?

Expected output is the output of the new code. But I see the output of the old 
code, because rebuilding doesn't really happen.

I can only achieve rebuilding after I manually delete the exe file.

> What version of the product are you using? On what operating system?

LiteIDE X21.1
Windows 7 64 bit

Original issue reported on code.google.com by zura.khe...@gmail.com on 12 Apr 2014 at 9:50

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
The issue was that I had .go file in the directory named "Go". LiteIDE builds 
the whole directory and names the executable with dir's name. Thus I end up 
with Go.exe in my dir. Subsequent Build/BuildAndRun commands were executing 
this Go.exe instead of the Go compiler.

Original comment by zura.khe...@gmail.com on 17 Apr 2014 at 1:29