From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 0/4] Add golang basic infrastructure
Date: Sat, 25 Feb 2017 10:12:58 -0800 [thread overview]
Message-ID: <cover.1488046239.git.raj.khem@gmail.com> (raw)
This patchset adds go to core, the bits has been fused from
oe-meta-go and meta-virtualtization layers with additional
changes needed for it to fit into oe-core
The following changes since commit 65cfc8aca3ff7e39453977a0215a350d13cb85ef:
libva: Find the correct wayland-scanner (2017-02-23 12:29:21 -0800)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib kraj/go
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=kraj/go
Khem Raj (4):
go: Add recipes for golang compilers and tools
go-examples: Add an example, helloworld written in go
go: Fix go cross build with rss
go: Use CC for CC_FOR_TARGET and CXX for CXX_FOR_TARGET
meta/classes/go.bbclass | 74 +++++++
meta/classes/goarch.bbclass | 46 +++++
meta/recipes-devtools/go/go-1.4.inc | 15 ++
.../go/go-1.4/016-armhf-elf-header.patch | 24 +++
...ckport-cmd-link-support-new-386-amd64-rel.patch | 225 +++++++++++++++++++++
meta/recipes-devtools/go/go-1.4/syslog.patch | 62 ++++++
meta/recipes-devtools/go/go-1.6.inc | 19 ++
.../go/go-1.6/armhf-elf-header.patch | 23 +++
.../go/go-1.6/fix-cc-handling.patch | 50 +++++
.../go/go-1.6/fix-target-cc-for-build.patch | 17 ++
meta/recipes-devtools/go/go-1.6/gotooldir.patch | 30 +++
.../go/go-1.6/split-host-and-target-build.patch | 63 ++++++
meta/recipes-devtools/go/go-1.6/syslog.patch | 62 ++++++
meta/recipes-devtools/go/go-1.7.inc | 19 ++
.../go/go-1.7/armhf-elf-header.patch | 23 +++
.../go/go-1.7/fix-cc-handling.patch | 50 +++++
.../go/go-1.7/fix-target-cc-for-build.patch | 17 ++
meta/recipes-devtools/go/go-1.7/gotooldir.patch | 30 +++
.../go/go-1.7/split-host-and-target-build.patch | 62 ++++++
meta/recipes-devtools/go/go-1.7/syslog.patch | 62 ++++++
meta/recipes-devtools/go/go-common.inc | 21 ++
meta/recipes-devtools/go/go-cross.inc | 10 +
meta/recipes-devtools/go/go-cross_1.7.bb | 5 +
meta/recipes-devtools/go/go-native.inc | 54 +++++
meta/recipes-devtools/go/go-native_1.4.bb | 2 +
meta/recipes-devtools/go/go.inc | 76 +++++++
meta/recipes-devtools/go/go_1.6.bb | 4 +
meta/recipes-devtools/go/go_1.7.bb | 2 +
.../go-examples/files/helloworld.go | 10 +
meta/recipes-extended/go-examples/go-examples.inc | 10 +
.../go-examples/go-helloworld_0.1.bb | 15 ++
31 files changed, 1182 insertions(+)
create mode 100644 meta/classes/go.bbclass
create mode 100644 meta/classes/goarch.bbclass
create mode 100644 meta/recipes-devtools/go/go-1.4.inc
create mode 100644 meta/recipes-devtools/go/go-1.4/016-armhf-elf-header.patch
create mode 100644 meta/recipes-devtools/go/go-1.4/go-cross-backport-cmd-link-support-new-386-amd64-rel.patch
create mode 100644 meta/recipes-devtools/go/go-1.4/syslog.patch
create mode 100644 meta/recipes-devtools/go/go-1.6.inc
create mode 100644 meta/recipes-devtools/go/go-1.6/armhf-elf-header.patch
create mode 100644 meta/recipes-devtools/go/go-1.6/fix-cc-handling.patch
create mode 100644 meta/recipes-devtools/go/go-1.6/fix-target-cc-for-build.patch
create mode 100644 meta/recipes-devtools/go/go-1.6/gotooldir.patch
create mode 100644 meta/recipes-devtools/go/go-1.6/split-host-and-target-build.patch
create mode 100644 meta/recipes-devtools/go/go-1.6/syslog.patch
create mode 100644 meta/recipes-devtools/go/go-1.7.inc
create mode 100644 meta/recipes-devtools/go/go-1.7/armhf-elf-header.patch
create mode 100644 meta/recipes-devtools/go/go-1.7/fix-cc-handling.patch
create mode 100644 meta/recipes-devtools/go/go-1.7/fix-target-cc-for-build.patch
create mode 100644 meta/recipes-devtools/go/go-1.7/gotooldir.patch
create mode 100644 meta/recipes-devtools/go/go-1.7/split-host-and-target-build.patch
create mode 100644 meta/recipes-devtools/go/go-1.7/syslog.patch
create mode 100644 meta/recipes-devtools/go/go-common.inc
create mode 100644 meta/recipes-devtools/go/go-cross.inc
create mode 100644 meta/recipes-devtools/go/go-cross_1.7.bb
create mode 100644 meta/recipes-devtools/go/go-native.inc
create mode 100644 meta/recipes-devtools/go/go-native_1.4.bb
create mode 100644 meta/recipes-devtools/go/go.inc
create mode 100644 meta/recipes-devtools/go/go_1.6.bb
create mode 100644 meta/recipes-devtools/go/go_1.7.bb
create mode 100644 meta/recipes-extended/go-examples/files/helloworld.go
create mode 100644 meta/recipes-extended/go-examples/go-examples.inc
create mode 100644 meta/recipes-extended/go-examples/go-helloworld_0.1.bb
--
2.11.1
next reply other threads:[~2017-02-25 18:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-25 18:12 Khem Raj [this message]
2017-02-25 18:13 ` [PATCH 1/4] go: Add recipes for golang compilers and tools Khem Raj
2017-02-27 13:03 ` Burton, Ross
2017-02-25 18:13 ` [PATCH 2/4] go-examples: Add an example, helloworld written in go Khem Raj
2017-02-25 18:13 ` [PATCH 3/4] go: Fix go cross build with rss Khem Raj
2017-02-25 18:13 ` [PATCH 4/4] go: Use CC for CC_FOR_TARGET and CXX for CXX_FOR_TARGET Khem Raj
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1488046239.git.raj.khem@gmail.com \
--to=raj.khem@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox