diff options
author | André Draszik <adraszik@tycoint.com> | 2016-06-24 11:58:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-01 16:08:46 +0100 |
commit | 27467ca354801aeb6d7e3a658cff3dda37db971a (patch) | |
tree | 1b19517c2585a1ddd1741a7dc6fdfd14fcc1eb72 /meta | |
parent | 5a32f23210ecb90ca97e4e861146208c88762209 (diff) | |
download | openembedded-core-27467ca354801aeb6d7e3a658cff3dda37db971a.tar.gz openembedded-core-27467ca354801aeb6d7e3a658cff3dda37db971a.tar.bz2 openembedded-core-27467ca354801aeb6d7e3a658cff3dda37db971a.zip |
libffi: don't compile in mips16e mode
libffi contains hand-written assembly which is not compatible with
the MIPS16e mode.
Signed-off-by: André Draszik <adraszik@tycoint.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/libffi/libffi_3.2.1.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/libffi/libffi_3.2.1.bb b/meta/recipes-support/libffi/libffi_3.2.1.bb index 72e25fb9d5..42ab1087f3 100644 --- a/meta/recipes-support/libffi/libffi_3.2.1.bb +++ b/meta/recipes-support/libffi/libffi_3.2.1.bb @@ -23,4 +23,8 @@ inherit autotools texinfo FILES_${PN}-dev += "${libdir}/libffi-${PV}" +# Doesn't compile in MIPS16e mode due to use of hand-written +# assembly +MIPS_INSTRUCTION_SET = "mips16" + BBCLASSEXTEND = "native nativesdk" |