mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
Upgrade to MPFR-3.1.0. Fixes #2934.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9630 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
18fd33b469
commit
d2f700b581
@ -39,6 +39,10 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>2011-10-12</para>
|
<para>2011-10-12</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[matthew] - Upgrade to MPFR-3.1.0. Fixes
|
||||||
|
<ulink url="&lfs-ticket-root;2934">#2934</ulink>.</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[matthew] - Upgrade to Module-Init-Tools-3.16. Fixes
|
<para>[matthew] - Upgrade to Module-Init-Tools-3.16. Fixes
|
||||||
<ulink url="&lfs-ticket-root;2882">#2882</ulink>.</para>
|
<ulink url="&lfs-ticket-root;2882">#2882</ulink>.</para>
|
||||||
|
@ -257,9 +257,6 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>&module-init-tools-man-patch;</para>
|
<para>&module-init-tools-man-patch;</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
|
||||||
<para>&mpfr-fixes-patch;</para>
|
|
||||||
</listitem>
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>perl-5.14.1-libc-1.patch</para>
|
<para>perl-5.14.1-libc-1.patch</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -139,14 +139,6 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
|
||||||
<term>MPFR Fixes Patch - <token>&mpfr-fixes-patch-size;</token>:</term>
|
|
||||||
<listitem>
|
|
||||||
<para>Download: <ulink url="&patches-root;&mpfr-fixes-patch;"/></para>
|
|
||||||
<para>MD5 sum: <literal>&mpfr-fixes-patch-md5;</literal></para>
|
|
||||||
</listitem>
|
|
||||||
</varlistentry>
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>Patch Testsuite Fix Patch - <token>&patch-test-patch-size;</token>:</term>
|
<term>Patch Testsuite Fix Patch - <token>&patch-test-patch-size;</token>:</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -77,7 +77,9 @@ cd ../gcc-build</userinput></screen>
|
|||||||
--disable-libmudflap --disable-libssp \
|
--disable-libmudflap --disable-libssp \
|
||||||
--disable-libgomp --disable-libquadmath \
|
--disable-libgomp --disable-libquadmath \
|
||||||
--disable-target-libiberty --disable-target-zlib \
|
--disable-target-libiberty --disable-target-zlib \
|
||||||
--enable-languages=c --without-ppl --without-cloog</userinput></screen>
|
--enable-languages=c --without-ppl --without-cloog \
|
||||||
|
--with-mpfr-include=$LFS/sources/gcc-&gcc-version;/mpfr/src \
|
||||||
|
--with-mpfr-lib=$LFS/sources/gcc-build/mpfr/src/.libs</userinput></screen>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<title>The meaning of the configure options:</title>
|
<title>The meaning of the configure options:</title>
|
||||||
|
@ -157,7 +157,9 @@ cd ../gcc-build</userinput></screen>
|
|||||||
--enable-__cxa_atexit --enable-languages=c,c++ \
|
--enable-__cxa_atexit --enable-languages=c,c++ \
|
||||||
--disable-libstdcxx-pch --disable-multilib \
|
--disable-libstdcxx-pch --disable-multilib \
|
||||||
--disable-bootstrap --disable-libgomp \
|
--disable-bootstrap --disable-libgomp \
|
||||||
--without-ppl --without-cloog</userinput></screen>
|
--without-ppl --without-cloog \
|
||||||
|
--with-mpfr-include=$LFS/sources/gcc-&gcc-version;/mpfr/src \
|
||||||
|
--with-mpfr-lib=$LFS/sources/gcc-build/mpfr/src/.libs</userinput></screen>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<title>The meaning of the new configure options:</title>
|
<title>The meaning of the new configure options:</title>
|
||||||
|
@ -43,10 +43,6 @@
|
|||||||
<sect2 role="installation">
|
<sect2 role="installation">
|
||||||
<title>Installation of MPFR</title>
|
<title>Installation of MPFR</title>
|
||||||
|
|
||||||
<para>Apply a patch to fix a few bugs in MPFR:</para>
|
|
||||||
|
|
||||||
<screen><userinput remap="pre">patch -Np1 -i ../&mpfr-fixes-patch;</userinput></screen>
|
|
||||||
|
|
||||||
<para>Prepare MPFR for compilation:</para>
|
<para>Prepare MPFR for compilation:</para>
|
||||||
|
|
||||||
<screen><userinput remap="configure">./configure --prefix=/tools --enable-thread-safe</userinput></screen>
|
<screen><userinput remap="configure">./configure --prefix=/tools --enable-thread-safe</userinput></screen>
|
||||||
|
@ -41,10 +41,6 @@
|
|||||||
<sect2 role="installation">
|
<sect2 role="installation">
|
||||||
<title>Installation of MPFR</title>
|
<title>Installation of MPFR</title>
|
||||||
|
|
||||||
<para>Apply a patch to fix a few bugs in MPFR:</para>
|
|
||||||
|
|
||||||
<screen><userinput remap="pre">patch -Np1 -i ../&mpfr-fixes-patch;</userinput></screen>
|
|
||||||
|
|
||||||
<para>Prepare MPFR for compilation:</para>
|
<para>Prepare MPFR for compilation:</para>
|
||||||
|
|
||||||
<screen><userinput remap="configure">./configure --prefix=/usr --enable-thread-safe \
|
<screen><userinput remap="configure">./configure --prefix=/usr --enable-thread-safe \
|
||||||
|
@ -393,10 +393,10 @@
|
|||||||
<!ENTITY mpc-ch6-du "10.5 MB">
|
<!ENTITY mpc-ch6-du "10.5 MB">
|
||||||
<!ENTITY mpc-ch6-sbu "0.3 SBU">
|
<!ENTITY mpc-ch6-sbu "0.3 SBU">
|
||||||
|
|
||||||
<!ENTITY mpfr-version "3.0.1">
|
<!ENTITY mpfr-version "3.1.0">
|
||||||
<!ENTITY mpfr-size "1,127 KB">
|
<!ENTITY mpfr-size "1,176 KB">
|
||||||
<!ENTITY mpfr-url "http://www.mpfr.org/mpfr-&mpfr-version;/mpfr-&mpfr-version;.tar.bz2">
|
<!ENTITY mpfr-url "http://www.mpfr.org/mpfr-&mpfr-version;/mpfr-&mpfr-version;.tar.bz2">
|
||||||
<!ENTITY mpfr-md5 "bfbecb2eacb6d48432ead5cfc3f7390a">
|
<!ENTITY mpfr-md5 "238ae4a15cc3a5049b723daef5d17938">
|
||||||
<!ENTITY mpfr-home "http://www.mpfr.org/">
|
<!ENTITY mpfr-home "http://www.mpfr.org/">
|
||||||
<!ENTITY mpfr-ch5-du "27.1 MB">
|
<!ENTITY mpfr-ch5-du "27.1 MB">
|
||||||
<!ENTITY mpfr-ch5-sbu "1.0 SBU">
|
<!ENTITY mpfr-ch5-sbu "1.0 SBU">
|
||||||
|
@ -75,11 +75,6 @@
|
|||||||
<!ENTITY module-init-tools-man-patch-size "44 KB">
|
<!ENTITY module-init-tools-man-patch-size "44 KB">
|
||||||
|
|
||||||
|
|
||||||
<!ENTITY mpfr-fixes-patch "mpfr-&mpfr-version;-fixes-1.patch">
|
|
||||||
<!ENTITY mpfr-fixes-patch-md5 "66305450989c2633b9346900e9a5d9a3">
|
|
||||||
<!ENTITY mpfr-fixes-patch-size "9 KB">
|
|
||||||
|
|
||||||
|
|
||||||
<!ENTITY patch-test-patch "patch-&patch-version;-test_fix-1.patch">
|
<!ENTITY patch-test-patch "patch-&patch-version;-test_fix-1.patch">
|
||||||
<!ENTITY patch-test-patch-md5 "c51e1a95bfc5310635d05081472c3534">
|
<!ENTITY patch-test-patch-md5 "c51e1a95bfc5310635d05081472c3534">
|
||||||
<!ENTITY patch-test-patch-size "1 KB">
|
<!ENTITY patch-test-patch-size "1 KB">
|
||||||
|
Loading…
Reference in New Issue
Block a user