From 81c0e10bdb8115528cbc898cdbe7d74b67bf0653 Mon Sep 17 00:00:00 2001 From: Matthew R. Wilson Date: Wed, 16 Jul 2014 12:48:41 -0700 Subject: 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 --- Library/Formula/go.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Library/Formula') 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' -- cgit v1.2.3