[Buildroot] [PATCH v2 0/3] Add go language support

Geoff Levand geoff at infradead.org
Fri Mar 4 18:22:15 UTC 2016


This series adds support for the go programming language.  I tested the build of
the included flannel package on i386, powerpc64, arm (32 bit) and arm64.  I did
runtime testing of the generated flannel binary on arm64.

Patch 1 adds a host only bootstrap compiler needed to build the latest go
versions.

Patch 2 adds support for a host cross compiler, libraries and tools.

Patch 3 adds a go language package flannel that can be used to test the go
compiler.

Changes for v2:

o Dropped go target support.  We can consider it again if there is a strong use
  case.
o General cleanup of package files.  Added comments, fixed variable names,
  use github helper function.

-Geoff

The following changes since commit aaf6c28a5c49251df31b82c48c971bc18183cf6b:

  Update for 2016.02 (2016-03-01 21:47:30 +0100)

are available in the git repository at:

  git at github.com:glevand/buildroot--buildroot.git go-v2

for you to fetch changes up to 85c7aa882469bf71a7cd6463768f81fb19fdd4fc:

  flannel: new package (2016-03-04 10:13:29 -0800)

----------------------------------------------------------------
Geoff Levand (3):
      go-bootstrap: new host package
      go: new host package
      flannel: new package

 package/Config.in                      |  1 +
 package/Config.in.host                 |  1 +
 package/flannel/Config.in              |  9 ++++
 package/flannel/flannel.hash           |  2 +
 package/flannel/flannel.mk             | 38 +++++++++++++++++
 package/go-bootstrap/go-bootstrap.hash |  2 +
 package/go-bootstrap/go-bootstrap.mk   | 38 +++++++++++++++++
 package/go/Config.in.host              | 13 ++++++
 package/go/go.hash                     |  2 +
 package/go/go.mk                       | 75 ++++++++++++++++++++++++++++++++++
 10 files changed, 181 insertions(+)
 create mode 100644 package/flannel/Config.in
 create mode 100644 package/flannel/flannel.hash
 create mode 100644 package/flannel/flannel.mk
 create mode 100644 package/go-bootstrap/go-bootstrap.hash
 create mode 100644 package/go-bootstrap/go-bootstrap.mk
 create mode 100644 package/go/Config.in.host
 create mode 100644 package/go/go.hash
 create mode 100644 package/go/go.mk

-- 
2.5.0



More information about the buildroot mailing list