Add a fix to glibc for 32-bit architectures

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10859 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Bruce Dubbs 2015-02-24 05:35:29 +00:00
parent b7804aeaec
commit 9ee0e52a5b
4 changed files with 24 additions and 2 deletions

View File

@ -35,6 +35,16 @@
</itemizedlist> </itemizedlist>
</listitem> </listitem>
--> -->
<listitem>
<para>2015-02-23</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Add a fix to glibc for 32-bit architectures. Fixes
<ulink url="&lfs-ticket-root;3755">#3755</ulink>.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem> <listitem>
<para>2015-02-22</para> <para>2015-02-22</para>
<itemizedlist> <itemizedlist>

View File

@ -52,6 +52,12 @@
su -c 'cp -v sunrpc/rpc/*.h /usr/include/rpc' su -c 'cp -v sunrpc/rpc/*.h /usr/include/rpc'
fi</userinput></screen> fi</userinput></screen>
<para>Fix is regression in the package that affects 32-bit architectures:</para>
<screen><userinput remap="pre">sed -e '/ia32/s/^/1:/' \
-e '/SSE2/s/^1://' \
-i sysdeps/i386/i686/multiarch/mempcpy_chk.S</userinput></screen>
<para>The Glibc documentation recommends building Glibc outside of the source <para>The Glibc documentation recommends building Glibc outside of the source
directory in a dedicated build directory:</para> directory in a dedicated build directory:</para>

View File

@ -68,6 +68,12 @@
Glibc autoconf tests would give false results and defeat the goal Glibc autoconf tests would give false results and defeat the goal
of achieving a clean build.</para> of achieving a clean build.</para>
<para>Fix is regression in the package that affects 32-bit architectures:</para>
<screen><userinput remap="pre">sed -e '/ia32/s/^/1:/' \
-e '/SSE2/s/^1://' \
-i sysdeps/i386/i686/multiarch/mempcpy_chk.S</userinput></screen>
<para>The Glibc documentation recommends building Glibc outside of the source <para>The Glibc documentation recommends building Glibc outside of the source
directory in a dedicated build directory:</para> directory in a dedicated build directory:</para>

View File

@ -1,7 +1,7 @@
<!ENTITY version "SVN-20150222"> <!ENTITY version "SVN-20150223">
<!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release <!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release
but not -rc releases --> but not -rc releases -->
<!ENTITY releasedate "February 22, 2015"> <!ENTITY releasedate "February 23, 2015">
<!ENTITY copyrightdate "1999-2015"><!-- jhalfs needs a literal dash, not &ndash; --> <!ENTITY copyrightdate "1999-2015"><!-- jhalfs needs a literal dash, not &ndash; -->
<!ENTITY milestone "7.7"> <!ENTITY milestone "7.7">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->