diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-09-28 01:23:12 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-09-28 01:23:12 +0000 |
commit | 4e602f8949c38cd75a1603e05c8a20c21e6f884b (patch) | |
tree | ba22d9fdf3a96dc7547530817f6b2fa47dae553a | |
parent | ccddfb1f8b68cf9ab21bd416480f79d44a0a30f4 (diff) | |
download | meta-virtualization-4e602f8949c38cd75a1603e05c8a20c21e6f884b.tar.gz |
skopeo: mark incompatible with mips
When building skopeo for mips(64), we get the following errors:
| go.go:(.text+0xdd07fc): relocation R_MIPS_26 against `a local symbol' cannot be used when making a shared object; recompile with -fPIC
| go.go:(.text+0xdd0830): relocation R_MIPS_26 against `a local symbol' cannot be used when making a shared object; recompile with -fPIC
| go.go:(.text+0xdd0864): relocation R_MIPS_26 against `a local symbol' cannot be used when making a shared object; recompile with -fPIC
| collect2: error: ld returned 1 exit status
Tag the recipe as incompatible with mips to avoid having it built
at all.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/skopeo/skopeo_git.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-containers/skopeo/skopeo_git.bb b/recipes-containers/skopeo/skopeo_git.bb index c29009a1..b4eaf72b 100644 --- a/recipes-containers/skopeo/skopeo_git.bb +++ b/recipes-containers/skopeo/skopeo_git.bb | |||
@@ -13,6 +13,8 @@ DEPENDS = " \ | |||
13 | 13 | ||
14 | inherit go | 14 | inherit go |
15 | 15 | ||
16 | COMPATIBLE_HOST = "^(?!mips).*" | ||
17 | |||
16 | RDEPENDS:${PN} = " \ | 18 | RDEPENDS:${PN} = " \ |
17 | gpgme \ | 19 | gpgme \ |
18 | libgpg-error \ | 20 | libgpg-error \ |