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:22:44 +0100 |
commit | fc97ef905d098dcc6b061032db0e4748e21d5bee (patch) | |
tree | 33c543567eff5e4250f56af00f944e4a5458edf0 /meta/recipes-support/libffi | |
parent | 90bb7c1a9630ac93dde399ef40f141fd7061501d (diff) | |
download | poky-fc97ef905d098dcc6b061032db0e4748e21d5bee.tar.gz |
libffi: don't compile in mips16e mode
libffi contains hand-written assembly which is not compatible with
the MIPS16e mode.
(From OE-Core rev: 27467ca354801aeb6d7e3a658cff3dda37db971a)
Signed-off-by: André Draszik <adraszik@tycoint.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libffi')
-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 | |||
23 | 23 | ||
24 | FILES_${PN}-dev += "${libdir}/libffi-${PV}" | 24 | FILES_${PN}-dev += "${libdir}/libffi-${PV}" |
25 | 25 | ||
26 | # Doesn't compile in MIPS16e mode due to use of hand-written | ||
27 | # assembly | ||
28 | MIPS_INSTRUCTION_SET = "mips16" | ||
29 | |||
26 | BBCLASSEXTEND = "native nativesdk" | 30 | BBCLASSEXTEND = "native nativesdk" |