Changeset 991595cf for BOOK/cross-tools
- Timestamp:
- Dec 14, 2015, 12:21:52 AM (9 years ago)
- Branches:
- sysvinit
- Children:
- fc86858d
- Parents:
- dbc5b02 (diff), c7477f8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- BOOK/cross-tools
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/64/binutils.xml
rdbc5b02 r991595cf 49 49 xpointer="xpointer(//*[@os='i'])"/> 50 50 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> 56 66 57 67 <variablelist os="bd"> -
BOOK/cross-tools/64/gcc-static.xml
rdbc5b02 r991595cf 40 40 xpointer="xpointer(//*[@os='aa'])"/> 41 41 42 42 <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen> 43 43 44 44 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" -
BOOK/cross-tools/64/glibc.xml
rdbc5b02 r991595cf 39 39 xpointer="xpointer(//*[@os='g'])"/> 40 40 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" \ 42 CC="${CLFS_TARGET}-gcc ${BUILD64}" \ 43 AR="${CLFS_TARGET}-ar" \ 44 RANLIB="${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> 48 54 49 55 <variablelist os="dg"> -
BOOK/cross-tools/common/binutils.xml
rdbc5b02 r991595cf 49 49 xpointer="xpointer(//*[@os='i'])"/> 50 50 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> 56 65 57 66 <variablelist os="bd"> -
BOOK/cross-tools/common/file.xml
rdbc5b02 r991595cf 36 36 <para>Prepare File for compilation:</para> 37 37 38 <screen><userinput>./configure --prefix=/cross-tools</userinput></screen> 38 <screen><userinput>./configure \ 39 --prefix=/cross-tools</userinput></screen> 39 40 40 41 <variablelist> -
BOOK/cross-tools/common/gcc-final.xml
rdbc5b02 r991595cf 59 59 xpointer="xpointer(//*[@os='h'])"/> 60 60 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 \ 62 LDFLAGS="-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> 69 80 70 81 <variablelist os="bg"> -
BOOK/cross-tools/common/gcc-static.xml
rdbc5b02 r991595cf 70 70 xpointer="xpointer(//*[@os='h'])"/> 71 71 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 \ 73 LDFLAGS="-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 \ 76 81 --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 \ 84 103 --with-glibc-version=&glibc-version;</userinput></screen> 85 104 -
BOOK/cross-tools/common/glibc.xml
rdbc5b02 r991595cf 39 39 xpointer="xpointer(//*[@os='g'])"/> 40 40 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" \ 42 CC="${CLFS_TARGET}-gcc" \ 43 AR="${CLFS_TARGET}-ar" \ 44 RANLIB="${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 \ 47 53 --enable-obsolete-rpc</userinput></screen> 48 54 -
BOOK/cross-tools/common/gmp.xml
rdbc5b02 r991595cf 39 39 <para os="a">Prepare GMP for compilation:</para> 40 40 41 <screen os="b"><userinput>./configure --prefix=/cross-tools --enable-cxx \ 41 <screen os="b"><userinput>./configure \ 42 --prefix=/cross-tools \ 43 --enable-cxx \ 42 44 --disable-static</userinput></screen> 43 45 -
BOOK/cross-tools/common/isl.xml
rdbc5b02 r991595cf 30 30 31 31 <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 \ 33 35 --with-gmp-prefix=/cross-tools</userinput></screen> 34 36 -
BOOK/cross-tools/common/m4.xml
rdbc5b02 r991595cf 31 31 <para os="a">Prepare M4 for compilation:</para> 32 32 33 <screen os="b"><userinput>./configure --prefix=/cross-tools</userinput></screen> 33 <screen os="b"><userinput>./configure \ 34 --prefix=/cross-tools</userinput></screen> 34 35 35 36 <para os="c">Compile the package:</para> -
BOOK/cross-tools/common/mpc.xml
rdbc5b02 r991595cf 26 26 27 27 <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> 30 33 31 34 <para os="c">Compile the package:</para> -
BOOK/cross-tools/common/mpfr.xml
rdbc5b02 r991595cf 34 34 35 35 <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> 38 40 39 41 <variablelist os="b1"> -
BOOK/cross-tools/common/ncurses.xml
rdbc5b02 r991595cf 43 43 <para os="a">Prepare Ncurses for compilation:</para> 44 44 45 <screen os="b"><userinput>AWK=gawk ./configure --prefix=/cross-tools \ 45 <screen os="b"><userinput>AWK=gawk ./configure \ 46 --prefix=/cross-tools \ 46 47 --without-debug</userinput></screen> 47 48 -
BOOK/cross-tools/common/pkg-config-lite.xml
rdbc5b02 r991595cf 35 35 <para os="b">Prepare Pkg-config-lite for compilation:</para> 36 36 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} \ 38 40 --with-pc-path=/tools/lib/pkgconfig:/tools/share/pkgconfig</userinput></screen> 39 41 -
BOOK/cross-tools/mips64-64/gcc-final.xml
rdbc5b02 r991595cf 59 59 xpointer="xpointer(//*[@os='h'])"/> 60 60 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 \ 62 LDFLAGS="-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> 69 80 70 81 <variablelist os="bg"> -
BOOK/cross-tools/mips64-64/gcc-static.xml
rdbc5b02 r991595cf 72 72 xpointer="xpointer(//*[@os='h'])"/> 73 73 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 \ 75 LDFLAGS="-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 \ 86 106 --with-glibc-version=&glibc-version;</userinput></screen> 87 107 -
BOOK/cross-tools/mips64/glibc-n32.xml
rdbc5b02 r991595cf 45 45 46 46 <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> 47 AR="${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> 53 59 54 60 <variablelist os="fa"> -
BOOK/cross-tools/multilib/binutils.xml
rdbc5b02 r991595cf 48 48 xpointer="xpointer(//*[@os='i'])"/> 49 49 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> 55 64 56 65 <variablelist os="bd"> -
BOOK/cross-tools/multilib/gcc-final.xml
rdbc5b02 r991595cf 59 59 xpointer="xpointer(//*[@os='h'])"/> 60 60 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 \ 62 LDFLAGS="-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> 68 78 69 79 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" -
BOOK/cross-tools/multilib/gcc-static.xml
rdbc5b02 r991595cf 72 72 xpointer="xpointer(//*[@os='h'])"/> 73 73 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 \ 75 LDFLAGS="-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 \ 85 104 --with-glibc-version=&glibc-version;</userinput></screen> 86 105 -
BOOK/cross-tools/multilib/glibc-64bit.xml
rdbc5b02 r991595cf 45 45 46 46 <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> 47 AR="${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> 53 59 54 60 <variablelist os="dg"> -
BOOK/cross-tools/multilib/glibc.xml
rdbc5b02 r991595cf 40 40 41 41 <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 \ 42 AR="${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 \ 47 51 --enable-obsolete-rpc</userinput></screen> 48 52 -
BOOK/cross-tools/multilib/pkg-config-lite.xml
rdbc5b02 r991595cf 31 31 xpointer="xpointer(//*[@os='b'])"/> 32 32 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} \ 34 36 --with-pc-path=/tools/lib64/pkgconfig:/tools/share/pkgconfig</userinput></screen> 35 37 -
BOOK/cross-tools/ppc64-64/gcc-static.xml
rdbc5b02 r991595cf 40 40 xpointer="xpointer(//*[@os='aa'])"/> 41 41 42 42 <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen> 43 43 44 44 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
Note:
See TracChangeset
for help on using the changeset viewer.