source: chapter06/libtool.xml@ 90bfa70

Last change on this file since 90bfa70 was 6a0e6f3, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Remove the spurious <info> tags that I thought were necessary but evidently aren't

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4387 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-system-libtool" xreflabel="Libtool" role="wrap">
8<title>Libtool-&libtool-version;</title>
9<?dbhtml filename="libtool.html"?>
10
11<indexterm zone="ch-system-libtool"><primary sortas="a-Libtool">Libtool</primary></indexterm>
12
13<section role="package"><title/>
14<para>The Libtool package contains the GNU generic library support script.
15It wraps the complexity of using shared libraries in a consistent, portable
16interface.</para>
17
18<segmentedlist>
19<segtitle>&buildtime;</segtitle>
20<segtitle>&diskspace;</segtitle>
21<seglistitem><seg>1.5 SBU</seg><seg>20 MB</seg></seglistitem>
22</segmentedlist>
23
24<segmentedlist>
25<segtitle>Libtool installation depends on</segtitle>
26<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
27GCC, Glibc, Grep, Make, Sed</seg></seglistitem>
28</segmentedlist>
29</section>
30
31<section role="installation">
32<title>Installation of Libtool</title>
33
34<para>Prepare Libtool for compilation:</para>
35
36<screen><userinput>./configure --prefix=/usr</userinput></screen>
37
38<para>Compile the package:</para>
39
40<screen><userinput>make</userinput></screen>
41
42<para>To test the results, issue:
43<userinput>make check</userinput>.</para>
44
45<para>Install the package:</para>
46
47<screen><userinput>make install</userinput></screen>
48
49</section>
50
51
52<section xml:id="contents-libtool" role="content"><title>Contents of Libtool</title>
53
54<segmentedlist>
55<segtitle>Installed programs</segtitle>
56<segtitle>Installed libraries</segtitle>
57<seglistitem><seg>libtool and libtoolize</seg><seg>libltdl.[a,so]</seg></seglistitem>
58</segmentedlist>
59
60<variablelist><title>Short descriptions</title>
61
62<varlistentry xml:id="libtool">
63<term><command>libtool</command></term>
64<listitem>
65<indexterm zone="ch-system-libtool libtool"><primary sortas="b-libtool">libtool</primary></indexterm>
66<para>provides generalized library-building support services.</para>
67</listitem>
68</varlistentry>
69
70<varlistentry xml:id="libtoolize">
71<term><command>libtoolize</command></term>
72<listitem>
73<indexterm zone="ch-system-libtool libtoolize"><primary sortas="b-libtoolize">libtoolize</primary></indexterm>
74<para>provides a standard way to add libtool support to a package.</para>
75</listitem>
76</varlistentry>
77
78<varlistentry xml:id="libltdl">
79<term><filename class="libraryfile">libltdl</filename></term>
80<listitem>
81<indexterm zone="ch-system-libtool libltdl"><primary sortas="c-libltdl">libltdl</primary></indexterm>
82<para>hides the various difficulties of dlopening libraries.</para>
83</listitem>
84</varlistentry>
85</variablelist>
86
87</section>
88
89</section>
Note: See TracBrowser for help on using the repository browser.