1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

go: Add go1.13 recipes

(From OE-Core rev: c1cd99c0b617717bd642ef5065c4f70ee0dfafae)

Signed-off-by: Alex Kube <alexander.j.kube@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Alex Kube
2019-10-25 23:49:12 +04:30
committed by Richard Purdie
parent 9052e5b32a
commit 9270cf62ab
7 changed files with 48 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
require go-common.inc
GO_BASEVERSION = "1.13"
GO_MINOR = ".3"
PV .= "${GO_MINOR}"
FILESEXTRAPATHS_prepend := "${FILE_DIRNAME}/go-${GO_BASEVERSION}:"
LIC_FILES_CHKSUM = "file://LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707"
SRC_URI += "\
file://0001-allow-CC-and-CXX-to-have-multiple-words.patch \
file://0002-cmd-go-make-content-based-hash-generation-less-pedan.patch \
file://0003-allow-GOTOOLDIR-to-be-overridden-in-the-environment.patch \
file://0004-ld-add-soname-to-shareable-objects.patch \
file://0005-make.bash-override-CC-when-building-dist-and-go_boot.patch \
file://0006-cmd-dist-separate-host-and-target-builds.patch \
file://0007-cmd-go-make-GOROOT-precious-by-default.patch \
file://0008-use-GOBUILDMODE-to-set-buildmode.patch \
"
SRC_URI_append_libc-musl = " file://0009-ld-replace-glibc-dynamic-linker-with-musl.patch"
SRC_URI[main.md5sum] = "94ae8bf6a4fe623e34cb8b0db2a71ec0"
SRC_URI[main.sha256sum] = "4f7123044375d5c404280737fbd2d0b17064b66182a65919ffe20ffe8620e3df"
@@ -0,0 +1,2 @@
require go-cross-canadian.inc
require go-${PV}.inc
@@ -0,0 +1,2 @@
require go-cross.inc
require go-${PV}.inc
@@ -0,0 +1,2 @@
require go-crosssdk.inc
require go-${PV}.inc
@@ -0,0 +1,2 @@
require ${PN}.inc
require go-${PV}.inc
@@ -0,0 +1,2 @@
require go-${PV}.inc
require go-runtime.inc
+14
View File
@@ -0,0 +1,14 @@
require go-${PV}.inc
require go-target.inc
export GOBUILDMODE=""
# Add pie to GOBUILDMODE to satisfy "textrel" QA checking, but mips
# doesn't support -buildmode=pie, so skip the QA checking for mips and its
# variants.
python() {
if 'mips' in d.getVar('TARGET_ARCH',True):
d.appendVar('INSANE_SKIP_%s' % d.getVar('PN',True), " textrel")
else:
d.setVar('GOBUILDMODE', 'pie')
}