source: chapter06/zlib.xml@ db9d773c

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since db9d773c was db9d773c, checked in by Alex Gronenwoud <alex@…>, 20 years ago

Forgetfulness makes the most traffic...

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

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<sect1 id="ch-system-zlib" xreflabel="Zlib">
2<title>Installing Zlib-&zlib-version;</title>
3<?dbhtml filename="zlib.html" dir="chapter06"?>
4
5<para>The Zlib package contains compression and uncompression routines used by
6some programs.</para>
7
8<screen>&buildtime; &zlib-time;
9&diskspace; &zlib-compsize;</screen>
10
11&aa-zlib-down;
12&aa-zlib-dep;
13
14<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
15
16<sect2>
17<title>Installation of Zlib</title>
18
19<note><para>Zlib is known to build its shared library incorrectly if CFLAGS is
20specified in the environment. If you are using your own CFLAGS variable, be
21sure to add the <emphasis>-fPIC</emphasis> directive to your CFLAGS for the
22duration of the below <command>configure</command> command, then remove it
23afterwards.</para></note>
24
25<para>Prepare Zlib for compilation:</para>
26
27<screen><userinput>./configure --prefix=/usr --shared</userinput></screen>
28
29<para>Compile the package:</para>
30
31<screen><userinput>make</userinput></screen>
32
33<para>To have the results tested, issue:
34<userinput>make check</userinput>.</para>
35
36<para>Install the shared library:</para>
37
38<screen><userinput>make install</userinput></screen>
39
40<para>Now also build the non-shared (static) library:</para>
41<screen><userinput>make clean
42./configure --prefix=/usr
43make</userinput></screen>
44
45<para>To have the results tested again, issue:
46<userinput>make check</userinput>.</para>
47
48<para>Install the static library:</para>
49
50<screen><userinput>make install</userinput></screen>
51
52<para>And fix the permissions on the static library:</para>
53
54<screen><userinput>chmod 644 /usr/lib/libz.a</userinput></screen>
55
56<para>It is good policy and common practice to place important libraries into
57the <filename class="directory">/lib</filename> directory. This matters most
58in scenarios where <filename class="directory">/usr</filename> is on a
59separate partition. Essentially, the run-time components of any libraries that
60are used by programs in <filename class="directory">/bin</filename> or
61<filename class="directory">/sbin</filename> should reside in
62<filename class="directory">/lib</filename> so that they are on the root
63partition and available in the event of
64<filename class="directory">/usr</filename> being inaccessible.</para>
65
66<para>For the above reason we move the run-time components of the shared Zlib
67into <filename class="directory">/lib</filename>:</para>
68
69<screen><userinput>mv /usr/lib/libz.so.* /lib</userinput></screen>
70
71<para>Now we need to fix the <filename>/usr/lib/libz.so</filename> symlink
72because we just moved the file it points to:</para>
73
74<screen><userinput>ln -sf ../../lib/libz.so.1 /usr/lib/libz.so</userinput></screen>
75
76</sect2>
77
78&aa-zlib-shortdesc;
79&aa-zlib-desc;
80
81</sect1>
82
Note: See TracBrowser for help on using the repository browser.