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
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[1fe35e1]2<!DOCTYPE section [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[1fe35e1]6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-system-libtool" xreflabel="Libtool" role="wrap">
[6a0e6f3]8<title>Libtool-&libtool-version;</title>
[673b0d8]9<?dbhtml filename="libtool.html"?>
10
11<indexterm zone="ch-system-libtool"><primary sortas="a-Libtool">Libtool</primary></indexterm>
[6370fa6]12
[6a0e6f3]13<section role="package"><title/>
[5888299]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
[a001133]18<segmentedlist>
19<segtitle>&buildtime;</segtitle>
20<segtitle>&diskspace;</segtitle>
21<seglistitem><seg>1.5 SBU</seg><seg>20 MB</seg></seglistitem>
22</segmentedlist>
[673b0d8]23
[a001133]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>
[1fe35e1]29</section>
[3554fa3a]30
[1fe35e1]31<section role="installation">
[6a0e6f3]32<title>Installation of Libtool</title>
[73aedd1d]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
[673b0d8]42<para>To test the results, issue:
[8a5f906]43<userinput>make check</userinput>.</para>
[73aedd1d]44
[673b0d8]45<para>Install the package:</para>
[73aedd1d]46
47<screen><userinput>make install</userinput></screen>
48
[1fe35e1]49</section>
[6370fa6]50
[5888299]51
[6a0e6f3]52<section xml:id="contents-libtool" role="content"><title>Contents of Libtool</title>
[673b0d8]53
[c6cb3aa]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>
[673b0d8]59
[c6cb3aa]60<variablelist><title>Short descriptions</title>
[73aedd1d]61
[1fe35e1]62<varlistentry xml:id="libtool">
[b8a819f]63<term><command>libtool</command></term>
[c6cb3aa]64<listitem>
[673b0d8]65<indexterm zone="ch-system-libtool libtool"><primary sortas="b-libtool">libtool</primary></indexterm>
[c6cb3aa]66<para>provides generalized library-building support services.</para>
67</listitem>
68</varlistentry>
[673b0d8]69
[1fe35e1]70<varlistentry xml:id="libtoolize">
[b8a819f]71<term><command>libtoolize</command></term>
[c6cb3aa]72<listitem>
[673b0d8]73<indexterm zone="ch-system-libtool libtoolize"><primary sortas="b-libtoolize">libtoolize</primary></indexterm>
[c6cb3aa]74<para>provides a standard way to add libtool support to a package.</para>
75</listitem>
76</varlistentry>
[673b0d8]77
[1fe35e1]78<varlistentry xml:id="libltdl">
[ef57e3b]79<term><filename class="libraryfile">libltdl</filename></term>
[c6cb3aa]80<listitem>
[673b0d8]81<indexterm zone="ch-system-libtool libltdl"><primary sortas="c-libltdl">libltdl</primary></indexterm>
[c6cb3aa]82<para>hides the various difficulties of dlopening libraries.</para>
83</listitem>
84</varlistentry>
85</variablelist>
[673b0d8]86
[1fe35e1]87</section>
[673b0d8]88
[1fe35e1]89</section>
Note: See TracBrowser for help on using the repository browser.