diff options
author | Alex Kube <alexander.j.kube@gmail.com> | 2019-10-25 23:49:14 +0430 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-25 17:57:22 +0000 |
commit | 0dd3a42c3d79ca63248fbbab6ba19dd42f11b03f (patch) | |
tree | 61e9c463b2d6da3c0fa2623120c73f23facdff5b /meta/recipes-devtools/go/go_1.12.bb | |
parent | 99e3441a912e8b85a26078ef49dcedce8e35dfa1 (diff) | |
download | poky-0dd3a42c3d79ca63248fbbab6ba19dd42f11b03f.tar.gz |
go: Remove go-1.12
(From OE-Core rev: 2b76e904a5f7d6479974a179d6d17d6ee9af94e7)
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>
Diffstat (limited to 'meta/recipes-devtools/go/go_1.12.bb')
-rw-r--r-- | meta/recipes-devtools/go/go_1.12.bb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/meta/recipes-devtools/go/go_1.12.bb b/meta/recipes-devtools/go/go_1.12.bb deleted file mode 100644 index 42cdb0430a..0000000000 --- a/meta/recipes-devtools/go/go_1.12.bb +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | require go-${PV}.inc | ||
2 | require go-target.inc | ||
3 | |||
4 | export GOBUILDMODE="" | ||
5 | |||
6 | # Add pie to GOBUILDMODE to satisfy "textrel" QA checking, but mips | ||
7 | # doesn't support -buildmode=pie, so skip the QA checking for mips and its | ||
8 | # variants. | ||
9 | python() { | ||
10 | if 'mips' in d.getVar('TARGET_ARCH'): | ||
11 | d.appendVar('INSANE_SKIP_%s' % d.getVar('PN'), " textrel") | ||
12 | else: | ||
13 | d.setVar('GOBUILDMODE', 'pie') | ||
14 | } | ||