After upgrading from Go 1.2.1 to 1.3 (Windows 7 64 bit) \"go build\" execution time has increased from around 4 to over 45 seconds. There were no other changes except the go ver
You probably have dependencies that are being recompiled each time. Try go install -a mypackage to rebuild all dependencies.
go install -a mypackage
Removing $GOPATH/pkg also helps to ensure you don't have old object files around.
$GOPATH/pkg
Building with the -x flag will show you if the toolchain is finding incompatible versions.
-x