]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
glide: disable ptest on mips
authorKai Kang <kai.kang@windriver.com>
Wed, 7 Nov 2018 08:30:46 +0000 (16:30 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 14 Nov 2018 11:14:39 +0000 (11:14 +0000)
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>
meta/recipes-devtools/glide/glide_0.13.2.bb

index 3a32fa1af161024e5b2a00b7f511d185a9c9a3fd..7faaf4a3888085e4eb1b04f92afebac9df15f39a 100644 (file)
@@ -33,3 +33,6 @@ INSANE_SKIP_${PN} += "textrel"
 # 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
 # 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]
 INSANE_SKIP_${PN}-ptest += "textrel"
+
+# fails to run task compile_ptest_base on mips
+PTEST_ENABLED_mipsarch = "0"