go-godo / godo

golang build tool in the spirt of rake, gulp
MIT License
535 stars 31 forks source link

why it took more than 10 seconds to build or rebuild the project #37

Closed hankya closed 8 years ago

hankya commented 8 years ago

It took too long for the application to load

mgutz commented 8 years ago

Probably two things:

1) You are on Go 1.5+ which is slow to compile 2) Godo rebuilds all packages since Go isn't very smart about rebuliding packages external to your main package https://groups.google.com/forum/#!msg/golang-nuts/Z5uJf6mEF6E/K7yb6Xc5zQUJ

hankya commented 8 years ago

Ah, I see, the -a flag. I noticed v2 kind of fixed this problem, thanks!