Changeset 5b4806a in clfs-embedded
- Timestamp:
- Jan 24, 2009, 1:26:07 PM (16 years ago)
- Branches:
- master
- Children:
- 6533111
- Parents:
- 60aed94
- Location:
- BOOK/cross-tools
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/arm/abi.xml
r60aed94 r5b4806a 12 12 13 13 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 14 href="../ mips/abi.xml"14 href="../x86/abi.xml" 15 15 xpointer="xpointer(//*[@os='a'])"/> 16 16 17 17 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 18 href="../ mips/abi.xml"18 href="../x86/abi.xml" 19 19 xpointer="xpointer(//*[@os='b'])"/> 20 20 21 21 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 22 href="../ mips/abi.xml"22 href="../x86/abi.xml" 23 23 xpointer="xpointer(//*[@os='c'])"/> 24 24 -
BOOK/cross-tools/arm/variables.xml
r60aed94 r5b4806a 19 19 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 20 20 href="../x86/variables.xml" 21 xpointer="xpointer(//*[@os=' d'])"/>21 xpointer="xpointer(//*[@os='b'])"/> 22 22 23 23 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 24 24 href="../x86/variables.xml" 25 xpointer="xpointer(//*[@os=' e'])"/>25 xpointer="xpointer(//*[@os='c'])"/> 26 26 27 <screen os="f"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc</userinput></screen> 27 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 28 href="../x86/variables.xml" 29 xpointer="xpointer(//*[@os='d'])"/> 28 30 29 <table os=" g">31 <table os="e"> 30 32 <title>Processor Type and Target Triplets</title> 31 33 <?dbfo table-width="5in" ?> -
BOOK/cross-tools/mips/abi.xml
r60aed94 r5b4806a 12 12 13 13 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 14 href="../ mips/abi.xml"14 href="../x86/abi.xml" 15 15 xpointer="xpointer(//*[@os='a'])"/> 16 16 17 17 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 18 href="../ mips/abi.xml"18 href="../x86/abi.xml" 19 19 xpointer="xpointer(//*[@os='b'])"/> 20 20 21 21 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 22 href="../ mips/abi.xml"22 href="../x86/abi.xml" 23 23 xpointer="xpointer(//*[@os='c'])"/> 24 24 -
BOOK/cross-tools/mips/variables.xml
r60aed94 r5b4806a 19 19 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 20 20 href="../x86/variables.xml" 21 xpointer="xpointer(//*[@os=' d'])"/>21 xpointer="xpointer(//*[@os='b'])"/> 22 22 23 <para os=" d1">Now you will need to set the MIPS LEVEL. This determines how your23 <para os="m1">Now you will need to set the MIPS LEVEL. This determines how your 24 24 uClibc is built. There are currently 5 MIPS ISA Levels. To keep things simple 25 25 we are only using 2. For more information, go to 26 26 <ulink url="http://www.linux-mips.org/wiki/Instruction_Set_Architecture"/></para> 27 27 28 <screen os=" d2"><userinput>export CLFS_MIPS_LEVEL="{mips level}"</userinput></screen>28 <screen os="m2"><userinput>export CLFS_MIPS_LEVEL="{mips level}"</userinput></screen> 29 29 30 30 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" 31 31 href="../x86/variables.xml" 32 xpointer="xpointer(//*[@os=' e'])"/>32 xpointer="xpointer(//*[@os='c'])"/> 33 33 34 <screen os=" f"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc34 <screen os="d"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc 35 35 echo export CLFS_MIPS_LEVEL=\""${CLFS_MIPS_LEVEL}\"" >> ~/.bashrc</userinput></screen> 36 36 37 <table os=" g">37 <table os="e"> 38 38 <title>Processor Type and Target Triplets</title> 39 39 <?dbfo table-width="5.5in" ?> -
BOOK/cross-tools/x86/linux-headers.xml
r60aed94 r5b4806a 37 37 <screen os="c"><userinput>install -dv ${CLFS}/usr/include 38 38 make mrproper 39 make ARCH= i386headers_check40 make ARCH= i386INSTALL_HDR_PATH=dest headers_install39 make ARCH=$(echo ${CLFS_TARGET} | sed 's/i.86/i386/' | cut -f1 -d-) headers_check 40 make ARCH=$(echo ${CLFS_TARGET} | sed 's/i.86/i386/' | cut -f1 -d-) INSTALL_HDR_PATH=dest headers_install 41 41 cp -rv dest/include/* ${CLFS}/usr/include</userinput></screen> 42 42 -
BOOK/cross-tools/x86/variables.xml
r60aed94 r5b4806a 21 21 the command using the method listed below:</para> 22 22 23 <screen os=" d"><userinput>export CLFS_TARGET="{target triplet}"</userinput></screen>23 <screen os="b"><userinput>export CLFS_TARGET="{target triplet}"</userinput></screen> 24 24 25 <para os=" e">Now we will add this to <filename>~/.bashrc</filename>, just in25 <para os="c">Now we will add this to <filename>~/.bashrc</filename>, just in 26 26 case you have to exit and restart building later:</para> 27 27 28 <screen os=" f"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc</userinput></screen>28 <screen os="d"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc</userinput></screen> 29 29 30 <table os=" g">30 <table os="e"> 31 31 <title>Processor Type and Target Triplets</title> 32 32 <?dbfo table-width="4.5in" ?>
Note:
See TracChangeset
for help on using the changeset viewer.