source: clfs-embedded/BOOK/cross-tools/mips/variables.xml @ 0bd108d

Last change on this file since 0bd108d was 33bc2cb, checked in by Jim Gifford <clfs@…>, 17 years ago

Streamlined, and updates to some MIPS specific checks

  • 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  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
36  href="../x86/variables.xml"
37  xpointer="xpointer(//*[@os='f'])"/>
38
39  <table os="g">
40    <title>Processor Type and  Target Triplets</title>
41    <tgroup cols="2" align="center">
42      <colspec colname="Processor"/>
43      <colspec colname="Triplet"/>
44      <thead>
45        <row>
46          <entry>Processor</entry>
47          <entry>Target Triplet</entry>
48        </row>
49      </thead>
50      <tbody>
51        <row>
52          <entry>MIPS 32 bits Little Endian</entry>
53          <entry>mipsel-unknown-linux-uclibc</entry>
54        </row>
55        <row>
56          <entry>MIPS 32 bits Big Endian</entry>
57          <entry>mips-unknown-linux-uclibc</entry>
58        </row>
59        <row>
60          <entry>MIPS 64 bits Little Endian</entry>
61          <entry>mips64el-unknown-linux-uclibc</entry>
62        </row>
63        <row>
64          <entry>MIPS 64 bits Big Endian</entry>
65          <entry>mips64-unknown-linux-uclibc</entry>
66        </row>
67      </tbody>
68    </tgroup>
69  </table>
70
71</sect1>
Note: See TracBrowser for help on using the repository browser.