diff options
author | Sakib Sajal <sakib.sajal@windriver.com> | 2021-09-22 20:17:31 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-11 18:41:38 +0100 |
commit | ed32b9ebe9f3525da05e84342f357c59478e10f9 (patch) | |
tree | 8a7182e5c3a877d49c4f20d741c9466e725de2aa /meta/recipes-devtools/go/go_1.16.8.bb | |
parent | c8262de33e132dcdeefe6b8d427bd98321672672 (diff) | |
download | poky-ed32b9ebe9f3525da05e84342f357c59478e10f9.tar.gz |
go: upgrade 1.16.7 -> 1.16.8
(From OE-Core rev: 97a2f406635f51bad1ab070f018a6466209f257b)
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/go/go_1.16.8.bb')
-rw-r--r-- | meta/recipes-devtools/go/go_1.16.8.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go_1.16.8.bb b/meta/recipes-devtools/go/go_1.16.8.bb new file mode 100644 index 0000000000..34dc89bb0c --- /dev/null +++ b/meta/recipes-devtools/go/go_1.16.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 | |||