diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-16 20:52:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-18 10:56:55 +0100 |
commit | b580a51baa4f2d402d5e88646cc5f327b39f74e4 (patch) | |
tree | 3b9ee6c8796d78930390d3c83819481468c3c681 /meta/recipes-devtools/gcc/libgcc_8.2.bb | |
parent | 7e8056d96ebe85d72bc4cb961e5766968db2ece2 (diff) | |
download | poky-b580a51baa4f2d402d5e88646cc5f327b39f74e4.tar.gz |
libgcc/gcc-runtime: Disable thumb mode on armv6
Without this the build fails for armv6t targets due to invalid
assembler instructions in thumb mode.
[YOCTO #12929]
(From OE-Core rev: 801141be68e5c754f2cd1d80d13982f037fc03e5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/libgcc_8.2.bb')
-rw-r--r-- | meta/recipes-devtools/gcc/libgcc_8.2.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/libgcc_8.2.bb b/meta/recipes-devtools/gcc/libgcc_8.2.bb index a5152f28e9..ea210a1130 100644 --- a/meta/recipes-devtools/gcc/libgcc_8.2.bb +++ b/meta/recipes-devtools/gcc/libgcc_8.2.bb | |||
@@ -1,2 +1,5 @@ | |||
1 | require recipes-devtools/gcc/gcc-${PV}.inc | 1 | require recipes-devtools/gcc/gcc-${PV}.inc |
2 | require libgcc.inc | 2 | require libgcc.inc |
3 | |||
4 | # Building with thumb enabled on armv6t fails | ||
5 | ARM_INSTRUCTION_SET_armv6 = "arm" | ||