diff options
author | wangmy <wangmy@fujitsu.com> | 2022-03-08 09:52:18 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-09 11:46:27 +0000 |
commit | 7eab2d68e016472d2bea4fd53223f381af2deee5 (patch) | |
tree | 71b81f6186cc6ce3a34517cb24b56489a5ec9b0a /meta/recipes-devtools/go/go_1.17.8.bb | |
parent | 6225b5e343c95569f9a6080ab7f2564c2a7902c8 (diff) | |
download | poky-7eab2d68e016472d2bea4fd53223f381af2deee5.tar.gz |
go: upgrade 1.17.7 -> 1.17.8
(From OE-Core rev: c375fcae8fd4c21a9f240440f9d7f31dde415e30)
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.17.8.bb')
-rw-r--r-- | meta/recipes-devtools/go/go_1.17.8.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go_1.17.8.bb b/meta/recipes-devtools/go/go_1.17.8.bb new file mode 100644 index 0000000000..34dc89bb0c --- /dev/null +++ b/meta/recipes-devtools/go/go_1.17.8.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 | |||