Added descriptions of the configure options used in the GMP instructions and updated the installed library descriptions

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8644 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Randy McMurchy 2008-10-12 00:39:47 +00:00
parent f683537f46
commit 0bb6760364
3 changed files with 60 additions and 5 deletions

View File

@ -37,6 +37,17 @@
--> -->
<listitem>
<para>2008-10-12</para>
<itemizedlist>
<listitem>
<para>[randy] - Added descriptions of the configure options used
in the GMP instructions and updated the installed library
descriptions.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem> <listitem>
<para>2008-10-11</para> <para>2008-10-11</para>
<itemizedlist> <itemizedlist>

View File

@ -47,6 +47,18 @@
<screen><userinput remap="configure">./configure --prefix=/tools --enable-mpbsd</userinput></screen> <screen><userinput remap="configure">./configure --prefix=/tools --enable-mpbsd</userinput></screen>
<variablelist>
<title>The meaning of the configure option:</title>
<varlistentry>
<term><parameter>--enable-mpbsd</parameter></term>
<listitem>
<para>This builds the Berkeley MP compatibility library</para>
</listitem>
</varlistentry>
</variablelist>
<para>Compile the package:</para> <para>Compile the package:</para>
<screen><userinput remap="make">make</userinput></screen> <screen><userinput remap="make">make</userinput></screen>

View File

@ -45,6 +45,18 @@
<screen><userinput remap="configure">./configure --prefix=/usr --enable-cxx --enable-mpbsd</userinput></screen> <screen><userinput remap="configure">./configure --prefix=/usr --enable-cxx --enable-mpbsd</userinput></screen>
<variablelist>
<title>The meaning of the new configure option:</title>
<varlistentry>
<term><parameter>--enable-cxx</parameter></term>
<listitem>
<para>This parameter enables C++ support</para>
</listitem>
</varlistentry>
</variablelist>
<para>Compile the package:</para> <para>Compile the package:</para>
<screen><userinput remap="make">make</userinput></screen> <screen><userinput remap="make">make</userinput></screen>
@ -77,7 +89,7 @@ cp -v doc/{isa_abi_headache,configuration} doc/*.html \
<segtitle>Installed Libraries</segtitle> <segtitle>Installed Libraries</segtitle>
<seglistitem> <seglistitem>
<seg>gmp.so</seg> <seg>libgmp.{a,so}, libgmpxx.{a,so}, and libmp.{a,so}</seg>
</seglistitem> </seglistitem>
</segmentedlist> </segmentedlist>
@ -86,12 +98,32 @@ cp -v doc/{isa_abi_headache,configuration} doc/*.html \
<?dbfo list-presentation="list"?> <?dbfo list-presentation="list"?>
<?dbhtml list-presentation="table"?> <?dbhtml list-presentation="table"?>
<varlistentry id="gmp"> <varlistentry id="libgmp">
<term><command>gmp</command></term> <term><command>libgmp</command></term>
<listitem> <listitem>
<para>Contains precision math functions.</para> <para>Contains precision math functions.</para>
<indexterm zone="ch-system-gmp gmp"> <indexterm zone="ch-system-gmp libgmp">
<primary sortas="c-gmp">gmp</primary> <primary sortas="c-libgmp">libgmp</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="libgmpxx">
<term><command>libgmpxx</command></term>
<listitem>
<para>Contains C++ precision math functions.</para>
<indexterm zone="ch-system-gmp libgmpxx">
<primary sortas="c-libgmpxx">libgmpxx</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="libmp">
<term><command>libmp</command></term>
<listitem>
<para>Contains the Berkeley MP math functions.</para>
<indexterm zone="ch-system-gmp libmp">
<primary sortas="c-libmp">libmp</primary>
</indexterm> </indexterm>
</listitem> </listitem>
</varlistentry> </varlistentry>