aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Draszik <adraszik@tycoint.com>2016-07-21 04:19:48 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-25 23:47:00 +0100
commitdbbd58cb64b12cb4dc816425eee59c56cd46301f (patch)
treef43900ef57d9b30b492525d74e903b4c7f300092
parentd45f5e71fef5ffbd4408f69c5c179dc71a3eb452 (diff)
downloadopenembedded-core-contrib-dbbd58cb64b12cb4dc816425eee59c56cd46301f.tar.gz
musl: don't compile in mips16e mode
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>
-rw-r--r--meta/recipes-core/musl/musl.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/musl/musl.inc b/meta/recipes-core/musl/musl.inc
index 5e6cd01fda..276b00fdc4 100644
--- a/meta/recipes-core/musl/musl.inc
+++ b/meta/recipes-core/musl/musl.inc
@@ -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"