| 123456789101112131415161718192021222324252627282930313233343536 | <sect1 id="ch02-aboutsbus"><title>About SBUs</title><?dbhtml filename="aboutsbus.html" dir="chapter02"?><para>Most people would like to know beforehand how long it approximatelytakes to compile and install each package. But "Linux from Scratch" is builton so many different systems, it is not possible to give actual times that areanywhere near accurate: the biggest package (Glibc) won't take more thantwenty minutes on the fastest systems, but will take something like three dayson the slowest -- no kidding. So instead of giving actual times, we've come upwith the idea of using the <emphasis>Static Binutils Unit</emphasis>(abbreviated to <emphasis>SBU</emphasis>).</para><para>It works like this: the first package you compile in this book is thestatically linked Binutils in Chapter 5, and the time it takes to compile thispackage is what we call the "Static Binutils Unit" or "SBU". All other compiletimes will be expressed relative to this time.</para><para>For example, the time it takes to build the static version of GCC is&gcc-time-tools-pass1;s. This means that if on your system it took 10 minutesto compile and install the static Binutils, then you know it will takeapproximately 45 minutes to build the static GCC. Fortunately, most build timesare much shorter than the one of Binutils.</para><para>Note that if the system compiler on your host is GCC-2 based, the SBUslisted may end up being somewhat understated. This is because the SBU is basedon the very first package, compiled with the old GCC, while the rest of thesystem is compiled with the newer GCC-&gcc-version; which is known to beapproximately 30% slower.</para><para>Also note that SBUs don't work well for SMP-based machines. But if you'reso lucky as to have multiple processors, chances are that your system is so fastthat you won't mind.</para></sect1>
 |