From fc97ef905d098dcc6b061032db0e4748e21d5bee Mon Sep 17 00:00:00 2001 From: André Draszik Date: Fri, 24 Jun 2016 11:58:29 +0100 Subject: libffi: don't compile in mips16e mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit libffi contains hand-written assembly which is not compatible with the MIPS16e mode. (From OE-Core rev: 27467ca354801aeb6d7e3a658cff3dda37db971a) Signed-off-by: André Draszik Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-support/libffi/libffi_3.2.1.bb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta') 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" -- cgit 1.2.3-korg