diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-07-16 21:56:11 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-18 10:13:30 +0100 |
commit | c0ef8a91f671f30acd92e2734144f7ddf1acda53 (patch) | |
tree | d9cf4f9db3982f222021f54bf275c041c4582a46 /meta-selftest | |
parent | 0bf3637a07228576d78cf4c71de92781ec143d7f (diff) | |
download | openembedded-core-c0ef8a91f671f30acd92e2734144f7ddf1acda53.tar.gz openembedded-core-c0ef8a91f671f30acd92e2734144f7ddf1acda53.tar.bz2 openembedded-core-c0ef8a91f671f30acd92e2734144f7ddf1acda53.zip |
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 <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb b/meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb index 073cf5665c..922518bc39 100644 --- a/meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb +++ b/meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb @@ -28,5 +28,8 @@ FILES_${PN} = "${bindir}/aspell" FILES_libpspell = "${libdir}/libpspell.so.*" FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" -ARM_INSTRUCTION_SET = "arm" +ARM_INSTRUCTION_SET_armv4 = "arm" +ARM_INSTRUCTION_SET_armv5 = "arm" +ARM_INSTRUCTION_SET_armv6 = "arm" + inherit autotools gettext |