source: chapter08/introduction.xml

trunk
Last change on this file was 7152faa, checked in by Pierre Labastie <pierre.labastie@…>, 3 months ago

Change all xml files to utf-8 encoding

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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-introduction">
9 <?dbhtml filename="introduction.html"?>
10
11 <title>Introduction</title>
12
13 <para>In this chapter, we start constructing the LFS system in earnest.
14 </para>
15
16 <para>The installation of this software is straightforward. Although in many
17 cases the installation instructions could be made shorter and more generic,
18 we have opted to provide the full instructions for every package to minimize
19 the possibilities for mistakes. The key to learning what makes a Linux system
20 work is to know what each package is used for and why you (or the system)
21 may need it.</para>
22
23 <para>We do not recommend using customized optimizations. They can make
24 a program run slightly faster, but they may also cause compilation
25 difficulties, and problems when running the program. If a package refuses to
26 compile with a customized optimization, try to compile it without
27 optimization and see if that fixes the problem. Even if the package does compile when using a customized
28 optimization, there is the risk it may have been compiled incorrectly because
29 of the complex interactions between the code and the build tools. Also note that
30 the <option>-march</option> and <option>-mtune</option> options using values
31 not specified in the book have not been tested. This may cause problems with
32 the toolchain packages (Binutils, GCC and Glibc). The small potential gains
33 achieved by customizing compiler optimizations are often outweighed by the risks.
34 First-time builders of LFS are encouraged to build without custom
35 optimizations.</para>
36
37 <para>On the other hand, we keep the optimizations enabled by the default
38 configuration of the packages. In addition, we sometimes explicitly enable an
39 optimized configuration provided by a package but not enabled by
40 default. The package maintainers have already tested these configurations
41 and consider them safe, so it's not likely they would break the build.
42 Generally the default configuration already enables <option>-O2</option>
43 or <option>-O3</option>, so the resulting system will still run very fast
44 without any customized optimization, and be stable at the same time.</para>
45
46 <para>Before the installation instructions, each installation page provides
47 information about the package, including a concise description of what it
48 contains, approximately how long it will take to build, and how much disk
49 space is required during this building process. Following the installation
50 instructions, there is a list of programs and libraries (along with brief
51 descriptions) that the package installs.</para>
52
53 <note><para>The SBU values and required disk space include test suite data
54 for all applicable packages in <xref linkend="chapter-building-system"/>. SBU
55 values have been calculated using four CPU cores (-j4) for all
56 operations unless specified otherwise.</para></note>
57
58 <sect2>
59 <title>About Libraries</title>
60
61 <para>In general, the LFS editors discourage building and installing static
62 libraries. Most static libraries have been made
63 obsolete in a modern Linux system. In addition, linking a static library
64 into a program can be detrimental. If an update to the library is needed
65 to remove a security problem, every program that uses the static library will
66 need to be relinked with the new library. Since the use of static libraries
67 is not always obvious, the relevant programs (and the procedures needed to
68 do the linking) may not even be known.</para>
69
70 <para>The procedures in this chapter remove or disable installation of
71 most static libraries. Usually this is done by passing a
72 <option>--disable-static</option> option to <command>configure</command>.
73 In other cases, alternate means are needed. In a few cases, especially
74 Glibc and GCC, the use of static libraries remains an essential feature of the
75 package building process. </para>
76
77 <para>For a more complete discussion of libraries, see
78 <ulink url="&blfs-book;introduction/libraries.html">
79 Libraries: Static or shared?</ulink> in the BLFS book.</para>
80
81 </sect2>
82
83</sect1>
Note: See TracBrowser for help on using the repository browser.