source: clfs-sysroot/BOOK/final-system/common/libtool.xml @ 59fb197

Last change on this file since 59fb197 was 02095ae, checked in by Jim Gifford <clfs@…>, 18 years ago

r3633@server (orig r1649): jciccone | 2006-05-25 16:48:42 -0700
Added the Initial clfs-2.0 branch using sysroot builds.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-libtool" role="wrap">
9  <?dbhtml filename="libtool.html"?>
10
11  <title>Libtool-&libtool-version;</title>
12
13  <indexterm zone="ch-system-libtool">
14    <primary sortas="a-Libtool">Libtool</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The Libtool package contains the GNU generic library support script.
21    It wraps the complexity of using shared libraries in a consistent, portable
22    interface.</para>
23
24  </sect2>
25
26  <sect2 role="installation">
27    <title>Installation of Libtool</title>
28
29    <para os="a">Prepare Libtool for compilation:</para>
30
31<screen os="b"><userinput>./configure --prefix=/usr --host=${LFS_TARGET}</userinput></screen>
32
33    <para os="c">Compile the package:</para>
34
35<screen os="d"><userinput>make</userinput></screen>
36
37    <para os="e">Install the package:</para>
38
39<screen os="f"><userinput>make DESTDIR=${LFS} install</userinput></screen>
40
41  </sect2>
42
43  <sect2 id="contents-libtool" role="content">
44    <title>Contents of Libtool</title>
45
46    <segmentedlist>
47      <segtitle>Installed programs</segtitle>
48      <segtitle>Installed libraries</segtitle>
49
50      <seglistitem>
51        <seg>libtool and libtoolize</seg>
52        <seg>libltdl.[a,so]</seg>
53      </seglistitem>
54    </segmentedlist>
55
56    <variablelist>
57      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
58      <?dbfo list-presentation="list"?>
59      <?dbhtml list-presentation="table"?>
60
61      <varlistentry id="libtool">
62        <term><command>libtool</command></term>
63        <listitem>
64          <para>Provides generalized library-building support services</para>
65          <indexterm zone="ch-system-libtool libtool">
66            <primary sortas="b-libtool">libtool</primary>
67          </indexterm>
68        </listitem>
69      </varlistentry>
70
71      <varlistentry id="libtoolize">
72        <term><command>libtoolize</command></term>
73        <listitem>
74          <para>Provides a standard way to add <command>libtool</command> support
75          to a package</para>
76          <indexterm zone="ch-system-libtool libtoolize">
77            <primary sortas="b-libtoolize">libtoolize</primary>
78          </indexterm>
79        </listitem>
80      </varlistentry>
81
82      <varlistentry id="libltdl">
83        <term><filename class="libraryfile">libltdl</filename></term>
84        <listitem>
85          <para>Hides the various difficulties of dlopening libraries</para>
86          <indexterm zone="ch-system-libtool libltdl">
87            <primary sortas="c-libltdl">libltdl</primary>
88          </indexterm>
89        </listitem>
90      </varlistentry>
91
92    </variablelist>
93
94  </sect2>
95
96</sect1>
Note: See TracBrowser for help on using the repository browser.