diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2017-11-14 18:23:13 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-03 09:26:31 +0000 |
commit | d29bd5571187cb30d25f3a885e9e61aa20dd6d7a (patch) | |
tree | f49fd69de1dba565d125a5f604a1c43bc6a78770 /meta | |
parent | 9339724de14c8bfc1baa71e4ed687410aed1a812 (diff) | |
download | openembedded-core-d29bd5571187cb30d25f3a885e9e61aa20dd6d7a.tar.gz openembedded-core-d29bd5571187cb30d25f3a885e9e61aa20dd6d7a.tar.bz2 openembedded-core-d29bd5571187cb30d25f3a885e9e61aa20dd6d7a.zip |
musl: Disable thumb1 ISA
thumb1 is unsupported see http://www.openwall.com/lists/musl/2017/10/20/10
Fix
[YOCTO #12336]
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/musl/musl.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/musl/musl.inc b/meta/recipes-core/musl/musl.inc index 56c9d7fe17..9af1172ae0 100644 --- a/meta/recipes-core/musl/musl.inc +++ b/meta/recipes-core/musl/musl.inc @@ -26,3 +26,8 @@ INSANE_SKIP_${PN} = "dev-so" # Doesn't compile in MIPS16e mode due to use of hand-written # assembly MIPS_INSTRUCTION_SET = "mips" + +# thumb1 is unsupported +ARM_INSTRUCTION_SET_armv5 = "arm" +ARM_INSTRUCTION_SET_armv4 = "arm" + |