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

Last change on this file since ff29c76 was ff29c76, checked in by Andrew Bradford <bradfa@…>, 13 years ago

Added some more examples to ARM build vars table

  • Property mode set to 100644
File size: 2.9 KB
Line 
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  <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<screen os="d"><userinput>export CLFS_ARCH=arm
28export CLFS_ENDIAN=<replaceable>[endianess]</replaceable></userinput></screen>
29
30  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
31  href="../x86/variables.xml"
32  xpointer="xpointer(//*[@os='g'])"/>
33
34  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
35  href="../x86/variables.xml"
36  xpointer="xpointer(//*[@os='h'])"/>
37
38  <table os="i">
39    <title>Processor Type, ABI, and  Target Triplets</title>
40    <?dbfo table-width="7in" ?>
41
42    <tgroup cols="2">
43
44      <colspec colnum="1" colwidth="2.5in" colname="Processor"/>
45      <colspec colnum="2" colwidth="1in" colname="Endian"/>
46      <colspec colnum="3" colwidth="1in" colname="ABI"/>
47      <colspec colnum="4" colwidth="2.5in" colname="Triplet"/>
48
49      <thead>
50        <row>
51          <entry>Processor</entry>
52          <entry>Endian</entry>
53          <entry>ABI</entry>
54          <entry>Target Triplet</entry>
55        </row>
56      </thead>
57
58      <tbody>
59        <row>
60          <entry>Generic arm</entry>
61          <entry>little</entry>
62          <entry>OABI</entry>
63          <entry>arm-unknown-linux-uclibc</entry>
64        </row>
65        <row>
66          <entry>Generic arm, version 4</entry>
67          <entry>little</entry>
68          <entry>OABI</entry>
69          <entry>armv4-unknown-linux-uclibc</entry>
70        </row>
71        <row>
72          <entry>Generic arm, version 5</entry>
73          <entry>little</entry>
74          <entry>EABI</entry>
75          <entry>armv5l-unknown-linux-uclibcgnueabi</entry>
76        </row>
77        <row>
78          <entry>Generic arm, version 5</entry>
79          <entry>big</entry>
80          <entry>EABI</entry>
81          <entry>armv5b-unknown-linux-uclibcgnueabi</entry>
82        </row>
83        <row>
84          <entry>Generic arm</entry>
85          <entry>little</entry>
86          <entry>EABI</entry>
87          <entry>arm-unknown-linux-uclibcgnueabi</entry>
88        </row>
89        <row>
90          <entry>Generic arm, version 7-a </entry>
91          <entry>little</entry>
92          <entry>EABI</entry>
93          <entry>armv7a-unknown-linux-uclibcgnueabi</entry>
94        </row>
95      </tbody>
96
97    </tgroup>
98
99  </table>
100
101</sect1>
Note: See TracBrowser for help on using the repository browser.