source: clfs-embedded/BOOK/cross-tools/common/abi.xml @ 0194a60

Last change on this file since 0194a60 was 3ca2208, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Several fixes for PDF look.

  • Property mode set to 100644
File size: 1.6 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-system-abi">
9  <?dbhtml filename="abi.html"?>
10
11  <title>ABI Variables</title>
12
13  <para>Setup for a Particular ABI:</para>
14
15<screen><userinput>export BUILD="<replaceable>[From Chart]</replaceable>"</userinput></screen>
16
17  <para>The following table gives the entires for the different ABI's that CLFS Embedded supports. Make
18  sure you select one for your build, this will ensure capatibilty of your build with your target
19  architecture.</para>
20
21  <table>
22    <title>List of Build Variables</title>
23    <?dbfo table-width="3in" ?>
24
25    <tgroup cols="2">
26
27      <colspec colnum="1" colwidth="1.5in" colname="ABI to Select"/>
28      <colspec colnum="2" colwidth="1.5in" colname="Variable Value"/>
29
30      <thead>
31        <row>
32          <entry>ABI</entry>
33          <entry>BUILD=Value</entry>
34        </row>
35      </thead>
36
37      <tbody>
38        <row>
39          <entry>32-Bit MIPS</entry>
40          <entry>-mabi=32</entry>
41        </row>
42        <row>
43          <entry>32-Bit All Others</entry>
44          <entry>-m32</entry>
45        </row>
46        <row>
47          <entry>N32 MIPS</entry>
48          <entry>-mabi=n32</entry>
49        </row>
50        <row>
51          <entry>64-Bit MIPS</entry>
52          <entry>-mabi=64</entry>
53        </row>
54        <row>
55          <entry>64-Bit All Others</entry>
56          <entry>-m64</entry>
57        </row>
58      </tbody>
59
60    </tgroup>
61
62  </table>
63
64</sect1>
Note: See TracBrowser for help on using the repository browser.