* call.c (standard_conversion): A BASE_CONV replaces an RVALUE_CONV.
[official-gcc.git] / INSTALL / build.html
blob750b2c4a5f265a8a7ecb844073853b601ec4d10e
1 <html>
2 <head>
3 <title>Building egcs-1.0 </title>
4 </head>
5 <body bgcolor="white">
6 <h1 align="center">Building egcs-1.0</h1>
8 <p>Now that egcs is configured, you are ready to build the compiler and
9 runtime libraries.
11 <p>We <b>highly</b> recommend that egcs be built using gnu-make; other
12 versions make work, then again they might not. To be safe build with gnu-make.
14 <p><b>Building a native compiler</b>
15 <p>For a native build issue the command "make bootstrap". This will build
16 the entire egcs compiler system, which includes the following steps:
18 <ul>
19 <li> Build host tools necessary to build the compiler such as texinfo, bison,
20 gperf.<p>
22 <li> Build target tools for use by the compiler such as gas, gld, and
23 binutils.<p>
25 <li> Perform a 3-stage bootstrap of the compiler.<p>
27 <li> Perform a comparison test of the stage2 and stage3 compilers.<p>
29 <li> Build runtime libraries using the stage3 compiler from the previous
30 step.<p>
31 </ul>
33 <p>If you are short on disk space you might consider "make bootstrap-lean"
34 instead. This is identical to "make bootstrap" except that object files
35 from the stage1 and stage2 of the 3-stage bootstrap of the compiler are
36 deleted as soon as they are no longer needed.
38 <p><b>Building a cross compiler</b>
40 <p> We recommend reading the
41 <a href="ftp://ftp.cygnus.com/pub/embedded/crossgcc/FAQ-0.8.1">
42 crossgcc FAQ</a> for information about building cross compilers.
44 <p>For a cross build, issue the command "make cross", which performs the
45 following steps:
46 <ul>
47 <li> Build host tools necessary to build the compiler such as texinfo, bison,
48 gperf.<p>
50 <li> Build target tools for use by the compiler such as gas, gld, and
51 binutils.<p>
53 <li> Build the compiler (single stage only).<p>
55 <li> Build runtime libraries using the compiler from the previous
56 step.<p>
57 </ul>
59 <p>Note that if an error occurs in any step the make process will exit.
61 <p>
62 <hr>
63 <i>Last modified on December 2, 1997.</i>
65 </body>
66 </html>