diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/binutils.xml | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/chapter06/binutils.xml b/chapter06/binutils.xml index d5d9c27f7..36d303b49 100644 --- a/chapter06/binutils.xml +++ b/chapter06/binutils.xml @@ -65,16 +65,33 @@ cd build</userinput></screen> <para>Prepare Binutils for compilation:</para> -<screen><userinput remap="configure">../configure --prefix=/usr \ - --enable-plugins \ - --enable-shared \ - --disable-werror \ +<screen><userinput remap="configure">../configure --prefix=/usr \ + --enable-gold \ + --enable-ld=default \ + --enable-plugins \ + --enable-shared \ + --disable-werror \ --with-system-zlib</userinput></screen> - <variablelist> <title>The meaning of the configure parameters:</title> <varlistentry> + <term><parameter>--enable-gold</parameter></term> + <listitem> + <para>Build the gold linker and install it as ld.gold (along side the + default linker).</para> + </listitem> + </varlistentry> + + <varlistentry> + <term><parameter>--enable-ld=default</parameter></term> + <listitem> + <para>Build the original bdf linker and install it as both ld (the + default linker) and ld.bfd.</para> + </listitem> + </varlistentry> + + <varlistentry> <term><parameter>--enable-plugins</parameter></term> <listitem> <para>Enables plugin support for the linker.</para> |