From c0ef8a91f671f30acd92e2734144f7ddf1acda53 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 16 Jul 2018 21:56:11 -0700 Subject: recipes: Enforce ARM ISA just for arm arches <= armv5 armv7+ used thumb2 ISA and it compiles fine with thumb2 issues are only when using thumb1 ISA Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-gnome/gcr/gcr_3.28.0.bb | 4 +++- meta/recipes-gnome/libsecret/libsecret_0.18.6.bb | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'meta/recipes-gnome') diff --git a/meta/recipes-gnome/gcr/gcr_3.28.0.bb b/meta/recipes-gnome/gcr/gcr_3.28.0.bb index 6777ad2277..0796362e4b 100644 --- a/meta/recipes-gnome/gcr/gcr_3.28.0.bb +++ b/meta/recipes-gnome/gcr/gcr_3.28.0.bb @@ -21,7 +21,9 @@ FILES_${PN} += " \ " # http://errors.yoctoproject.org/Errors/Details/20229/ -ARM_INSTRUCTION_SET = "arm" +ARM_INSTRUCTION_SET_armv4 = "arm" +ARM_INSTRUCTION_SET_armv5 = "arm" +ARM_INSTRUCTION_SET_armv6 = "arm" # These files may be out of date or missing our fixes # libgcrypt.m4 in particular is calling into libgcrypt-config diff --git a/meta/recipes-gnome/libsecret/libsecret_0.18.6.bb b/meta/recipes-gnome/libsecret/libsecret_0.18.6.bb index cdc41e762a..518c71feb1 100644 --- a/meta/recipes-gnome/libsecret/libsecret_0.18.6.bb +++ b/meta/recipes-gnome/libsecret/libsecret_0.18.6.bb @@ -12,7 +12,9 @@ SRC_URI[archive.md5sum] = "c6cf132a56bd346fbf49a43abb02e5c2" SRC_URI[archive.sha256sum] = "5efbc890ba41a323ffe0599cd260fd12bd8eb62a04aa1bd1b2762575d253d66f" # http://errors.yoctoproject.org/Errors/Details/20228/ -ARM_INSTRUCTION_SET = "arm" +ARM_INSTRUCTION_SET_armv4 = "arm" +ARM_INSTRUCTION_SET_armv5 = "arm" +ARM_INSTRUCTION_SET_armv6 = "arm" # vapigen.m4 bundled with the tarball does not yet have our cross-compilation fixes do_configure_prepend() { -- cgit 1.2.3-korg