source: BOOK/cross-tools/sparc64/flags.xml @ d018b81

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d018b81 was d018b81, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Several fixes for PDF look.

  • Property mode set to 100644
File size: 2.5 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-flags">
9  <title>Build Flags</title>
10  <?dbhtml filename="flags.html"?>
11
12  <para os="a">We will need to setup target specific flags for the compiler
13  and linkers. You can choose the appropriate BUILD32 and BUILD64
14  from the table at the bottom of the page.</para>
15
16<screen os="b"><userinput>export BUILD32="<replaceable>[BUILD32 entries]</replaceable>"
17export BUILD64="<replaceable>[BUILD64 entries]</replaceable>"
18export GCCTARGET="<replaceable>[GCCTARGET entries]</replaceable>"</userinput></screen>
19
20   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
21   href="../multilib/flags.xml"
22   xpointer="xpointer(//*[@os='c'])"/>
23
24<screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" &gt;&gt; ~/.bashrc
25echo export BUILD64=\""${BUILD64}\"" &gt;&gt; ~/.bashrc
26echo export GCCTARGET=\""${GCCTARGET}\"" &gt;&gt; ~/.bashrc</userinput></screen>
27
28  <para os="e">The following table gives the entires for different Sparc 64 capable
29  processors. Pick the processor that matches your system. Note: GCC settings are
30  only needed in the early sections of the book, and will not be used in the final-system
31  builds.</para>
32
33  <table os="f">
34    <title>List of 32-Bit settings, 64-Bit Build settings, and GCC setting</title>
35    <?dbfo table-width="7in" ?>
36
37    <tgroup cols="4">
38
39      <colspec colnum="1" colwidth="1in" colname="Processor"/>
40      <colspec colnum="2" colwidth="2in" colname="Build32"/>
41      <colspec colnum="3" colwidth="2in" colname="Build64"/>
42      <colspec colnum="4" colwidth="2in" colname="GCC"/>
43
44      <thead>
45        <row>
46          <entry>Processor</entry>
47          <entry>BUILD32</entry>
48          <entry>BUILD64</entry>
49          <entry>GCCTARGET</entry>
50        </row>
51      </thead>
52
53      <tbody>
54        <row>
55          <entry>Ultrasparc and Ultrasparc2</entry>
56          <entry>-m32 -mcpu=ultrasparc -mtune=ultrasparc</entry>
57          <entry>-m64 -mcpu=ultrasparc -mtune=ultrasparc</entry>
58          <entry>-mcpu=ultrasparc -mtune=ultrasparc</entry>
59        </row>
60        <row>
61          <entry>Ultrasparc3</entry>
62          <entry>-m32 -mcpu=ultrasparc3 -mtune=ultrasparc3</entry>
63          <entry>-m64 -mcpu=ultrasparc3 -mtune=ultrasparc3</entry>
64          <entry>-mcpu=ultrasparc3 -mtune=ultrasparc3</entry>
65        </row>
66      </tbody>
67
68    </tgroup>
69
70  </table>
71
72</sect1>
Note: See TracBrowser for help on using the repository browser.