source: chapter06/zlib.xml@ e1c7e32

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 12.2 12.2-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/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since e1c7e32 was 8a5f906, checked in by Alex Gronenwoud <alex@…>, 21 years ago

Making the chapter 6 tests more obviously optional.

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

  • Property mode set to 100644
File size: 2.7 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<screen><userinput>make check</userinput></screen>
37
38<para>Install the shared library:</para>
39
40<screen><userinput>make install</userinput></screen>
41
42<para>Now also build the non-shared (static) library:</para>
43<screen><userinput>make clean
44./configure --prefix=/usr
45make</userinput></screen>
46
47<para>To have the results tested, issue:
48<userinput>make check</userinput>.</para>
49
50<para>Install the static library:</para>
51
52<screen><userinput>make install</userinput></screen>
53
54<para>And fix the permissions on the static library:</para>
55
56<screen><userinput>chmod 644 /usr/lib/libz.a</userinput></screen>
57
58<para>It is good policy and common practice to place important libraries into
59the <filename class="directory">/lib</filename> directory. This matters most
60in scenarios where <filename class="directory">/usr</filename> is on a
61separate partition. Essentially, the run-time components of any libraries
62depended upon by programs in <filename class="directory">/bin</filename> or
63<filename class="directory">/sbin</filename> should reside in
64<filename class="directory">/lib</filename> so that they are on the root
65partition and available in the event of
66<filename class="directory">/usr</filename> being inaccessible.</para>
67
68<para>Therefore we move the run-time components of the shared Zlib into
69<filename class="directory">/lib</filename> by issuing the following
70command:</para>
71
72<screen><userinput>mv /usr/lib/libz.so.* /lib</userinput></screen>
73
74<para>Now we need to fix up the <filename>/usr/lib/libz.so</filename> symlink
75because we just moved the location of the file it points to:</para>
76
77<screen><userinput>ln -sf ../../lib/libz.so.1 /usr/lib/libz.so</userinput></screen>
78
79</sect2>
80
81&aa-zlib-shortdesc;
82&aa-zlib-desc;
83
84</sect1>
85
Note: See TracBrowser for help on using the repository browser.