diff options
author | André Draszik <adraszik@tycoint.com> | 2016-06-24 11:58:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-01 16:08:45 +0100 |
commit | 217729318b42ab378e1cc70db7726022a5837b49 (patch) | |
tree | 801c3b65f8cf66e948c65b1733ed42f999f63cb9 /meta/recipes-support | |
parent | 964456b0a2b9404ea54d6905a418ecf52b522bca (diff) | |
download | openembedded-core-217729318b42ab378e1cc70db7726022a5837b49.tar.gz openembedded-core-217729318b42ab378e1cc70db7726022a5837b49.tar.bz2 openembedded-core-217729318b42ab378e1cc70db7726022a5837b49.zip |
gmp: don't compile in mips16e mode
gmp 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/recipes-support')
-rw-r--r-- | meta/recipes-support/gmp/gmp_6.1.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/gmp/gmp_6.1.0.bb b/meta/recipes-support/gmp/gmp_6.1.0.bb index de827f5b7c..9acf5cf5fe 100644 --- a/meta/recipes-support/gmp/gmp_6.1.0.bb +++ b/meta/recipes-support/gmp/gmp_6.1.0.bb @@ -30,4 +30,8 @@ do_install_append_class-target() { SSTATE_SCAN_FILES += "gmp.h" +# Doesn't compile in MIPS16e mode due to use of hand-written +# assembly +MIPS_INSTRUCTION_SET = "mips" + BBCLASSEXTEND = "native nativesdk" |