Changeset 3ca2208 in clfs-embedded for BOOK/cross-tools
- Timestamp:
- Jul 15, 2007, 3:29:34 PM (17 years ago)
- Branches:
- master
- Children:
- 00b1e11
- Parents:
- 39a9ea5
- Location:
- BOOK/cross-tools
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/arm/variables.xml
r39a9ea5 r3ca2208 38 38 <table os="g"> 39 39 <title>Processor Type and Target Triplets</title> 40 <tgroup cols="2" align="center"> 41 <colspec colname="Processor"/> 42 <colspec colname="Triplet"/> 40 <?dbfo table-width="5in" ?> 41 42 <tgroup cols="2"> 43 44 <colspec colnum="1" colwidth="2.5in" colname="Processor"/> 45 <colspec colnum="2" colwidth="2.5in" colname="Triplet"/> 46 43 47 <thead> 44 48 <row> … … 47 51 </row> 48 52 </thead> 53 49 54 <tbody> 50 55 <row> … … 61 66 </row> 62 67 </tbody> 68 63 69 </tgroup> 70 64 71 </table> 65 72 -
BOOK/cross-tools/common/abi.xml
r39a9ea5 r3ca2208 13 13 <para>Setup for a Particular ABI:</para> 14 14 15 <screen><userinput> <literal>export BUILD="<replaceable>[From Chart]</replaceable>"</literal></userinput></screen>15 <screen><userinput>export BUILD="<replaceable>[From Chart]</replaceable>"</userinput></screen> 16 16 17 17 <para>The following table gives the entires for the different ABI's that CLFS Embedded supports. Make … … 21 21 <table> 22 22 <title>List of Build Variables</title> 23 <tgroup cols="2" align="center"> 24 <colspec colname="ABI to Select"/> 25 <colspec colname="Variable Value"/> 23 <?dbfo table-width="3in" ?> 24 25 <tgroup cols="2"> 26 27 <colspec colnum="1" colwidth="1.5in" colname="ABI to Select"/> 28 <colspec colnum="2" colwidth="1.5in" colname="Variable Value"/> 29 26 30 <thead> 27 31 <row> … … 30 34 </row> 31 35 </thead> 36 32 37 <tbody> 33 38 <row> … … 52 57 </row> 53 58 </tbody> 59 54 60 </tgroup> 61 55 62 </table> 56 63 -
BOOK/cross-tools/common/clear-toolchain.xml
r39a9ea5 r3ca2208 14 14 the final GCC build from having issues:</para> 15 15 16 <screen><userinput> <literal>unset CC16 <screen><userinput>unset CC 17 17 unset CXX 18 18 unset AR … … 20 20 unset LD 21 21 unset RANLIB 22 unset STRIP</ literal></userinput></screen>22 unset STRIP</userinput></screen> 23 23 24 24 </sect1> -
BOOK/cross-tools/common/gcc-static.xml
r39a9ea5 r3ca2208 54 54 <screen os="ae"><userinput>../gcc-&gcc-version;/configure --prefix=${CLFS}/cross-tools \ 55 55 --host=${CLFS_HOST} --target=${CLFS_TARGET} --disable-multilib \ 56 --with-sysroot=${CLFS} --disable-nls --disable-shared --disable-threads\57 -- enable-languages=c</userinput></screen>56 --with-sysroot=${CLFS} --disable-nls --disable-shared \ 57 --disable-threads --enable-languages=c</userinput></screen> 58 58 59 59 <variablelist os="af"> -
BOOK/cross-tools/common/toolchain.xml
r39a9ea5 r3ca2208 15 15 then Final System build:</para> 16 16 17 <screen><userinput> <literal>export CC="${CLFS_TARGET}-gcc"17 <screen><userinput>export CC="${CLFS_TARGET}-gcc" 18 18 export CXX="${CLFS_TARGET}-g++" 19 19 export AR="${CLFS_TARGET}-ar" … … 21 21 export LD="${CLFS_TARGET}-ld" 22 22 export RANLIB="${CLFS_TARGET}-ranlib" 23 export STRIP="${CLFS_TARGET}-strip"</ literal></userinput></screen>23 export STRIP="${CLFS_TARGET}-strip"</userinput></screen> 24 24 25 25 </sect1> -
BOOK/cross-tools/mips/uclibc.xml
r39a9ea5 r3ca2208 29 29 30 30 <screen os="b"><userinput>cp extra/Configs/Config.mips extra/Configs/Config.mips.orig 31 sed -e "s:default CONFIG_MIPS_ISA_1:default CONFIG_MIPS_ISA_${CLFS_MIPS_LEVEL}:" \ 32 extra/Configs/Config.mips.orig > extra/Configs/Config.mips</userinput></screen> 31 sed -e \ 32 "s:default CONFIG_MIPS_ISA_1:default CONFIG_MIPS_ISA_${CLFS_MIPS_LEVEL}:" \ 33 extra/Configs/Config.mips.orig > extra/Configs/Config.mips</userinput></screen> 33 34 34 35 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" -
BOOK/cross-tools/mips/variables.xml
r39a9ea5 r3ca2208 46 46 <table os="g"> 47 47 <title>Processor Type and Target Triplets</title> 48 <tgroup cols="2" align="center"> 49 <colspec colname="Processor"/> 50 <colspec colname="Triplet"/> 51 <colspec colname="MIPS Level"/> 48 <?dbfo table-width="5.5in" ?> 49 50 <tgroup cols="2"> 51 52 <colspec colnum="1" colwidth="2in" colname="Processor"/> 53 <colspec colnum="2" colwidth="2.5in" colname="Triplet"/> 54 <colspec colnum="3" colwidth="1in" colname="MIPS Level"/> 55 52 56 <thead> 53 57 <row> … … 57 61 </row> 58 62 </thead> 63 59 64 <tbody> 60 65 <row> … … 79 84 </row> 80 85 </tbody> 86 81 87 </tgroup> 88 82 89 </table> 83 90 -
BOOK/cross-tools/x86/uclibc.xml
r39a9ea5 r3ca2208 36 36 sed -e 's/$(LN) -fs/cp/g' Makefile.orig > Makefile 37 37 for file in `find libc/sysdeps/linux -name Makefile`; do 38 cp $file{,.orig} 39 sed -e 's/$(LN) -fs/cp/g' -e 's@../libc/@$(TOPDIR)libc/@g' $file.orig > $file 38 cp $file{,.orig} 39 sed -e 's/$(LN) -fs/cp/g' -e 's@../libc/@$(TOPDIR)libc/@g' \ 40 $file.orig > $file 40 41 done</userinput></screen> 41 42 … … 65 66 66 67 <screen os="k"><userinput>UCLIBC_OPTIONS="DO_C99_MATH UCLIBC_HAS_RPC UCLIBC_HAS_CTYPE_CHECKED 67 UCLIBC_HAS_WCHAR UCLIBC_HAS_HEXADECIMAL_FLOATS UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE 68 UCLIBC_HAS_PRINTF_M_SPEC UCLIBC_HAS_FTW UCLIBC_HAS_IPV6 UCLIBC_HAS_GLIBC_CUSTOM_PRINTF 69 UCLIBC_USE_NETLINK LDSO_PRELOAD_FILE_SUPPORT"68 UCLIBC_HAS_WCHAR UCLIBC_HAS_HEXADECIMAL_FLOATS LDSO_PRELOAD_FILE_SUPPORT 69 UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE UCLIBC_HAS_PRINTF_M_SPEC UCLIBC_HAS_IPV6 70 UCLIBC_HAS_GLIBC_CUSTOM_PRINTF UCLIBC_USE_NETLINK UCLIBC_HAS_FTW" 70 71 for config in $UCLIBC_OPTIONS; do 71 72 72 cp .config{,.orig} 73 sed -e "s:# ${config} is not set:${config}=y:" .config.orig > .config 73 74 done 74 75 UCLIBC_OPTIONS="UCLIBC_HAS_CTYPE_UNSAFE" 75 76 for config in $UCLIBC_OPTIONS; do 76 77 77 cp .config{,.orig} 78 sed -e "s:${config}=y:# ${config} is not set:" .config.orig > .config 78 79 done 79 80 echo "UCLIBC_HAS_FULL_RPC=y" >> .config -
BOOK/cross-tools/x86/variables.xml
r39a9ea5 r3ca2208 20 20 command:</para> 21 21 22 <screen os="b"><userinput>export CLFS_HOST="$(echo $MACHTYPE | sed "s/$(echo $MACHTYPE | cut -d- -f2)/cross/")"</userinput></screen> 22 <screen os="b"><userinput>export CLFS_HOST="$(echo $MACHTYPE | \ 23 sed "s/$(echo $MACHTYPE | cut -d- -f2)/cross/")"</userinput></screen> 23 24 24 25 <para os="c">Now you will need to set the target triplet for the target … … 38 39 <table os="g"> 39 40 <title>Processor Type and Target Triplets</title> 40 <tgroup cols="2" align="center"> 41 <colspec colname="Processor"/> 42 <colspec colname="Triplet"/> 41 <?dbfo table-width="4.5in" ?> 42 43 <tgroup cols="2"> 44 45 <colspec colnum="1" colwidth="2.5in" colname="Processor"/> 46 <colspec colnum="2" colwidth="2in" colname="Triplet"/> 47 43 48 <thead> 44 49 <row> … … 47 52 </row> 48 53 </thead> 54 49 55 <tbody> 50 56 <row> … … 65 71 </row> 66 72 </tbody> 73 67 74 </tgroup> 75 68 76 </table> 69 77
Note:
See TracChangeset
for help on using the changeset viewer.