]> code.ossystems Code Review - openembedded-core.git/commitdiff
musl: don't compile in mips16e mode
authorAndré Draszik <adraszik@tycoint.com>
Thu, 21 Jul 2016 03:19:48 +0000 (04:19 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 25 Jul 2016 22:47:00 +0000 (23:47 +0100)
musl 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>
meta/recipes-core/musl/musl.inc

index 5e6cd01fda79180c76dd55105761cad1bd16d73d..276b00fdc48596a52ec203bea462738502a971e0 100644 (file)
@@ -24,3 +24,6 @@ FILES_SOLIBSDEV = ""
 FILES_${PN} += "${libdir}/lib*${SOLIBSDEV}"
 INSANE_SKIP_${PN} = "dev-so"
 
+# Doesn't compile in MIPS16e mode due to use of hand-written
+# assembly
+MIPS_INSTRUCTION_SET = "mips"