Add ipv6 hint
[linux_from_scratch_hints.git] / crosscompiling-x86.txt
blob8a2c6fa0ac2118ca07d5656af661ce83c52348c9
1 AUTHOR: Ted Bullock <tbullock at Canada.com>
3 DATE: 2005-10-12
5 LICENSE: GNU General Public License
7 SYNOPSIS: How to build LFS for different sub-architectures.
9 PRIMARY URI:
10 http://www.comlore.com/i386-pc-linux-gnu
12 DESCRIPTION:
13 Additive instructions on how to cross-build a LFS-system for different x86 sub-architectures.
15 PREREQUISITES:
16 The command-replacements are applicable for LFS 6.1+SVN20051009.  Similar changes will probably work 
17 fine on other versions of the book; however your mileage may vary since the resources to 
18 build a Linux system are under constant revision and replacement.  You should probably have 
19 either completed a run through the book already or at least read the procedures before you 
20 start.
22 Note: There is a nicely formatted pdf and MS *.doc file available at the webpage listed above.  
23 Please forgive my horrible web design aesthetics and meaningless babble on that webpage, 
24 but the hint is available there so go take a peek!
26 HINT:
27 1.      CROSSCOMPILING-X86
29 This hint is originally written by Nicholas Dille <webmaster at rakshas.de>.
30 Later it was updated and maintained by Daniel Baumann.
31 Now maintenance is done by Theodore Bullock <tbullock at Canada.com>
33 1.1.    INTRODUCTION
35 The GNU Compiler Collection (GCC) can build binaries for multiple platforms.
37 It is not especially complicated to cross-compile between different sub-architectures, for 
38 example, to build i386 binary executables on an i686 computer.  On the other hand, to cross-
39 compile between totally different architectures, for example, building PowerPC binary 
40 executables on an i386 machine, an entirely different tool-chain is required and is beyond the 
41 scope of this hint.
43 Ideally, all packages should get their information about the target from autoconf configuration 
44 parameters and compiler flags.  Unfortunately this is not the reality.  Some packages use 
45 different flags and a few packages, (notably GCC and Glibc), need other trickery to fake their 
46 auto-detection in place of flags.
48 Additionally, if you are trying to build LFS on a very old 386 then there is an extra trick to 
49 completing the procedure.
51 This hint does not cover building LFS onto i286 or older machines as these processors lack 
52 some critical functionality to handle modern memory management.  For information on that 
53 topic search the internet for embedded Linux solutions.
55 1.2.    About $CHOST
57 As with $LFS, we will use the variable $CHOST to specify the type of computer we are 
58 compiling on. To cross-compile you have to replace $CHOST with a value matching for your 
59 target computer.
61 If your target machine is currently running a flavour of Linux then you can get the correct 
62 value from your target computer with
64         # uname -m
66 If you have not already a running Linux system on the target machine, use the corresponding 
67 value from this list instead:
69         Intel 386:                                      i386
70         Intel 486:                                      i486
71         Intel Pentium 1 and MMX:                        i586
72         Intel Pentium Pro, 2, 3, 4 and M:               i686
73         AMD K5, K6-1, K6-2 and K6-3:                    i586
74         AMD Athlon 1, 2, 3, 4 and 5:                    i686
75         IDT WinChip-C6, WinChip2:                       i486
76         VIA C3:                                         i486
78 The rest of the hint assumes you have set $CHOST as an environment variable, for example
80         # export CHOST="i386-pc-linux-gnu"
82 1.3.    About $CFLAGS and $CXXFLAGS
84 $CFLAGS and $CXXFLAGS are environment variable that pass user flags to GCC and G++ 
85 respectively.  Often, they are used to set the optimization level (-On, where n is an integer). 
86 For details about optimization, please refer to the optimization hint. Here, we force GCC to 
87 compile for the desired sub-architecture using -march.
89 Choose from this list:
91         Intel 386                       i386
92         Intel 486                       i486
93         Intel Pentium 1:                pentium
94         Intel Pentium MMX:              pentium-mmx
95         Intel Pentium Pro:              pentiumpro
96         Intel Pentium 2:                pentium2
97         Intel Pentium 3:                pentium3
98         Intel Pentium 4 and M:          pentium4
100         AMD K5:                         pentium
101         AMD K6-1:                       k6
102         AMD K6-2:                       k6-2
103         AMD K6-3:                       k6-3
104         AMD Athlon 1 (Classic):         athlon
105         AMD Athlon 2 (Thunderbird):     athlon-tbird
106         AMD Athlon 3 (XP):              athlon-xp
107         AMD Athlon 4 (Palomino):        athlon-4
108         AMD Athlon 5 (MP):              athlon-mp
110         IDT WinChip-C6:                 winchip-c6
111         IDT WinChip-2:                  winchip2
112         VIA C3:                         c3
114 The rest of the hint assumes you have set $CFLAGS and $CXXFLAGS as environment 
115 variables, for example:
117         export CFLAGS="-march=i386"
118         export CXXFLAGS="-march=i386"
120 1.3.1.  ATTENTION REGARDING OPTIMIZATION
122 If you use optimization, in the majority of cases the binaries can only be used on the target 
123 machine. This means, sharing self-generated binary-packages between different hosts is not 
124 possible.
126 2.      LFS-Book
128 The following sections are ordered as a skeleton of the information in the LFS book
129 2.1.    Chapter 4: Final Preparations
131 2.1.1.  About $LFS
133 Add:
134 export CHOST="<value>"
135 export CFLAGS="<value>"
136 export CXXFLAGS="<value>"
138 Note:   Please replace <value> with the proper strings as was discussed earlier
142 2.2.    Chapter 5: Constructing a Temporary System
144 2.2.1.  Binutils-2.16.1
146 Change:
148 ../binutils-2.16.1/configure --prefix=/tools --disable-nls
151 ../binutils-2.16.1/configure --host="$CHOST" --target="$CHOST" \
152 --prefix=/tools --disable-nls
154 2.2.2.  GCC-4.0.2 - Pass 1
156 Change:
157 ../gcc-4.0.2/configure --prefix=/tools \
158 --libexecdir=/tools/lib --with-local-prefix=/tools \
159 --disable-nls --enable-shared --enable-languages=c
162 ../gcc-4.0.2/configure --host="$CHOST" --target="$CHOST" \
163 --prefix=/tools --libexecdir=/tools/lib \
164 --with-local-prefix=/tools --disable-nls \
165 --enable-shared --enable-languages=c
167 And then, change:
168 make bootstrap
171 make BOOT_CFLAGS="$CFLAGS" bootstrap
173 2.2.3.  Linux-Libc-Headers-2.6.12.0
175 No changes - we are just copying the header files here.
177 2.2.4.  Glibc-2.3.5
179 Ok, this one is a bit trickier and what you put here can have some important ramifications 
180 later.  If your target machine is a 486 or higher you should follow the (>=486) instructions 
181 otherwise you should follow the (386) instructions.  The reason for this is that the basic 386 
182 instruction set is missing one of the atomic instructions important to multi-threading with the 
183 NPTL threading system.  Instead you will use the linuxthreads library which does not require 
184 this instruction.
186 Change:
188 ../glibc-2.3.5/configure --prefix=/tools \
189 --disable-profile --enable-add-ons \
190 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
191 --without-gd --with-headers=/tools/include \
192 --without-selinux
194 (>=486)To:
195 ../glibc-2.3.5/configure --host="$CHOST" --target="$CHOST" \
196 --prefix=/tools --disable-profile --enable-kernel=2.6.0 \
197 --with-binutils=/tools/bin --without-gd \
198 --with-headers=/tools/include --without-selinux
200 (386)To:
201 ../glibc-2.3.5/configure --host="$CHOST" --target="$CHOST" \
202 --prefix=/tools --disable-profile --enable-add-ons=linuxthreads \
203 --with-tls --without-__thread --enable-kernel=2.6.0 \
204 --with-binutils=/tools/bin --without-gd \
205 --with-headers=/tools/include --without-selinux
207 Since glibc needs to be compiled with some level of optimization we need to add an 
208 optimization flag to $CFLAGS.  Please change this to suit your needs.
211 And then change:
212 make
215 make CFLAGS="$CFLAGS -O2"
217 And then change:
218 make install
221 make CFLAGS="$CFLAGS -O2" cross-compiling=no install
223 2.2.5.  Adjusting the tool-chain
225 No changes - we are using preconfigured code.
227 2.2.6.  Tcl-8.4.11
229 Change:
230 ./configure --prefix=/tools
233 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
235 2.2.7.  Expect-5.43.0
237 Change:
238 ./configure --prefix=/tools --with-tcl=/tools/lib --with-x=no \
239 --with-tclinclude=$TCLPATH
242 ./configure --host="$CHOST" --target="$CHOST" \
243 --prefix=/tools --with-tcl=/tools/lib --with-x=no \
244 --with-tclinclude=$TCLPATH
246 2.2.8.  DejaGnu-1.4.4
248 No need to do anything, just installing a script.
250 2.2.9.  GCC-4.0.2- Pass 2
252 Change:
253 ../gcc-4.0.2/configure --prefix=/tools \
254 --libexecdir=/tools/lib --with-local-prefix=/tools \
255 --enable-clocale=gnu --enable-shared \
256 --enable-threads=posix --enable-__cxa_atexit \
257 --enable-languages=c,c++ --disable-libstdcxx-pch
260 ../gcc-4.0.2/configure --host="$CHOST" --target="$CHOST" \
261 --prefix=/tools --libexecdir=/tools/lib \
262 --with-local-prefix=/tools --enable-clocale=gnu \
263 --enable-shared --enable-threads=posix \
264 --enable-__cxa_atexit --enable-languages=c,c++ \
265 --disable-libstdcxx-pch
267 And then change:
268 make
271 make BOOT_CFLAGS="$CFLAGS" BOOT_CXXFLAGS="$CXXFLAGS"
273 2.2.10. Binutils-2.16.1 - Pass 2
275 Change:
276 ../binutils-2.16.1/configure --prefix=/tools \
277 --enable-shared --with-lib-path=/tools/lib \
278 --disable-nls
281 ../binutils-2.16.1/configure --host="$CHOST" --target="$CHOST" \
282 --prefix=/tools --enable-shared --with-lib-path=/tools/lib \
283 --disable-nls
285 2.2.11. Gawk-3.1.5
287 Change:
288 ./configure --prefix=/tools
291 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
293 2.2.12. Coreutils-5.2.1
295 Change:
296 DEFAULT_POSIX2_VERSION=199209 ./configure --prefix=/tools
299 DEFAULT_POSIX2_VERSION=199209 ./configure \
300 --host="$CHOST" --target="$CHOST" --prefix=/tools
302 2.2.13. Bzip2-1.0.3
304 Add:
305 cp Makefile Makefile.backup &&
306 sed -e 's%$(BIGFILES)%$(BIGFILES) $(OPT)%' \
307 Makefile.backup > Makefile &&
308 cp Makefile-libbz2_so Makefile-libbz2_so.backup &&
309 sed -e 's%$(BIGFILES)%$(BIGFILES) $(OPT)%' \
310 Makefile-libbz2_so.backup > Makefile-libbz2_so
312 Change:
313 make
316 make OPT="$CFLAGS" PREFIX=/tools
318 Change:
319 make PREFIX=/tools install
320         
322 make OPT="$CFLAGS" PREFIX=/tools install
324 2.2.14. Gzip-1.3.5
326 Change:
327 ./configure --prefix=/tools
330 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
332 2.2.15. Diffutils-2.8.1
334 Change:
335 ./configure --prefix=/tools
338 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
340 2.2.16. Findutils-4.2.25
342 Change:
343 ./configure --prefix=/tools
346 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
348 2.2.17. Make-3.80
350 Change:
351 ./configure --prefix=/tools
354 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
356 2.2.18. Grep-2.5.1a
358 Change:
359 ./configure --prefix=/tools --disable-perl-regex
362 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools \
363 --disable-perl-regexp
365 2.2.19. Sed-4.1.4
367 Change:
368 ./configure --prefix=/tools
371 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
373 2.2.20. Gettext-0.14.5
375 Change:
376 ./configure --prefix=/tools --disable-libasprintf \
377     --without-csharp
380 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools \
381 --disable-libasprintf --without-csharp
383 2.2.21. Ncurses-5.4
385 Change:
386 ./configure --prefix=/tools --with-shared \
387 --without-debug --without-ada --enable-overwrite
390 ./configure --host="$CHOST" --target="$CHOST" \
391 --prefix=/tools --with-shared \
392 --without-debug --without-ada --enable-overwrite
394 2.2.22. Patch-2.5.4
396 Change:
397 CPPFLAGS=-D_GNU_SOURCE ./configure --prefix=/tools
400 CPPFLAGS=-D_GNU_SOURCE ./configure \
401 --host="$CHOST" --target="$CHOST" --prefix=/tools
403 2.2.23. Tar-1.15.1
405 Change:
406 ./configure --prefix=/tools
409 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
411 2.2.24. Texinfo-4.8
413 Change:
414 ./configure --prefix=/tools
417 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
419 2.2.25. Bash-3.0
421 Change:
422 ./configure --prefix=/tools --without-bash-malloc
425 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools \
426 --without-bash-malloc
428 2.2.26. M4-1.4.3
430 Change:
431 ./configure --prefix=/tools
434 ./configure --host="$CHOST" --target="$CHOST" --prefix=/tools
436 2.2.27. Util-linux-2.12r
438 Change:
439 ./configure
442 ./configure --host="$CHOST" --target="$CHOST"
444 2.2.28. Perl-5.8.7
446 Change:
447 ./configure.gnu --prefix=/tools -Dstatic_ext='IO Fcntl POSIX'
450 ./configure.gnu \
451 -Dhost="$CHOST" -Dtarget="$CHOST" -Darchname="$CHOST" \
452 --prefix=/tools -Dstatic_ext='IO Fcntl POSIX'
455 2.3.    Chapter 6: Installing Basic System Software
457 2.3.1.  Entering the chroot environment
459 After:
460 chroot "$LFS" /tools/bin/env -i \
461 HOME=/root TERM="$TERM" PS1='\u:\w\$ ' \
462 PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
463 /tools/bin/bash --login +h
465 Add:
466 export CHOST="i386-pc-linux-gnu" &&
467 export CFLAGS="-march=i386" &&
468 export CXXFLAGS="-march=i386"
470 Note:   Please replace i386 with the proper strings according to the introduction.
472 2.3.2.  Linux-Libc-Headers-2.6.12.0
474 No changes - we are just copying the header files here.
476 2.3.3.  Man-pages-2.08
478 No changes - we are just copying the man-pages here.
480 2.3.4.  Glibc-2.3.5
482 Ok, this one is a bit trickier and what you put here can have some important ramifications 
483 later.  If your target machine is a 486 or higher you should follow the (>=486) instructions 
484 otherwise you should follow the (386) instructions.  The reason for this is that the basic 386 
485 instruction set is missing one of the atomic instructions important to multi-threading with the 
486 NPTL threading system.  Instead you will use the linuxthreads library which does not require 
487 this instruction.
489 Change:
491 ../glibc-2.3.5/configure --prefix=/usr \
492 --disable-profile --enable-add-ons \
493 --enable-kernel=2.6.0 --libexecdir=/usr/lib/glibc
495 (>=486)To:
496 ../glibc-2.3.5/configure --host="$CHOST" --target="$CHOST" \
497 --prefix=/usr --disable-profile --enable-add-ons=nptl \
498 --with-tls --with-__thread --enable-kernel=2.6.0 \
499 --libexecdir=/usr/lib/glibc
501 (386)To:
502 ../glibc-2.3.5/configure --host="$CHOST" --target="$CHOST" \
503 --prefix=/usr --disable-profile --enable-add-ons=linuxthreads \
504 --with-tls --without-__thread --enable-kernel=2.6.0 \
505 --libexecdir=/usr/lib/glibc
507 Since glibc needs to be compiled with optimization, we have to modify our $CFLAGS 
508 environment variable.  Change this to suite your own needs.
510 And then change:
511 make
514 make CFLAGS="$CFLAGS -O2"
516 And then change:
517 make install
520 make CFLAGS="$CFLAGS -O2" cross-compiling=no install
522 Note:   This does not affect cross compiling for sub-architectures (it prevents Glibc to look for a 
523 cross compiler and uses the native one).
525 2.3.5.  Re-adjusting the toolchain
527 No changes - we are using preconfigured code.
529 2.3.6.  Binutils-2.16.1
531 Change:
533 ../binutils-2.16.1/configure --prefix=/usr --enable-shared
536 ../binutils-2.16.1/configure --host="$CHOST" --target="$CHOST" \
537 --prefix=/usr --enable-shared
539 2.3.7.  GCC-4.0.2
541 Change:
542 ../gcc-4.0.2/configure --prefix=/usr \
543 --libexecdir=/usr/lib --enable-shared \
544 --enable-threads=posix --enable-__cxa_atexit \
545 --enable-clocale=gnu --enable-languages=c,c++
548 ../gcc-4.0.2/configure --host="$CHOST" --target="$CHOST" \
549 --prefix=/usr \
550 --libexecdir=/usr/lib --enable-shared \
551 --enable-threads=posix --enable-__cxa_atexit \
552 --enable-clocale=gnu --enable-languages=c,c++
554 And change:
555 make
558 make BOOT_CFLAGS="$CFLAGS" BOOT_CXXFLAGS="$CXXFLAGS"
560 2.3.8.  Coreutils-5.2.1
562 Change:
563 DEFAULT_POSIX2_VERSION=199209 ./configure --prefix=/usr
566 DEFAULT_POSIX2_VERSION=199209 ./configure \
567 --host="$CHOST" --target="$CHOST" --prefix=/usr
569 2.3.9.  Zlib-1.2.3
571 No need to change anything!
572 2.3.10. Mktemp-1.5
574 Change:
575 ./configure --prefix=/usr --with-libc
578 ./configure --host="$CHOST" --target="$CHOST" \
579 --prefix=/usr --with-libc
581 2.3.11. Iana-Etc-2.00
583 No changes - we are just copying files.
585 2.3.12. Findutils-4.2.25
587 Change:
588 ./configure --prefix=/usr --libexecdir=/usr/lib/locate \
589 --localstatedir=/var/lib/locate
592 ./configure --host="$CHOST" --target="$CHOST" \
593 --prefix=/usr --libexecdir=/usr/lib/locate \
594 --localstatedir=/var/lib/locate
596 2.3.13. Gawk-3.1.5
598 Change:
599 ./configure --prefix=/usr --libexecdir=/usr/lib
602 ./configure --host="$CHOST" --target="$CHOST" \
603 --prefix=/usr --libexecdir=/usr/lib
605 2.3.14. Ncurses-5.4
607 Change:
608 ./configure --prefix=/usr --with-shared --without-debug
611 ./configure --host="$CHOST" --target="$CHOST" \
612 --prefix=/usr --with-shared --without-debug
614 2.3.15. Readline-5.0
616 Change:
617 ./configure --prefix=/usr --libdir=/lib
620 ./configure --prefix=/usr --libdir=/lib --host="$CHOST" --target="$CHOST"
622 2.3.16. Vim-6.3
624 Change:
625 ./configure --prefix=/usr --enable-multibyte
629 ./configure --host="$CHOST" --target="$CHOST" \
630 --enable-multibyte --prefix=/usr
632 2.3.17. M4-1.4.3
634 Change:
635 ./configure --prefix=/usr
638 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
640 2.3.18. Bison-2.1
642 Change:
643 ./configure --prefix=/usr
646 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
648 2.3.19. Less-382
650 Change:
651 ./configure --prefix=/usr --bindir=/bin --sysconfdir=/etc
654 ./configure --host="$CHOST" --target="$CHOST" \
655 --prefix=/usr --bindir=/bin --sysconfdir=/etc
657 2.3.20. Groff-1.19.2
659 Change:
660 PAGE=letter ./configure --prefix=/usr
663 PAGE=letter ./configure --host="$CHOST" --target="$CHOST" \
664 --prefix=/usr
666 2.3.21. Sed-4.1.4
668 Change:
669 ./configure --prefix=/usr --bindir=/bin
672 ./configure --host="$CHOST" --target="$CHOST" \
673 --prefix=/usr --bindir=/bin
675 2.3.22. Flex-2.5.31
677 Change:
678 ./configure --prefix=/usr
681 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
683 2.3.23. Gettext-0.14.5
685 Change:
686 ./configure --prefix=/usr
689 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
691 2.3.24. Inetutils-1.4.2
692         
693 Assuming CFLAGS are set, don?t change anything.
694 2.3.25. IPRoute2-051007
696 After: 
697 ./configure
699 Add:
700 mv Makefile Makefile.backup &&
701 sed 's/$(CCOPTS)/$(CCOPTS) $(OPT)/' Makefile.backup > Makefile
703 Change:
704 make SBINDIR=/sbin
707 make SBINDIR=/sbin OPT="$CFLAGS"
709 2.3.26. Perl-5.8.7
711 Change:
712 ./configure.gnu --prefix=/usr -Dpager="/bin/less -isR"
715 ./configure.gnu --prefix=/usr -Dpager="/bin/less -isR" \
716 -Dhost="$CHOST" -Dtarget="$CHOST" -Darchname="$CHOST"
718 2.3.27. Texinfo-4.8
720 Change:
721 ./configure --prefix=/usr
724 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
726 2.3.28. Autoconf-2.59
728 Uses Perl and M4 to do stuff so no need to do anything!
729 2.3.29. Automake-1.9.6
731 Uses Perl and M4 to do stuff so no need to do anything!
732 2.3.30. Bash-3.0
734 Change:
735 ./configure --prefix=/usr --bindir=/bin
738 ./configure --host="$CHOST" --target="$CHOST" \
739 --prefix=/usr --bindir=/bin --with-bash-malloc --with-installed-readline
741 2.3.31. File-4.15
743 Change:
744 ./configure --prefix=/usr
747 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
749 2.3.32. Libtool-1.5.20
751 Change:
752 ./configure --prefix=/usr
755 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
757 2.3.33. Bzip2-1.0.3
759 Add:
760 cp Makefile Makefile.backup
761 sed -e 's%$(BIGFILES)%$(BIGFILES) $(OPT)%' \
762 Makefile.backup > Makefile
763 cp Makefile-libbz2_so Makefile-libbz2_so.backup
764 sed -e 's%CFLAGS=-fpic%CFLAGS=$(OPT) -fpic%' \
765 Makefile-libbz2_so.backup > Makefile-libbz2_so
767 Change:
768 make -f Makefile-libbz2_so
771 make OPT="$CFLAGS" -f Makefile-libbz2_so
773 Change:
774 make
777 make OPT="$CFLAGS"
779 2.3.34. Diffutils-2.8.1
781 Change:
782 ./configure --prefix=/usr
785 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
787 2.3.35. Kbd-1.12
789 Change:
790 make
793 make CFLAGS="$CFLAGS"
795 2.3.36. E2fsprogs-1.38
797 Change:
798 ../e2fsprogs-1.35/configure --prefix=/usr --with-root-prefix="" \
799 --enable-elf-shlibs --disable-evms 
802 ../e2fsprogs-1.35/configure --host="$CHOST" --target="$CHOST" \
803 --prefix=/usr --with-root-prefix="" \
804 --enable-elf-shlibs --disable-evms 
806 2.3.37. Grep-2.5.1a
808 Change:
809 ./configure --prefix=/usr --bindir=/bin \
810 --with-included-regex
813 ./configure --host="$CHOST" --target="$CHOST" \
814 --prefix=/usr --bindir=/bin
815 2.3.38. Grub-0.97
817 Change:
818 ./configure --prefix=/usr
821 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
823 2.3.39. Gzip-1.3.5
825 Change:
826 ./configure --prefix=/usr
829 ./configure --host="$CHOST" --target=$CHOST --prefix=/usr
831 2.3.40. Man-1.6b
833 Add:
834 cp man2html/Makefile.in man2html/Makefile.in.backup
835 sed -e "s/CFLAGS = /CFLAGS = $CFLAGS /" \
836 man2html/Makefile.in.backup > man2html/Makefile.in
838 2.3.41. Make-3.80
840 Change:
841 ./configure --prefix=/usr
844 ./configure --host="$CHOST" --target="$CHOST" --prefix=/usr
846 2.3.42. Module-Init-Tools-3.1
848 Change: 
849 ./configure --prefix="" --enable-zlib
852 ./configure --prefix="" --enable-zlib --host="$CHOST" --target="$CHOST"
854 2.3.43. Patch-2.5.4
856 Change:
857 CPPFLAGS=-D_GNU_SOURCE ./configure --prefix=/usr
860 CPPFLAGS=-D_GNU_SOURCE ./configure \
861 --host="$CHOST" --target="$CHOST" --prefix=/usr
863 2.3.44. Procps-3.2.5
865 Change:
866 make
869 make CFLAGS="$CFLAGS"
871 Note:   The build process will fail if your $CFLAGS does not contain the -On switch. If that is 
872 the case, please use the line
874 make CFLAGS="$CFLAGS -O2"
876 instead.
878 2.3.45. Psmisc-21.6
880 Change:
881 ./configure --prefix=/usr --exec-prefix=/
884 ./configure --host="$CHOST" --target="$CHOST" \
885 --prefix=/usr --exec-prefix=""
887 2.3.46. Shadow-4.0.12
889 Change:
890 ./configure --libdir=/usr/lib --enable-shared
893 ./configure --host="$CHOST" --target="$CHOST" \
894 --libdir=/usr/lib --enable-shared
896 2.3.47. Sysklogd-1.4.1
898 Change:
899 make
902 make RPM_OPT_FLAGS="$CFLAGS"
904 2.3.48. Sysvinit-2.86
906 Change:
907 make -C src
910 make CFLAGS="-Wall -D_GNU_SOURCE $CFLAGS" -C src
912 2.3.49. Tar-1.15.1
914 Change:
915 ./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin
918 ./configure --host="$CHOST" --target="$CHOST" \
919 --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin
921 2.3.50. Udev-070
923 No changes should be necessary assuming that the CFLAGS is set appropriately as discussed 
924 in Section 1.3 About $CFLAGS and $CXXFLAGS
926 2.3.51. Util-linux-2.12r
928 Change:
929 ./configure
932 ./configure --host="$CHOST" --target="$CHOST"
934 2.4.    Chapter 7: Setting up System Bootscripts
936 2.4.1.  LFS-Bootscripts-3.2.1
938 No changes - we are just copying the scripts here.
940 2.5.    Chapter 8: Making the LFS system bootable
942 2.5.1.  Linux-2.6.13.1
944 Select your processor under 'Processor family' in the 'Processor type and features' menu.
947 2.6.    The End
949 It may be a good idea to keep the compiler flags for future use
951 echo "export CFLAGS=\"$(echo $CFLAGS)\"" >> /etc/profile
952 echo "export CXXFLAGS=\"$(echo $CXXFLAGS)\"" >> /etc/profile
954 3.      ACKNOWLEDGEMENTS:
955 *       Daniel Baumann <daniel.baumann at panthera-systems.net> for updating and 
956 maintaining the hint to LFS 5.1.1
957 *       Nicholas Dille <webmaster at rakshas.de> for the original hint
958 *       Tommy Wareing for the uname hack
959 *       Christophe Devine <devine at cr0.net> for the uname kernel-module
960 *       Yann Guidon <whygee at f-cpu.org> for extending the uname kernel-module
964 CHANGELOG:
966 [2005-10-12]
967 *       Updated hint to SVN-20051009 (LFS-6.1+)
968 *       Fixed multiple typographic errors
969 [2005-09-12]
970 *       Fixed typographic mistakes
971 [2005-06-22]
972 *       Updated to LFS-6.0
973 *       Added 386 specific commands to glibc
974 *       Fixed typographic mistakes and extended some explanation
975 [2004-07-10]
976 *       Updated to LFS-5.1.1
977 *       Glibc-command revised (Thanks to Kevin White <kwhite at kevbo.org>
978 *       Typographic mistakes corrected
979 [2004-05-29]
980 *       Typographic mistakes corrected
981 [2004-05-22]
982 *       Updated to LFS 5.1.
983 *       Minor text changes.
984 [2004-01-26]
985 *       Updated to LFS 5.0.
986 *       New hint format.
987 *       Major text changes.
988 [2003-07-23]
989 *       Initial revision.