diff options
| author | Matthew R. Wilson | 2014-07-16 12:48:41 -0700 |
|---|---|---|
| committer | Mike McQuaid | 2014-07-16 14:15:31 -0700 |
| commit | 81c0e10bdb8115528cbc898cdbe7d74b67bf0653 (patch) | |
| tree | 3e0148afefe9649b201506e59d7422e6c74f6a76 /Library | |
| parent | 339fd935faf566878348aa9a26ab5d12bebd1696 (diff) | |
| download | homebrew-81c0e10bdb8115528cbc898cdbe7d74b67bf0653.tar.bz2 | |
go: add latest available cross-compilers.
Recent releases of Go have added support for additional platforms, so
the --cross-compile-all command of this formula has gotten out of data
relative to "all" available cross-compilers. This update adds on the
ARM architecture to some existing platforms, plus the Solaris, Plan9,
and Dragonfly BSD platforms that are supported in Go 1.3.
Closes #30898.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/go.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/go.rb b/Library/Formula/go.rb index 3cccda89f..d6cef396a 100644 --- a/Library/Formula/go.rb +++ b/Library/Formula/go.rb @@ -26,10 +26,13 @@ class Go < Formula if build.include? 'cross-compile-all' targets = [ ['linux', ['386', 'amd64', 'arm']], - ['freebsd', ['386', 'amd64']], - ['netbsd', ['386', 'amd64']], + ['freebsd', ['386', 'amd64', 'arm']], + ['netbsd', ['386', 'amd64', 'arm']], ['openbsd', ['386', 'amd64']], ['windows', ['386', 'amd64']], + ['dragonfly', ['386', 'amd64']], + ['plan9', ['386', 'amd64']], + ['solaris', ['amd64']], ['darwin', ['386', 'amd64']], ] elsif build.include? 'cross-compile-common' |
