source: clfs-embedded/BOOK/cross-tools/arm/variables.xml @ 4d57ce8

Last change on this file since 4d57ce8 was ad36f39, checked in by Maarten Lankhorst <m.b.lankhorst@…>, 17 years ago

Add arm part 2

  • Property mode set to 100644
File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/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  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
16  href="../x86/variables.xml"
17  xpointer="xpointer(//*[@os='a'])"/>
18
19  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
20  href="../x86/variables.xml"
21  xpointer="xpointer(//*[@os='b'])"/>
22
23  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
24  href="../x86/variables.xml"
25  xpointer="xpointer(//*[@os='c'])"/>
26
27  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
28  href="../x86/variables.xml"
29  xpointer="xpointer(//*[@os='d'])"/>
30
31  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
32  href="../x86/variables.xml"
33  xpointer="xpointer(//*[@os='e'])"/>
34
35<screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" &gt;&gt; ~/.bashrc
36echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc</userinput></screen>
37
38  <table os="g">
39    <title>Processor Type and  Target Triplets</title>
40    <tgroup cols="2" align="center">
41      <colspec colname="Processor"/>
42      <colspec colname="Triplet"/>
43      <thead>
44        <row>
45          <entry>Processor</entry>
46          <entry>Target Triplet</entry>
47        </row>
48      </thead>
49      <tbody>
50        <row>
51          <entry>Generic arm, little endian</entry>
52          <entry>arm-unknown-linux-uclibc</entry>
53        </row>
54        <row>
55          <entry>Generic arm, version 5, little endian</entry>
56          <entry>armv5l-unknown-linux-uclibc</entry>
57        </row>
58        <row>
59          <entry>Generic arm, version 5, big endian</entry>
60          <entry>armv5b-unknown-linux-uclibc</entry>
61        </row>
62      </tbody>
63    </tgroup>
64  </table>
65
66</sect1>
Note: See TracBrowser for help on using the repository browser.