[a9e389d] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
[bd48e48] | 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
---|
| 3 | "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
---|
[a9e389d] | 4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
| 5 | %general-entities;
|
---|
| 6 | ]>
|
---|
| 7 |
|
---|
| 8 | <sect1 id="ch-cross-tools-variables">
|
---|
| 9 | <?dbhtml filename="variables.html"?>
|
---|
| 10 |
|
---|
| 11 | <title>Build Variables</title>
|
---|
| 12 |
|
---|
| 13 | <bridgehead renderas="sect4">Setting Host and Target</bridgehead>
|
---|
| 14 |
|
---|
| 15 | <para os="a">During the building of the cross-compile tools you will need to
|
---|
| 16 | set a few variables that will be dependent on your particular needs.
|
---|
[9dc5852] | 17 | You will need to set the target triplet for the target
|
---|
[a9e389d] | 18 | architecture. You can do this by running the same command as above, just
|
---|
| 19 | running it on the target machine. If you can't run the command on the
|
---|
| 20 | target machine, you can use the table at the bottom of this page. Set
|
---|
| 21 | the command using the method listed below:</para>
|
---|
| 22 |
|
---|
[5b4806a] | 23 | <screen os="b"><userinput>export CLFS_TARGET="{target triplet}"</userinput></screen>
|
---|
[a9e389d] | 24 |
|
---|
[6533111] | 25 | <para os="c">Now we will setup out default architecture needed we need to build:</para>
|
---|
| 26 |
|
---|
[0dad5b9] | 27 | <screen os="d"><userinput>export CLFS_ARCH=$(echo ${CLFS_TARGET} | sed -e 's/-.*//' -e 's/i.86/i386/')</userinput></screen>
|
---|
[6533111] | 28 |
|
---|
[0dad5b9] | 29 | <para os="e">Now we will setup out default endian needed we need to build and set the one we don't need:</para>
|
---|
| 30 |
|
---|
| 31 | <screen os="f"><userinput>export CLFS_ENDIAN=LITTLE
|
---|
| 32 | export CLFS_NOT_ENDIAN=BIG</userinput></screen>
|
---|
| 33 |
|
---|
| 34 | <para os="g">Now we will add this to <filename>~/.bashrc</filename>, just in
|
---|
[a9e389d] | 35 | case you have to exit and restart building later:</para>
|
---|
| 36 |
|
---|
[0dad5b9] | 37 | <screen os="h"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc
|
---|
| 38 | echo export CLFS_ARCH=\""${CLFS_ARCH}\"" >> ~/.bashrc
|
---|
| 39 | echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" >> ~/.bashrc
|
---|
| 40 | echo export CLFS_NOT_ENDIAN=\""${CLFS_NOT_ENDIAN}\"" >> ~/.bashrc</userinput></screen>
|
---|
[a9e389d] | 41 |
|
---|
[0dad5b9] | 42 | <table os="i">
|
---|
[a9e389d] | 43 | <title>Processor Type and Target Triplets</title>
|
---|
[3ca2208] | 44 | <?dbfo table-width="4.5in" ?>
|
---|
| 45 |
|
---|
| 46 | <tgroup cols="2">
|
---|
| 47 |
|
---|
| 48 | <colspec colnum="1" colwidth="2.5in" colname="Processor"/>
|
---|
| 49 | <colspec colnum="2" colwidth="2in" colname="Triplet"/>
|
---|
| 50 |
|
---|
[a9e389d] | 51 | <thead>
|
---|
| 52 | <row>
|
---|
| 53 | <entry>Processor</entry>
|
---|
| 54 | <entry>Target Triplet</entry>
|
---|
| 55 | </row>
|
---|
| 56 | </thead>
|
---|
[3ca2208] | 57 |
|
---|
[a9e389d] | 58 | <tbody>
|
---|
| 59 | <row>
|
---|
| 60 | <entry>486 Compatibles</entry>
|
---|
[9bb5154] | 61 | <entry>i486-unknown-linux-uclibc</entry>
|
---|
[a9e389d] | 62 | </row>
|
---|
| 63 | <row>
|
---|
| 64 | <entry>Pentium, K6, 586 Compatibles</entry>
|
---|
[9bb5154] | 65 | <entry>i586-unknown-linux-uclibc</entry>
|
---|
[a9e389d] | 66 | </row>
|
---|
| 67 | <row>
|
---|
| 68 | <entry>Pentium II, Pentium III, Pentium 4</entry>
|
---|
[9bb5154] | 69 | <entry>i686-unknown-linux-uclibc</entry>
|
---|
[a9e389d] | 70 | </row>
|
---|
| 71 | <row>
|
---|
| 72 | <entry>Athlon, Duron</entry>
|
---|
[9bb5154] | 73 | <entry>i686-unknown-linux-uclibc</entry>
|
---|
[a9e389d] | 74 | </row>
|
---|
[128e9a4] | 75 | <row>
|
---|
| 76 | <entry>x86_64</entry>
|
---|
| 77 | <entry>x86_64-unknown-linux-uclibc</entry>
|
---|
| 78 | </row>
|
---|
[a9e389d] | 79 | </tbody>
|
---|
[3ca2208] | 80 |
|
---|
[a9e389d] | 81 | </tgroup>
|
---|
[3ca2208] | 82 |
|
---|
[a9e389d] | 83 | </table>
|
---|
| 84 |
|
---|
| 85 | </sect1>
|
---|