Changeset 7cd7f99 for BOOK/cross-tools


Ignore:
Timestamp:
Dec 13, 2015, 3:57:55 PM (8 years ago)
Author:
Chris Staub <chris@…>
Branches:
master, systemd
Children:
c01bd946
Parents:
c636dee
Message:

Put one configure option per line

Location:
BOOK/cross-tools
Files:
25 edited

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/64/binutils.xml

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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

    rc636dee r7cd7f99  
    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"
Note: See TracChangeset for help on using the changeset viewer.