diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2018-08-09 11:44:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-15 09:44:33 +0100 |
commit | b0206bd90be327c0b2abfeae189e0cda4804a53e (patch) | |
tree | 0f5459a7a73cda6e25a792a48d9012d28dcc9997 /meta/recipes-devtools/go | |
parent | 63a4ff7cf5f7d1671ab85800bc2212dd9cd9748d (diff) | |
download | poky-b0206bd90be327c0b2abfeae189e0cda4804a53e.tar.gz |
go(-dep): add INSANE_SKIP for textrel
* I'm not using go or go-dep, so I'm not going to fix it proplerly,
it was just bothering me in world builds
* this is reproducible only with ptest in DISTRO_FEATUREs (for aarch64
issue) and included security_flags.inc, more specifically with the PIE
flags, so alternative work around is:
SECURITY_CFLAGS_pn-go = "${SECURITY_NOPIE_CFLAGS}"
SECURITY_CFLAGS_pn-go-dep = "${SECURITY_NOPIE_CFLAGS}"
(From OE-Core rev: b689c72ad2dc84b8bb55ecbf72d95701707b9bb3)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/go')
-rw-r--r-- | meta/recipes-devtools/go/go-dep_0.4.1.bb | 10 | ||||
-rw-r--r-- | meta/recipes-devtools/go/go_1.9.bb | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-dep_0.4.1.bb b/meta/recipes-devtools/go/go-dep_0.4.1.bb index d82e637205..10af1d660c 100644 --- a/meta/recipes-devtools/go/go-dep_0.4.1.bb +++ b/meta/recipes-devtools/go/go-dep_0.4.1.bb | |||
@@ -18,3 +18,13 @@ GO_INSTALL = "${GO_IMPORT}/cmd/dep" | |||
18 | RDEPENDS_${PN}-dev += "bash" | 18 | RDEPENDS_${PN}-dev += "bash" |
19 | 19 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 20 | BBCLASSEXTEND = "native nativesdk" |
21 | |||
22 | # for x86 ends with textrel in ${PN} | ||
23 | # http://errors.yoctoproject.org/Errors/Details/185630/ | ||
24 | # ERROR: QA Issue: ELF binary '/work/i586-oe-linux/go-dep/0.4.1-r0/packages-split/go-dep/usr/bin/dep' has relocations in .text [textrel] | ||
25 | INSANE_SKIP_${PN} += "textrel" | ||
26 | |||
27 | # for aarch64 ends with textrel in ${PN}-ptest | ||
28 | # http://errors.yoctoproject.org/Errors/Details/185632/ | ||
29 | # ERROR: QA Issue: ELF binary '/work/aarch64-oe-linux/go-dep/0.4.1-r0/packages-split/go-dep-ptest/usr/lib/go-dep/ptest/github.com/golang/dep/cmd/dep/dep.test' has relocations in .text [textrel] | ||
30 | INSANE_SKIP_${PN}-ptest += "textrel" | ||
diff --git a/meta/recipes-devtools/go/go_1.9.bb b/meta/recipes-devtools/go/go_1.9.bb index ec5a314e7d..7da7897cf5 100644 --- a/meta/recipes-devtools/go/go_1.9.bb +++ b/meta/recipes-devtools/go/go_1.9.bb | |||
@@ -15,3 +15,10 @@ do_compile() { | |||
15 | ./make.bash | 15 | ./make.bash |
16 | cd ${B} | 16 | cd ${B} |
17 | } | 17 | } |
18 | |||
19 | # for aarch64 ends with textrel in ${PN} | ||
20 | # http://errors.yoctoproject.org/Errors/Details/185634/ | ||
21 | # ERROR: QA Issue: ELF binary '/work/aarch64-oe-linux/go/1.9.7-r0/packages-split/go/usr/lib/go/bin/go' has relocations in .text | ||
22 | # ELF binary '/work/aarch64-oe-linux/go/1.9.7-r0/packages-split/go/usr/lib/go/pkg/tool/linux_arm64/trace' has relocations in .text | ||
23 | # ELF binary '/work/aarch64-oe-linux/go/1.9.7-r0/packages-split/go/usr/lib/go/pkg/tool/linux_arm64/pprof' has relocations in .text [textrel] | ||
24 | INSANE_SKIP_${PN} += "textrel" | ||