mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
The 1.9.4 fixes a number of issues in the Go compiler and is important to get in before we start working on 1.10 inclusion. - go1.9.1 (released 2017/10/04) includes two security fixes. - go1.9.2 (released 2017/10/25) includes fixes to the compiler, linker, runtime, documentation, go command, and the crypto/x509, database/sql, log, and net/smtp packages. It includes a fix to a bug introduced in Go 1.9.1 that broke go get of non-Git repositories under certain conditions. - go1.9.3 (released 2018/01/22) includes fixes to the compiler, runtime, and the database/sql, math/big, net/http, and net/url packages. - go1.9.4 (released 2018/02/07) includes a security fix to “go get”. (From OE-Core rev: 150d9d3215bf5d3a21c3f141d4ce837557c5f9f1) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
1.2 KiB
PHP
27 lines
1.2 KiB
PHP
require go-common.inc
|
|
|
|
GO_BASEVERSION = "1.9"
|
|
GO_MINOR = ".4"
|
|
PV .= "${GO_MINOR}"
|
|
|
|
FILESEXTRAPATHS_prepend := "${FILE_DIRNAME}/go-${GO_BASEVERSION}:"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707"
|
|
|
|
SRC_URI += "\
|
|
file://0001-make.bash-quote-CC_FOR_TARGET.patch \
|
|
file://0002-cmd-go-fix-CC-and-CXX-environment-variable-construct.patch \
|
|
file://0003-make.bash-better-separate-host-and-target-builds.patch \
|
|
file://0004-cmd-go-allow-GOTOOLDIR-to-be-overridden-in-the-envir.patch \
|
|
file://0005-cmd-go-make-GOROOT-precious-by-default.patch \
|
|
file://0006-make.bash-add-GOTOOLDIR_BOOTSTRAP-environment-variab.patch \
|
|
file://0007-ld-add-soname-to-shareable-objects.patch \
|
|
file://0008-make.bash-add-GOHOSTxx-indirection-for-cross-canadia.patch \
|
|
file://0009-cmd-go-buildmode-pie-forces-external-linking-mode-on.patch \
|
|
file://0010-make.bash-override-CC-when-building-dist-and-go_boot.patch \
|
|
"
|
|
SRC_URI_append_libc-musl = " file://set-external-linker.patch"
|
|
|
|
SRC_URI[main.md5sum] = "6816441fd6680c63865cdd5cb8bc1960"
|
|
SRC_URI[main.sha256sum] = "0573a8df33168977185aa44173305e5a0450f55213600e94541604b75d46dc06"
|