[99fc891] | 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" [
|
---|
[99fc891] | 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 |
|
---|
[33bc2cb] | 15 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 16 | href="../x86/variables.xml"
|
---|
| 17 | xpointer="xpointer(//*[@os='a'])"/>
|
---|
[99fc891] | 18 |
|
---|
[33bc2cb] | 19 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 20 | href="../x86/variables.xml"
|
---|
[5b4806a] | 21 | xpointer="xpointer(//*[@os='b'])"/>
|
---|
[99fc891] | 22 |
|
---|
[6533111] | 23 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 24 | href="../x86/variables.xml"
|
---|
| 25 | xpointer="xpointer(//*[@os='c'])"/>
|
---|
| 26 |
|
---|
| 27 | <screen os="d"><userinput>export CLFS_ARCH=$(echo ${CLFS_TARGET} | sed -e 's/-.*//' -e 's/mips.*/mips/' -e 's/mipsel.*/mips/'</userinput></screen>
|
---|
| 28 |
|
---|
| 29 | <para os="e1">Now we will setup out default endian needed we need to build:</para>
|
---|
| 30 |
|
---|
| 31 | <screen os="e2"><userinput>export CLFS_ENDIAN=$(echo ${CLFS_TARGET} | sed -e 's/mipsel/LITTLE/' -e 's/mips/BIG/'</userinput></screen>
|
---|
| 32 |
|
---|
[5b4806a] | 33 | <para os="m1">Now you will need to set the MIPS LEVEL. This determines how your
|
---|
[c14754c] | 34 | uClibc is built. There are currently 5 MIPS ISA Levels. To keep things simple
|
---|
| 35 | we are only using 2. For more information, go to
|
---|
| 36 | <ulink url="http://www.linux-mips.org/wiki/Instruction_Set_Architecture"/></para>
|
---|
| 37 |
|
---|
[5b4806a] | 38 | <screen os="m2"><userinput>export CLFS_MIPS_LEVEL="{mips level}"</userinput></screen>
|
---|
[c14754c] | 39 |
|
---|
[33bc2cb] | 40 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 41 | href="../x86/variables.xml"
|
---|
[6533111] | 42 | xpointer="xpointer(//*[@os='e'])"/>
|
---|
[99fc891] | 43 |
|
---|
[6533111] | 44 | <screen os="f"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc
|
---|
| 45 | echo export CLFS_ARCH=\""${CLFS_ARCH}\"" >> ~/.bashrc
|
---|
| 46 | echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" >> ~/.bashrc
|
---|
[c14754c] | 47 | echo export CLFS_MIPS_LEVEL=\""${CLFS_MIPS_LEVEL}\"" >> ~/.bashrc</userinput></screen>
|
---|
[99fc891] | 48 |
|
---|
[6533111] | 49 | <table os="g">
|
---|
[99fc891] | 50 | <title>Processor Type and Target Triplets</title>
|
---|
[3ca2208] | 51 | <?dbfo table-width="5.5in" ?>
|
---|
| 52 |
|
---|
| 53 | <tgroup cols="2">
|
---|
| 54 |
|
---|
| 55 | <colspec colnum="1" colwidth="2in" colname="Processor"/>
|
---|
| 56 | <colspec colnum="2" colwidth="2.5in" colname="Triplet"/>
|
---|
| 57 | <colspec colnum="3" colwidth="1in" colname="MIPS Level"/>
|
---|
| 58 |
|
---|
[99fc891] | 59 | <thead>
|
---|
| 60 | <row>
|
---|
| 61 | <entry>Processor</entry>
|
---|
| 62 | <entry>Target Triplet</entry>
|
---|
[1261c88] | 63 | <entry>MIPS Level</entry>
|
---|
[99fc891] | 64 | </row>
|
---|
| 65 | </thead>
|
---|
[3ca2208] | 66 |
|
---|
[99fc891] | 67 | <tbody>
|
---|
| 68 | <row>
|
---|
| 69 | <entry>MIPS 32 bits Little Endian</entry>
|
---|
| 70 | <entry>mipsel-unknown-linux-uclibc</entry>
|
---|
[c14754c] | 71 | <entry>1</entry>
|
---|
[99fc891] | 72 | </row>
|
---|
| 73 | <row>
|
---|
| 74 | <entry>MIPS 32 bits Big Endian</entry>
|
---|
| 75 | <entry>mips-unknown-linux-uclibc</entry>
|
---|
[c14754c] | 76 | <entry>1</entry>
|
---|
[99fc891] | 77 | </row>
|
---|
| 78 | <row>
|
---|
| 79 | <entry>MIPS 64 bits Little Endian</entry>
|
---|
| 80 | <entry>mips64el-unknown-linux-uclibc</entry>
|
---|
[c14754c] | 81 | <entry>3</entry>
|
---|
[99fc891] | 82 | </row>
|
---|
| 83 | <row>
|
---|
| 84 | <entry>MIPS 64 bits Big Endian</entry>
|
---|
| 85 | <entry>mips64-unknown-linux-uclibc</entry>
|
---|
[c14754c] | 86 | <entry>3</entry>
|
---|
[99fc891] | 87 | </row>
|
---|
| 88 | </tbody>
|
---|
[3ca2208] | 89 |
|
---|
[99fc891] | 90 | </tgroup>
|
---|
[3ca2208] | 91 |
|
---|
[99fc891] | 92 | </table>
|
---|
| 93 |
|
---|
| 94 | </sect1>
|
---|