source: chapter06/zlib.xml@ 8eb3fe4

multilib-10.1
Last change on this file since 8eb3fe4 was 8eb3fe4, checked in by Thomas Trepl <thomas@…>, 5 years ago

First apply of multilib-patch of April 1st, 2019

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

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-zlib" role="wrap">
9 <?dbhtml filename="zlib.html"?>
10
11 <sect1info condition="script">
12 <productname>zlib</productname>
13 <productnumber>&zlib-version;</productnumber>
14 <address>&zlib-url;</address>
15 </sect1info>
16
17 <title>Zlib-&zlib-version;</title>
18
19 <indexterm zone="ch-system-zlib">
20 <primary sortas="a-Zlib">Zlib</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Zlib package contains compression and decompression routines used by
27 some programs.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&zlib-ch6-sbu;</seg>
35 <seg>&zlib-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Zlib</title>
43
44 <para>Prepare Zlib for compilation:</para>
45
46<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
47
48 <para>Compile the package:</para>
49
50<screen><userinput remap="make">make</userinput></screen>
51
52 <para>To test the results, issue:</para>
53
54<screen><userinput remap="test">make check</userinput></screen>
55
56 <para>Install the package:</para>
57
58<screen><userinput remap="install">make install</userinput></screen>
59
60 <para>The shared library needs to be moved to
61 <filename class="directory">/lib</filename>, and as a result the
62 <filename class="extension">.so</filename> file in
63 <filename class="directory">/usr/lib</filename> will need to be recreated:</para>
64
65<screen><userinput remap="install">mv -v /usr/lib/libz.so.* /lib
66ln -sfv ../../lib/$(readlink /usr/lib/libz.so) /usr/lib/libz.so</userinput></screen>
67
68 </sect2>
69
70 <sect2 arch="multilib" role="installation">
71 <title>Installation of Zlib - 32-bit</title>
72
73 <para>Clean previous build:</para>
74
75<screen><userinput remap="pre">make distclean</userinput></screen>
76
77 <para>Prepare Zlib for compilation:</para>
78
79<!-- configure doesn't know option - -host=i686-pc-linux-gnu -->
80<screen><userinput remap="configure">CC="gcc -m32 -march=i686" \
81./configure --prefix=/usr \
82 --libdir=/usr/lib32</userinput></screen>
83
84 <para>Compile the package:</para>
85
86<screen><userinput remap="make">make</userinput></screen>
87
88 <para>Install the package:</para>
89
90<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
91cp -Rv DESTDIR/usr/lib32/* /usr/lib32
92rm -rf DESTDIR</userinput></screen>
93
94 </sect2>
95
96 <sect2 arch="multilib" role="installation">
97 <title>Installation of Zlib - x32-bit</title>
98
99<screen><userinput remap="pre">make distclean</userinput></screen>
100
101 <para>Prepare Zlib for compilation:</para>
102
103<screen><userinput remap="configure">CC="gcc -mx32" \
104./configure --prefix=/usr \
105 --libdir=/usr/libx32</userinput></screen>
106
107 <para>Compile the package:</para>
108
109<screen><userinput remap="make">make</userinput></screen>
110
111 <para>Install the package:</para>
112
113<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
114cp -Rv DESTDIR/usr/libx32/* /usr/libx32
115rm -rf DESTDIR</userinput></screen>
116
117 </sect2>
118
119 <sect2 id="contents-zlib" role="content">
120 <title>Contents of Zlib</title>
121
122 <segmentedlist>
123 <segtitle>Installed libraries</segtitle>
124
125 <seglistitem>
126 <seg>libz.{a,so}</seg>
127 </seglistitem>
128 </segmentedlist>
129
130 <variablelist>
131 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
132 <?dbfo list-presentation="list"?>
133 <?dbhtml list-presentation="table"?>
134
135 <varlistentry id="libz">
136 <term><filename class="libraryfile">libz</filename></term>
137 <listitem>
138 <para>Contains compression and decompression functions used by
139 some programs</para>
140 <indexterm zone="ch-system-zlib libz">
141 <primary sortas="c-libz">libz</primary>
142 </indexterm>
143 </listitem>
144 </varlistentry>
145
146 </variablelist>
147
148 </sect2>
149
150</sect1>
Note: See TracBrowser for help on using the repository browser.