Changes in / [dbc5b02:991595cf]


Ignore:
Location:
BOOK
Files:
259 edited

Legend:

Unmodified
Added
Removed
  • BOOK/boot/common/bc.xml

    rdbc5b02 r991595cf  
    2828    <para>Prepare Bc for compilation:</para>
    2929
    30 <screen><userinput>CC=gcc ./configure --prefix=/cross-tools</userinput></screen>
     30<screen><userinput>CC=gcc \
     31./configure \
     32    --prefix=/cross-tools</userinput></screen>
    3133
    3234    <variablelist>
  • BOOK/boot/common/e2fsprogs.xml

    rdbc5b02 r991595cf  
    3535    xpointer="xpointer(//*[@os='c'])"/>
    3636
    37 <screen os="aa"><userinput>../configure --prefix=/tools \
    38     --enable-elf-shlibs --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    39     --disable-libblkid --disable-libuuid --disable-fsck \
     37<screen os="aa"><userinput>../configure \
     38    --prefix=/tools \
     39    --enable-elf-shlibs \
     40    --build=${CLFS_HOST} \
     41    --host=${CLFS_TARGET} \
     42    --disable-libblkid \
     43    --disable-libuuid \
     44    --disable-fsck \
    4045    --disable-uuidd</userinput></screen>
    4146
  • BOOK/boot/common/eudev.xml

    rdbc5b02 r991595cf  
    2929   <para os="a">Prepare Eudev for compilation:</para>
    3030
    31 <screen os="b"><userinput>./configure --prefix=/tools --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    32     --disable-introspection --disable-gtk-doc-html \
    33     --disable-gudev --disable-keymap --with-firmware-path=/tools/lib/firmware \
     31<screen os="b"><userinput>./configure \
     32    --prefix=/tools \
     33    --build=${CLFS_HOST} \
     34    --host=${CLFS_TARGET} \
     35    --disable-introspection \
     36    --disable-gtk-doc-html \
     37    --disable-gudev \
     38    --disable-keymap \
     39    --with-firmware-path=/tools/lib/firmware \
    3440    --enable-libkmod</userinput></screen>
    3541
  • BOOK/boot/common/kmod.xml

    rdbc5b02 r991595cf  
    3535    xpointer="xpointer(//*[@os='a'])"/>
    3636
    37 <screen os="b"><userinput>./configure --prefix=/tools \
    38     --build=${CLFS_HOST} --host=${CLFS_TARGET} --with-xz --with-zlib</userinput></screen>
     37<screen os="b"><userinput>./configure \
     38    --prefix=/tools \
     39    --build=${CLFS_HOST} \
     40    --host=${CLFS_TARGET} \
     41    --with-xz \
     42    --with-zlib</userinput></screen>
    3943
    4044    <variablelist os="c">
  • BOOK/boot/common/shadow.xml

    rdbc5b02 r991595cf  
    4444    <para os="e">Prepare Shadow for compilation:</para>
    4545
    46 <screen os="f"><userinput>./configure --prefix=/tools \
    47     --build=${CLFS_HOST} --host=${CLFS_TARGET} --cache-file=config.cache \
     46<screen os="f"><userinput>./configure \
     47    --prefix=/tools \
     48    --build=${CLFS_HOST} \
     49    --host=${CLFS_TARGET} \
     50    --cache-file=config.cache \
    4851    --enable-subordinate-ids=no</userinput></screen>
    4952
  • BOOK/boot/multilib/e2fsprogs.xml

    rdbc5b02 r991595cf  
    4141    xpointer="xpointer(//*[@os='c'])"/>
    4242
    43 <screen os="aa"><userinput>../configure --prefix=/tools --enable-elf-shlibs \
    44     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    45     --disable-libblkid --disable-libuuid --disable-fsck \
     43<screen os="aa"><userinput>../configure \
     44    --prefix=/tools \
     45    --enable-elf-shlibs \
     46    --build=${CLFS_HOST} \
     47    --host=${CLFS_TARGET} \
     48    --disable-libblkid \
     49    --disable-libuuid \
     50    --disable-fsck \
    4651    --disable-uuidd</userinput></screen>
    4752
  • BOOK/boot/multilib/eudev.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>./configure --prefix=/tools --build=${CLFS_HOST} \
    29     --host=${CLFS_TARGET} --libdir=/tools/lib64 --with-rootlibdir=/tools/lib64 \
    30     --disable-introspection --disable-gtk-doc-html --disable-gudev \
    31     --disable-keymap --with-firmware-path=/lib/firmware --enable-libkmod</userinput></screen>
     28<screen os="b"><userinput>./configure \
     29    --prefix=/tools \
     30    --build=${CLFS_HOST} \
     31    --host=${CLFS_TARGET} \
     32    --libdir=/tools/lib64 \
     33    --with-rootlibdir=/tools/lib64 \
     34    --disable-introspection \
     35    --disable-gtk-doc-html \
     36    --disable-gudev \
     37    --disable-keymap \
     38    --with-firmware-path=/lib/firmware \
     39    --enable-libkmod</userinput></screen>
    3240
    3341    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/boot/multilib/grub-build.xml

    rdbc5b02 r991595cf  
    3939    xpointer="xpointer(//*[@os='a'])"/>
    4040
    41 <screen os="ab"><userinput>./configure --prefix=/tools \
    42     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    43     --libdir=/tools/lib64 --disable-werror \
    44     --enable-grub-mkfont=no --with-bootdir=tools/boot</userinput></screen>
     41<screen os="ab"><userinput>./configure \
     42    --prefix=/tools \
     43    --build=${CLFS_HOST} \
     44    --host=${CLFS_TARGET} \
     45    --libdir=/tools/lib64 \
     46    --disable-werror \
     47    --enable-grub-mkfont=no \
     48    --with-bootdir=tools/boot</userinput></screen>
    4549
    4650    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/boot/multilib/kmod.xml

    rdbc5b02 r991595cf  
    3535    xpointer="xpointer(//*[@os='a'])"/>
    3636
    37 <screen os="b"><userinput>./configure --prefix=/tools \
    38     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    39     --libdir=/tools/lib64 --with-xz --with-zlib</userinput></screen>
     37<screen os="b"><userinput>./configure \
     38    --prefix=/tools \
     39    --build=${CLFS_HOST} \
     40    --host=${CLFS_TARGET} \
     41    --libdir=/tools/lib64 \
     42    --with-xz \
     43    --with-zlib</userinput></screen>
    4044
    4145    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/boot/ppc/hfsutils.xml

    rdbc5b02 r991595cf  
    4040    xpointer="xpointer(//*[@os='a'])"/>
    4141
    42 <screen><userinput>CC="${CC}" ./configure --prefix=/tools</userinput></screen>
     42<screen><userinput>CC="${CC}" \
     43./configure \
     44    --prefix=/tools</userinput></screen>
    4345
    4446    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/boot/ppc64/e2fsprogs-libs.xml

    rdbc5b02 r991595cf  
    4747
    4848<screen os="aa"><userinput>CC="${CC} ${BUILD32}" \
    49   ../configure --prefix=/tools --enable-elf-shlibs \
    50     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    51     --disable-libblkid --disable-libuuid --disable-fsck \
    52     --disable-uuidd --cache-file=config.cache</userinput></screen>
     49../configure \
     50    --prefix=/tools \
     51    --enable-elf-shlibs \
     52    --build=${CLFS_HOST} \
     53    --host=${CLFS_TARGET} \
     54    --disable-libblkid \
     55    --disable-libuuid \
     56    --disable-fsck \
     57    --disable-uuidd \
     58    --cache-file=config.cache</userinput></screen>
    5359
    5460    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/boot/ppc64/e2fsprogs.xml

    rdbc5b02 r991595cf  
    5454    xpointer="xpointer(//*[@os='c'])"/>
    5555
    56 <screen os="aa"><userinput>../configure --prefix=/tools --enable-elf-shlibs \
    57     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    58     --disable-libblkid --disable-libuuid --disable-fsck \
    59     --disable-uuidd --cache-file=config.cache</userinput></screen>
     56<screen os="aa"><userinput>../configure \
     57    --prefix=/tools \
     58    --enable-elf-shlibs \
     59    --build=${CLFS_HOST} \
     60    --host=${CLFS_TARGET} \
     61    --disable-libblkid \
     62    --disable-libuuid \
     63    --disable-fsck \
     64    --disable-uuidd \
     65    --cache-file=config.cache</userinput></screen>
    6066
    6167    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/boot/x86/grub-build.xml

    rdbc5b02 r991595cf  
    3838    xpointer="xpointer(//*[@os='a'])"/>
    3939
    40 <screen os="ab"><userinput>./configure --prefix=/tools \
    41     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    42     --disable-werror --enable-grub-mkfont=no --with-bootdir=tools/boot</userinput></screen>
     40<screen os="ab"><userinput>./configure \
     41    --prefix=/tools \
     42    --build=${CLFS_HOST} \
     43    --host=${CLFS_TARGET} \
     44    --disable-werror \
     45    --enable-grub-mkfont=no \
     46    --with-bootdir=tools/boot</userinput></screen>
    4347
    4448<para os="b">The meaning of the new configure option:</para>
  • BOOK/cross-tools/64/binutils.xml

    rdbc5b02 r991595cf  
    4949    xpointer="xpointer(//*[@os='i'])"/>
    5050
    51 <screen os="bc"><userinput>AR=ar AS=as ../binutils-&binutils-dir;/configure \
    52     --prefix=/cross-tools --host=${CLFS_HOST} --target=${CLFS_TARGET} \
    53     --with-sysroot=${CLFS} --with-lib-path=/tools/lib --disable-nls \
    54     --disable-static --enable-64-bit-bfd --disable-multilib
    55     --enable-gold=yes --enable-plugins --enable-threads --disable-werror</userinput></screen>
     51<screen os="bc"><userinput>AR=ar AS=as \
     52../binutils-&binutils-dir;/configure \
     53    --prefix=/cross-tools \
     54    --host=${CLFS_HOST} \
     55    --target=${CLFS_TARGET} \
     56    --with-sysroot=${CLFS} \
     57    --with-lib-path=/tools/lib \
     58    --disable-nls \
     59    --disable-static \
     60    --enable-64-bit-bfd \
     61    --disable-multilib \
     62    --enable-gold=yes \
     63    --enable-plugins \
     64    --enable-threads \
     65    --disable-werror</userinput></screen>
    5666
    5767    <variablelist os="bd">
  • BOOK/cross-tools/64/gcc-static.xml

    rdbc5b02 r991595cf  
    4040    xpointer="xpointer(//*[@os='aa'])"/>
    4141
    42     <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen>
     42<screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen>
    4343
    4444    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/cross-tools/64/glibc.xml

    rdbc5b02 r991595cf  
    3939    xpointer="xpointer(//*[@os='g'])"/>
    4040
    41     <screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD64}" \
    42       AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
    43       ../glibc-&glibc-version;/configure --prefix=/tools \
    44       --host=${CLFS_TARGET} --build=${CLFS_HOST} \
    45       --disable-profile --enable-kernel=&glibc-kernel-version; \
    46       --with-binutils=/cross-tools/bin --with-headers=/tools/include \
    47       --enable-obsolete-rpc</userinput></screen>
     41<screen os="df"><userinput>BUILD_CC="gcc" \
     42CC="${CLFS_TARGET}-gcc ${BUILD64}" \
     43AR="${CLFS_TARGET}-ar" \
     44RANLIB="${CLFS_TARGET}-ranlib" \
     45../glibc-&glibc-version;/configure \
     46    --prefix=/tools \
     47    --host=${CLFS_TARGET} \
     48    --build=${CLFS_HOST} \
     49    --disable-profile \
     50    --enable-kernel=&glibc-kernel-version; \
     51    --with-binutils=/cross-tools/bin \
     52    --with-headers=/tools/include \
     53    --enable-obsolete-rpc</userinput></screen>
    4854
    4955    <variablelist os="dg">
  • BOOK/cross-tools/common/binutils.xml

    rdbc5b02 r991595cf  
    4949    xpointer="xpointer(//*[@os='i'])"/>
    5050
    51 <screen os="bc"><userinput>AR=ar AS=as ../binutils-&binutils-dir;/configure \
    52     --prefix=/cross-tools --host=${CLFS_HOST} --target=${CLFS_TARGET} \
    53     --with-sysroot=${CLFS} --with-lib-path=/tools/lib --disable-nls \
    54     --disable-static --disable-multilib --enable-gold=yes --enable-plugins \
    55     --enable-threads --disable-werror</userinput></screen>
     51<screen os="bc"><userinput>AR=ar AS=as \
     52../binutils-&binutils-dir;/configure \
     53    --prefix=/cross-tools \
     54    --host=${CLFS_HOST} \
     55    --target=${CLFS_TARGET} \
     56    --with-sysroot=${CLFS} \
     57    --with-lib-path=/tools/lib \
     58    --disable-nls \
     59    --disable-static \
     60    --disable-multilib \
     61    --enable-gold=yes \
     62    --enable-plugins \
     63    --enable-threads \
     64    --disable-werror</userinput></screen>
    5665
    5766    <variablelist os="bd">
  • BOOK/cross-tools/common/file.xml

    rdbc5b02 r991595cf  
    3636    <para>Prepare File for compilation:</para>
    3737
    38 <screen><userinput>./configure --prefix=/cross-tools</userinput></screen>
     38<screen><userinput>./configure \
     39    --prefix=/cross-tools</userinput></screen>
    3940
    4041    <variablelist>
  • BOOK/cross-tools/common/gcc-final.xml

    rdbc5b02 r991595cf  
    5959    xpointer="xpointer(//*[@os='h'])"/>
    6060
    61 <screen os="bf"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    62     ../gcc-&gcc-version;/configure --prefix=/cross-tools \
    63     --build=${CLFS_HOST} --target=${CLFS_TARGET} --host=${CLFS_HOST} \
    64     --with-sysroot=${CLFS} --with-local-prefix=/tools \
    65     --with-native-system-header-dir=/tools/include --disable-nls \
    66     --disable-static --enable-languages=c,c++ --disable-multilib \
    67     --with-mpc=/cross-tools --with-mpfr=/cross-tools --with-gmp=/cross-tools \
    68     --with-isl=/cross-tools --with-system-zlib</userinput></screen>
     61<screen os="bf"><userinput>AR=ar \
     62LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
     63../gcc-&gcc-version;/configure \
     64    --prefix=/cross-tools \
     65    --build=${CLFS_HOST} \
     66    --target=${CLFS_TARGET} \
     67    --host=${CLFS_HOST} \
     68    --with-sysroot=${CLFS} \
     69    --with-local-prefix=/tools \
     70    --with-native-system-header-dir=/tools/include \
     71    --disable-nls \
     72    --disable-static \
     73    --enable-languages=c,c++ \
     74    --disable-multilib \
     75    --with-mpc=/cross-tools \
     76    --with-mpfr=/cross-tools \
     77    --with-gmp=/cross-tools \
     78    --with-isl=/cross-tools \
     79    --with-system-zlib</userinput></screen>
    6980
    7081    <variablelist os="bg">
  • BOOK/cross-tools/common/gcc-static.xml

    rdbc5b02 r991595cf  
    7070    xpointer="xpointer(//*[@os='h'])"/>
    7171
    72 <screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    73     ../gcc-&gcc-version;/configure --prefix=/cross-tools \
    74     --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \
    75     --with-sysroot=${CLFS} --with-local-prefix=/tools \
     72<screen os="al"><userinput>AR=ar \
     73LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
     74../gcc-&gcc-version;/configure \
     75    --prefix=/cross-tools \
     76    --build=${CLFS_HOST} \
     77    --host=${CLFS_HOST} \
     78    --target=${CLFS_TARGET} \
     79    --with-sysroot=${CLFS} \
     80    --with-local-prefix=/tools \
    7681    --with-native-system-header-dir=/tools/include \
    77     --disable-shared --with-mpfr=/cross-tools --with-gmp=/cross-tools \
    78     --with-isl=/cross-tools --with-mpc=/cross-tools --without-headers \
    79     --with-newlib --disable-decimal-float --disable-libgomp --disable-libssp \
    80     --disable-libatomic --disable-libitm --disable-libsanitizer \
    81     --disable-libquadmath --disable-libvtv --disable-libcilkrts \
    82     --disable-libstdc++-v3 --disable-threads --disable-multilib \
    83     --with-system-zlib --enable-languages=c \
     82    --disable-shared \
     83    --with-mpfr=/cross-tools \
     84    --with-gmp=/cross-tools \
     85    --with-isl=/cross-tools \
     86    --with-mpc=/cross-tools \
     87    --without-headers \
     88    --with-newlib \
     89    --disable-decimal-float \
     90    --disable-libgomp \
     91    --disable-libssp \
     92    --disable-libatomic \
     93    --disable-libitm \
     94    --disable-libsanitizer \
     95    --disable-libquadmath \
     96    --disable-libvtv \
     97    --disable-libcilkrts \
     98    --disable-libstdc++-v3 \
     99    --disable-threads \
     100    --disable-multilib \
     101    --with-system-zlib \
     102    --enable-languages=c \
    84103    --with-glibc-version=&glibc-version;</userinput></screen>
    85104
  • BOOK/cross-tools/common/glibc.xml

    rdbc5b02 r991595cf  
    3939    xpointer="xpointer(//*[@os='g'])"/>
    4040
    41 <screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc" \
    42     AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
    43     ../glibc-&glibc-version;/configure --prefix=/tools \
    44     --host=${CLFS_TARGET} --build=${CLFS_HOST} \
    45     --disable-profile --enable-kernel=&glibc-kernel-version; \
    46     --with-binutils=/cross-tools/bin --with-headers=/tools/include \
     41<screen os="df"><userinput>BUILD_CC="gcc" \
     42CC="${CLFS_TARGET}-gcc" \
     43AR="${CLFS_TARGET}-ar" \
     44RANLIB="${CLFS_TARGET}-ranlib" \
     45../glibc-&glibc-version;/configure \
     46    --prefix=/tools \
     47    --host=${CLFS_TARGET} \
     48    --build=${CLFS_HOST} \
     49    --disable-profile \
     50    --enable-kernel=&glibc-kernel-version; \
     51    --with-binutils=/cross-tools/bin \
     52    --with-headers=/tools/include \
    4753    --enable-obsolete-rpc</userinput></screen>
    4854
  • BOOK/cross-tools/common/gmp.xml

    rdbc5b02 r991595cf  
    3939    <para os="a">Prepare GMP for compilation:</para>
    4040
    41 <screen os="b"><userinput>./configure --prefix=/cross-tools --enable-cxx \
     41<screen os="b"><userinput>./configure \
     42    --prefix=/cross-tools \
     43    --enable-cxx \
    4244    --disable-static</userinput></screen>
    4345
  • BOOK/cross-tools/common/isl.xml

    rdbc5b02 r991595cf  
    3030
    3131<screen os="b"><userinput>LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    32 ./configure --prefix=/cross-tools --disable-static \
     32./configure \
     33    --prefix=/cross-tools \
     34    --disable-static \
    3335    --with-gmp-prefix=/cross-tools</userinput></screen>
    3436
  • BOOK/cross-tools/common/m4.xml

    rdbc5b02 r991595cf  
    3131    <para os="a">Prepare M4 for compilation:</para>
    3232
    33 <screen os="b"><userinput>./configure --prefix=/cross-tools</userinput></screen>
     33<screen os="b"><userinput>./configure \
     34    --prefix=/cross-tools</userinput></screen>
    3435
    3536    <para os="c">Compile the package:</para>
  • BOOK/cross-tools/common/mpc.xml

    rdbc5b02 r991595cf  
    2626
    2727<screen os="b"><userinput>LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    28 ./configure --prefix=/cross-tools --disable-static \
    29     --with-gmp=/cross-tools --with-mpfr=/cross-tools</userinput></screen>
     28./configure \
     29    --prefix=/cross-tools \
     30    --disable-static \
     31    --with-gmp=/cross-tools \
     32    --with-mpfr=/cross-tools</userinput></screen>
    3033
    3134    <para os="c">Compile the package:</para>
  • BOOK/cross-tools/common/mpfr.xml

    rdbc5b02 r991595cf  
    3434
    3535<screen os="b"><userinput>LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    36 ./configure --prefix=/cross-tools \
    37     --disable-static --with-gmp=/cross-tools</userinput></screen>
     36./configure \
     37    --prefix=/cross-tools \
     38    --disable-static \
     39    --with-gmp=/cross-tools</userinput></screen>
    3840
    3941    <variablelist os="b1">
  • BOOK/cross-tools/common/ncurses.xml

    rdbc5b02 r991595cf  
    4343    <para os="a">Prepare Ncurses for compilation:</para>
    4444
    45 <screen os="b"><userinput>AWK=gawk ./configure --prefix=/cross-tools \
     45<screen os="b"><userinput>AWK=gawk ./configure \
     46    --prefix=/cross-tools \
    4647    --without-debug</userinput></screen>
    4748
  • BOOK/cross-tools/common/pkg-config-lite.xml

    rdbc5b02 r991595cf  
    3535    <para os="b">Prepare Pkg-config-lite for compilation:</para>
    3636
    37 <screen os="c"><userinput>./configure --prefix=/cross-tools --host=${CLFS_TARGET}\
     37<screen os="c"><userinput>./configure \
     38    --prefix=/cross-tools \
     39    --host=${CLFS_TARGET} \
    3840    --with-pc-path=/tools/lib/pkgconfig:/tools/share/pkgconfig</userinput></screen>
    3941
  • BOOK/cross-tools/mips64-64/gcc-final.xml

    rdbc5b02 r991595cf  
    5959    xpointer="xpointer(//*[@os='h'])"/>
    6060
    61 <screen os="bf"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    62     ../gcc-&gcc-version;/configure --prefix=/cross-tools \
    63     --build=${CLFS_HOST} --target=${CLFS_TARGET} --host=${CLFS_HOST} \
    64     --with-sysroot=${CLFS} --with-local-prefix=/tools \
    65     --with-native-system-header-dir=/tools/include --disable-static \
    66     --enable-languages=c,c++ --disable-multilib --with-mpc=/cross-tools \
    67     --with-mpfr=/cross-tools --with-gmp=/cross-tools --with-isl=/cross-tools \
    68     --with-system-zlib --with-abi=64</userinput></screen>
     61<screen os="bf"><userinput>AR=ar \
     62LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
     63../gcc-&gcc-version;/configure \
     64    --prefix=/cross-tools \
     65    --build=${CLFS_HOST} \
     66    --target=${CLFS_TARGET} \
     67    --host=${CLFS_HOST} \
     68    --with-sysroot=${CLFS} \
     69    --with-local-prefix=/tools \
     70    --with-native-system-header-dir=/tools/include \
     71    --disable-static \
     72    --enable-languages=c,c++ \
     73    --disable-multilib \
     74    --with-mpc=/cross-tools \
     75    --with-mpfr=/cross-tools \
     76    --with-gmp=/cross-tools \
     77    --with-isl=/cross-tools \
     78    --with-system-zlib \
     79    --with-abi=64</userinput></screen>
    6980
    7081    <variablelist os="bg">
  • BOOK/cross-tools/mips64-64/gcc-static.xml

    rdbc5b02 r991595cf  
    7272    xpointer="xpointer(//*[@os='h'])"/>
    7373
    74 <screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    75     ../gcc-&gcc-version;/configure --prefix=/cross-tools \
    76     --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \
    77     --with-sysroot=${CLFS} --with-local-prefix=/tools \
    78     --with-native-system-header-dir=/tools/include --disable-shared \
    79     --with-mpfr=/cross-tools --with-gmp=/cross-tools --with-isl=/cross-tools \
    80     --with-mpc=/cross-tools --without-headers --with-newlib \
    81     --disable-decimal-float --disable-libgomp --disable-libssp \
    82     --disable-libatomic --disable-libitm --disable-libsanitizer \
    83     --disable-libquadmath --disable-libvtv --disable-libcilkrts \
    84     --disable-libcilkrts --disable-threads --disable-multilib \
    85     --with-system-zlib --enable-languages=c --with-abi=64 \
     74<screen os="al"><userinput>AR=ar \
     75LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
     76../gcc-&gcc-version;/configure \
     77    --prefix=/cross-tools \
     78    --build=${CLFS_HOST} \
     79    --host=${CLFS_HOST} \
     80    --target=${CLFS_TARGET} \
     81    --with-sysroot=${CLFS} \
     82    --with-local-prefix=/tools \
     83    --with-native-system-header-dir=/tools/include \
     84    --disable-shared \
     85    --with-mpfr=/cross-tools \
     86    --with-gmp=/cross-tools \
     87    --with-isl=/cross-tools \
     88    --with-mpc=/cross-tools \
     89    --without-headers \
     90    --with-newlib \
     91    --disable-decimal-float \
     92    --disable-libgomp \
     93    --disable-libssp \
     94    --disable-libatomic \
     95    --disable-libitm \
     96    --disable-libsanitizer \
     97    --disable-libquadmath \
     98    --disable-libvtv \
     99    --disable-libcilkrts \
     100    --disable-libcilkrts \
     101    --disable-threads \
     102    --disable-multilib \
     103    --with-system-zlib \
     104    --enable-languages=c \
     105    --with-abi=64 \
    86106    --with-glibc-version=&glibc-version;</userinput></screen>
    87107
  • BOOK/cross-tools/mips64/glibc-n32.xml

    rdbc5b02 r991595cf  
    4545
    4646<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILDN32}" \
    47     AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
    48     ../glibc-&glibc-version;/configure --prefix=/tools \
    49     --host=${CLFS_TARGET} --build=${CLFS_HOST} --libdir=/tools/lib32 \
    50     --disable-profile --enable-kernel=&glibc-kernel-version; \
    51     --with-binutils=/cross-tools/bin --with-headers=/tools/include \
    52     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     47AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
     48../glibc-&glibc-version;/configure \
     49    --prefix=/tools \
     50    --host=${CLFS_TARGET} \
     51    --build=${CLFS_HOST} \
     52    --libdir=/tools/lib32 \
     53    --disable-profile \
     54    --enable-kernel=&glibc-kernel-version; \
     55    --with-binutils=/cross-tools/bin \
     56    --with-headers=/tools/include \
     57    --enable-obsolete-rpc \
     58    --cache-file=config.cache</userinput></screen>
    5359
    5460    <variablelist os="fa">
  • BOOK/cross-tools/multilib/binutils.xml

    rdbc5b02 r991595cf  
    4848    xpointer="xpointer(//*[@os='i'])"/>
    4949
    50 <screen os="bc"><userinput>AR=ar AS=as ../binutils-&binutils-dir;/configure \
    51     --prefix=/cross-tools --host=${CLFS_HOST} --target=${CLFS_TARGET} \
    52     --with-sysroot=${CLFS} --with-lib-path=/tools/lib:/tools/lib64 \
    53     --disable-nls --disable-static --enable-64-bit-bfd --enable-gold=yes \
    54     --enable-plugins --enable-threads --disable-werror</userinput></screen>
     50<screen os="bc"><userinput>AR=ar AS=as \
     51../binutils-&binutils-dir;/configure \
     52    --prefix=/cross-tools \
     53    --host=${CLFS_HOST} \
     54    --target=${CLFS_TARGET} \
     55    --with-sysroot=${CLFS} \
     56    --with-lib-path=/tools/lib:/tools/lib64 \
     57    --disable-nls \
     58    --disable-static \
     59    --enable-64-bit-bfd \
     60    --enable-gold=yes \
     61    --enable-plugins \
     62    --enable-threads \
     63    --disable-werror</userinput></screen>
    5564
    5665    <variablelist os="bd">
  • BOOK/cross-tools/multilib/gcc-final.xml

    rdbc5b02 r991595cf  
    5959    xpointer="xpointer(//*[@os='h'])"/>
    6060
    61 <screen os="bf"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    62     ../gcc-&gcc-version;/configure --prefix=/cross-tools \
    63     --build=${CLFS_HOST} --target=${CLFS_TARGET} --host=${CLFS_HOST} \
    64     --with-sysroot=${CLFS} --with-local-prefix=/tools \
    65     --with-native-system-header-dir=/tools/include --disable-static \
    66     --enable-languages=c,c++ --with-mpc=/cross-tools --with-mpfr=/cross-tools \
    67     --with-gmp=/cross-tools --with-isl=/cross-tools --with-system-zlib</userinput></screen>
     61<screen os="bf"><userinput>AR=ar \
     62LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
     63../gcc-&gcc-version;/configure \
     64    --prefix=/cross-tools \
     65    --build=${CLFS_HOST} \
     66    --target=${CLFS_TARGET} \
     67    --host=${CLFS_HOST} \
     68    --with-sysroot=${CLFS} \
     69    --with-local-prefix=/tools \
     70    --with-native-system-header-dir=/tools/include \
     71    --disable-static \
     72    --enable-languages=c,c++ \
     73    --with-mpc=/cross-tools \
     74    --with-mpfr=/cross-tools \
     75    --with-gmp=/cross-tools \
     76    --with-isl=/cross-tools \
     77    --with-system-zlib</userinput></screen>
    6878
    6979    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/cross-tools/multilib/gcc-static.xml

    rdbc5b02 r991595cf  
    7272    xpointer="xpointer(//*[@os='h'])"/>
    7373
    74 <screen os="al"><userinput>AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
    75     ../gcc-&gcc-version;/configure --prefix=/cross-tools \
    76     --build=${CLFS_HOST} --host=${CLFS_HOST} --target=${CLFS_TARGET} \
    77     --with-sysroot=${CLFS} --with-local-prefix=/tools \
    78     --with-native-system-header-dir=/tools/include --disable-shared \
    79     --with-mpfr=/cross-tools --with-gmp=/cross-tools --with-mpc=/cross-tools \
    80     --without-headers --with-newlib --disable-decimal-float --disable-libgomp \
    81     --disable-libssp --disable-libatomic --disable-libitm \
    82     --disable-libsanitizer --disable-libquadmath --disable-libvtv \
    83     --disable-libcilkrts --disable-libstdc++-v3 --disable-threads \
    84     --with-system-zlib --with-isl=/cross-tools --enable-languages=c \
     74<screen os="al"><userinput>AR=ar \
     75LDFLAGS="-Wl,-rpath,/cross-tools/lib" \
     76../gcc-&gcc-version;/configure \
     77    --prefix=/cross-tools \
     78    --build=${CLFS_HOST} \
     79    --host=${CLFS_HOST} \
     80    --target=${CLFS_TARGET} \
     81    --with-sysroot=${CLFS} \
     82    --with-local-prefix=/tools \
     83    --with-native-system-header-dir=/tools/include \
     84    --disable-shared \
     85    --with-mpfr=/cross-tools \
     86    --with-gmp=/cross-tools \
     87    --with-mpc=/cross-tools \
     88    --without-headers \
     89    --with-newlib \
     90    --disable-decimal-float \
     91    --disable-libgomp \
     92    --disable-libssp \
     93    --disable-libatomic \
     94    --disable-libitm \
     95    --disable-libsanitizer \
     96    --disable-libquadmath \
     97    --disable-libvtv \
     98    --disable-libcilkrts \
     99    --disable-libstdc++-v3 \
     100    --disable-threads \
     101    --with-system-zlib \
     102    --with-isl=/cross-tools \
     103    --enable-languages=c \
    85104    --with-glibc-version=&glibc-version;</userinput></screen>
    86105
  • BOOK/cross-tools/multilib/glibc-64bit.xml

    rdbc5b02 r991595cf  
    4545
    4646<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD64}" \
    47     AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
    48     ../glibc-&glibc-version;/configure --prefix=/tools \
    49     --host=${CLFS_TARGET} --build=${CLFS_HOST} --libdir=/tools/lib64 \
    50     --disable-profile --enable-kernel=&glibc-kernel-version; \
    51     --with-binutils=/cross-tools/bin --with-headers=/tools/include \
    52     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     47AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
     48../glibc-&glibc-version;/configure \
     49    --prefix=/tools \
     50    --host=${CLFS_TARGET} \
     51    --build=${CLFS_HOST} \
     52    --libdir=/tools/lib64 \
     53    --disable-profile \
     54    --enable-kernel=&glibc-kernel-version; \
     55    --with-binutils=/cross-tools/bin \
     56    --with-headers=/tools/include \
     57    --enable-obsolete-rpc \
     58    --cache-file=config.cache</userinput></screen>
    5359
    5460    <variablelist os="dg">
  • BOOK/cross-tools/multilib/glibc.xml

    rdbc5b02 r991595cf  
    4040
    4141<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD32}" \
    42     AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
    43     ../glibc-&glibc-version;/configure --prefix=/tools \
    44     --host=${CLFS_TARGET32} --build=${CLFS_HOST} \
    45     --disable-profile --enable-kernel=&glibc-kernel-version; \
    46     --with-binutils=/cross-tools/bin --with-headers=/tools/include \
     42AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
     43../glibc-&glibc-version;/configure \
     44    --prefix=/tools \
     45    --host=${CLFS_TARGET32} \
     46    --build=${CLFS_HOST} \
     47    --disable-profile \
     48    --enable-kernel=&glibc-kernel-version; \
     49    --with-binutils=/cross-tools/bin \
     50    --with-headers=/tools/include \
    4751    --enable-obsolete-rpc</userinput></screen>
    4852
  • BOOK/cross-tools/multilib/pkg-config-lite.xml

    rdbc5b02 r991595cf  
    3131    xpointer="xpointer(//*[@os='b'])"/>
    3232
    33 <screen os="c"><userinput>./configure --prefix=/cross-tools --host=${CLFS_TARGET} \
     33<screen os="c"><userinput>./configure \
     34    --prefix=/cross-tools \
     35    --host=${CLFS_TARGET} \
    3436    --with-pc-path=/tools/lib64/pkgconfig:/tools/share/pkgconfig</userinput></screen>
    3537
  • BOOK/cross-tools/ppc64-64/gcc-static.xml

    rdbc5b02 r991595cf  
    4040    xpointer="xpointer(//*[@os='aa'])"/>
    4141
    42     <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen>
     42<screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen>
    4343
    4444    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/64/binutils.xml

    rdbc5b02 r991595cf  
    6565<screen os="ca"><userinput>CC="gcc -isystem /usr/include" \
    6666LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    67   ../binutils-&binutils-dir;/configure --prefix=/usr \
    68     --libdir=/usr/lib --enable-shared \
    69     --disable-multilib --enable-64-bit-bfd \
    70     --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     67../binutils-&binutils-dir;/configure \
     68    --prefix=/usr \
     69    --libdir=/usr/lib \
     70    --enable-shared \
     71    --disable-multilib \
     72    --enable-64-bit-bfd \
     73    --enable-gold=yes \
     74    --enable-plugins \
     75    --enable-threads</userinput></screen>
    7176
    7277    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/common/autoconf.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Autoconf for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr</userinput></screen>
    3132
    3233    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/automake.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Automake for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
    3133
    3234    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/bash.xml

    rdbc5b02 r991595cf  
    3232    <para os="a">Prepare Bash for compilation:</para>
    3333
    34 <screen os="b"><userinput>./configure --prefix=/usr --bindir=/bin \
    35     --without-bash-malloc --with-installed-readline \
     34<screen os="b"><userinput>./configure \
     35    --prefix=/usr \
     36    --bindir=/bin \
     37    --without-bash-malloc \
     38    --with-installed-readline \
    3639    --docdir=/usr/share/doc/bash-&bash-version;</userinput></screen>
    3740
  • BOOK/final-system/common/bc.xml

    rdbc5b02 r991595cf  
    3131    <para os="a">Prepare Bc for compilation:</para>
    3232
    33 <screen os="b"><userinput>./configure --prefix=/usr --with-readline \
    34     --mandir=/usr/share/man --infodir=/usr/share/info</userinput></screen>
     33<screen os="b"><userinput>./configure \
     34    --prefix=/usr \
     35    --with-readline \
     36    --mandir=/usr/share/man \
     37    --infodir=/usr/share/info</userinput></screen>
    3538
    3639    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/binutils.xml

    rdbc5b02 r991595cf  
    5757<screen os="ca"><userinput>CC="gcc -isystem /usr/include" \
    5858LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    59   ../binutils-&binutils-dir;/configure --prefix=/usr \
    60     --enable-shared --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     59../binutils-&binutils-dir;/configure \
     60    --prefix=/usr \
     61    --enable-shared \
     62    --enable-gold=yes \
     63    --enable-plugins \
     64    --enable-threads</userinput></screen>
    6165
    6266    <para os="j">Compile the package:</para>
  • BOOK/final-system/common/bison.xml

    rdbc5b02 r991595cf  
    2727    <para os="a">Prepare Bison for compilation:</para>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/usr</userinput></screen>
    3031
    3132    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/coreutils.xml

    rdbc5b02 r991595cf  
    3636
    3737<screen os="d"><userinput>FORCE_UNSAFE_CONFIGURE=1 \
    38   ./configure --prefix=/usr \
     38./configure \
     39    --prefix=/usr \
    3940    --enable-no-install-program=kill,uptime \
    40     --enable-install-program=hostname --libexecdir=/usr/lib</userinput></screen>
     41    --enable-install-program=hostname \
     42    --libexecdir=/usr/lib</userinput></screen>
    4143
    4244    <variablelist os="d1">
  • BOOK/final-system/common/diffutils.xml

    rdbc5b02 r991595cf  
    3232    <para os="a">Prepare Diffutils for compilation:</para>
    3333
    34 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     34<screen os="b"><userinput>./configure \
     35    --prefix=/usr</userinput></screen>
    3536
    3637    <para os="s3">Diffutils wants <command>ed</command> as the default editor
  • BOOK/final-system/common/e2fsprogs.xml

    rdbc5b02 r991595cf  
    3737    <para os="c">Prepare E2fsprogs for compilation:</para>
    3838
    39 <screen os="d"><userinput>../configure --prefix=/usr --bindir=/bin \
    40     --with-root-prefix="" --enable-elf-shlibs --disable-libblkid \
    41     --disable-libuuid --disable-fsck --disable-uuidd</userinput></screen>
     39<screen os="d"><userinput>../configure \
     40    --prefix=/usr \
     41    --bindir=/bin \
     42    --with-root-prefix="" \
     43    --enable-elf-shlibs \
     44    --disable-libblkid \
     45    --disable-libuuid \
     46    --disable-fsck \
     47    --disable-uuidd</userinput></screen>
    4248
    4349    <variablelist os="e">
  • BOOK/final-system/common/expat.xml

    rdbc5b02 r991595cf  
    2727    <para os="a">Prepare Expat for compilation:</para>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/usr</userinput></screen>
    3031
    3132    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/file.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare File for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr</userinput></screen>
    3132
    3233    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/findutils.xml

    rdbc5b02 r991595cf  
    3030    <para os="a">Prepare Findutils for compilation:</para>
    3131
    32 <screen os="b"><userinput>./configure --prefix=/usr --libexecdir=/usr/lib/locate \
     32<screen os="b"><userinput>./configure \
     33    --prefix=/usr \
     34    --libexecdir=/usr/lib/locate \
    3335    --localstatedir=/var/lib/locate</userinput></screen>
    3436
  • BOOK/final-system/common/flex.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Flex for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
    3133
    3234    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/gawk.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Gawk for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --libexecdir=/usr/lib</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --libexecdir=/usr/lib</userinput></screen>
    3133
    3234    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/gcc.xml

    rdbc5b02 r991595cf  
    2929    &gcc-version; branch by the GCC developers:</para>
    3030
    31     <screen os="p2"><userinput>patch -Np1 -i ../&gcc-branch_update-patch;</userinput></screen>
     31<screen os="p2"><userinput>patch -Np1 -i ../&gcc-branch_update-patch;</userinput></screen>
    3232
    3333    <para os="fix1">Apply a <command>sed</command> substitution that will
     
    4747CXX="g++ -isystem /usr/include" \
    4848LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    49   ../gcc-&gcc-version;/configure --prefix=/usr \
    50     --libexecdir=/usr/lib --enable-languages=c,c++ \
    51     --disable-multilib --with-system-zlib \
    52     --enable-install-libiberty --disable-bootstrap</userinput></screen>
     49../gcc-&gcc-version;/configure \
     50    --prefix=/usr \
     51    --libexecdir=/usr/lib \
     52    --enable-languages=c,c++ \
     53    --disable-multilib \
     54    --with-system-zlib \
     55    --enable-install-libiberty \
     56    --disable-bootstrap</userinput></screen>
    5357
    5458    <variablelist os="i1">
  • BOOK/final-system/common/gdbm.xml

    rdbc5b02 r991595cf  
    3030    <para os="a">Prepare GDBM for compilation:</para>
    3131
    32 <screen os="b"><userinput>./configure --prefix=/usr --enable-libgdbm-compat</userinput></screen>
     32<screen os="b"><userinput>./configure \
     33    --prefix=/usr \
     34    --enable-libgdbm-compat</userinput></screen>
    3335
    3436    <variablelist os="c">
  • BOOK/final-system/common/gettext.xml

    rdbc5b02 r991595cf  
    3030    <para os="a">Prepare Gettext for compilation:</para>
    3131
    32 <screen os="b"><userinput>./configure --prefix=/usr --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
     32<screen os="b"><userinput>./configure \
     33    --prefix=/usr \
     34    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
    3335
    3436    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/glibc.xml

    rdbc5b02 r991595cf  
    6868    <para os="g">Prepare Glibc for compilation:</para>
    6969
    70 <screen os="h"><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
    71     --disable-profile --enable-kernel=&glibc-kernel-version; --libexecdir=/usr/lib/glibc \
     70<screen os="h"><userinput>../glibc-&glibc-version;/configure \
     71    --prefix=/usr \
     72    --disable-profile \
     73    --enable-kernel=&glibc-kernel-version; \
     74    --libexecdir=/usr/lib/glibc \
    7275    --enable-obsolete-rpc</userinput></screen>
    7376
  • BOOK/final-system/common/gmp.xml

    rdbc5b02 r991595cf  
    5151CXX="g++ -isystem /usr/include" \
    5252LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    53   ./configure --prefix=/usr --enable-cxx \
    54   --docdir=/usr/share/doc/gmp-&gmp-version;</userinput></screen>
     53./configure \
     54    --prefix=/usr \
     55    --enable-cxx \
     56    --docdir=/usr/share/doc/gmp-&gmp-version;</userinput></screen>
    5557
    5658    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/grep.xml

    rdbc5b02 r991595cf  
    3232    <para os="a">Prepare Grep for compilation:</para>
    3333
    34 <screen os="b"><userinput>./configure --prefix=/usr --bindir=/bin</userinput></screen>
     34<screen os="b"><userinput>./configure \
     35    --prefix=/usr \
     36    --bindir=/bin</userinput></screen>
    3537
    3638    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/groff.xml

    rdbc5b02 r991595cf  
    3333    <para os="b">Prepare Groff for compilation:</para>
    3434
    35 <screen os="c"><userinput>PAGE=<replaceable>[paper_size]</replaceable> ./configure --prefix=/usr</userinput></screen>
     35<screen os="c"><userinput>PAGE=<replaceable>[paper_size]</replaceable> ./configure \
     36    --prefix=/usr</userinput></screen>
    3637
    3738    <para os="d">Compile the package:</para>
  • BOOK/final-system/common/gzip.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Gzip for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --bindir=/bin</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --bindir=/bin</userinput></screen>
    3133
    3234    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/isl.xml

    rdbc5b02 r991595cf  
    3030<screen os="b"><userinput>CC="gcc -isystem /usr/include" \
    3131LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    32   ./configure --prefix=/usr</userinput></screen>
     32./configure \
     33    --prefix=/usr</userinput></screen>
    3334
    3435    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/kbd.xml

    rdbc5b02 r991595cf  
    2929
    3030<screen os="b"><userinput>PKG_CONFIG_PATH="/tools/lib/pkgconfig" \
    31     ./configure --prefix=/usr --disable-vlock --enable-optional-progs</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --disable-vlock \
     34    --enable-optional-progs</userinput></screen>
    3235
    3336    <variablelist os="c">
  • BOOK/final-system/common/kmod.xml

    rdbc5b02 r991595cf  
    2929    <para os="a">Prepare Kmod for compilation:</para>
    3030
    31 <screen os="b"><userinput>./configure --prefix=/usr \
    32     --bindir=/bin --sysconfdir=/etc \
     31<screen os="b"><userinput>./configure \
     32    --prefix=/usr \
     33    --bindir=/bin \
     34    --sysconfdir=/etc \
    3335    --with-rootlibdir=/lib \
    34     --with-zlib --with-xz</userinput></screen>
     36    --with-zlib \
     37    --with-xz</userinput></screen>
    3538
    3639    <variablelist os="c">
  • BOOK/final-system/common/less.xml

    rdbc5b02 r991595cf  
    2727    <para os="a">Prepare Less for compilation:</para>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/usr --sysconfdir=/etc</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/usr \
     31    --sysconfdir=/etc</userinput></screen>
    3032
    3133    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/libpipeline.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Libpipeline for compilation:</para>
    2929
    30 <screen os="b"><userinput>PKG_CONFIG_PATH=/tools/lib/pkgconfig ./configure --prefix=/usr</userinput></screen>
     30<screen os="b"><userinput>PKG_CONFIG_PATH=/tools/lib/pkgconfig \
     31./configure \
     32    --prefix=/usr</userinput></screen>
    3133
    3234    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/libtool.xml

    rdbc5b02 r991595cf  
    2929    <para os="a">Prepare Libtool for compilation:</para>
    3030
    31 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     31<screen os="b"><userinput>./configure \
     32    --prefix=/usr</userinput></screen>
    3233
    3334    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/m4.xml

    rdbc5b02 r991595cf  
    2727    <para os="a">Prepare M4 for compilation:</para>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/usr</userinput></screen>
    3031
    3132    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/make.xml

    rdbc5b02 r991595cf  
    2727    <para os="a">Prepare Make for compilation:</para>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/usr</userinput></screen>
    3031
    3132    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/man-db.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Man-DB for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --libexecdir=/usr/lib \
    31     --docdir=/usr/share/doc/man-db-&man-db-version; --sysconfdir=/etc \
    32     --disable-setuid --with-browser=/usr/bin/lynx \
    33     --with-vgrind=/usr/bin/vgrind --with-grap=/usr/bin/grap</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --libexecdir=/usr/lib \
     33    --docdir=/usr/share/doc/man-db-&man-db-version; \
     34    --sysconfdir=/etc \
     35    --disable-setuid \
     36    --with-browser=/usr/bin/lynx \
     37    --with-vgrind=/usr/bin/vgrind \
     38    --with-grap=/usr/bin/grap</userinput></screen>
    3439
    3540    <variablelist os="c">
  • BOOK/final-system/common/mpc.xml

    rdbc5b02 r991595cf  
    3030<screen os="b"><userinput>CC="gcc -isystem /usr/include" \
    3131LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    32   ./configure --prefix=/usr --docdir=/usr/share/doc/mpc-&mpc-version;</userinput></screen>
     32./configure \
     33    --prefix=/usr \
     34    --docdir=/usr/share/doc/mpc-&mpc-version;</userinput></screen>
    3335
    3436    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/mpfr.xml

    rdbc5b02 r991595cf  
    3333
    3434<screen os="b"><userinput>CC="gcc -isystem /usr/include" \
    35     LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    36     ./configure --prefix=/usr --with-gmp=/usr \
     35LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
     36./configure \
     37    --prefix=/usr \
     38    --with-gmp=/usr \
    3739    --docdir=/usr/share/doc/mpfr-&mpfr-version;</userinput></screen>
    3840
  • BOOK/final-system/common/ncurses.xml

    rdbc5b02 r991595cf  
    3333    <para os="a">Prepare Ncurses for compilation:</para>
    3434
    35 <screen os="b"><userinput>./configure --prefix=/usr --libdir=/lib \
    36     --with-shared --without-debug --enable-widec \
    37     --with-manpage-format=normal --enable-pc-files \
     35<screen os="b"><userinput>./configure \
     36    --prefix=/usr \
     37    --libdir=/lib \
     38    --with-shared \
     39    --without-debug \
     40    --enable-widec \
     41    --with-manpage-format=normal \
     42    --enable-pc-files \
    3843    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
    3944
  • BOOK/final-system/common/patch.xml

    rdbc5b02 r991595cf  
    2929    <para os="a">Prepare Patch for compilation:</para>
    3030
    31 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     31<screen os="b"><userinput>./configure \
     32    --prefix=/usr</userinput></screen>
    3233
    3334    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/perl.xml

    rdbc5b02 r991595cf  
    5252    that Perl auto-detects, prepare Perl for compilation with:</para>
    5353
    54 <screen os="b"><userinput>./configure.gnu --prefix=/usr \
    55    -Dvendorprefix=/usr \
    56    -Dman1dir=/usr/share/man/man1 \
    57    -Dman3dir=/usr/share/man/man3 \
    58    -Dpager="/bin/less -isR" \
    59    -Dusethreads -Duseshrplib</userinput></screen>
     54<screen os="b"><userinput>./configure.gnu \
     55    --prefix=/usr \
     56    -Dvendorprefix=/usr \
     57    -Dman1dir=/usr/share/man/man1 \
     58    -Dman3dir=/usr/share/man/man3 \
     59    -Dpager="/bin/less -isR" \
     60    -Dusethreads -Duseshrplib</userinput></screen>
    6061
    6162    <variablelist os="c">
  • BOOK/final-system/common/pkg-config-lite.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Pkg-config-lite for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --docdir=/usr/share/doc/pkg-config-&pkg-config-lite-version;</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --docdir=/usr/share/doc/pkg-config-&pkg-config-lite-version;</userinput></screen>
    3133
    3234    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/pkgmgt.xml

    rdbc5b02 r991595cf  
    149149      not install the package properly:</para>
    150150
    151 <screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
     151<screen role="nodump"><userinput>./configure \
     152    --prefix=/usr/pkg/libfoo/1.1
    152153make
    153154make install</userinput></screen>
     
    162163      approach works as follows:</para>
    163164
    164 <screen role="nodump"><userinput>./configure --prefix=/usr
     165<screen role="nodump"><userinput>./configure \
     166    --prefix=/usr
    165167make
    166168make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>
  • BOOK/final-system/common/procps-ng.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare procps-ng for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr --exec-prefix= \
    31     --libdir=/usr/lib --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr \
     32    --exec-prefix= \
     33    --libdir=/usr/lib \
     34    --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
    3235    --disable-kill</userinput></screen>
    3336
  • BOOK/final-system/common/psmisc.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Psmisc for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr</userinput></screen>
    3132
    3233    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/readline.xml

    rdbc5b02 r991595cf  
    3333    <para os="a">Prepare Readline for compilation:</para>
    3434
    35 <screen os="b"><userinput>./configure --prefix=/usr --libdir=/lib \
     35<screen os="b"><userinput>./configure \
     36    --prefix=/usr \
     37    --libdir=/lib \
    3638    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    3739
  • BOOK/final-system/common/sed.xml

    rdbc5b02 r991595cf  
    2727    <para os="a">Prepare Sed for compilation:</para>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/usr --bindir=/bin \
     29<screen os="b"><userinput>./configure \
     30    --prefix=/usr \
     31    --bindir=/bin \
    3032    --docdir=/usr/share/doc/sed-&sed-version;</userinput></screen>
    3133
  • BOOK/final-system/common/shadow.xml

    rdbc5b02 r991595cf  
    5151    <para os="d">Prepare Shadow for compilation:</para>
    5252
    53 <screen os="e"><userinput>./configure --sysconfdir=/etc</userinput></screen>
     53<screen os="e"><userinput>./configure \
     54    --sysconfdir=/etc</userinput></screen>
    5455
    5556<para os="f">The meaning of the new configure option:</para>
  • BOOK/final-system/common/tar.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Tar for compilation:</para>
    2929
    30 <screen os="b"><userinput>FORCE_UNSAFE_CONFIGURE=1 ./configure --prefix=/usr \
    31     --bindir=/bin --libexecdir=/usr/sbin</userinput></screen>
     30<screen os="b"><userinput>FORCE_UNSAFE_CONFIGURE=1 ./configure \
     31    --prefix=/usr \
     32    --bindir=/bin \
     33    --libexecdir=/usr/sbin</userinput></screen>
    3234
    3335    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/temp-perl.xml

    rdbc5b02 r991595cf  
    4040<para os="c">Prepare Temporary Perl for compilation:</para>
    4141
    42 <screen os="d"><userinput>./configure.gnu --prefix=/tools -Dcc="gcc"</userinput></screen>
     42<screen os="d"><userinput>./configure.gnu \
     43    --prefix=/tools \
     44    -Dcc="gcc"</userinput></screen>
    4345
    4446    <variablelist os="e">
  • BOOK/final-system/common/texinfo.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare Texinfo for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/usr</userinput></screen>
    3132
    3233    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/util-linux.xml

    rdbc5b02 r991595cf  
    4242    <para os="a">Prepare Util-linux for compilation:</para>
    4343
    44 <screen os="b"><userinput>./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \
    45     --enable-write --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
     44<screen os="b"><userinput>./configure \
     45    ADJTIME_PATH=/var/lib/hwclock/adjtime \
     46    --enable-write \
     47    --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
    4648
    4749    <variablelist os="c">
  • BOOK/final-system/common/vim.xml

    rdbc5b02 r991595cf  
    4747    <para os="d">Prepare Vim for compilation:</para>
    4848
    49 <screen os="e"><userinput>./configure --prefix=/usr</userinput></screen>
     49<screen os="e"><userinput>./configure \
     50    --prefix=/usr</userinput></screen>
    5051
    5152    <para os="g">Compile the package:</para>
  • BOOK/final-system/common/xz.xml

    rdbc5b02 r991595cf  
    3030    <para os="a">Prepare XZ Utils for compilation:</para>
    3131
    32 <screen os="b"><userinput>./configure --prefix=/usr --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
     32<screen os="b"><userinput>./configure \
     33    --prefix=/usr \
     34    --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
    3335
    3436    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/zlib.xml

    rdbc5b02 r991595cf  
    3131CXX="g++ -isystem /usr/include" \
    3232LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
    33   ./configure --prefix=/usr</userinput></screen>
     33./configure \
     34    --prefix=/usr</userinput></screen>
    3435
    3536    <para os="c">Compile the package:</para>
  • BOOK/final-system/mips/dvhtool.xml

    rdbc5b02 r991595cf  
    3838    <para os="d">Prepare Dvhtool  for compilation:</para>
    3939
    40 <screen os="e"><userinput>./configure --prefix=/usr</userinput></screen>
     40<screen os="e"><userinput>./configure \
     41    --prefix=/usr</userinput></screen>
    4142
    4243    <para os="f">Compile the package:</para>
  • BOOK/final-system/mips64-64/glibc.xml

    rdbc5b02 r991595cf  
    6565    n32 with the following sed:</para>
    6666
    67     <screen><userinput>sed -i '/default) machine=/s/n32/64/g' \
    68        ports/sysdeps/mips/preconfigure</userinput></screen>
     67<screen><userinput>sed -i '/default) machine=/s/n32/64/g' \
     68    ports/sysdeps/mips/preconfigure</userinput></screen>
    6969
    7070    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/mips64/binutils.xml

    rdbc5b02 r991595cf  
    6565<screen os="ca"><userinput>CC="gcc -isystem /usr/include ${BUILD64}" \
    6666LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64:/usr/lib32:/lib32:/usr/lib:/lib ${BUILD64}" \
    67   ../binutils-&binutils-dir;/configure --prefix=/usr \
    68     --enable-shared --enable-64-bit-bfd --libdir=/usr/lib64 \
    69     --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     67../binutils-&binutils-dir;/configure \
     68    --prefix=/usr \
     69    --enable-shared \
     70    --enable-64-bit-bfd \
     71    --libdir=/usr/lib64 \
     72    --enable-gold=yes \
     73    --enable-plugins \
     74    --enable-threads</userinput></screen>
    7075
    7176    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/mips64/dvhtool.xml

    rdbc5b02 r991595cf  
    3838    xpointer="xpointer(//*[@os='d'])"/>
    3939
    40 <screen os="e"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     40<screen os="e"><userinput>CC="gcc ${BUILD64}" \
     41./configure \
     42    --prefix=/usr</userinput></screen>
    4143
    4244    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/mips64/gcc.xml

    rdbc5b02 r991595cf  
    5353CXX="g++ -isystem /usr/include ${BUILD64}" \
    5454LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64:/usr/lib32:/lib32:/usr/lib:/lib" \
    55   ../gcc-&gcc-version;/configure --prefix=/usr --libdir=/usr/lib64 \
    56     --libexecdir=/usr/lib64 --with-abi=64 --enable-languages=c,c++ \
    57     --with-system-zlib --enable-install-libiberty --disable-bootstrap</userinput></screen>
     55../gcc-&gcc-version;/configure \
     56    --prefix=/usr \
     57    --libdir=/usr/lib64 \
     58    --libexecdir=/usr/lib64 \
     59    --with-abi=64 \
     60    --enable-languages=c,c++ \
     61    --with-system-zlib \
     62    --enable-install-libiberty \
     63    --disable-bootstrap</userinput></screen>
    5864
    5965   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/mips64/glibc-n32.xml

    rdbc5b02 r991595cf  
    5353
    5454<screen os="h"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    55     ../glibc-&glibc-version;/configure --prefix=/usr \
    56     --disable-profile --enable-kernel=&glibc-kernel-version; \
    57     --libexecdir=/usr/lib32/glibc --libdir=/usr/lib32 \
    58     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     55../glibc-&glibc-version;/configure \
     56    --prefix=/usr \
     57    --disable-profile \
     58    --enable-kernel=&glibc-kernel-version; \
     59    --libexecdir=/usr/lib32/glibc \
     60    --libdir=/usr/lib32 \
     61    --enable-obsolete-rpc \
     62    --cache-file=config.cache</userinput></screen>
    5963
    6064    <variablelist os="i">
  • BOOK/final-system/multilib/autoconf.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     29./configure \
     30    --prefix=/usr</userinput></screen>
    2931
    3032    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/automake.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     29./configure \
     30    --prefix=/usr \
    2931    --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
    3032
  • BOOK/final-system/multilib/bash.xml

    rdbc5b02 r991595cf  
    4040
    4141<screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    42     ./configure --prefix=/usr --bindir=/bin \
    43     --without-bash-malloc --with-installed-readline \
     42./configure \
     43    --prefix=/usr \
     44    --bindir=/bin \
     45    --without-bash-malloc \
     46    --with-installed-readline \
    4447    --docdir=/usr/share/doc/bash-&bash-version;</userinput></screen>
    4548
  • BOOK/final-system/multilib/bc.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='a'])"/>
    3535
    36 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    37     --mandir=/usr/share/man --infodir=/usr/share/info</userinput></screen>
     36<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     37./configure \
     38    --prefix=/usr \
     39    --mandir=/usr/share/man \
     40    --infodir=/usr/share/info</userinput></screen>
    3841
    3942    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/binutils.xml

    rdbc5b02 r991595cf  
    6565<screen os="ca"><userinput>CC="gcc -isystem /usr/include ${BUILD64}" \
    6666LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64:/usr/lib:/lib ${BUILD64}" \
    67   ../binutils-&binutils-dir;/configure --prefix=/usr \
    68     --enable-shared --enable-64-bit-bfd --libdir=/usr/lib64 \
    69     --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     67../binutils-&binutils-dir;/configure \
     68    --prefix=/usr \
     69    --enable-shared \
     70    --enable-64-bit-bfd \
     71    --libdir=/usr/lib64 \
     72    --enable-gold=yes \
     73    --enable-plugins \
     74    --enable-threads</userinput></screen>
    7075
    7176    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/bison-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    29     ./configure --prefix=/usr --libdir=/usr/lib64</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     29CXX="g++ ${BUILD64}" \
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib64</userinput></screen>
    3033
    3134    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/bison-n32.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    30     ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
     29<screen os="b"><userinput>CC="gcc ${BUILDN32}" \
     30CXX="g++ ${BUILDN32}" \
     31./configure \
     32    --prefix=/usr \
     33    --libdir=/usr/lib32</userinput></screen>
    3134
    3235    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/bison.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    30     ./configure --prefix=/usr</userinput></screen>
     30./configure \
     31    --prefix=/usr</userinput></screen>
    3132
    3233    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/coreutils.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='c'])"/>
    3535
    36 <screen os="d"><userinput>FORCE_UNSAFE_CONFIGURE=1 CC="gcc ${BUILD64}" \
    37    ./configure --prefix=/usr \
     36<screen os="d"><userinput>FORCE_UNSAFE_CONFIGURE=1 \
     37CC="gcc ${BUILD64}" \
     38./configure \
     39    --prefix=/usr \
    3840    --enable-no-install-program=kill,uptime \
    3941    --enable-install-program=hostname</userinput></screen>
  • BOOK/final-system/multilib/diffutils.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='a'])"/>
    3535
    36 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     36<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     37./configure \
     38    --prefix=/usr</userinput></screen>
    3739
    3840    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/e2fsprogs-64bit.xml

    rdbc5b02 r991595cf  
    4141<screen os="d"><userinput>PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
    4242CC="gcc ${BUILD64}"  \
    43 ../configure --prefix=/usr --bindir=/bin --with-root-prefix="" \
    44     --enable-elf-shlibs --disable-libblkid --disable-libuuid \
    45     --disable-fsck --disable-uuidd</userinput></screen>
     43../configure \
     44    --prefix=/usr \
     45    --bindir=/bin \
     46    --with-root-prefix="" \
     47    --enable-elf-shlibs \
     48    --disable-libblkid \
     49    --disable-libuuid \
     50    --disable-fsck \
     51    --disable-uuidd</userinput></screen>
    4652
    4753    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/e2fsprogs-n32.xml

    rdbc5b02 r991595cf  
    4242<screen os="d"><userinput>PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
    4343CC="gcc ${BUILDN32}" \
    44 ../configure --prefix=/usr --bindir=/bin --with-root-prefix="" \
    45     --enable-elf-shlibs --disable-libblkid --disable-libuuid \
    46     --disable-fsck --disable-uuidd</userinput></screen>
     44../configure \
     45    --prefix=/usr \
     46    --bindir=/bin \
     47    --with-root-prefix="" \
     48    --enable-elf-shlibs \
     49    --disable-libblkid \
     50    --disable-libuuid \
     51    --disable-fsck \
     52    --disable-uuidd</userinput></screen>
    4753
    4854    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/e2fsprogs.xml

    rdbc5b02 r991595cf  
    3737<screen os="d"><userinput>PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
    3838CC="gcc ${BUILD32}" \
    39 ../configure --prefix=/usr --bindir=/bin --with-root-prefix="" \
    40     --enable-elf-shlibs --disable-libblkid --disable-libuuid \
    41     --disable-fsck --disable-uuidd</userinput></screen>
     39../configure \
     40    --prefix=/usr \
     41    --bindir=/bin \
     42    --with-root-prefix="" \
     43    --enable-elf-shlibs \
     44    --disable-libblkid \
     45    --disable-libuuid \
     46    --disable-fsck \
     47    --disable-uuidd</userinput></screen>
    4248
    4349    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/eudev-n32.xml

    rdbc5b02 r991595cf  
    2929<screen os="b"><userinput>
    3030PKG_CONFIG_PATH=${PKG_CONFIG_PATHN32} \
    31 CC="gcc ${BUILDN32}" ./configure --prefix=/usr --sysconfdir=/etc \
    32     --with-rootprefix="" --libexecdir=/lib32 --enable-split-usr \
    33     --libdir=/usr/lib32 --with-rootlibdir=/lib32 --sbindir=/sbin \
    34     --bindir=/sbin --enable-rule_generator --disable-introspection \
    35     --disable-keymap --disable-gudev --disable-gtk-doc-html --enable-libkmod</userinput></screen>
     31CC="gcc ${BUILDN32}" \
     32./configure \
     33    --prefix=/usr \
     34    --sysconfdir=/etc \
     35    --with-rootprefix="" \
     36    --libexecdir=/lib32 \
     37    --enable-split-usr \
     38    --libdir=/usr/lib32 \
     39    --with-rootlibdir=/lib32 \
     40    --sbindir=/sbin \
     41    --bindir=/sbin \
     42    --enable-rule_generator \
     43    --disable-introspection \
     44    --disable-keymap \
     45    --disable-gudev \
     46    --disable-gtk-doc-html \
     47    --enable-libkmod</userinput></screen>
    3648
    3749    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/expat-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure \
    29     --prefix=/usr --libdir=/usr/lib64</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
     29./configure \
     30    --prefix=/usr \
     31    --libdir=/usr/lib64</userinput></screen>
    3032
    3133  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/expat-n32.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    30     ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib32</userinput></screen>
    3133
    3234  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/expat.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure \
    30     --prefix=/usr --libdir=/usr/lib</userinput></screen>
     29<screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib</userinput></screen>
    3133
    3234  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/file-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29    --libdir=/usr/lib64</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     29./configure \
     30    --prefix=/usr \
     31    --libdir=/usr/lib64</userinput></screen>
    3032
    3133  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/file-n32.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    30    --libdir=/usr/lib32</userinput></screen>
     29<screen os="b"><userinput>CC="gcc ${BUILDN32}" \
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib32</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/file.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure --prefix=/usr</userinput></screen>
     29<screen os="b"><userinput>CC="gcc ${BUILD32}" \
     30./configure \
     31    --prefix=/usr</userinput></screen>
    3032
    3133  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/findutils.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29     --libexecdir=/usr/lib64/locate --localstatedir=/var/lib64/locate</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     29./configure \
     30    --prefix=/usr \
     31    --libexecdir=/usr/lib64/locate \
     32    --localstatedir=/var/lib64/locate</userinput></screen>
    3033
    3134    <variablelist os="c">
  • BOOK/final-system/multilib/flex-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29     --libdir=/usr/lib64 --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --libdir=/usr/lib64 \
     31    --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/flex-n32.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    29    --libdir=/usr/lib32 --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure \
     29    --prefix=/usr \
     30    --libdir=/usr/lib32 \
     31    --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/flex.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure --prefix=/usr \
     29<screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure \
     30    --prefix=/usr \
    3031    --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
    3132
  • BOOK/final-system/multilib/gawk.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29    --libexecdir=/usr/lib64</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --libexecdir=/usr/lib64</userinput></screen>
    3031
    3132    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gcc.xml

    rdbc5b02 r991595cf  
    5353CXX="g++ -isystem /usr/include ${BUILD64}" \
    5454LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64:/usr/lib:/lib" \
    55   ../gcc-&gcc-version;/configure --prefix=/usr --libdir=/usr/lib64 \
    56     --libexecdir=/usr/lib64 --enable-languages=c,c++ \
    57     --with-system-zlib --enable-install-libiberty --disable-bootstrap</userinput></screen>
     55../gcc-&gcc-version;/configure \
     56    --prefix=/usr \
     57    --libdir=/usr/lib64 \
     58    --libexecdir=/usr/lib64 \
     59    --enable-languages=c,c++ \
     60    --with-system-zlib \
     61    --enable-install-libiberty \
     62    --disable-bootstrap</userinput></screen>
    5863
    5964   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gdbm-64bit.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILD64}" \
    30   ./configure --prefix=/usr --enable-libgdbm-compat --libdir=/usr/lib64</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --enable-libgdbm-compat \
     33    --libdir=/usr/lib64</userinput></screen>
    3134
    3235    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gdbm-n32.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILDN32}" \
    30   ./configure --prefix=/usr --enable-libgdbm-compat --libdir=/usr/lib32</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --enable-libgdbm-compat \
     33    --libdir=/usr/lib32</userinput></screen>
    3134
    3235    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gdbm.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILD32}" \
    30   ./configure --prefix=/usr --enable-libgdbm-compat</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --enable-libgdbm-compat</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gettext-64bit.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    29    ./configure --prefix=/usr --libdir=/usr/lib64 \
    30    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
     29./configure \
     30    --prefix=/usr \
     31    --libdir=/usr/lib64 \
     32    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
    3133
    3234   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gettext-n32.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    30    ./configure --prefix=/usr --libdir=/usr/lib32 \
    31    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib32 \
     33    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
    3234
    3335   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gettext.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    30    ./configure --prefix=/usr \
    31    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --docdir=/usr/share/doc/gettext-&gettext-version;</userinput></screen>
    3233
    3334    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/glibc-64bit.xml

    rdbc5b02 r991595cf  
    5353
    5454<screen os="h"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    55     ../glibc-&glibc-version;/configure --prefix=/usr \
    56     --disable-profile --enable-kernel=&glibc-kernel-version; \
    57     --libexecdir=/usr/lib64/glibc --libdir=/usr/lib64 \
    58     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     55../glibc-&glibc-version;/configure \
     56    --prefix=/usr \
     57    --disable-profile \
     58    --enable-kernel=&glibc-kernel-version; \
     59    --libexecdir=/usr/lib64/glibc \
     60    --libdir=/usr/lib64 \
     61    --enable-obsolete-rpc \
     62    --cache-file=config.cache</userinput></screen>
    5963
    6064    <variablelist os="i">
  • BOOK/final-system/multilib/glibc.xml

    rdbc5b02 r991595cf  
    5252
    5353<screen os="h"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    54     ../glibc-&glibc-version;/configure --prefix=/usr \
    55     --disable-profile --enable-kernel=&glibc-kernel-version; \
    56     --libexecdir=/usr/lib/glibc --host=${CLFS_TARGET32} \
     54../glibc-&glibc-version;/configure \
     55    --prefix=/usr \
     56    --disable-profile \
     57    --enable-kernel=&glibc-kernel-version; \
     58    --libexecdir=/usr/lib/glibc \
     59    --host=${CLFS_TARGET32} \
    5760    --enable-obsolete-rpc</userinput></screen>
    5861
  • BOOK/final-system/multilib/gmp-64bit.xml

    rdbc5b02 r991595cf  
    4343CXX="g++ -isystem /usr/include ${BUILD64}" \
    4444LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64 ${BUILD64}" \
    45   ./configure --prefix=/usr \
    46     --libdir=/usr/lib64 --enable-cxx \
     45./configure \
     46    --prefix=/usr \
     47    --libdir=/usr/lib64 \
     48    --enable-cxx \
    4749    --docdir=/usr/share/doc/gmp-&gmp-version;</userinput></screen>
    4850
  • BOOK/final-system/multilib/gmp-n32.xml

    rdbc5b02 r991595cf  
    4545CXX="g++ -isystem /usr/include ${BUILDN32}" \
    4646LDFLAGS="-Wl,-rpath-link,/usr/lib32:/lib32 ${BUILDN32}" \
    47   ABI=n32 ./configure --prefix=/usr \
    48     --libdir=/usr/lib32 --enable-cxx</userinput></screen>
     47  ABI=n32 ./configure \
     48    --prefix=/usr \
     49    --libdir=/usr/lib32 \
     50    --enable-cxx</userinput></screen>
    4951
    5052    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gmp.xml

    rdbc5b02 r991595cf  
    4444CXX="g++ -isystem /usr/include ${BUILD32}" \
    4545LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib ${BUILD32}" \
    46   ABI=32 ./configure --prefix=/usr --enable-cxx</userinput></screen>
     46  ABI=32 ./configure \
     47    --prefix=/usr \
     48    --enable-cxx</userinput></screen>
    4749
    4850    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/grep.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='a'])"/>
    3535
    36 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    37    --bindir=/bin</userinput></screen>
     36<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     37    --prefix=/usr \
     38    --bindir=/bin</userinput></screen>
    3839
    3940    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/groff.xml

    rdbc5b02 r991595cf  
    3131
    3232<screen os="c"><userinput>PAGE=<replaceable>[paper_size]</replaceable> CC="gcc ${BUILD64}" \
    33    CXX="g++ ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64</userinput></screen>
     33CXX="g++ ${BUILD64}" ./configure \
     34    --prefix=/usr \
     35    --libdir=/usr/lib64</userinput></screen>
    3436
    3537    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/gzip.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr --bindir=/bin</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" \
     29./configure \
     30    --prefix=/usr \
     31    --bindir=/bin</userinput></screen>
    2932
    3033    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/isl-64bit.xml

    rdbc5b02 r991595cf  
    2828<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILD64}" \
    2929LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64 ${BUILD64}" \
    30   ./configure --prefix=/usr --libdir=/usr/lib64</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib64</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/isl-n32.xml

    rdbc5b02 r991595cf  
    2929<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILDN32}" \
    3030LDFLAGS="-Wl,-rpath-link,/usr/lib32:/lib32 ${BUILDN32}" \
    31   ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --libdir=/usr/lib32</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/isl.xml

    rdbc5b02 r991595cf  
    2929<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILD32}" \
    3030LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib ${BUILD32}" \
    31   ./configure --prefix=/usr --host=${CLFS_TARGET32}</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --host=${CLFS_TARGET32}</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/kbd.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="b"><userinput>CC="gcc ${BUILD64}" PKG_CONFIG_PATH="/tools/lib64/pkgconfig" \
    29     ./configure --prefix=/usr --disable-vlock --enable-optional-progs</userinput></screen>
     29./configure \
     30    --prefix=/usr \
     31    --disable-vlock \
     32    --enable-optional-progs</userinput></screen>
    3033
    3134    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/kmod-64bit.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="b"><userinput>PKG_CONFIG_PATH=${PKG_CONFIG_PATH64} CC="gcc ${BUILD64}" \
    29   ./configure --prefix=/usr \
    30     --bindir=/bin --sysconfdir=/etc \
    31     --with-rootlibdir=/lib64 --libdir=/usr/lib64 \
    32     --with-zlib --with-xz</userinput></screen>
     29./configure \
     30    --prefix=/usr \
     31    --bindir=/bin \
     32    --sysconfdir=/etc \
     33    --with-rootlibdir=/lib64 \
     34    --libdir=/usr/lib64 \
     35    --with-zlib \
     36    --with-xz</userinput></screen>
    3337
    3438    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/kmod-n32.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>PKG_CONFIG_PATH=${PKG_CONFIG_PATH32} CC="gcc ${BUILD32}" \
    30   ./configure --prefix=/usr \
    31     --bindir=/bin --sysconfdir=/etc \
    32     --with-rootlibdir=/lib32 --libdir=/usr/lib32 \
    33     --with-zlib --with-xz</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --bindir=/bin \
     33    --sysconfdir=/etc \
     34    --with-rootlibdir=/lib32 \
     35    --libdir=/usr/lib32 \
     36    --with-zlib \
     37    --with-xz</userinput></screen>
    3438
    3539    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/kmod.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>PKG_CONFIG_PATH=${PKG_CONFIG_PATH32} CC="gcc ${BUILD32}" \
    30   ./configure --prefix=/usr \
    31     --bindir=/bin --sysconfdir=/etc \
    32     --with-rootlibdir=/lib --libdir=/usr/lib \
    33     --with-zlib --with-xz</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --bindir=/bin \
     33    --sysconfdir=/etc \
     34    --with-rootlibdir=/lib \
     35    --libdir=/usr/lib \
     36    --with-zlib \
     37    --with-xz</userinput></screen>
    3438
    3539    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/less.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
    2930    --sysconfdir=/etc</userinput></screen>
    3031
  • BOOK/final-system/multilib/libpipeline-64bit.xml

    rdbc5b02 r991595cf  
    2929<screen os="b"><userinput>PKG_CONFIG_PATH=/tools/lib64/pkgconfig
    3030    CC="gcc ${BUILD64}" \
    31     ./configure --prefix=/usr --libdir=/usr/lib64</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --libdir=/usr/lib64</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/libpipeline-n32.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILDN32}" \
    30   ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib32</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/libpipeline.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILD32}" \
    30   ./configure --prefix=/usr</userinput></screen>
     30./configure \
     31    --prefix=/usr</userinput></screen>
    3132
    3233    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/libtool-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a1'])"/>
    2727
    28  <screen os="a2"><userinput>echo "lt_cv_sys_dlsearch_path='/lib64 /usr/lib64 /usr/local/lib64 /opt/lib64'" &gt; config.cache</userinput></screen>
     28<screen os="a2"><userinput>echo "lt_cv_sys_dlsearch_path='/lib64 /usr/lib64 /usr/local/lib64 /opt/lib64'" &gt; config.cache</userinput></screen>
    2929
    3030    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    3232    xpointer="xpointer(//*[@os='a'])"/>
    3333
    34 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    35    --libdir=/usr/lib64 --cache-file=config.cache</userinput></screen>
     34<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     35    --prefix=/usr \
     36    --libdir=/usr/lib64 \
     37    --cache-file=config.cache</userinput></screen>
    3638
    3739    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/libtool-n32.xml

    rdbc5b02 r991595cf  
    3333    xpointer="xpointer(//*[@os='a'])"/>
    3434
    35 <screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    36    --libdir=/usr/lib32 --cache-file=config.cache</userinput></screen>
     35<screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure \
     36    --prefix=/usr \
     37    --libdir=/usr/lib32 \
     38    --cache-file=config.cache</userinput></screen>
    3739
    3840    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/libtool.xml

    rdbc5b02 r991595cf  
    3737    xpointer="xpointer(//*[@os='a'])"/>
    3838
    39 <screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure --prefix=/usr \
     39<screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure \
     40    --prefix=/usr \
    4041    --cache-file=config.cache</userinput></screen>
    4142
  • BOOK/final-system/multilib/m4.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr</userinput></screen>
    2930
    3031   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/make.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr</userinput></screen>
    2930
    3031    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/man-db.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="b"><userinput>PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
    29     CC="gcc ${BUILD64}" ./configure --prefix=/usr --libexecdir=/usr/lib64 \
    30     --docdir=/usr/share/doc/man-db-&man-db-version; --sysconfdir=/etc \
    31     --libdir=/usr/lib64 --disable-setuid --with-browser=/usr/bin/lynx \
    32     --with-vgrind=/usr/bin/vgrind --with-grap=/usr/bin/grap</userinput></screen>
     29    CC="gcc ${BUILD64}" \
     30./configure \
     31    --prefix=/usr \
     32    --libexecdir=/usr/lib64 \
     33    --docdir=/usr/share/doc/man-db-&man-db-version; \
     34    --sysconfdir=/etc \
     35    --libdir=/usr/lib64 \
     36    --disable-setuid \
     37    --with-browser=/usr/bin/lynx \
     38    --with-vgrind=/usr/bin/vgrind \
     39    --with-grap=/usr/bin/grap</userinput></screen>
    3340
    3441    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/mpc-64bit.xml

    rdbc5b02 r991595cf  
    2828<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILD64}" \
    2929LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64 ${BUILD64}" \
    30   ./configure --prefix=/usr --libdir=/usr/lib64 \
    31   --docdir=/usr/share/doc/mpc-&mpc-version;</userinput></screen>
     30./configure \
     31    --prefix=/usr \
     32    --libdir=/usr/lib64 \
     33    --docdir=/usr/share/doc/mpc-&mpc-version;</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/mpc-n32.xml

    rdbc5b02 r991595cf  
    2929<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILDN32}" \
    3030LDFLAGS="-Wl,-rpath-link,/usr/lib32:/lib32 ${BUILDN32}" \
    31   ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --libdir=/usr/lib32</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/mpc.xml

    rdbc5b02 r991595cf  
    2929<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILD32}" \
    3030LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib ${BUILD32}" \
    31   ./configure --prefix=/usr --host=${CLFS_TARGET32}</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --host=${CLFS_TARGET32}</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/mpfr-64bit.xml

    rdbc5b02 r991595cf  
    3636<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILD64}" \
    3737    LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64 ${BUILD64}" \
    38     ./configure --prefix=/usr --libdir=/usr/lib64 \
     38./configure \
     39    --prefix=/usr \
     40    --libdir=/usr/lib64 \
    3941    --docdir=/usr/share/doc/mpfr-&mpfr-version;</userinput></screen>
    4042
  • BOOK/final-system/multilib/mpfr-n32.xml

    rdbc5b02 r991595cf  
    3737<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILDN32}" \
    3838    LDFLAGS="-Wl,-rpath-link,/usr/lib32:/lib32 ${BUILDN32}" \
    39     ./configure --prefix=/usr --libdir=/usr/lib32 \
     39./configure \
     40    --prefix=/usr \
     41    --libdir=/usr/lib32 \
    4042    --docdir=/usr/share/doc/mpfr-&mpfr-version;</userinput></screen>
    4143
  • BOOK/final-system/multilib/mpfr.xml

    rdbc5b02 r991595cf  
    3737<screen os="b"><userinput>CC="gcc -isystem /usr/include ${BUILD32}" \
    3838    LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib ${BUILD32}" \
    39     ./configure --prefix=/usr --host=${CLFS_TARGET32} \
     39./configure \
     40    --prefix=/usr \
     41    --host=${CLFS_TARGET32} \
    4042    --docdir=/usr/share/doc/mpfr-&mpfr-version;</userinput></screen>
    4143
  • BOOK/final-system/multilib/ncurses-64bit.xml

    rdbc5b02 r991595cf  
    3535
    3636<screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    37    ./configure --prefix=/usr --libdir=/lib64 \
    38    --with-shared --without-debug --enable-widec \
    39    --with-manpage-format=normal --enable-pc-files \
    40    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
     37./configure \
     38    --prefix=/usr \
     39    --libdir=/lib64 \
     40    --with-shared \
     41    --without-debug \
     42    --enable-widec \
     43    --with-manpage-format=normal \
     44    --enable-pc-files \
     45    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
    4146
    4247    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/ncurses-n32.xml

    rdbc5b02 r991595cf  
    3636
    3737<screen os="b"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    38    ./configure --prefix=/usr --libdir=/lib32 \
    39    --with-shared --without-debug --enable-widec \
    40    --with-manpage-format=normal --enable-pc-files \
    41    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
     38./configure \
     39    --prefix=/usr \
     40    --libdir=/lib32 \
     41    --with-shared \
     42    --without-debug \
     43    --enable-widec \
     44    --with-manpage-format=normal \
     45    --enable-pc-files \
     46    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
    4247
    4348    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/ncurses.xml

    rdbc5b02 r991595cf  
    3636
    3737<screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    38    ./configure --prefix=/usr --libdir=/lib \
    39    --with-shared --without-debug --enable-widec \
    40    --with-manpage-format=normal --enable-pc-files \
    41    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
     38./configure \
     39    --prefix=/usr \
     40    --libdir=/lib \
     41    --with-shared \
     42    --without-debug \
     43    --enable-widec \
     44    --with-manpage-format=normal \
     45    --enable-pc-files \
     46    --with-default-terminfo-dir=/usr/share/terminfo</userinput></screen>
    4247
    4348    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/patch.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr</userinput></screen>
    2930
    3031    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/perl-64bit.xml

    rdbc5b02 r991595cf  
    4646    xpointer="xpointer(//*[@os='a'])"/>
    4747
    48 <screen os="b"><userinput>./configure.gnu --prefix=/usr \
    49    -Dvendorprefix=/usr \
    50    -Dman1dir=/usr/share/man/man1 \
    51    -Dman3dir=/usr/share/man/man3 \
    52    -Dpager="/bin/less -isR" \
    53    -Dlibpth="/usr/local/lib64 /lib64 /usr/lib64" \
    54    -Dcc="gcc ${BUILD64}" \
    55    -Dusethreads -Duseshrplib</userinput></screen>
     48<screen os="b"><userinput>./configure.gnu \
     49    --prefix=/usr \
     50    -Dvendorprefix=/usr \
     51    -Dman1dir=/usr/share/man/man1 \
     52    -Dman3dir=/usr/share/man/man3 \
     53    -Dpager="/bin/less -isR" \
     54    -Dlibpth="/usr/local/lib64 /lib64 /usr/lib64" \
     55    -Dcc="gcc ${BUILD64}" \
     56    -Dusethreads -Duseshrplib</userinput></screen>
    5657
    5758    <variablelist os="m4">
  • BOOK/final-system/multilib/perl-n32.xml

    rdbc5b02 r991595cf  
    4949    xpointer="xpointer(//*[@os='a'])"/>
    5050
    51 <screen os="b"><userinput>./configure.gnu --prefix=/usr \
    52    -Dvendorprefix=/usr \
    53    -Dman1dir=/usr/share/man/man1 \
    54    -Dman3dir=/usr/share/man/man3 \
    55    -Dpager="/bin/less -isR" \
    56    -Dlibpth="/usr/local/lib32 /lib32 /usr/lib32" \
    57    -Dcc="gcc ${BUILDN32}" \
    58    -Dusethreads -Duseshrplib</userinput></screen>
     51<screen os="b"><userinput>./configure.gnu \
     52    --prefix=/usr \
     53    -Dvendorprefix=/usr \
     54    -Dman1dir=/usr/share/man/man1 \
     55    -Dman3dir=/usr/share/man/man3 \
     56    -Dpager="/bin/less -isR" \
     57    -Dlibpth="/usr/local/lib32 /lib32 /usr/lib32" \
     58    -Dcc="gcc ${BUILDN32}" \
     59    -Dusethreads -Duseshrplib</userinput></screen>
    5960
    6061    <variablelist os="m4">
  • BOOK/final-system/multilib/perl.xml

    rdbc5b02 r991595cf  
    4747    xpointer="xpointer(//*[@os='a'])"/>
    4848
    49 <screen os="b"><userinput>./configure.gnu --prefix=/usr \
    50    -Dvendorprefix=/usr \
    51    -Dman1dir=/usr/share/man/man1 \
    52    -Dman3dir=/usr/share/man/man3 \
    53    -Dpager="/bin/less -isR" \
    54    -Dcc="gcc ${BUILD32}" \
    55    -Dusethreads -Duseshrplib</userinput></screen>
     49<screen os="b"><userinput>./configure.gnu \
     50    --prefix=/usr \
     51    -Dvendorprefix=/usr \
     52    -Dman1dir=/usr/share/man/man1 \
     53    -Dman3dir=/usr/share/man/man3 \
     54    -Dpager="/bin/less -isR" \
     55    -Dcc="gcc ${BUILD32}" \
     56    -Dusethreads -Duseshrplib</userinput></screen>
    5657
    5758    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/pkg-config-lite.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29     --docdir=/usr/share/doc/pkg-config-&pkg-config-lite-version; --with-pc-path=/usr/share/pkgconfig</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --docdir=/usr/share/doc/pkg-config-&pkg-config-lite-version; \
     31    --with-pc-path=/usr/share/pkgconfig</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/procps-ng-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr --exec-prefix= \
    29     --libdir=/usr/lib64 --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --exec-prefix= \
     31    --libdir=/usr/lib64 \
     32    --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
    3033    --disable-kill</userinput></screen>
    3134
  • BOOK/final-system/multilib/procps-ng-n32.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure --prefix=/usr --exec-prefix= \
    30     --libdir=/usr/lib32 --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
     29<screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure \
     30    --prefix=/usr \
     31    --exec-prefix= \
     32    --libdir=/usr/lib32 \
     33    --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
    3134    --disable-kill</userinput></screen>
    3235
  • BOOK/final-system/multilib/procps-ng.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure --prefix=/usr --exec-prefix= \
    30     --libdir=/usr/lib --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
     29<screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure \
     30    --prefix=/usr \
     31    --exec-prefix= \
     32    --libdir=/usr/lib \
     33    --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
    3134    --disable-kill</userinput></screen>
    3235
  • BOOK/final-system/multilib/psmisc.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr</userinput></screen>
    2930
    3031    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/readline-64bit.xml

    rdbc5b02 r991595cf  
    3535
    3636<screen os="b"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    37    ./configure --prefix=/usr --libdir=/lib64 \
     37./configure \
     38    --prefix=/usr \
     39    --libdir=/lib64 \
    3840    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    3941
  • BOOK/final-system/multilib/readline-n32.xml

    rdbc5b02 r991595cf  
    3636
    3737<screen os="b"><userinput>CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
    38    ./configure --prefix=/usr --libdir=/lib32 \
     38./configure \
     39    --prefix=/usr \
     40    --libdir=/lib32 \
    3941    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    4042
  • BOOK/final-system/multilib/readline.xml

    rdbc5b02 r991595cf  
    3636
    3737<screen os="b"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    38    ./configure --prefix=/usr --libdir=/lib \
     38./configure \
     39    --prefix=/usr \
     40    --libdir=/lib \
    3941    --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
    4042
  • BOOK/final-system/multilib/sed.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29    --bindir=/bin --docdir=/usr/share/doc/sed-&sed-version;</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --bindir=/bin \
     31    --docdir=/usr/share/doc/sed-&sed-version;</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/shadow.xml

    rdbc5b02 r991595cf  
    3838    xpointer="xpointer(//*[@os='d'])"/>
    3939
    40 <screen os="c"><userinput>CC="gcc ${BUILD64}" ./configure --sysconfdir=/etc</userinput></screen>
     40<screen os="c"><userinput>CC="gcc ${BUILD64}" ./configure \
     41    --sysconfdir=/etc</userinput></screen>
    4142
    4243    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/tar.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="b"><userinput>FORCE_UNSAFE_CONFIGURE=1 CC="gcc ${BUILD64}" \
    29   ./configure --prefix=/usr \
    30     --bindir=/bin --libexecdir=/usr/sbin</userinput></screen>
     29./configure \
     30    --prefix=/usr \
     31    --bindir=/bin \
     32    --libexecdir=/usr/sbin</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/temp-perl.xml

    rdbc5b02 r991595cf  
    3939    xpointer="xpointer(//*[@os='c'])"/>
    4040
    41 <screen os="d"><userinput>./configure.gnu --prefix=/tools  -Dcc="gcc ${BUILD32}"</userinput></screen>
     41<screen os="d"><userinput>./configure.gnu \
     42    --prefix=/tools \
     43    -Dcc="gcc ${BUILD32}"</userinput></screen>
    4244
    4345    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/texinfo.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr</userinput></screen>
    2930
    3031    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/util-linux-64bit-pass1.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="be"><userinput>./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \
    29     --libdir=/lib64 --enable-write --docdir=/usr/share/doc/util-linux-2.52.2</userinput></screen>
     29    --libdir=/lib64 \
     30    --enable-write \
     31    --docdir=/usr/share/doc/util-linux-2.52.2</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/util-linux-64bit.xml

    rdbc5b02 r991595cf  
    3131
    3232<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \
    33     --libdir=/lib64 --enable-write --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
     33    --libdir=/lib64 \
     34    --enable-write \
     35    --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
    3436
    3537    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/util-linux-n32.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure ADJTIME_PATH=/var/lib/hwclcock/adjtime \
    30     --libdir=/lib32 --enable-write --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
     30    --libdir=/lib32 \
     31    --enable-write \
     32    --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/util-linux.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \
    30     --libdir=/lib --enable-write --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
     30    --libdir=/lib \
     31    --enable-write \
     32    --docdir=/usr/share/doc/util-linux-&util-linux-version;</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/vim.xml

    rdbc5b02 r991595cf  
    4747
    4848<screen os="e"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    49   ./configure --prefix=/usr</userinput></screen>
     49./configure \
     50    --prefix=/usr</userinput></screen>
    5051
    5152    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/xz-64bit.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    29     --libdir=/usr/lib64 --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
     28<screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --libdir=/usr/lib64 \
     31    --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/xz-n32.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    30     --libdir=/usr/lib32 --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
     29<screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure \
     30    --prefix=/usr \
     31    --libdir=/usr/lib32 \
     32    --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/xz.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure --prefix=/usr \
     29<screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure \
     30    --prefix=/usr \
    3031    --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
    3132
  • BOOK/final-system/multilib/zlib-64bit.xml

    rdbc5b02 r991595cf  
    2929CXX="g++ -isystem /usr/include ${BUILD64}" \
    3030LDFLAGS="-Wl,-rpath-link,/usr/lib64:/lib64 ${BUILD64}" \
    31   ./configure --prefix=/usr --libdir=/usr/lib64</userinput></screen>
     31./configure \
     32    --prefix=/usr \
     33    --libdir=/usr/lib64</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/zlib-n32.xml

    rdbc5b02 r991595cf  
    3030CXX="g++ -isystem /usr/include ${BUILDN32}" \
    3131LDFLAGS="-Wl,-rpath-link,/usr/lib32:/lib32 ${BUILDN32}" \
    32  ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
     32./configure \
     33    --prefix=/usr \
     34    --libdir=/usr/lib32</userinput></screen>
    3335
    3436    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/zlib.xml

    rdbc5b02 r991595cf  
    3030CXX="g++ -isystem /usr/include ${BUILD32}" \
    3131LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib ${BUILD32}" \
    32   ./configure --prefix=/usr</userinput></screen>
     32./configure \
     33    --prefix=/usr</userinput></screen>
    3334
    3435    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/ppc/hfsutils.xml

    rdbc5b02 r991595cf  
    3535    <para os="a">Prepare Hfsutils for compilation:</para>
    3636
    37 <screen><userinput>./configure --prefix=/usr --mandir=/usr/share/man</userinput></screen>
     37<screen><userinput>./configure \
     38    --prefix=/usr \
     39    --mandir=/usr/share/man</userinput></screen>
    3840
    3941    <para os="c">Compile the package:</para>
  • BOOK/final-system/ppc/parted.xml

    rdbc5b02 r991595cf  
    3030    <para os="a">Prepare Parted for compilation:</para>
    3131
    32 <screen><userinput>./configure --prefix=/usr --disable-device-mapper</userinput></screen>
     32<screen><userinput>./configure \
     33    --prefix=/usr \
     34    --disable-device-mapper</userinput></screen>
    3335
    3436    <variablelist os="b">
  • BOOK/final-system/ppc64-64/glibc.xml

    rdbc5b02 r991595cf  
    6666    xpointer="xpointer(//*[@os='g'])"/>
    6767
    68 <screen os="h"><userinput>CC="gcc ${BUILD64}" ../glibc-&glibc-version;/configure --prefix=/usr \
    69     --disable-profile --enable-kernel=&glibc-kernel-version; \
    70     --libexecdir=/usr/lib/glibc --libdir=/usr/lib \
    71     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     68<screen os="h"><userinput>CC="gcc ${BUILD64}" ../glibc-&glibc-version;/configure \
     69    --prefix=/usr \
     70    --disable-profile \
     71    --enable-kernel=&glibc-kernel-version; \
     72    --libexecdir=/usr/lib/glibc \
     73    --libdir=/usr/lib \
     74    --enable-obsolete-rpc \
     75    --cache-file=config.cache</userinput></screen>
    7276
    7377    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    117121    creating a symlink to the real loader.</para>
    118122
    119     <screen><userinput>ln -sv &glibc-ld-name; /lib/ld.so.1</userinput></screen>
     123<screen><userinput>ln -sv &glibc-ld-name; /lib/ld.so.1</userinput></screen>
    120124
    121125    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    129133    <para>Now we can remove this symlink:</para>
    130134
    131     <screen><userinput>rm -v /lib/ld.so.1</userinput></screen>
     135<screen><userinput>rm -v /lib/ld.so.1</userinput></screen>
    132136
    133137    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/ppc64/glibc-64bit.xml

    rdbc5b02 r991595cf  
    5252
    5353<screen os="h"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    54     ../glibc-&glibc-version;/configure --prefix=/usr \
    55     --disable-profile --enable-kernel=&glibc-kernel-version; \
    56     --libexecdir=/usr/lib64/glibc --libdir=/usr/lib64 \
    57     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     54../glibc-&glibc-version;/configure \
     55    --prefix=/usr \
     56    --disable-profile \
     57    --enable-kernel=&glibc-kernel-version; \
     58    --libexecdir=/usr/lib64/glibc \
     59    --libdir=/usr/lib64 \
     60    --enable-obsolete-rpc \
     61    --cache-file=config.cache</userinput></screen>
    5862
    5963    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/ppc64/glibc.xml

    rdbc5b02 r991595cf  
    6868
    6969<screen os="h"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    70     ../glibc-&glibc-version;/configure --prefix=/usr \
    71     --disable-profile --enable-kernel=&glibc-kernel-version; \
    72     --libexecdir=/usr/lib/glibc --host=${CLFS_TARGET32} \
     70../glibc-&glibc-version;/configure \
     71    --prefix=/usr \
     72    --disable-profile \
     73    --enable-kernel=&glibc-kernel-version; \
     74    --libexecdir=/usr/lib/glibc \
     75    --host=${CLFS_TARGET32} \
    7376    --enable-obsolete-rpc</userinput></screen>
    7477
  • BOOK/final-system/ppc64/hfsutils.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='a'])"/>
    3535
    36 <screen><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr --mandir=/usr/share/man</userinput></screen>
     36<screen><userinput>CC="gcc ${BUILD64}" ./configure \
     37    --prefix=/usr \
     38    --mandir=/usr/share/man</userinput></screen>
    3739
    3840    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/ppc64/parted.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
     28<screen><userinput>CC="gcc ${BUILD64}" ./configure \
     29    --prefix=/usr \
     30    --libdir=/usr/lib64 \
    2931    --disable-device-mapper</userinput></screen>
    3032
  • BOOK/final-system/sparc64-64/glibc.xml

    rdbc5b02 r991595cf  
    7474    xpointer="xpointer(//*[@os='g'])"/>
    7575
    76 <screen os="h"><userinput>CC="gcc ${BUILD64}" ../glibc-&glibc-version;/configure --prefix=/usr \
    77     --disable-profile --enable-kernel=&glibc-kernel-version; \
    78     --libexecdir=/usr/lib/glibc --libdir=/usr/lib \
    79     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     76<screen os="h"><userinput>CC="gcc ${BUILD64}" \
     77../glibc-&glibc-version;/configure \
     78    --prefix=/usr \
     79    --disable-profile \
     80    --enable-kernel=&glibc-kernel-version; \
     81    --libexecdir=/usr/lib/glibc \
     82    --libdir=/usr/lib \
     83    --enable-obsolete-rpc \
     84    --cache-file=config.cache</userinput></screen>
    8085
    8186    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/sparc64/glibc-64bit.xml

    rdbc5b02 r991595cf  
    6060
    6161<screen os="h"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    62     ../glibc-&glibc-version;/configure --prefix=/usr \
    63     --disable-profile --enable-kernel=&glibc-kernel-version; \
    64     --libexecdir=/usr/lib64/glibc --libdir=/usr/lib64 \
    65     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     62../glibc-&glibc-version;/configure \
     63    --prefix=/usr \
     64    --disable-profile \
     65    --enable-kernel=&glibc-kernel-version; \
     66    --libexecdir=/usr/lib64/glibc \
     67    --libdir=/usr/lib64 \
     68    --enable-obsolete-rpc \
     69    --cache-file=config.cache</userinput></screen>
    6670
    6771    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/x86/glibc.xml

    rdbc5b02 r991595cf  
    5050    xpointer="xpointer(//*[@os='g'])"/>
    5151
    52 <screen os="h"><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
    53     --disable-profile --enable-kernel=&glibc-kernel-version; --libexecdir=/usr/lib/glibc \
     52<screen os="h"><userinput>../glibc-&glibc-version;/configure \
     53    --prefix=/usr \
     54    --disable-profile \
     55    --enable-kernel=&glibc-kernel-version; \
     56    --libexecdir=/usr/lib/glibc \
    5457    --enable-obsolete-rpc</userinput></screen>
    5558
  • BOOK/final-system/x86/grub.xml

    rdbc5b02 r991595cf  
    4545    <para os="a">Prepare GRUB for compilation:</para>
    4646
    47 <screen os="b"><userinput>./configure --prefix=/usr \
    48     --sysconfdir=/etc --disable-werror</userinput></screen>
     47<screen os="b"><userinput>./configure \
     48    --prefix=/usr \
     49    --sysconfdir=/etc \
     50    --disable-werror</userinput></screen>
    4951
    5052    <para os="c">Compile the package:</para>
  • BOOK/final-system/x86_64-64/glibc.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='l2'])"/>
    3535
    36     <para os="l3">Modify the <command>ldd</command> rewrite script to remove
    37     <filename class="directory">lib64</filename> and
    38     <filename class="directory">libx32</filename> from RTLDLIST.</para>
     36    <para os="l3">Modify the <command>ldd</command> rewrite script to prevent
     37    it from adding <filename class="directory">lib64</filename> and
     38    <filename class="directory">libx32</filename> to its list of linker
     39    search locations:</para>
    3940
    4041<screen os="l4"><userinput>sed -i '/RTLDLIST/d' sysdeps/unix/sysv/linux/*/ldd-rewrite.sed</userinput></screen>
     
    6162    xpointer="xpointer(//*[@os='g'])"/>
    6263
    63 <screen os="h"><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
    64     --disable-profile --enable-kernel=&glibc-kernel-version; \
    65     --libexecdir=/usr/lib/glibc --libdir=/usr/lib \
    66     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     64<screen os="h"><userinput>../glibc-&glibc-version;/configure \
     65    --prefix=/usr \
     66    --disable-profile \
     67    --enable-kernel=&glibc-kernel-version; \
     68    --libexecdir=/usr/lib/glibc \
     69    --libdir=/usr/lib \
     70    --enable-obsolete-rpc \
     71    --cache-file=config.cache</userinput></screen>
    6772
    6873    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/x86_64/glibc-64bit.xml

    rdbc5b02 r991595cf  
    5555
    5656<screen os="h"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
    57     ../glibc-&glibc-version;/configure --prefix=/usr \
    58     --disable-profile --enable-kernel=&glibc-kernel-version; \
    59     --libexecdir=/usr/lib64/glibc --libdir=/usr/lib64 \
    60     --enable-obsolete-rpc --cache-file=config.cache</userinput></screen>
     57../glibc-&glibc-version;/configure \
     58    --prefix=/usr \
     59    --disable-profile \
     60    --enable-kernel=&glibc-kernel-version; \
     61    --libexecdir=/usr/lib64/glibc \
     62    --libdir=/usr/lib64 \
     63    --enable-obsolete-rpc \
     64    --cache-file=config.cache</userinput></screen>
    6165
    6266    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/general.ent

    rdbc5b02 r991595cf  
    33<!ENTITY month "12"> <!-- Use two digits -->
    44<!ENTITY month_name "December">
    5 <!ENTITY day "10"> <!-- Use two digits -->
     5<!ENTITY day "13"> <!-- Use two digits -->
    66<!ENTITY year "2015"> <!-- Use four digits -->
    77
  • BOOK/introduction/common/changelog.xml

    rdbc5b02 r991595cf  
    3838
    3939    <listitem>
     40      <para>13 December 2015</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[Chris] - Edited configure options to have one per line. Fixes
     44          ticket <ulink url="&clfs-ticket-root;1091">#1091.</ulink></para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
     49    <listitem>
    4050      <para>05 December 2015</para>
    4151      <itemizedlist>
  • BOOK/network/common/dhcpcd.xml

    rdbc5b02 r991595cf  
    3131    <para os="b">Prepare DHCPCD for compilation:</para>
    3232
    33 <screen os="c" role="nodump"><userinput>./configure --prefix=/usr --sbindir=/sbin \
    34     --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib/dhcpcd</userinput></screen>
     33<screen os="c" role="nodump"><userinput>./configure \
     34    --prefix=/usr \
     35    --sbindir=/sbin \
     36    --sysconfdir=/etc \
     37    --dbdir=/var/lib/dhcpcd \
     38    --libexecdir=/usr/lib/dhcpcd</userinput></screen>
    3539
    3640    <para os="d">Compile the package:</para>
  • BOOK/network/common/hosts.xml

    rdbc5b02 r991595cf  
    2727  <filename>/etc/hosts</filename> file. The syntax is:</para>
    2828
    29   <screen>&lt;IP address&gt; myhost.example.org aliases</screen>
     29<screen>&lt;IP address&gt; myhost.example.org aliases</screen>
    3030
    3131  <para>Unless the computer is to be visible to the Internet (i.e.,
  • BOOK/network/multilib/dhcpcd.xml

    rdbc5b02 r991595cf  
    3030    xpointer="xpointer(//*[@os='b'])"/>
    3131
    32 <screen os="c" role="nodump"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr --sbindir=/sbin \
    33     --sysconfdir=/etc --dbdir=/var/lib/dhcpcd --libexecdir=/usr/lib64/dhcpcd \
     32<screen os="c" role="nodump"><userinput>CC="gcc ${BUILD64}" ./configure \
     33    --prefix=/usr \
     34    --sbindir=/sbin \
     35    --sysconfdir=/etc \
     36    --dbdir=/var/lib/dhcpcd \
     37    --libexecdir=/usr/lib64/dhcpcd \
    3438    --libdir=/usr/lib64</userinput></screen>
    3539
  • BOOK/temp-system/64/binutils.xml

    rdbc5b02 r991595cf  
    4545
    4646<screen os="j"><userinput>../binutils-&binutils-dir;/configure \
    47     --prefix=/tools --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    48     --target=${CLFS_TARGET} --with-lib-path=/tools/lib --disable-nls \
    49     --enable-shared --enable-64-bit-bfd --disable-multilib \
    50     --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     47    --prefix=/tools \
     48    --build=${CLFS_HOST} \
     49    --host=${CLFS_TARGET} \
     50    --target=${CLFS_TARGET} \
     51    --with-lib-path=/tools/lib \
     52    --disable-nls \
     53    --enable-shared \
     54    --enable-64-bit-bfd \
     55    --disable-multilib \
     56    --enable-gold=yes \
     57    --enable-plugins \
     58    --enable-threads</userinput></screen>
    5159
    5260    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/64/gcc.xml

    rdbc5b02 r991595cf  
    7171    xpointer="xpointer(//*[@os='h'])"/>
    7272
    73 <screen os="ck"><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
    74     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
    75     --with-local-prefix=/tools --disable-multilib \
    76     --enable-languages=c,c++ --with-system-zlib \
     73<screen os="ck"><userinput>../gcc-&gcc-version;/configure \
     74    --prefix=/tools \
     75    --build=${CLFS_HOST} \
     76    --host=${CLFS_TARGET} \
     77    --target=${CLFS_TARGET} \
     78    --with-local-prefix=/tools \
     79    --disable-multilib \
     80    --enable-languages=c,c++ \
     81    --with-system-zlib \
    7782    --with-native-system-header-dir=/tools/include \
    78     --disable-libssp --enable-install-libiberty</userinput></screen>
     83    --disable-libssp \
     84    --enable-install-libiberty</userinput></screen>
    7985
    8086    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/common/bash.xml

    rdbc5b02 r991595cf  
    5858    xpointer="xpointer(//*[@os='a'])"/>
    5959
    60 <screen os="b"><userinput>./configure --prefix=/tools \
    61     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    62     --without-bash-malloc --cache-file=config.cache</userinput></screen>
     60<screen os="b"><userinput>./configure \
     61    --prefix=/tools \
     62    --build=${CLFS_HOST} \
     63    --host=${CLFS_TARGET} \
     64    --without-bash-malloc \
     65    --cache-file=config.cache</userinput></screen>
    6366
    6467    <variablelist os="c">
  • BOOK/temp-system/common/binutils.xml

    rdbc5b02 r991595cf  
    4545    xpointer="xpointer(//*[@os='i'])"/>
    4646
    47 <screen os="j"><userinput>../binutils-&binutils-dir;/configure --prefix=/tools \
    48     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
    49     --with-lib-path=/tools/lib --disable-nls --enable-shared \
    50     --disable-multilib --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     47<screen os="j"><userinput>../binutils-&binutils-dir;/configure \
     48    --prefix=/tools \
     49    --build=${CLFS_HOST} \
     50    --host=${CLFS_TARGET} \
     51    --target=${CLFS_TARGET} \
     52    --with-lib-path=/tools/lib \
     53    --disable-nls \
     54    --enable-shared \
     55    --disable-multilib \
     56    --enable-gold=yes \
     57    --enable-plugins \
     58    --enable-threads</userinput></screen>
    5159
    5260    <variablelist os="k">
  • BOOK/temp-system/common/bison.xml

    rdbc5b02 r991595cf  
    3232    xpointer="xpointer(//*[@os='a'])"/>
    3333
    34 <screen os="ca"><userinput>M4=m4 ./configure --prefix=/tools \
    35     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     34<screen os="ca"><userinput>M4=m4 \
     35./configure \
     36    --prefix=/tools \
     37    --build=${CLFS_HOST} \
     38    --host=${CLFS_TARGET} \
    3639    --cache-file=config.cache</userinput></screen>
    3740
  • BOOK/temp-system/common/check.xml

    rdbc5b02 r991595cf  
    3131    <para os="c">Prepare Check for compilation:</para>
    3232
    33 <screen os="d"><userinput>./configure --prefix=/tools \
    34     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     33<screen os="d"><userinput>./configure \
     34    --prefix=/tools \
     35    --build=${CLFS_HOST} \
     36    --host=${CLFS_TARGET}</userinput></screen>
    3537
    3638    <para os="f">Build the package:</para>
  • BOOK/temp-system/common/coreutils.xml

    rdbc5b02 r991595cf  
    3939    <para os="bd">Prepare Coreutils for compilation:</para>
    4040
    41 <screen os="be"><userinput>./configure --prefix=/tools \
    42     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    43     --enable-install-program=hostname --cache-file=config.cache</userinput></screen>
     41<screen os="be"><userinput>./configure \
     42    --prefix=/tools \
     43    --build=${CLFS_HOST} \
     44    --host=${CLFS_TARGET} \
     45    --enable-install-program=hostname \
     46    --cache-file=config.cache</userinput></screen>
    4447
    4548    <variablelist os="be1">
  • BOOK/temp-system/common/diffutils.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare Diffutils for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/file.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare File for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/findutils.xml

    rdbc5b02 r991595cf  
    3333    xpointer="xpointer(//*[@os='a'])"/>
    3434
    35 <screen os="ac"><userinput>./configure --prefix=/tools \
    36     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     35<screen os="ac"><userinput>./configure \
     36    --prefix=/tools \
     37    --build=${CLFS_HOST} \
     38    --host=${CLFS_TARGET} \
    3739    --cache-file=config.cache</userinput></screen>
    3840
  • BOOK/temp-system/common/flex.xml

    rdbc5b02 r991595cf  
    3636    xpointer="xpointer(//*[@os='a'])"/>
    3737
    38 <screen os="cb"><userinput>M4=m4 ./configure --prefix=/tools \
    39     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     38<screen os="cb"><userinput>M4=m4 ./configure \
     39    --prefix=/tools \
     40    --build=${CLFS_HOST} \
     41    --host=${CLFS_TARGET} \
    4042    --cache-file=config.cache</userinput></screen>
    4143
  • BOOK/temp-system/common/gawk.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare Gawk for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/gcc.xml

    rdbc5b02 r991595cf  
    6969    xpointer="xpointer(//*[@os='h'])"/>
    7070
    71 <screen os="ck"><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
    72     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
    73     --with-local-prefix=/tools --disable-multilib \
    74     --enable-languages=c,c++ --with-system-zlib \
     71<screen os="ck"><userinput>../gcc-&gcc-version;/configure \
     72    --prefix=/tools \
     73    --build=${CLFS_HOST} \
     74    --host=${CLFS_TARGET} \
     75    --target=${CLFS_TARGET} \
     76    --with-local-prefix=/tools \
     77    --disable-multilib \
     78    --enable-languages=c,c++ \
     79    --with-system-zlib \
    7580    --with-native-system-header-dir=/tools/include \
    76     --disable-libssp --enable-install-libiberty</userinput></screen>
     81    --disable-libssp \
     82    --enable-install-libiberty</userinput></screen>
    7783
    7884    <variablelist os="cl">
  • BOOK/temp-system/common/gettext.xml

    rdbc5b02 r991595cf  
    3737    <para os="d">Prepare Gettext for compilation:</para>
    3838
    39 <screen os="e"><userinput>EMACS="no" ./configure --prefix=/tools \
    40     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    41     --disable-shared --cache-file=config.cache</userinput></screen>
     39<screen os="e"><userinput>EMACS="no" \
     40./configure \
     41    --prefix=/tools \
     42    --build=${CLFS_HOST} \
     43    --host=${CLFS_TARGET} \
     44    --disable-shared</userinput></screen>
    4245
    4346<variablelist os="f">
  • BOOK/temp-system/common/gmp.xml

    rdbc5b02 r991595cf  
    3939    <para os="b">Prepare GMP for compilation:</para>
    4040
    41 <screen os="c"><userinput>CC_FOR_BUILD=gcc ./configure --prefix=/tools \
    42     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     41<screen os="c"><userinput>CC_FOR_BUILD=gcc \
     42./configure \
     43    --prefix=/tools \
     44    --build=${CLFS_HOST} \
     45    --host=${CLFS_TARGET} \
    4346    --enable-cxx</userinput></screen>
    4447
  • BOOK/temp-system/common/grep.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="ca"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     29<screen os="ca"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET} \
    3133    --without-included-regex</userinput></screen>
    3234
  • BOOK/temp-system/common/gzip.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET}</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/common/isl.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare ISL for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/m4.xml

    rdbc5b02 r991595cf  
    4040    <para os="a">Prepare M4 for compilation:</para>
    4141
    42 <screen os="b"><userinput>./configure --prefix=/tools \
    43     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     42<screen os="b"><userinput>./configure \
     43    --prefix=/tools \
     44    --build=${CLFS_HOST} \
     45    --host=${CLFS_TARGET} \
    4446    --cache-file=config.cache</userinput></screen>
    4547
  • BOOK/temp-system/common/make.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="aa"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     29<screen os="aa"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET}</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/common/mpc.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare MPC for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/mpfr.xml

    rdbc5b02 r991595cf  
    3333    <para os="a">Prepare MPFR for compilation:</para>
    3434
    35 <screen os="b"><userinput>./configure --prefix=/tools \
    36     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     35<screen os="b"><userinput>./configure \
     36    --prefix=/tools \
     37    --build=${CLFS_HOST} \
     38    --host=${CLFS_TARGET}</userinput></screen>
    3739
    3840    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/ncurses.xml

    rdbc5b02 r991595cf  
    3434    xpointer="xpointer(//*[@os='a'])"/>
    3535
    36 <screen os="b"><userinput>./configure --prefix=/tools --with-shared \
    37     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    38     --without-debug --without-ada \
    39     --enable-overwrite --with-build-cc=gcc</userinput></screen>
     36<screen os="b"><userinput>./configure \
     37    --prefix=/tools \
     38    --with-shared \
     39    --build=${CLFS_HOST} \
     40    --host=${CLFS_TARGET} \
     41    --without-debug \
     42    --without-ada \
     43    --enable-overwrite \
     44    --with-build-cc=gcc</userinput></screen>
    4045
    4146    <variablelist os="c">
  • BOOK/temp-system/common/patch.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare Patch for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/sed.xml

    rdbc5b02 r991595cf  
    2525    <para os="a">Prepare Sed for compilation:</para>
    2626
    27 <screen os="b"><userinput>./configure --prefix=/tools \
    28     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     27<screen os="b"><userinput>./configure \
     28    --prefix=/tools \
     29    --build=${CLFS_HOST} \
     30    --host=${CLFS_TARGET}</userinput></screen>
    2931
    3032    <para os="c">Compile the package:</para>
  • BOOK/temp-system/common/tar.xml

    rdbc5b02 r991595cf  
    4242    xpointer="xpointer(//*[@os='a'])"/>
    4343
    44 <screen os="b"><userinput>./configure --prefix=/tools \
    45     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     44<screen os="b"><userinput>./configure \
     45    --prefix=/tools \
     46    --build=${CLFS_HOST} \
     47    --host=${CLFS_TARGET} \
    4648    --cache-file=config.cache</userinput></screen>
    4749
  • BOOK/temp-system/common/texinfo.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>PERL=/usr/bin/perl ./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     29<screen os="b"><userinput>PERL=/usr/bin/perl \
     30./configure \
     31    --prefix=/tools \
     32    --build=${CLFS_HOST} \
     33    --host=${CLFS_TARGET}</userinput></screen>
    3134
    3235    <variablelist os="ba">
  • BOOK/temp-system/common/util-linux.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    31     --disable-makeinstall-chown --disable-makeinstall-setuid \
     29<screen os="b"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET} \
     33    --disable-makeinstall-chown \
     34    --disable-makeinstall-setuid \
    3235    --without-python</userinput></screen>
    3336
  • BOOK/temp-system/common/vim.xml

    rdbc5b02 r991595cf  
    6464    xpointer="xpointer(//*[@os='d'])"/>
    6565
    66 <screen os="e"><userinput>./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    67     --prefix=/tools --enable-gui=no --disable-gtktest --disable-xim \
    68     --disable-gpm --without-x --disable-netbeans --with-tlib=ncurses</userinput></screen>
     66<screen os="e"><userinput>./configure \
     67    --build=${CLFS_HOST} \
     68    --host=${CLFS_TARGET} \
     69    --prefix=/tools \
     70    --enable-gui=no \
     71    --disable-gtktest \
     72    --disable-xim \
     73    --disable-gpm \
     74    --without-x \
     75    --disable-netbeans \
     76    --with-tlib=ncurses</userinput></screen>
    6977
    7078    <variablelist os="f">
  • BOOK/temp-system/common/xz.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="cb"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     29<screen os="cb"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET}</userinput></screen>
    3133
    3234    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/common/zlib.xml

    rdbc5b02 r991595cf  
    3131    xpointer="xpointer(//*[@os='a'])"/>
    3232
    33 <screen os="b"><userinput>./configure --prefix=/tools</userinput></screen>
     33<screen os="b"><userinput>./configure \
     34    --prefix=/tools</userinput></screen>
    3435
    3536    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/mips64-64/gcc.xml

    rdbc5b02 r991595cf  
    7171    xpointer="xpointer(//*[@os='h'])"/>
    7272
    73 <screen os="ck"><userinput>../gcc-&gcc-version;/configure --prefix=/tools --disable-multilib \
    74     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
    75     --with-local-prefix=/tools --enable-languages=c,c++ --with-system-zlib \
     73<screen os="ck"><userinput>../gcc-&gcc-version;/configure \
     74    --prefix=/tools \
     75    --disable-multilib \
     76    --build=${CLFS_HOST} \
     77    --host=${CLFS_TARGET} \
     78    --target=${CLFS_TARGET} \
     79    --with-local-prefix=/tools \
     80    --enable-languages=c,c++ \
     81    --with-system-zlib \
    7682    --with-native-system-header-dir=/tools/include \
    7783    --enable-install-libiberty</userinput></screen>
  • BOOK/temp-system/mips64/gcc.xml

    rdbc5b02 r991595cf  
    7171    xpointer="xpointer(//*[@os='h'])"/>
    7272
    73 <screen os="dc"><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
    74     --libdir=/tools/lib64 --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    75     --target=${CLFS_TARGET} --with-local-prefix=/tools \
    76     --enable-languages=c,c++ --with-abi=64 --with-system-zlib \
     73<screen os="dc"><userinput>../gcc-&gcc-version;/configure \
     74    --prefix=/tools \
     75    --libdir=/tools/lib64 \
     76    --build=${CLFS_HOST} \
     77    --host=${CLFS_TARGET} \
     78    --target=${CLFS_TARGET} \
     79    --with-local-prefix=/tools \
     80    --enable-languages=c,c++ \
     81    --with-abi=64 \
     82    --with-system-zlib \
    7783    --with-native-system-header-dir=/tools/include \
    7884    --enable-install-libiberty</userinput></screen>
  • BOOK/temp-system/multilib/binutils.xml

    rdbc5b02 r991595cf  
    4545
    4646<screen os="j"><userinput>../binutils-&binutils-dir;/configure \
    47     --prefix=/tools --libdir=/tools/lib64 --with-lib-path=/tools/lib64:/tools/lib \
    48     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
    49     --disable-nls --enable-shared --enable-64-bit-bfd \
    50     --enable-gold=yes --enable-plugins --enable-threads</userinput></screen>
     47    --prefix=/tools \
     48    --libdir=/tools/lib64 \
     49    --with-lib-path=/tools/lib64:/tools/lib \
     50    --build=${CLFS_HOST} \
     51    --host=${CLFS_TARGET} \
     52    --target=${CLFS_TARGET} \
     53    --disable-nls \
     54    --enable-shared \
     55    --enable-64-bit-bfd \
     56    --enable-gold=yes \
     57    --enable-plugins \
     58    --enable-threads</userinput></screen>
    5159
    5260    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/check.xml

    rdbc5b02 r991595cf  
    3030    xpointer="xpointer(//*[@os='c'])"/>
    3131
    32 <screen os="d"><userinput>./configure --prefix=/tools \
    33     --build=${CLFS_HOST} --host=${CLFS_TARGET}  --libdir=/tools/lib64</userinput></screen>
     32<screen os="d"><userinput>./configure \
     33    --prefix=/tools \
     34    --build=${CLFS_HOST} \
     35    --host=${CLFS_TARGET} \
     36    --libdir=/tools/lib64</userinput></screen>
    3437
    3538    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/file.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/tools \
    30    --libdir=/tools/lib64 --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
     29<screen os="b"><userinput>./configure \
     30    --prefix=/tools \
     31    --libdir=/tools/lib64 \
     32    --build=${CLFS_HOST} \
     33    --host=${CLFS_TARGET}</userinput></screen>
    3134
    3235  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/flex.xml

    rdbc5b02 r991595cf  
    3535    xpointer="xpointer(//*[@os='a'])"/>
    3636
    37 <screen os="cb"><userinput>M4=m4 ./configure --prefix=/tools \
    38     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     37<screen os="cb"><userinput>M4=m4 \
     38./configure \
     39    --prefix=/tools \
     40    --build=${CLFS_HOST} \
     41    --host=${CLFS_TARGET} \
    3942    --cache-file=config.cache</userinput></screen>
    4043
  • BOOK/temp-system/multilib/gcc.xml

    rdbc5b02 r991595cf  
    7171    xpointer="xpointer(//*[@os='h'])"/>
    7272
    73 <screen os="dc"><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
    74     --libdir=/tools/lib64 --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    75     --target=${CLFS_TARGET} --with-local-prefix=/tools \
    76     --enable-languages=c,c++ --with-system-zlib \
     73<screen os="dc"><userinput>../gcc-&gcc-version;/configure \
     74    --prefix=/tools \
     75    --libdir=/tools/lib64 \
     76    --build=${CLFS_HOST} \
     77    --host=${CLFS_TARGET} \
     78    --target=${CLFS_TARGET} \
     79    --with-local-prefix=/tools \
     80    --enable-languages=c,c++ \
     81    --with-system-zlib \
    7782    --with-native-system-header-dir=/tools/include \
    78     --disable-libssp --enable-install-libiberty</userinput></screen>
     83    --disable-libssp \
     84    --enable-install-libiberty</userinput></screen>
    7985
    8086    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/gmp.xml

    rdbc5b02 r991595cf  
    4141    xpointer="xpointer(//*[@os='b'])"/>
    4242
    43 <screen os="c"><userinput>CC_FOR_BUILD=gcc ./configure --prefix=/tools \
    44     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    45     --libdir=/tools/lib64 --enable-cxx</userinput></screen>
     43<screen os="c"><userinput>CC_FOR_BUILD=gcc \
     44./configure \
     45    --prefix=/tools \
     46    --build=${CLFS_HOST} \
     47    --host=${CLFS_TARGET} \
     48    --libdir=/tools/lib64 \
     49    --enable-cxx</userinput></screen>
    4650
    4751    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/isl.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     29<screen os="b"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET} \
    3133    --libdir=/tools/lib64</userinput></screen>
    3234
  • BOOK/temp-system/multilib/mpc.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="b"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     29<screen os="b"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET} \
    3133    --libdir=/tools/lib64</userinput></screen>
    3234
  • BOOK/temp-system/multilib/mpfr.xml

    rdbc5b02 r991595cf  
    3535    xpointer="xpointer(//*[@os='a'])"/>
    3636
    37 <screen os="b"><userinput>./configure --prefix=/tools \
    38     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     37<screen os="b"><userinput>./configure \
     38    --prefix=/tools \
     39    --build=${CLFS_HOST} \
     40    --host=${CLFS_TARGET} \
    3941    --libdir=/tools/lib64</userinput></screen>
    4042
  • BOOK/temp-system/multilib/ncurses.xml

    rdbc5b02 r991595cf  
    3939    xpointer="xpointer(//*[@os='a'])"/>
    4040
    41 <screen os="b"><userinput>./configure --prefix=/tools --with-shared \
    42    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    43    --without-debug --without-ada \
    44    --enable-overwrite --with-build-cc=gcc \
    45    --libdir=/tools/lib64</userinput></screen>
     41<screen os="b"><userinput>./configure \
     42    --prefix=/tools \
     43    --with-shared \
     44    --build=${CLFS_HOST} \
     45    --host=${CLFS_TARGET} \
     46    --without-debug \
     47    --without-ada \
     48    --enable-overwrite \
     49    --with-build-cc=gcc \
     50    --libdir=/tools/lib64</userinput></screen>
    4651
    4752    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/util-linux.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="be"><userinput>./configure --prefix=/tools \
    30     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    31     --libdir='${prefix}'/lib64 --disable-makeinstall-chown \
    32     --disable-makeinstall-setuid --without-python</userinput></screen>
     29<screen os="be"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET} \
     33    --libdir='${prefix}'/lib64 \
     34    --disable-makeinstall-chown \
     35    --disable-makeinstall-setuid \
     36    --without-python</userinput></screen>
    3337
    3438    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/xz.xml

    rdbc5b02 r991595cf  
    2727    xpointer="xpointer(//*[@os='a'])"/>
    2828
    29 <screen os="cb"><userinput>./configure --prefix=/tools \
    30      --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    31      --libdir=/tools/lib64</userinput></screen>
     29<screen os="cb"><userinput>./configure \
     30    --prefix=/tools \
     31    --build=${CLFS_HOST} \
     32    --host=${CLFS_TARGET} \
     33    --libdir=/tools/lib64</userinput></screen>
    3234
    3335    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/multilib/zlib.xml

    rdbc5b02 r991595cf  
    3131    xpointer="xpointer(//*[@os='a'])"/>
    3232
    33 <screen os="b"><userinput>./configure --prefix=/tools --libdir=/tools/lib64</userinput></screen>
     33<screen os="b"><userinput>./configure \
     34    --prefix=/tools \
     35    --libdir=/tools/lib64</userinput></screen>
    3436
    3537    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/temp-system/ppc64-64/gcc.xml

    rdbc5b02 r991595cf  
    7171    xpointer="xpointer(//*[@os='h'])"/>
    7272
    73 <screen os="ck"><userinput>../gcc-&gcc-version;/configure --prefix=/tools --disable-multilib \
    74     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
    75     --with-local-prefix=/tools --enable-languages=c,c++ --with-system-zlib \
     73<screen os="ck"><userinput>../gcc-&gcc-version;/configure \
     74    --prefix=/tools \
     75    --disable-multilib \
     76    --build=${CLFS_HOST} \
     77    --host=${CLFS_TARGET} \
     78    --target=${CLFS_TARGET} \
     79    --with-local-prefix=/tools \
     80    --enable-languages=c,c++ \
     81    --with-system-zlib \
    7682    --with-native-system-header-dir=/tools/include \
    7783    --enable-install-libiberty</userinput></screen>
  • BOOK/testsuite-tools/common/dejagnu.xml

    rdbc5b02 r991595cf  
    2828    <para os="a">Prepare DejaGNU for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/tools</userinput></screen>
     30<screen os="b"><userinput>./configure \
     31    --prefix=/tools</userinput></screen>
    3132
    3233    <para os="c">Build and install the package:</para>
  • BOOK/testsuite-tools/common/expect.xml

    rdbc5b02 r991595cf  
    2828    <para os="c">Now prepare Expect for compilation:</para>
    2929
    30 <screen os="d"><userinput>./configure --prefix=/tools --with-tcl=/tools/lib \
     30<screen os="d"><userinput>./configure \
     31    --prefix=/tools \
     32    --with-tcl=/tools/lib \
    3133    --with-tclinclude=/tools/include</userinput></screen>
    3234
  • BOOK/testsuite-tools/common/tcl.xml

    rdbc5b02 r991595cf  
    2828
    2929<screen><userinput>cd unix
    30 ./configure --prefix=/tools</userinput></screen>
     30./configure \
     31    --prefix=/tools</userinput></screen>
    3132
    3233    <para os="c">Build the package:</para>
  • BOOK/testsuite-tools/multilib/expect.xml

    rdbc5b02 r991595cf  
    2626    xpointer="xpointer(//*[@os='c'])"/>
    2727
    28 <screen os="d"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/tools \
    29    --with-tcl=/tools/lib64 --with-tclinclude=/tools/include  \
    30    --libdir=/tools/lib64</userinput></screen>
     28<screen os="d"><userinput>CC="gcc ${BUILD64}" \
     29./configure \
     30    --prefix=/tools \
     31    --with-tcl=/tools/lib64 \
     32    --with-tclinclude=/tools/include  \
     33    --libdir=/tools/lib64</userinput></screen>
    3134
    3235    <variablelist os="e">
  • BOOK/testsuite-tools/multilib/tcl.xml

    rdbc5b02 r991595cf  
    2727
    2828<screen os="b"><userinput>cd unix
    29 CC="gcc ${BUILD64}" ./configure --prefix=/tools --libdir=/tools/lib64</userinput></screen>
     29CC="gcc ${BUILD64}" ./configure \
     30    --prefix=/tools \
     31    --libdir=/tools/lib64</userinput></screen>
    3032
    3133    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
Note: See TracChangeset for help on using the changeset viewer.