quan-xie / goclipse

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

Incremental builds fail to build reverse dependencies on Windows #118

Closed GoogleCodeExporter closed 9 years ago

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

1. Change what is printed in a/a.go below and rebuild.

cmd/main.go:
package main

import "a"

func main() {
    a.A()
}

a/a.go:
package a

import "fmt"

func A() {
    fmt.Println("hello")
}

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

New output should be printed, but instead old output is printed because main.go 
is not rebuilt

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

Original issue reported on code.google.com by cche...@gmail.com on 9 Jul 2012 at 10:44

GoogleCodeExporter commented 9 years ago

Original comment by st...@kryas.com on 19 Jul 2012 at 6:50