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="[BUILD32 entries]"
|
---|
17 | export BUILD64="[BUILD64 entries]"
|
---|
18 | export GCCTARGET="[GCCTARGET entries]"</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}\"" >> ~/.bashrc
|
---|
25 | echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc
|
---|
26 | echo export GCCTARGET=\""${GCCTARGET}\"" >> ~/.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 | <tgroup cols="2" align="center">
|
---|
36 | <colspec colname="Processor"/>
|
---|
37 | <colspec colname="Build32"/>
|
---|
38 | <colspec colname="Build64"/>
|
---|
39 | <colspec colname="GCC"/>
|
---|
40 | <thead>
|
---|
41 | <row>
|
---|
42 | <entry>Processor</entry>
|
---|
43 | <entry>BUILD32</entry>
|
---|
44 | <entry>BUILD64</entry>
|
---|
45 | <entry>GCCTARGET</entry>
|
---|
46 | </row>
|
---|
47 | </thead>
|
---|
48 | <tbody>
|
---|
49 | <row>
|
---|
50 | <entry>Ultrasparc and Ultrasparc2</entry>
|
---|
51 | <entry>-m32 -mcpu=ultrasparc -mtune=ultrasparc</entry>
|
---|
52 | <entry>-m64 -mcpu=ultrasparc -mtune=ultrasparc</entry>
|
---|
53 | <entry>-mcpu=ultrasparc -mtune=ultrasparc</entry>
|
---|
54 | </row>
|
---|
55 | <row>
|
---|
56 | <entry>Ultrasparc3</entry>
|
---|
57 | <entry>-m32 -mcpu=ultrasparc3 -mtune=ultrasparc3</entry>
|
---|
58 | <entry>-m64 -mcpu=ultrasparc3 -mtune=ultrasparc3</entry>
|
---|
59 | <entry>-mcpu=ultrasparc3 -mtune=ultrasparc3</entry>
|
---|
60 | </row>
|
---|
61 | </tbody>
|
---|
62 | </tgroup>
|
---|
63 | </table>
|
---|
64 |
|
---|
65 | </sect1>
|
---|