Changeset e67fb9b in clfs-embedded for BOOK/cross-tools/x86/variables.xml
- Timestamp:
- Feb 10, 2011, 11:44:59 PM (14 years ago)
- Branches:
- master
- Children:
- 7003296
- Parents:
- a9cb92d (diff), 49c9bc5 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/x86/variables.xml
ra9cb92d re67fb9b 15 15 <para os="a">During the building of the cross-compile tools you will need to 16 16 set a few variables that will be dependent on your particular needs. 17 You will need to set the target triplet for the target architecture . As well18 as the CPUs type and endianess. If you do not know what tripletyou want,17 You will need to set the target triplet for the target architecture, the CPU 18 type, and CPU endianess. If you do not know what triplet or CPU type you want, 19 19 you can use the table at the bottom of this page as a reference. Set 20 20 the command using the method listed below:</para> 21 21 22 22 <screen os="b"><userinput>export CLFS_HOST=$(echo ${MACHTYPE} | sed "s/-[^-]*/-cross/") 23 export CLFS_TARGET=<replaceable>[target triplet]</replaceable></userinput></screen> 23 export CLFS_TARGET=<replaceable>[target triplet]</replaceable> 24 export CLFS_CPU=<replaceable>[cpu type]</replaceable></userinput></screen> 24 25 25 26 <para os="c">Now we will set the architecture and endianess of the CPU based … … 35 36 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc 36 37 echo export CLFS_ARCH=\""${CLFS_ARCH}\"" >> ~/.bashrc 37 echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" >> ~/.bashrc</userinput></screen> 38 echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" >> ~/.bashrc 39 echo export CLFS_ENDIAN=\""${CLFS_CPU}\"" >> ~/.bashrc</userinput></screen> 38 40 39 41 <table os="i"> 40 42 <title>Processor Type and Target Triplets</title> 41 <?dbfo table-width=" 4.5in" ?>43 <?dbfo table-width="7.5in" ?> 42 44 43 45 <tgroup cols="2"> … … 45 47 <colspec colnum="1" colwidth="2.5in" colname="Processor"/> 46 48 <colspec colnum="2" colwidth="2in" colname="Triplet"/> 49 <colspec colnum="3" colwidth="0.5in" colname="CPU Type"/> 50 <colspec colnum="4" colwidth="2.5in" colname="Note"/> 47 51 48 52 <thead> … … 50 54 <entry>Processor</entry> 51 55 <entry>Target Triplet</entry> 56 <entry>CPU Type</entry> 57 <entry>Note</entry> 52 58 </row> 53 59 </thead> … … 57 63 <entry>486 Compatibles</entry> 58 64 <entry>i486-pc-linux-uclibc</entry> 65 <entry>i486</entry> 66 <entry>Intel's i486</entry> 59 67 </row> 60 68 <row> 61 69 <entry>Pentium, K6, 586 Compatibles</entry> 62 70 <entry>i586-pc-linux-uclibc</entry> 71 <entry>i586</entry> 72 <entry>Intel Pentium without MMX</entry> 63 73 </row> 64 74 <row> 65 75 <entry>Pentium II, Pentium III, Pentium 4</entry> 66 76 <entry>i686-pc-linux-uclibc</entry> 77 <entry>i686</entry> 78 <entry>PentiumPro instruction set</entry> 67 79 </row> 68 80 <row> 69 <entry>Athlon , Duron</entry>81 <entry>Athlon</entry> 70 82 <entry>i686-pc-linux-uclibc</entry> 83 <entry>athlon</entry> 84 <entry>AMD 32 bit Athlon</entry> 71 85 </row> 72 86 <row> 73 <entry> x86_64</entry>87 <entry>Opteron</entry> 74 88 <entry>x86_64-unknown-linux-uclibc</entry> 89 <entry>k8</entry> 90 <entry>AMD K8 processors with x86-64</entry> 75 91 </row> 76 92 </tbody>
Note:
See TracChangeset
for help on using the changeset viewer.