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:18:42 +0100 |
commit | b297c1aa4b68653b896e534357af46985ec0d7fc (patch) | |
tree | 8056c001323519bd4bb851c79e4ffa22b7239f62 /meta/recipes-support/aspell/aspell_0.60.6.1.bb | |
parent | a8ffa4a02c6408c80483b60ee76d3c98da52cf9a (diff) | |
download | poky-b297c1aa4b68653b896e534357af46985ec0d7fc.tar.gz |
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
(From OE-Core rev: c0ef8a91f671f30acd92e2734144f7ddf1acda53)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/aspell/aspell_0.60.6.1.bb')
-rw-r--r-- | meta/recipes-support/aspell/aspell_0.60.6.1.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-support/aspell/aspell_0.60.6.1.bb b/meta/recipes-support/aspell/aspell_0.60.6.1.bb index 19a7155d66..161bb5ce20 100644 --- a/meta/recipes-support/aspell/aspell_0.60.6.1.bb +++ b/meta/recipes-support/aspell/aspell_0.60.6.1.bb | |||
@@ -25,7 +25,10 @@ FILES_${PN} = "${bindir}/aspell" | |||
25 | FILES_libpspell = "${libdir}/libpspell.so.*" | 25 | FILES_libpspell = "${libdir}/libpspell.so.*" |
26 | FILES_${PN}-dev += "${bindir}/pspell-config" | 26 | FILES_${PN}-dev += "${bindir}/pspell-config" |
27 | 27 | ||
28 | ARM_INSTRUCTION_SET = "arm" | 28 | ARM_INSTRUCTION_SET_armv4 = "arm" |
29 | ARM_INSTRUCTION_SET_armv5 = "arm" | ||
30 | ARM_INSTRUCTION_SET_armv6 = "arm" | ||
31 | |||
29 | inherit autotools-brokensep gettext texinfo binconfig-disabled | 32 | inherit autotools-brokensep gettext texinfo binconfig-disabled |
30 | 33 | ||
31 | BINCONFIG = "${bindir}/pspell-config" | 34 | BINCONFIG = "${bindir}/pspell-config" |