source: clfs-embedded/BOOK/cross-tools/x86/variables.xml@ 128905d

Last change on this file since 128905d was 6533111, checked in by Jim Gifford <clfs@…>, 16 years ago

Toolchain Updates

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[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
27<screen os="d"><userinput>export CLFS_ARCH=$(echo ${CLFS_TARGET} | sed -e 's/-.*//' -e 's/i.86/i386/'</userinput></screen>
28
29 <para os="e">Now we will add this to <filename>~/.bashrc</filename>, just in
[a9e389d]30 case you have to exit and restart building later:</para>
31
[6533111]32<screen os="f"><userinput>echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc
33echo export CLFS_ARCH=\""${CLFS_ARCH}\"" &gt;&gt; ~/.bashrc</userinput></screen>
[a9e389d]34
[6533111]35 <table os="g">
[a9e389d]36 <title>Processor Type and Target Triplets</title>
[3ca2208]37 <?dbfo table-width="4.5in" ?>
38
39 <tgroup cols="2">
40
41 <colspec colnum="1" colwidth="2.5in" colname="Processor"/>
42 <colspec colnum="2" colwidth="2in" colname="Triplet"/>
43
[a9e389d]44 <thead>
45 <row>
46 <entry>Processor</entry>
47 <entry>Target Triplet</entry>
48 </row>
49 </thead>
[3ca2208]50
[a9e389d]51 <tbody>
52 <row>
53 <entry>486 Compatibles</entry>
[9bb5154]54 <entry>i486-unknown-linux-uclibc</entry>
[a9e389d]55 </row>
56 <row>
57 <entry>Pentium, K6, 586 Compatibles</entry>
[9bb5154]58 <entry>i586-unknown-linux-uclibc</entry>
[a9e389d]59 </row>
60 <row>
61 <entry>Pentium II, Pentium III, Pentium 4</entry>
[9bb5154]62 <entry>i686-unknown-linux-uclibc</entry>
[a9e389d]63 </row>
64 <row>
65 <entry>Athlon, Duron</entry>
[9bb5154]66 <entry>i686-unknown-linux-uclibc</entry>
[a9e389d]67 </row>
68 </tbody>
[3ca2208]69
[a9e389d]70 </tgroup>
[3ca2208]71
[a9e389d]72 </table>
73
74</sect1>
Note: See TracBrowser for help on using the repository browser.