-
Notifications
You must be signed in to change notification settings - Fork 20.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Makefile: go build instead of install (solves cross compile issues) #2520
Conversation
Updated: Sun May 8 14:36:10 UTC 2016 |
👍 |
I don't like this change because it disables incremental builds for everyone. That feels like too high a price to pay for a small workaround. Wouldn't it work to
|
Why would it disable incremental builds? Note: On May 6, 2016 23:24, "Felix Lange" [email protected] wrote:
|
Ugh, didn't see the -i. Sorry. |
I have tried it now and the disadvantage is that all commands need to be re-linked individually even if there are no source changes. |
Yup, though I think that's a smaller price to pay for now. Since this is blocking the release, I'd suggest we get this in now and perhaps fix it another way when we figure one out. I'm open to suggestion though if you don't like it. |
Yes, it's ok to get this onto master. |
@fjl So, thumbs up? Mergable? :D |
@caktux Btw, thanks a lot for the quick fixes to the build servers! |
Go doesn't like the GOBIN env var being set simultaneously with cross-
go install
-ing. This PR works around that issue by usinggo build -i
instead.