diff options
| author | wangmy <wangmy@fujitsu.com> | 2021-06-10 16:31:36 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-12 22:54:14 +0100 |
| commit | 0e33c2f8fc163e7323a095df7f940184f1a0f170 (patch) | |
| tree | 7fc8748f35ef2637df1ccc78e11623fd14438c6d /meta/recipes-devtools/go/go_1.16.5.bb | |
| parent | 61f9f10dc565c2fab2991f85053f5b3db5e3efb4 (diff) | |
| download | poky-0e33c2f8fc163e7323a095df7f940184f1a0f170.tar.gz | |
go: upgrade 1.16.4 -> 1.16.5
(From OE-Core rev: c0c567ed2fb092cde97d03cb658d8bae93d9b28c)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/go/go_1.16.5.bb')
| -rw-r--r-- | meta/recipes-devtools/go/go_1.16.5.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go_1.16.5.bb b/meta/recipes-devtools/go/go_1.16.5.bb new file mode 100644 index 0000000000..4e9e0ebec8 --- /dev/null +++ b/meta/recipes-devtools/go/go_1.16.5.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | require go-${PV}.inc | ||
| 2 | require go-target.inc | ||
| 3 | |||
| 4 | inherit linuxloader | ||
| 5 | |||
| 6 | export GOBUILDMODE="" | ||
| 7 | export GO_LDSO = "${@get_linuxloader(d)}" | ||
| 8 | export CC_FOR_TARGET = "gcc" | ||
| 9 | export CXX_FOR_TARGET = "g++" | ||
| 10 | |||
| 11 | # mips/rv64 doesn't support -buildmode=pie, so skip the QA checking for mips/riscv32 and its | ||
| 12 | # variants. | ||
| 13 | python() { | ||
| 14 | if 'mips' in d.getVar('TARGET_ARCH',True) or 'riscv32' in d.getVar('TARGET_ARCH',True): | ||
| 15 | d.appendVar('INSANE_SKIP_%s' % d.getVar('PN',True), " textrel") | ||
| 16 | } | ||
| 17 | |||
