-
-
Notifications
You must be signed in to change notification settings - Fork 14.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
Fixes go 1.1.2 compilation on OSX Maverick #1231
Conversation
Apparently Apple thinks that faking gcc wiht a clang stub but not providing a compatile libgcc.a is not going to cause any issues. They really do hate GPL.
On Sun, Nov 17, 2013 at 05:35:57AM -0800, Jonas Pfenniger wrote:
So it is a broad apple issue? Isn't this patch harming any users then? Other |
It's true that not everyone is affected and that disabling gccgo prevent from some go programs to compile (those who rely on external C libraries). There are two bugs introduced by Xcode 5's compiler tool-chain. One where libgcc.a is missing and one where clang is outputting some broken code, both affecting gccgo. The go team is aware of the issues and will have a fix available for go 1.1.3. For the details see http://code.google.com/p/go/issues/detail?id=5926 |
Please make this optional, I use cgo functionality and don't want to be On Sun, Nov 17, 2013 at 10:52 PM, zimbatm notifications@github.com wrote:
|
Are you using another Darwin derivative ? If you're using Linux then 1.1.nix is unaffected by that change. |
ah, sorry in that case :) I didn't see there was a separate 1.1-darwin On Sun, Nov 17, 2013 at 11:11 PM, zimbatm notifications@github.com wrote:
|
Fixes go 1.1.2 compilation on OSX Maverick
Apparently Apple thinks that faking gcc wiht a clang stub but not providing a
compatile libgcc.a is not going to cause any issues. They really do hate GPL.