summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2018-11-07 16:30:46 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-14 11:14:39 +0000
commit254c577fae9a649195aaaba4d7a9edb0caaa4941 (patch)
tree227520d2e403f462546920f1f8aa6f0b423d6b9a /meta/recipes-devtools
parent1a2ae051ae7768a126de74c67ab65ec9e635466e (diff)
downloadpoky-254c577fae9a649195aaaba4d7a9edb0caaa4941.tar.gz
glide: disable ptest on mips
It fails to run task compile_ptest_base of glide on mips: | vet config not found The root cause is that go lang lacks '-buildmode=pie' support for mips. So disable glide ptest on mips for now. (From OE-Core rev: b8a1a5a5d8fe376e9015b0406881bcee0658f1a0) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/glide/glide_0.13.2.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/glide/glide_0.13.2.bb b/meta/recipes-devtools/glide/glide_0.13.2.bb
index 3a32fa1af1..7faaf4a388 100644
--- a/meta/recipes-devtools/glide/glide_0.13.2.bb
+++ b/meta/recipes-devtools/glide/glide_0.13.2.bb
@@ -33,3 +33,6 @@ INSANE_SKIP_${PN} += "textrel"
33# ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/action/action.test' has relocations in .text 33# ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/action/action.test' has relocations in .text
34# ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/cache/cache.test' has relocations in .text [textrel] 34# ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest/github.com/Masterminds/glide/cache/cache.test' has relocations in .text [textrel]
35INSANE_SKIP_${PN}-ptest += "textrel" 35INSANE_SKIP_${PN}-ptest += "textrel"
36
37# fails to run task compile_ptest_base on mips
38PTEST_ENABLED_mipsarch = "0"