aboutsummaryrefslogtreecommitdiff
path: root/INSTALL/build.html
blob: f333640496cff152df6fb9b893f4513902b33f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<title>Building egcs-1.0.1 </title>
</head>
<body bgcolor="white">
<h1 align="center">Building egcs-1.0.1</h1>

<p>Now that egcs is configured, you are ready to build the compiler and
runtime libraries.

<p>We <b>highly</b> recommend that egcs be built using gnu-make; other
versions make work, then again they might not.  To be safe build with gnu-make.

<p><b>Building a native compiler</b>
<p>For a native build issue the command "make bootstrap".  This will build
the entire egcs compiler system, which includes the following steps:

<ul>
  <li> Build host tools necessary to build the compiler such as texinfo, bison,
  gperf.<p>

  <li> Build target tools for use by the compiler such as gas, gld, and
  binutils.<p>

  <li> Perform a 3-stage bootstrap of the compiler.<p>

  <li> Perform a comparison test of the stage2 and stage3 compilers.<p>

  <li> Build runtime libraries using the stage3 compiler from the previous
  step.<p>
</ul>

<p>If you are short on disk space you might consider "make bootstrap-lean"
instead.  This is identical to "make bootstrap" except that object files
from the stage1 and stage2 of the 3-stage bootstrap of the compiler are
deleted as soon as they are no longer needed.

<p><b>Building a cross compiler</b>

<p> We recommend reading the
<a href="ftp://ftp.cygnus.com/pub/embedded/crossgcc/FAQ-0.8.1">
crossgcc FAQ</a> for information about building cross compilers.

<p>For a cross build, issue the command "make cross", which performs the
following steps:
<ul>
  <li> Build host tools necessary to build the compiler such as texinfo, bison,
  gperf.<p>

  <li> Build target tools for use by the compiler such as gas, gld, and
  binutils.<p>

  <li> Build the compiler (single stage only).<p>

  <li> Build runtime libraries using the compiler from the previous
  step.<p>
</ul>

<p>Note that if an error occurs in any step the make process will exit.

<p>
<hr>
<i>Last modified on Jan 2, 1998.</i>

</body>
</html>