1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
---|
3 | "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
---|
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.
|
---|
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 | you can use the table at the bottom of this page as a reference. Set
|
---|
20 | the command using the method listed below:</para>
|
---|
21 |
|
---|
22 | <screen os="b"><userinput>export CLFS_HOST=$(echo ${MACHTYPE} | sed "s/-[^-]*/-cross/")
|
---|
23 | export CLFS_TARGET=<replaceable>[target triplet]</replaceable>
|
---|
24 | export CLFS_CPU=<replaceable>[cpu type]</replaceable></userinput></screen>
|
---|
25 |
|
---|
26 | <para os="c">Now we will set the architecture and endianess of the CPU based
|
---|
27 | on the target triplet provided above:</para>
|
---|
28 |
|
---|
29 | <screen os="d"><userinput>export CLFS_ARCH=$(echo ${CLFS_TARGET} | sed -e 's/-.*//' -e 's/i.86/i386/')
|
---|
30 | export CLFS_ENDIAN=little</userinput></screen>
|
---|
31 |
|
---|
32 | <para os="g">Now we will add this to <filename>~/.bashrc</filename>, just in
|
---|
33 | case you have to exit and restart building later:</para>
|
---|
34 |
|
---|
35 | <screen os="h"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" >> ~/.bashrc
|
---|
36 | echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc
|
---|
37 | echo export CLFS_ARCH=\""${CLFS_ARCH}\"" >> ~/.bashrc
|
---|
38 | echo export CLFS_ENDIAN=\""${CLFS_ENDIAN}\"" >> ~/.bashrc
|
---|
39 | echo export CLFS_CPU=\""${CLFS_CPU}\"" >> ~/.bashrc</userinput></screen>
|
---|
40 |
|
---|
41 | <table os="i">
|
---|
42 | <title>Processor Type and Target Triplets</title>
|
---|
43 | <?dbfo table-width="7.5in" ?>
|
---|
44 |
|
---|
45 | <tgroup cols="2">
|
---|
46 |
|
---|
47 | <colspec colnum="1" colwidth="2.5in" colname="Processor"/>
|
---|
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"/>
|
---|
51 |
|
---|
52 | <thead>
|
---|
53 | <row>
|
---|
54 | <entry>Processor</entry>
|
---|
55 | <entry>Target Triplet</entry>
|
---|
56 | <entry>CPU Type</entry>
|
---|
57 | <entry>Note</entry>
|
---|
58 | </row>
|
---|
59 | </thead>
|
---|
60 |
|
---|
61 | <tbody>
|
---|
62 | <row>
|
---|
63 | <entry>486 Compatibles</entry>
|
---|
64 | <entry>i486-pc-linux-uclibc</entry>
|
---|
65 | <entry>i486</entry>
|
---|
66 | <entry>Intel's i486</entry>
|
---|
67 | </row>
|
---|
68 | <row>
|
---|
69 | <entry>Pentium, K6, 586 Compatibles</entry>
|
---|
70 | <entry>i586-pc-linux-uclibc</entry>
|
---|
71 | <entry>i586</entry>
|
---|
72 | <entry>Intel Pentium without MMX</entry>
|
---|
73 | </row>
|
---|
74 | <row>
|
---|
75 | <entry>Pentium II, Pentium III, Pentium 4</entry>
|
---|
76 | <entry>i686-pc-linux-uclibc</entry>
|
---|
77 | <entry>i686</entry>
|
---|
78 | <entry>PentiumPro instruction set</entry>
|
---|
79 | </row>
|
---|
80 | <row>
|
---|
81 | <entry>Athlon</entry>
|
---|
82 | <entry>i686-pc-linux-uclibc</entry>
|
---|
83 | <entry>athlon</entry>
|
---|
84 | <entry>AMD 32 bit Athlon</entry>
|
---|
85 | </row>
|
---|
86 | <row>
|
---|
87 | <entry>Opteron</entry>
|
---|
88 | <entry>x86_64-unknown-linux-uclibc</entry>
|
---|
89 | <entry>k8</entry>
|
---|
90 | <entry>AMD K8 processors with x86-64</entry>
|
---|
91 | </row>
|
---|
92 | </tbody>
|
---|
93 |
|
---|
94 | </tgroup>
|
---|
95 |
|
---|
96 | </table>
|
---|
97 |
|
---|
98 | </sect1>
|
---|