diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-12-14 13:25:58 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-16 12:12:17 +0000 |
commit | 8668e1798b2dbb546b5c0737f019999ffba3d4b1 (patch) | |
tree | 387a62d5caf97c239f9780a2b573988e302f4734 /meta/recipes-support/gmp/gmp-6.1.0/amd64.patch | |
parent | 86e02d016b2cca4b24466cb4393f4cb1a3c4a37e (diff) | |
download | poky-8668e1798b2dbb546b5c0737f019999ffba3d4b1.tar.gz |
gmp: update to 6.1.0
Remove gmp-6.0.0-ppc64.patch, it was a backport
Remove configure.patch, it fixed problems with very old versions
of autotools, and testing showed it is no longer needed:
http://git.openembedded.org/openembedded/commit/gmp/gmp-4.1.2/configure.patch?id=43dd0eeb7b7aaf482d3568a0d6a3b99bedbf1cf6
(From OE-Core rev: 8b21d3b32f8ac4cc4b3ebea1db2b13df0dec1c3b)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.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/gmp-6.1.0/amd64.patch')
-rw-r--r-- | meta/recipes-support/gmp/gmp-6.1.0/amd64.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-support/gmp/gmp-6.1.0/amd64.patch b/meta/recipes-support/gmp/gmp-6.1.0/amd64.patch new file mode 100644 index 0000000000..564d12d42b --- /dev/null +++ b/meta/recipes-support/gmp/gmp-6.1.0/amd64.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Index: gmp-5.0.3/longlong.h | ||
4 | =================================================================== | ||
5 | --- gmp-5.0.3.orig/longlong.h | ||
6 | +++ gmp-5.0.3/longlong.h | ||
7 | @@ -994,8 +994,10 @@ extern UWtype __MPN(udiv_qrnnd) _PROTO ( | ||
8 | count is only an int. */ | ||
9 | #define count_trailing_zeros(count, x) \ | ||
10 | do { \ | ||
11 | + UDItype __cbtmp; \ | ||
12 | ASSERT ((x) != 0); \ | ||
13 | - __asm__ ("bsfq %1,%q0" : "=r" (count) : "rm" ((UDItype)(x))); \ | ||
14 | + __asm__ ("bsfq %1,%0" : "=r" (__cbtmp) : "rm" ((UDItype)(x))); \ | ||
15 | + (count) = __cbtmp; \ | ||
16 | } while (0) | ||
17 | #endif /* x86_64 */ | ||
18 | |||