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:38 +0000 |
commit | 2f497f20febf142a1ff0fe913f971d4db06260ab (patch) | |
tree | afdfec381df1f3f7de9eb9fbac7a6e15488e1336 /meta/recipes-core | |
parent | 5809c8fc85f3ead43ec7c2c7f1186ddbd04719b3 (diff) | |
download | poky-2f497f20febf142a1ff0fe913f971d4db06260ab.tar.gz |
musl: Disable thumb1 ISA
thumb1 is unsupported see http://www.openwall.com/lists/musl/2017/10/20/10
Fix
[YOCTO #12336]
(From OE-Core rev: d29bd5571187cb30d25f3a885e9e61aa20dd6d7a)
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-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" | |||
26 | # Doesn't compile in MIPS16e mode due to use of hand-written | 26 | # Doesn't compile in MIPS16e mode due to use of hand-written |
27 | # assembly | 27 | # assembly |
28 | MIPS_INSTRUCTION_SET = "mips" | 28 | MIPS_INSTRUCTION_SET = "mips" |
29 | |||
30 | # thumb1 is unsupported | ||
31 | ARM_INSTRUCTION_SET_armv5 = "arm" | ||
32 | ARM_INSTRUCTION_SET_armv4 = "arm" | ||
33 | |||