aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorDJ Lucas <dj@linuxfromscratch.org>2017-01-03 04:32:14 +0000
committerDJ Lucas <dj@linuxfromscratch.org>2017-01-03 04:32:14 +0000
commit512c848797558f54bfce08a0f7cf262faad200fa (patch)
tree89c1a765b945ce83340c6d4a64cd434f5f767cc0 /chapter06
parent8557cabb5520c89845d23604d0f255d0c154e4b9 (diff)
Update to zlib-1.2.9, fixes #4023. Update to m4-1.4.18, fixes #4022, correct binutils linking with zlib and enable plugins.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11162 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/binutils.xml28
1 files changed, 25 insertions, 3 deletions
diff --git a/chapter06/binutils.xml b/chapter06/binutils.xml
index c7081ea37..c5ec247e5 100644
--- a/chapter06/binutils.xml
+++ b/chapter06/binutils.xml
@@ -65,9 +65,31 @@ cd build</userinput></screen>
<para>Prepare Binutils for compilation:</para>
-<screen><userinput remap="configure">../configure --prefix=/usr \
- --enable-shared \
- --disable-werror</userinput></screen>
+<screen><userinput remap="configure">../configure --prefix=/usr \
+ --enable-shared \
+ --enable-plugins \
+ --disable-werror \
+ --with-system-zlib</userinput></screen>
+
+ <variablelist>
+ <title>The meaning of the configure parameters:</title>
+
+ <varlistentry>
+ <term><parameter>--enable-plugins</parameter></term>
+ <listitem>
+ <para>Enables plugin support for the linker.</para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><parameter>--with-system-zlib</parameter></term>
+ <listitem>
+ <para>Use the installed zlib library rather than building the
+ included version.</para>
+ </listitem>
+ </varlistentry>
+
+ </variablelist>
<para>Compile the package:</para>