From b8a1a5a5d8fe376e9015b0406881bcee0658f1a0 Mon Sep 17 00:00:00 2001 From: Kai Kang Date: Wed, 7 Nov 2018 16:30:46 +0800 Subject: 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. Signed-off-by: Kai Kang Signed-off-by: Richard Purdie --- meta/recipes-devtools/glide/glide_0.13.2.bb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta') 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" # 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" -- cgit 1.2.3-korg