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:22:44 +0100 |
commit | 2c80ebf8dfb7284fac10c06a059341c40e56f5bd (patch) | |
tree | ce2fa284650f6cc8e7edabaa2e78d799d7ff5305 /meta/recipes-support/gmp | |
parent | d81b9185a19eab6b9627f460c1576cd445d63e93 (diff) | |
download | poky-2c80ebf8dfb7284fac10c06a059341c40e56f5bd.tar.gz |
gmp: don't compile in mips16e mode
gmp contains hand-written assembly which is not compatible with
the MIPS16e mode.
(From OE-Core rev: 217729318b42ab378e1cc70db7726022a5837b49)
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/gmp')
-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() { | |||
30 | 30 | ||
31 | SSTATE_SCAN_FILES += "gmp.h" | 31 | SSTATE_SCAN_FILES += "gmp.h" |
32 | 32 | ||
33 | # Doesn't compile in MIPS16e mode due to use of hand-written | ||
34 | # assembly | ||
35 | MIPS_INSTRUCTION_SET = "mips" | ||
36 | |||
33 | BBCLASSEXTEND = "native nativesdk" | 37 | BBCLASSEXTEND = "native nativesdk" |