mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
mpfr: Upgrade to 4.0.2 release
License-Update: Formatting changes and replace http with https in urls. Drop backported patch which is now applied upstream in 4.0.2 (From OE-Core rev: f54688e272cbe33157951bda2efc206f14815974) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1,45 +0,0 @@
|
||||
mpfr-longlong.h: Fix obsolete ARC asm constraints
|
||||
|
||||
This patch replaces obsolete ARC "J" asm constraint with
|
||||
up-to-date "Cal" constraint.
|
||||
|
||||
"J" constraint only existed in pre-upstream GCC port for ARC.
|
||||
In current upstream port "Cal" constraint is used which leads
|
||||
to compile-time error.
|
||||
|
||||
Proposed fix is known to work in Buildroot, Crosstool-NG etc.
|
||||
|
||||
[1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=09cb6a17e71bd40d2fbfaf82a1502fc210e33c87
|
||||
|
||||
Signed-off-by: Claudiu Zissulescu <claziss@synopsys.com>
|
||||
Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com>
|
||||
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
|
||||
|
||||
Upstream-Status: Backport [https://gforge.inria.fr/scm/viewvc.php/mpfr?view=revision&revision=13251]
|
||||
---
|
||||
Index: src/mpfr-longlong.h
|
||||
===================================================================
|
||||
--- a/src/mpfr-longlong.h (revision 10963)
|
||||
+++ b/src/mpfr-longlong.h (working copy)
|
||||
@@ -416,17 +416,17 @@
|
||||
: "=r" (sh), \
|
||||
"=&r" (sl) \
|
||||
: "r" ((USItype) (ah)), \
|
||||
- "rIJ" ((USItype) (bh)), \
|
||||
+ "rICal" ((USItype) (bh)), \
|
||||
"%r" ((USItype) (al)), \
|
||||
- "rIJ" ((USItype) (bl)))
|
||||
+ "rICal" ((USItype) (bl)))
|
||||
#define sub_ddmmss(sh, sl, ah, al, bh, bl) \
|
||||
__asm__ ("sub.f\t%1, %4, %5\n\tsbc\t%0, %2, %3" \
|
||||
: "=r" (sh), \
|
||||
"=&r" (sl) \
|
||||
: "r" ((USItype) (ah)), \
|
||||
- "rIJ" ((USItype) (bh)), \
|
||||
+ "rICal" ((USItype) (bh)), \
|
||||
"r" ((USItype) (al)), \
|
||||
- "rIJ" ((USItype) (bl)))
|
||||
+ "rICal" ((USItype) (bl)))
|
||||
#endif
|
||||
|
||||
#if defined (__arm__) && (defined (__thumb2__) || !defined (__thumb__)) \
|
||||
@@ -1,19 +0,0 @@
|
||||
SUMMARY = "C library for multiple-precision floating-point computations with exact rounding"
|
||||
HOMEPAGE = "http://www.mpfr.org/"
|
||||
LICENSE = "LGPLv3+"
|
||||
SECTION = "devel"
|
||||
|
||||
inherit autotools texinfo
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
|
||||
file://COPYING.LESSER;md5=6a6a8e020838b23406c81b19c1d46df6"
|
||||
DEPENDS = "gmp autoconf-archive"
|
||||
|
||||
SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.xz \
|
||||
file://0001-Fix-obsolete-ARC-asm-constraints.patch"
|
||||
SRC_URI[md5sum] = "b8dd19bd9bb1ec8831a6a582a7308073"
|
||||
SRC_URI[sha256sum] = "67874a60826303ee2fb6affc6dc0ddd3e749e9bfcb4c8655e3953d0458a6e16e"
|
||||
|
||||
UPSTREAM_CHECK_URI = "http://www.mpfr.org/mpfr-current/"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
@@ -0,0 +1,19 @@
|
||||
SUMMARY = "C library for multiple-precision floating-point computations with exact rounding"
|
||||
HOMEPAGE = "http://www.mpfr.org/"
|
||||
LICENSE = "LGPLv3+"
|
||||
SECTION = "devel"
|
||||
|
||||
inherit autotools texinfo
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
|
||||
file://COPYING.LESSER;md5=3000208d539ec061b899bce1d9ce9404 \
|
||||
"
|
||||
DEPENDS = "gmp autoconf-archive"
|
||||
|
||||
SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.xz"
|
||||
SRC_URI[md5sum] = "320fbc4463d4c8cb1e566929d8adc4f8"
|
||||
SRC_URI[sha256sum] = "1d3be708604eae0e42d578ba93b390c2a145f17743a744d8f3f8c2ad5855a38a"
|
||||
|
||||
UPSTREAM_CHECK_URI = "http://www.mpfr.org/mpfr-current/"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user