OSDN Git Service

* config/alpha/alpha.c (alpha_emit_floatuns): Ensure we pass a REG
[pf3gnuchains/gcc-fork.git] / gcc / install.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
2 @c This is part of the GCC manual.
3 @c For copying conditions, see the file gcc.texi.
4
5 @c The text of this file appears in the file INSTALL
6 @c in the GCC distribution, as well as in the GCC manual.
7
8 Note most of this information is out of date and superseded by the EGCS
9 install procedures.  It is provided for historical reference only.
10
11 @ifclear INSTALLONLY
12 @node Installation
13 @chapter Installing GNU CC
14 @end ifclear
15 @cindex installing GNU CC
16
17 @menu
18 * Configuration Files::  Files created by running @code{configure}.
19 * Configurations::    Configurations Supported by GNU CC.
20 * Other Dir::     Compiling in a separate directory (not where the source is).
21 * Cross-Compiler::   Building and installing a cross-compiler.
22 * Sun Install::   See below for installation on the Sun.
23 * VMS Install::   See below for installation on VMS.
24 * Collect2::      How @code{collect2} works; how it finds @code{ld}.
25 * Header Dirs::   Understanding the standard header file directories.
26 @end menu
27
28 Here is the procedure for installing GNU CC on a GNU or Unix system.
29 See @ref{VMS Install}, for VMS systems.  In this section we assume you
30 compile in the same directory that contains the source files; see
31 @ref{Other Dir}, to find out how to compile in a separate directory on
32 Unix systems.
33
34 You cannot install GNU C by itself on MSDOS; it will not compile under
35 any MSDOS compiler except itself.  You need to get the complete
36 compilation package DJGPP, which includes binaries as well as sources,
37 and includes all the necessary compilation tools and libraries.
38
39 @enumerate
40 @item
41 If you have built GNU CC previously in the same directory for a
42 different target machine, do @samp{make distclean} to delete all files
43 that might be invalid.  One of the files this deletes is
44 @file{Makefile}; if @samp{make distclean} complains that @file{Makefile}
45 does not exist, it probably means that the directory is already suitably
46 clean.
47
48 @item
49 On a System V release 4 system, make sure @file{/usr/bin} precedes
50 @file{/usr/ucb} in @code{PATH}.  The @code{cc} command in
51 @file{/usr/ucb} uses libraries which have bugs.
52
53 @cindex Bison parser generator
54 @cindex parser generator, Bison
55 @item
56 Make sure the Bison parser generator is installed.  (This is
57 unnecessary if the Bison output files @file{c-parse.c} and
58 @file{cexp.c} are more recent than @file{c-parse.y} and @file{cexp.y}
59 and you do not plan to change the @samp{.y} files.)
60
61 Bison versions older than Sept 8, 1988 will produce incorrect output
62 for @file{c-parse.c}.
63
64 @item
65 If you have chosen a configuration for GNU CC which requires other GNU
66 tools (such as GAS or the GNU linker) instead of the standard system
67 tools, install the required tools in the build directory under the names
68 @file{as}, @file{ld} or whatever is appropriate.  This will enable the
69 compiler to find the proper tools for compilation of the program
70 @file{enquire}.
71
72 Alternatively, you can do subsequent compilation using a value of the
73 @code{PATH} environment variable such that the necessary GNU tools come
74 before the standard system tools.
75
76 @item
77 Specify the host, build and target machine configurations.  You do this
78 when you run the @file{configure} script.
79
80 The @dfn{build} machine is the system which you are using, the
81 @dfn{host} machine is the system where you want to run the resulting
82 compiler (normally the build machine), and the @dfn{target} machine is
83 the system for which you want the compiler to generate code.
84
85 If you are building a compiler to produce code for the machine it runs
86 on (a native compiler), you normally do not need to specify any operands
87 to @file{configure}; it will try to guess the type of machine you are on
88 and use that as the build, host and target machines.  So you don't need
89 to specify a configuration when building a native compiler unless
90 @file{configure} cannot figure out what your configuration is or guesses
91 wrong.
92
93 In those cases, specify the build machine's @dfn{configuration name}
94 with the @samp{--host} option; the host and target will default to be
95 the same as the host machine.  (If you are building a cross-compiler,
96 see @ref{Cross-Compiler}.)
97
98 Here is an example:
99
100 @smallexample
101 ./configure --host=sparc-sun-sunos4.1
102 @end smallexample
103
104 A configuration name may be canonical or it may be more or less
105 abbreviated.
106
107 A canonical configuration name has three parts, separated by dashes.
108 It looks like this: @samp{@var{cpu}-@var{company}-@var{system}}.
109 (The three parts may themselves contain dashes; @file{configure}
110 can figure out which dashes serve which purpose.)  For example,
111 @samp{m68k-sun-sunos4.1} specifies a Sun 3.
112
113 You can also replace parts of the configuration by nicknames or aliases.
114 For example, @samp{sun3} stands for @samp{m68k-sun}, so
115 @samp{sun3-sunos4.1} is another way to specify a Sun 3.  You can also
116 use simply @samp{sun3-sunos}, since the version of SunOS is assumed by
117 default to be version 4.
118
119 You can specify a version number after any of the system types, and some
120 of the CPU types.  In most cases, the version is irrelevant, and will be
121 ignored.  So you might as well specify the version if you know it.
122
123 See @ref{Configurations}, for a list of supported configuration names and
124 notes on many of the configurations.  You should check the notes in that
125 section before proceeding any further with the installation of GNU CC.
126
127 @item
128 When running @code{configure}, you may also need to specify certain
129 additional options that describe variant hardware and software
130 configurations.  These are @samp{--with-gnu-as}, @samp{--with-gnu-ld},
131 @samp{--with-stabs} and @samp{--nfp}.
132
133 @table @samp
134 @item --with-gnu-as
135 If you will use GNU CC with the GNU assembler (GAS), you should declare
136 this by using the @samp{--with-gnu-as} option when you run
137 @file{configure}.
138
139 Using this option does not install GAS.  It only modifies the output of
140 GNU CC to work with GAS.  Building and installing GAS is up to you.
141
142 Conversely, if you @emph{do not} wish to use GAS and do not specify
143 @samp{--with-gnu-as} when building GNU CC, it is up to you to make sure
144 that GAS is not installed.  GNU CC searches for a program named
145 @code{as} in various directories; if the program it finds is GAS, then
146 it runs GAS.  If you are not sure where GNU CC finds the assembler it is
147 using, try specifying @samp{-v} when you run it.
148
149 The systems where it makes a difference whether you use GAS are@*
150 @samp{hppa1.0-@var{any}-@var{any}}, @samp{hppa1.1-@var{any}-@var{any}},
151 @samp{i386-@var{any}-sysv}, @samp{i386-@var{any}-isc},@*
152 @samp{i860-@var{any}-bsd}, @samp{m68k-bull-sysv},@*
153 @samp{m68k-hp-hpux}, @samp{m68k-sony-bsd},@*
154 @samp{m68k-altos-sysv}, @samp{m68000-hp-hpux},@*
155 @samp{m68000-att-sysv}, @samp{@var{any}-lynx-lynxos},
156 and @samp{mips-@var{any}}).
157 On any other system, @samp{--with-gnu-as} has no effect.
158
159 On the systems listed above (except for the HP-PA, for ISC on the
160 386, and for @samp{mips-sgi-irix5.*}), if you use GAS, you should also
161 use the GNU linker (and specify @samp{--with-gnu-ld}).
162
163 @item --with-gnu-ld
164 Specify the option @samp{--with-gnu-ld} if you plan to use the GNU
165 linker with GNU CC.
166
167 This option does not cause the GNU linker to be installed; it just
168 modifies the behavior of GNU CC to work with the GNU linker.
169 @c Specifically, it inhibits the installation of @code{collect2}, a program
170 @c which otherwise serves as a front-end for the system's linker on most
171 @c configurations.
172
173 @item --with-stabs
174 On MIPS based systems and on Alphas, you must specify whether you want
175 GNU CC to create the normal ECOFF debugging format, or to use BSD-style
176 stabs passed through the ECOFF symbol table.  The normal ECOFF debug
177 format cannot fully handle languages other than C.  BSD stabs format can
178 handle other languages, but it only works with the GNU debugger GDB.
179
180 Normally, GNU CC uses the ECOFF debugging format by default; if you
181 prefer BSD stabs, specify @samp{--with-stabs} when you configure GNU
182 CC.
183
184 No matter which default you choose when you configure GNU CC, the user
185 can use the @samp{-gcoff} and @samp{-gstabs+} options to specify explicitly
186 the debug format for a particular compilation.
187
188 @samp{--with-stabs} is meaningful on the ISC system on the 386, also, if
189 @samp{--with-gas} is used.  It selects use of stabs debugging
190 information embedded in COFF output.  This kind of debugging information
191 supports C++ well; ordinary COFF debugging information does not.
192
193 @samp{--with-stabs} is also meaningful on 386 systems running SVR4.  It
194 selects use of stabs debugging information embedded in ELF output.  The
195 C++ compiler currently (2.6.0) does not support the DWARF debugging
196 information normally used on 386 SVR4 platforms; stabs provide a
197 workable alternative.  This requires gas and gdb, as the normal SVR4
198 tools can not generate or interpret stabs.
199
200 @item --nfp
201 On certain systems, you must specify whether the machine has a floating
202 point unit.  These systems include @samp{m68k-sun-sunos@var{n}} and
203 @samp{m68k-isi-bsd}.  On any other system, @samp{--nfp} currently has no
204 effect, though perhaps there are other systems where it could usefully
205 make a difference.
206
207 @cindex Haifa scheduler
208 @cindex scheduler, experimental
209 @item --enable-haifa
210 @itemx --disable-haifa
211 Use @samp{--enable-haifa} to enable use of an experimental instruction
212 scheduler (from IBM Haifa).  This may or may not produce better code.
213 Some targets on which it is known to be a win enable it by default; use
214 @samp{--disable-haifa} to disable it in these cases.  @code{configure}
215 will print out whether the Haifa scheduler is enabled when it is run.
216
217 @cindex Objective C threads
218 @cindex threads, Objective C
219 @item --enable-threads=@var{type}
220 Certain systems, notably Linux-based GNU systems, can't be relied on to
221 supply a threads facility for the Objective C runtime and so will
222 default to single-threaded runtime.  They may, however, have a library
223 threads implementation available, in which case threads can be enabled
224 with this option by supplying a suitable @var{type}, probably
225 @samp{posix}.  The possibilities for @var{type} are @samp{single},
226 @samp{posix}, @samp{win32}, @samp{solaris}, @samp{irix} and @samp{mach}.
227
228 @cindex Internal Compiler Checking
229 @item --enable-checking
230 When you specify this option, the compiler is built to perform checking
231 of tree node types when referencing fields of that node.  This does not
232 change the generated code, but adds error checking within the compiler.
233 This will slow down the compiler and may only work properly if you
234 are building the compiler with GNU C.
235
236 The @file{configure} script searches subdirectories of the source
237 directory for other compilers that are to be integrated into GNU CC.
238 The GNU compiler for C++, called G++ is in a subdirectory named
239 @file{cp}.  @file{configure} inserts rules into @file{Makefile} to build
240 all of those compilers.
241
242 Here we spell out what files will be set up by @code{configure}.  Normally
243 you need not be concerned with these files.
244
245 @itemize @bullet
246 @item
247 @ifset INTERNALS
248 A file named @file{config.h} is created that contains a @samp{#include}
249 of the top-level config file for the machine you will run the compiler
250 on (@pxref{Config}).  This file is responsible for defining information
251 about the host machine.  It includes @file{tm.h}.
252 @end ifset
253 @ifclear INTERNALS
254 A file named @file{config.h} is created that contains a @samp{#include}
255 of the top-level config file for the machine you will run the compiler
256 on (@pxref{Config,,The Configuration File, gcc.info, Using and Porting
257 GCC}).  This file is responsible for defining information about the host
258 machine.  It includes @file{tm.h}.
259 @end ifclear
260
261 The top-level config file is located in the subdirectory @file{config}.
262 Its name is always @file{xm-@var{something}.h}; usually
263 @file{xm-@var{machine}.h}, but there are some exceptions.
264
265 If your system does not support symbolic links, you might want to
266 set up @file{config.h} to contain a @samp{#include} command which
267 refers to the appropriate file.
268
269 @item
270 A file named @file{tconfig.h} is created which includes the top-level config
271 file for your target machine.  This is used for compiling certain
272 programs to run on that machine.
273
274 @item
275 A file named @file{tm.h} is created which includes the
276 machine-description macro file for your target machine.  It should be in
277 the subdirectory @file{config} and its name is often
278 @file{@var{machine}.h}.
279 @end itemize
280
281 @cindex Native Language Support
282 @cindex NLS
283 @item --enable-nls
284 @itemx --disable-nls
285 The @samp{--enable-nls} option enables Native Language Support (NLS),
286 which lets GCC output diagnostics in languages other than American
287 English.  No translations are available yet, so the main users of this
288 option now are those translating GCC's diagnostics who want to test
289 their work.  Once translations become available, Native Language Support
290 will become enabled by default.  The @samp{--disable-nls} option
291 disables NLS.
292
293 @cindex @code{gettext}
294 @item --with-included-gettext
295 If NLS is enabled, the GCC build procedure normally attempts to use the
296 host's @code{gettext} libraries, and falls back on GCC's copy of the GNU
297 @code{gettext} library only if the host libraries do not suffice.  The
298 @samp{--with-included-gettext} option causes the build procedure to
299 prefer its copy of GNU @code{gettext}.
300
301 @cindex @code{catgets}
302 @item --with-catgets
303 If NLS is enabled, and if the host lacks @code{gettext} but has the
304 inferior @code{catgets} interface, the GCC build procedure normally
305 ignores @code{catgets} and instead uses GCC's copy of the GNU
306 @code{gettext} library.  The @samp{--with-catgets} option causes the
307 build procedure to use the host's @code{catgets} in this situation.
308
309 @cindex Windows32 Registry support
310 @item --enable-win32-registry
311 @itemx --enable-win32-registry=@var{KEY}
312 @itemx --disable-win32-registry
313 The @samp{--enable-win32-registry} option enables Windows-hosted GCC
314 to look up installations paths in the registry using the following key:
315
316 @smallexample
317 @code{HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>}
318 @end smallexample
319
320 <KEY> defaults to GCC version number, and can be overridden by the
321 @code{--enable-win32-registry=KEY} option. Vendors and distributors
322 who use custom installers are encouraged to provide a different key,
323 perhaps one comprised of vendor name and GCC version number, to
324 avoid conflict with existing installations. This feature is enabled
325 by default, and can be disabled by @code{--disable-win32-registry}
326 option.  This option has no effect on the other hosts.
327 @end table
328
329 @item
330 In certain cases, you should specify certain other options when you run
331 @code{configure}.
332
333 @itemize @bullet
334 @item
335 The standard directory for installing GNU CC is @file{/usr/local/lib}.
336 If you want to install its files somewhere else, specify
337 @samp{--prefix=@var{dir}} when you run @file{configure}.  Here @var{dir}
338 is a directory name to use instead of @file{/usr/local} for all purposes
339 with one exception: the directory @file{/usr/local/include} is searched
340 for header files no matter where you install the compiler.  To override
341 this name, use the @code{--with-local-prefix} option below.  The directory
342 you specify need not exist, but its parent directory must exist.
343
344 @item
345 Specify @samp{--with-local-prefix=@var{dir}} if you want the compiler to
346 search directory @file{@var{dir}/include} for locally installed header
347 files @emph{instead} of @file{/usr/local/include}.
348
349 You should specify @samp{--with-local-prefix} @strong{only} if your site has
350 a different convention (not @file{/usr/local}) for where to put
351 site-specific files.
352
353 The default value for @samp{--with-local-prefix} is @file{/usr/local}
354 regardless of the value of @samp{--prefix}.  Specifying @samp{--prefix}
355 has no effect on which directory GNU CC searches for local header files.
356 This may seem counterintuitive, but actually it is logical.
357
358 The purpose of @samp{--prefix} is to specify where to @emph{install GNU
359 CC}.  The local header files in @file{/usr/local/include}---if you put
360 any in that directory---are not part of GNU CC.  They are part of other
361 programs---perhaps many others.  (GNU CC installs its own header files
362 in another directory which is based on the @samp{--prefix} value.)
363
364 @strong{Do not} specify @file{/usr} as the @samp{--with-local-prefix}!  The
365 directory you use for @samp{--with-local-prefix} @strong{must not} contain
366 any of the system's standard header files.  If it did contain them,
367 certain programs would be miscompiled (including GNU Emacs, on certain
368 targets), because this would override and nullify the header file
369 corrections made by the @code{fixincludes} script.
370
371 Indications are that people who use this option use it based on
372 mistaken ideas of what it is for.  People use it as if it specified
373 where to install part of GNU CC.  Perhaps they make this assumption
374 because installing GNU CC creates the directory.
375 @end itemize
376
377 @item
378 Build the compiler.  Just type @samp{make LANGUAGES=c} in the compiler
379 directory.
380
381 @samp{LANGUAGES=c} specifies that only the C compiler should be
382 compiled.  The makefile normally builds compilers for all the supported
383 languages; currently, C, C++ and Objective C.  However, C is the only
384 language that is sure to work when you build with other non-GNU C
385 compilers.  In addition, building anything but C at this stage is a
386 waste of time.
387
388 In general, you can specify the languages to build by typing the
389 argument @samp{LANGUAGES="@var{list}"}, where @var{list} is one or more
390 words from the list @samp{c}, @samp{c++}, and @samp{objective-c}.  If
391 you have any additional GNU compilers as subdirectories of the GNU CC
392 source directory, you may also specify their names in this list.
393
394 Ignore any warnings you may see about ``statement not reached'' in
395 @file{insn-emit.c}; they are normal.  Also, warnings about ``unknown
396 escape sequence'' are normal in @file{genopinit.c} and perhaps some
397 other files.  Likewise, you should ignore warnings about ``constant is
398 so large that it is unsigned'' in @file{insn-emit.c} and
399 @file{insn-recog.c}, a warning about a comparison always being zero
400 in @file{enquire.o}, and warnings about shift counts exceeding type
401 widths in @file{cexp.y}.  Any other compilation errors may represent bugs in
402 the port to your machine or operating system, and
403 @ifclear INSTALLONLY
404 should be investigated and reported (@pxref{Bugs}).
405 @end ifclear
406 @ifset INSTALLONLY
407 should be investigated and reported.
408 @end ifset
409
410 Some compilers fail to compile GNU CC because they have bugs or
411 limitations.  For example, the Microsoft compiler is said to run out of
412 macro space.  Some Ultrix compilers run out of expression space; then
413 you need to break up the statement where the problem happens.
414
415 @item
416 If you are building a cross-compiler, stop here.  @xref{Cross-Compiler}.
417
418 @cindex stage1
419 @item
420 Move the first-stage object files and executables into a subdirectory
421 with this command:
422
423 @smallexample
424 make stage1
425 @end smallexample
426
427 The files are moved into a subdirectory named @file{stage1}.
428 Once installation is complete, you may wish to delete these files
429 with @code{rm -r stage1}.
430
431 @item
432 If you have chosen a configuration for GNU CC which requires other GNU
433 tools (such as GAS or the GNU linker) instead of the standard system
434 tools, install the required tools in the @file{stage1} subdirectory
435 under the names @file{as}, @file{ld} or whatever is appropriate.  This
436 will enable the stage 1 compiler to find the proper tools in the
437 following stage.
438
439 Alternatively, you can do subsequent compilation using a value of the
440 @code{PATH} environment variable such that the necessary GNU tools come
441 before the standard system tools.
442
443 @item
444 Recompile the compiler with itself, with this command:
445
446 @smallexample
447 make CC="stage1/xgcc -Bstage1/" CFLAGS="-g -O2"
448 @end smallexample
449
450 This is called making the stage 2 compiler.
451
452 The command shown above builds compilers for all the supported
453 languages.  If you don't want them all, you can specify the languages to
454 build by typing the argument @samp{LANGUAGES="@var{list}"}.  @var{list}
455 should contain one or more words from the list @samp{c}, @samp{c++},
456 @samp{objective-c}, and @samp{proto}.  Separate the words with spaces.
457 @samp{proto} stands for the programs @code{protoize} and
458 @code{unprotoize}; they are not a separate language, but you use
459 @code{LANGUAGES} to enable or disable their installation.
460
461 If you are going to build the stage 3 compiler, then you might want to
462 build only the C language in stage 2.
463
464 Once you have built the stage 2 compiler, if you are short of disk
465 space, you can delete the subdirectory @file{stage1}.
466
467 On a 68000 or 68020 system lacking floating point hardware,
468 unless you have selected a @file{tm.h} file that expects by default
469 that there is no such hardware, do this instead:
470
471 @smallexample
472 make CC="stage1/xgcc -Bstage1/" CFLAGS="-g -O2 -msoft-float"
473 @end smallexample
474
475 @item
476 If you wish to test the compiler by compiling it with itself one more
477 time, install any other necessary GNU tools (such as GAS or the GNU
478 linker) in the @file{stage2} subdirectory as you did in the
479 @file{stage1} subdirectory, then do this:
480
481 @smallexample
482 make stage2
483 make CC="stage2/xgcc -Bstage2/" CFLAGS="-g -O2"
484 @end smallexample
485
486 @noindent
487 This is called making the stage 3 compiler.  Aside from the @samp{-B}
488 option, the compiler options should be the same as when you made the
489 stage 2 compiler.  But the @code{LANGUAGES} option need not be the
490 same.  The command shown above builds compilers for all the supported
491 languages; if you don't want them all, you can specify the languages to
492 build by typing the argument @samp{LANGUAGES="@var{list}"}, as described
493 above.
494
495 If you do not have to install any additional GNU tools, you may use the
496 command
497
498 @smallexample
499 make bootstrap LANGUAGES=@var{language-list} BOOT_CFLAGS=@var{option-list}
500 @end smallexample
501
502 @noindent
503 instead of making @file{stage1}, @file{stage2}, and performing
504 the two compiler builds.
505
506 @item
507 Compare the latest object files with the stage 2 object files---they
508 ought to be identical, aside from time stamps (if any).
509
510 On some systems, meaningful comparison of object files is impossible;
511 they always appear ``different.''  This is currently true on Solaris and
512 some systems that use ELF object file format.  On some versions of Irix
513 on SGI machines and DEC Unix (OSF/1) on Alpha systems, you will not be
514 able to compare the files without specifying @file{-save-temps}; see the
515 description of individual systems above to see if you get comparison
516 failures.  You may have similar problems on other systems.
517
518 Use this command to compare the files:
519
520 @smallexample
521 make compare
522 @end smallexample
523
524 This will mention any object files that differ between stage 2 and stage
525 3.  Any difference, no matter how innocuous, indicates that the stage 2
526 compiler has compiled GNU CC incorrectly, and is therefore a potentially
527 @ifclear INSTALLONLY
528 serious bug which you should investigate and report (@pxref{Bugs}).
529 @end ifclear
530 @ifset INSTALLONLY
531 serious bug which you should investigate and report.
532 @end ifset
533
534 If your system does not put time stamps in the object files, then this
535 is a faster way to compare them (using the Bourne shell):
536
537 @smallexample
538 for file in *.o; do
539 cmp $file stage2/$file
540 done
541 @end smallexample
542
543 If you have built the compiler with the @samp{-mno-mips-tfile} option on
544 MIPS machines, you will not be able to compare the files.
545
546 @item
547 Install the compiler driver, the compiler's passes and run-time support
548 with @samp{make install}.  Use the same value for @code{CC},
549 @code{CFLAGS} and @code{LANGUAGES} that you used when compiling the
550 files that are being installed.  One reason this is necessary is that
551 some versions of Make have bugs and recompile files gratuitously when
552 you do this step.  If you use the same variable values, those files will
553 be recompiled properly.
554
555 For example, if you have built the stage 2 compiler, you can use the
556 following command:
557
558 @smallexample
559 make install CC="stage2/xgcc -Bstage2/" CFLAGS="-g -O" LANGUAGES="@var{list}"
560 @end smallexample
561
562 @noindent
563 This copies the files @file{cc1}, @file{cpp} and @file{libgcc.a} to
564 files @file{cc1}, @file{cpp} and @file{libgcc.a} in the directory
565 @file{/usr/local/lib/gcc-lib/@var{target}/@var{version}}, which is where
566 the compiler driver program looks for them.  Here @var{target} is the
567 canonicalized form of target machine type specified when you ran
568 @file{configure}, and @var{version} is the version number of GNU CC.
569 This naming scheme permits various versions and/or cross-compilers to
570 coexist.  It also copies the executables for compilers for other
571 languages (e.g., @file{cc1plus} for C++) to the same directory.
572
573 This also copies the driver program @file{xgcc} into
574 @file{/usr/local/bin/gcc}, so that it appears in typical execution
575 search paths.  It also copies @file{gcc.1} into
576 @file{/usr/local/man/man1} and info pages into @file{/usr/local/info}.
577
578 On some systems, this command causes recompilation of some files.  This
579 is usually due to bugs in @code{make}.  You should either ignore this
580 problem, or use GNU Make.
581
582 @cindex @code{alloca} and SunOS
583 @strong{Warning: there is a bug in @code{alloca} in the Sun library.  To
584 avoid this bug, be sure to install the executables of GNU CC that were
585 compiled by GNU CC.  (That is, the executables from stage 2 or 3, not
586 stage 1.)  They use @code{alloca} as a built-in function and never the
587 one in the library.}
588
589 (It is usually better to install GNU CC executables from stage 2 or 3,
590 since they usually run faster than the ones compiled with some other
591 compiler.)
592
593 @item
594 @cindex C++ runtime library
595 @cindex @code{libstdc++}
596 If you're going to use C++, you need to install the C++ runtime library.
597 This includes all I/O functionality, special class libraries, etc.
598
599 The standard C++ runtime library for GNU CC is called @samp{libstdc++}.
600 An obsolescent library @samp{libg++} may also be available, but it's
601 necessary only for older software that hasn't been converted yet; if
602 you don't know whether you need @samp{libg++} then you probably don't
603 need it.
604
605 Here's one way to build and install @samp{libstdc++} for GNU CC:
606
607 @itemize @bullet
608 @item
609 Build and install GNU CC, so that invoking @samp{gcc} obtains the GNU CC
610 that was just built.
611
612 @item
613 Obtain a copy of a compatible @samp{libstdc++} distribution.  For
614 example, the @samp{libstdc++-2.8.0.tar.gz} distribution should be
615 compatible with GCC 2.8.0.  GCC distributors normally distribute
616 @samp{libstdc++} as well.
617
618 @item
619 Set the @samp{CXX} environment variable to @samp{gcc} while running the
620 @samp{libstdc++} distribution's @file{configure} command.  Use the same
621 @file{configure} options that you used when you invoked GCC's
622 @file{configure} command.
623
624 @item
625 Invoke @samp{make} to build the C++ runtime.
626
627 @item
628 Invoke @samp{make install} to install the C++ runtime.
629
630 @end itemize
631
632 To summarize, after building and installing GNU CC, invoke the following
633 shell commands in the topmost directory of the C++ library distribution.
634 For @var{configure-options}, use the same options that
635 you used to configure GNU CC.
636
637 @example
638 $ CXX=gcc ./configure @var{configure-options}
639 $ make
640 $ make install
641 @end example
642
643 @item
644 GNU CC includes a runtime library for Objective-C because it is an
645 integral part of the language.  You can find the files associated with
646 the library in the subdirectory @file{objc}.  The GNU Objective-C
647 Runtime Library requires header files for the target's C library in
648 order to be compiled,and also requires the header files for the target's
649 thread library if you want thread support.  @xref{Cross Headers,
650 Cross-Compilers and Header Files, Cross-Compilers and Header Files}, for
651 discussion about header files issues for cross-compilation.
652
653 When you run @file{configure}, it picks the appropriate Objective-C
654 thread implementation file for the target platform.  In some situations,
655 you may wish to choose a different back-end as some platforms support
656 multiple thread implementations or you may wish to disable thread
657 support completely.  You do this by specifying a value for the
658 @var{OBJC_THREAD_FILE} makefile variable on the command line when you
659 run make, for example:
660
661 @smallexample
662 make CC="stage2/xgcc -Bstage2/" CFLAGS="-g -O2" OBJC_THREAD_FILE=thr-single
663 @end smallexample
664
665 @noindent
666 Below is a list of the currently available back-ends.
667
668 @itemize @bullet
669 @item thr-single
670 Disable thread support, should work for all platforms.
671 @item thr-decosf1
672 DEC OSF/1 thread support.
673 @item thr-irix
674 SGI IRIX thread support.
675 @item thr-mach
676 Generic MACH thread support, known to work on NEXTSTEP.
677 @item thr-os2
678 IBM OS/2 thread support.
679 @item thr-posix
680 Generix POSIX thread support.
681 @item thr-pthreads
682 PCThreads on Linux-based GNU systems.
683 @item thr-solaris
684 SUN Solaris thread support.
685 @item thr-win32
686 Microsoft Win32 API thread support.
687 @end itemize
688 @end enumerate
689
690 @node Configuration Files
691 @section Files Created by @code{configure}
692
693 Here we spell out what files will be set up by @code{configure}.  Normally
694 you need not be concerned with these files.
695
696 @itemize @bullet
697 @item
698 @ifset INTERNALS
699 A file named @file{config.h} is created that contains a @samp{#include}
700 of the top-level config file for the machine you will run the compiler
701 on (@pxref{Config}).  This file is responsible for defining information
702 about the host machine.  It includes @file{tm.h}.
703 @end ifset
704 @ifclear INTERNALS
705 A file named @file{config.h} is created that contains a @samp{#include}
706 of the top-level config file for the machine you will run the compiler
707 on (@pxref{Config,,The Configuration File, gcc.info, Using and Porting
708 GCC}).  This file is responsible for defining information about the host
709 machine.  It includes @file{tm.h}.
710 @end ifclear
711
712 The top-level config file is located in the subdirectory @file{config}.
713 Its name is always @file{xm-@var{something}.h}; usually
714 @file{xm-@var{machine}.h}, but there are some exceptions.
715
716 If your system does not support symbolic links, you might want to
717 set up @file{config.h} to contain a @samp{#include} command which
718 refers to the appropriate file.
719
720 @item
721 A file named @file{tconfig.h} is created which includes the top-level config
722 file for your target machine.  This is used for compiling certain
723 programs to run on that machine.
724
725 @item
726 A file named @file{tm.h} is created which includes the
727 machine-description macro file for your target machine.  It should be in
728 the subdirectory @file{config} and its name is often
729 @file{@var{machine}.h}.
730
731 @item
732 The command file @file{configure} also constructs the file
733 @file{Makefile} by adding some text to the template file
734 @file{Makefile.in}.  The additional text comes from files in the
735 @file{config} directory, named @file{t-@var{target}} and
736 @file{x-@var{host}}.  If these files do not exist, it means nothing
737 needs to be added for a given target or host.
738 @end itemize
739
740 @node Configurations
741 @section Configurations Supported by GNU CC
742 @cindex configurations supported by GNU CC
743
744 Here are the possible CPU types:
745
746 @quotation
747 @c gmicro, fx80, spur and tahoe omitted since they don't work.
748 1750a, a29k, alpha, arm, avr, c@var{n}, clipper, dsp16xx, elxsi, fr30, h8300,
749 hppa1.0, hppa1.1, i370, i386, i486, i586, i686, i786, i860, i960, m32r,
750 m68000, m68k, m88k, mcore, mips, mipsel, mips64, mips64el, mn10200, mn10300,
751 ns32k, pdp11, powerpc, powerpcle, romp, rs6000, sh, sparc, sparclite,
752 sparc64, v850, vax, we32k.
753 @end quotation
754
755 Here are the recognized company names.  As you can see, customary
756 abbreviations are used rather than the longer official names.
757
758 @c What should be done about merlin, tek*, dolphin?
759 @quotation
760 acorn, alliant, altos, apollo, apple, att, bull,
761 cbm, convergent, convex, crds, dec, dg, dolphin,
762 elxsi, encore, harris, hitachi, hp, ibm, intergraph, isi,
763 mips, motorola, ncr, next, ns, omron, plexus,
764 sequent, sgi, sony, sun, tti, unicom, wrs.
765 @end quotation
766
767 The company name is meaningful only to disambiguate when the rest of
768 the information supplied is insufficient.  You can omit it, writing
769 just @samp{@var{cpu}-@var{system}}, if it is not needed.  For example,
770 @samp{vax-ultrix4.2} is equivalent to @samp{vax-dec-ultrix4.2}.
771
772 Here is a list of system types:
773
774 @quotation
775 386bsd, aix, acis, amigaos, aos, aout, aux, bosx, bsd, clix, coff, ctix, cxux,
776 dgux, dynix, ebmon, ecoff, elf, esix, freebsd, hms, genix, gnu, linux-gnu,
777 hiux, hpux, iris, irix, isc, luna, lynxos, mach, minix, msdos, mvs,
778 netbsd, newsos, nindy, ns, osf, osfrose, ptx, riscix, riscos, rtu, sco, sim,
779 solaris, sunos, sym, sysv, udi, ultrix, unicos, uniplus, unos, vms, vsta,
780 vxworks, winnt, xenix.
781 @end quotation
782
783 @noindent
784 You can omit the system type; then @file{configure} guesses the
785 operating system from the CPU and company.
786
787 You can add a version number to the system type; this may or may not
788 make a difference.  For example, you can write @samp{bsd4.3} or
789 @samp{bsd4.4} to distinguish versions of BSD.  In practice, the version
790 number is most needed for @samp{sysv3} and @samp{sysv4}, which are often
791 treated differently.
792
793 If you specify an impossible combination such as @samp{i860-dg-vms},
794 then you may get an error message from @file{configure}, or it may
795 ignore part of the information and do the best it can with the rest.
796 @file{configure} always prints the canonical name for the alternative
797 that it used.  GNU CC does not support all possible alternatives.
798
799 Often a particular model of machine has a name.  Many machine names are
800 recognized as aliases for CPU/company combinations.  Thus, the machine
801 name @samp{sun3}, mentioned above, is an alias for @samp{m68k-sun}.
802 Sometimes we accept a company name as a machine name, when the name is
803 popularly used for a particular machine.  Here is a table of the known
804 machine names:
805
806 @quotation
807 3300, 3b1, 3b@var{n}, 7300, altos3068, altos,
808 apollo68, att-7300, balance,
809 convex-c@var{n}, crds, decstation-3100,
810 decstation, delta, encore,
811 fx2800, gmicro, hp7@var{nn}, hp8@var{nn},
812 hp9k2@var{nn}, hp9k3@var{nn}, hp9k7@var{nn},
813 hp9k8@var{nn}, iris4d, iris, isi68,
814 m3230, magnum, merlin, miniframe,
815 mmax, news-3600, news800, news, next,
816 pbd, pc532, pmax, powerpc, powerpcle, ps2, risc-news,
817 rtpc, sun2, sun386i, sun386, sun3,
818 sun4, symmetry, tower-32, tower.
819 @end quotation
820
821 @noindent
822 Remember that a machine name specifies both the cpu type and the company
823 name.
824 If you want to install your own homemade configuration files, you can
825 use @samp{local} as the company name to access them.  If you use
826 configuration @samp{@var{cpu}-local}, the configuration name
827 without the cpu prefix
828 is used to form the configuration file names.
829
830 Thus, if you specify @samp{m68k-local}, configuration uses
831 files @file{m68k.md}, @file{local.h}, @file{m68k.c},
832 @file{xm-local.h}, @file{t-local}, and @file{x-local}, all in the
833 directory @file{config/m68k}.
834
835 Here is a list of configurations that have special treatment or special
836 things you must know:
837
838 @table @samp
839 @item 1750a-*-*
840 MIL-STD-1750A processors.
841
842 The MIL-STD-1750A cross configuration produces output for
843 @code{as1750}, an assembler/linker available under the GNU Public
844 License for the 1750A. @code{as1750} can be obtained at 
845 @emph{ftp://ftp.fta-berlin.de/pub/crossgcc/1750gals/}.
846 A similarly licensed simulator for
847 the 1750A is available from same address.
848
849 You should ignore a fatal error during the building of libgcc (libgcc is
850 not yet implemented for the 1750A.)
851
852 The @code{as1750} assembler requires the file @file{ms1750.inc}, which is
853 found in the directory @file{config/1750a}.
854
855 GNU CC produced the same sections as the Fairchild F9450 C Compiler,
856 namely:
857
858 @table @code
859 @item Normal
860 The program code section.
861
862 @item Static
863 The read/write (RAM) data section.
864
865 @item Konst
866 The read-only (ROM) constants section.
867
868 @item Init
869 Initialization section (code to copy KREL to SREL).
870 @end table
871
872 The smallest addressable unit is 16 bits (BITS_PER_UNIT is 16).  This
873 means that type `char' is represented with a 16-bit word per character.
874 The 1750A's "Load/Store Upper/Lower Byte" instructions are not used by
875 GNU CC.
876
877 @item alpha-*-osf1
878 Systems using processors that implement the DEC Alpha architecture and
879 are running the DEC Unix (OSF/1) operating system, for example the DEC
880 Alpha AXP systems.CC.)
881
882 GNU CC writes a @samp{.verstamp} directive to the assembler output file
883 unless it is built as a cross-compiler.  It gets the version to use from
884 the system header file @file{/usr/include/stamp.h}.  If you install a
885 new version of DEC Unix, you should rebuild GCC to pick up the new version
886 stamp.
887
888 Note that since the Alpha is a 64-bit architecture, cross-compilers from
889 32-bit machines will not generate code as efficient as that generated
890 when the compiler is running on a 64-bit machine because many
891 optimizations that depend on being able to represent a word on the
892 target in an integral value on the host cannot be performed.  Building
893 cross-compilers on the Alpha for 32-bit machines has only been tested in
894 a few cases and may not work properly.
895
896 @code{make compare} may fail on old versions of DEC Unix unless you add
897 @samp{-save-temps} to @code{CFLAGS}.  On these systems, the name of the
898 assembler input file is stored in the object file, and that makes
899 comparison fail if it differs between the @code{stage1} and
900 @code{stage2} compilations.  The option @samp{-save-temps} forces a
901 fixed name to be used for the assembler input file, instead of a
902 randomly chosen name in @file{/tmp}.  Do not add @samp{-save-temps}
903 unless the comparisons fail without that option.  If you add
904 @samp{-save-temps}, you will have to manually delete the @samp{.i} and
905 @samp{.s} files after each series of compilations.
906
907 GNU CC now supports both the native (ECOFF) debugging format used by DBX
908 and GDB and an encapsulated STABS format for use only with GDB.  See the
909 discussion of the @samp{--with-stabs} option of @file{configure} above
910 for more information on these formats and how to select them.
911
912 There is a bug in DEC's assembler that produces incorrect line numbers
913 for ECOFF format when the @samp{.align} directive is used.  To work
914 around this problem, GNU CC will not emit such alignment directives
915 while writing ECOFF format debugging information even if optimization is
916 being performed.  Unfortunately, this has the very undesirable
917 side-effect that code addresses when @samp{-O} is specified are
918 different depending on whether or not @samp{-g} is also specified.
919
920 To avoid this behavior, specify @samp{-gstabs+} and use GDB instead of
921 DBX.  DEC is now aware of this problem with the assembler and hopes to
922 provide a fix shortly.
923
924 @item arc-*-elf
925 Argonaut ARC processor.
926 This configuration is intended for embedded systems.
927
928 @item arm-*-aout
929 Advanced RISC Machines ARM-family processors.  These are often used in
930 embedded applications.  There are no standard Unix configurations.
931 This configuration corresponds to the basic instruction sequences and will
932 produce @file{a.out} format object modules.
933
934 You may need to make a variant of the file @file{arm.h} for your particular
935 configuration.
936
937 @item arm-*-elf
938 This configuration is intended for embedded systems.
939
940 @item arm-*-linux-gnuaout
941 Any of the ARM-family processors running the Linux-based GNU system with
942 the @file{a.out} binary format.  This is an obsolete configuration.
943
944 @item arm-*-linux-gnu
945 @itemx arm-*-linux-gnuoldld
946 Any of the ARM-family processors running the Linux-based GNU system with
947 the @file{ELF} binary format.  You must use version 2.9.1.0.22 or later
948 of the GNU/Linux binutils, which you can download from
949 @file{ftp.varesearch.com:/pub/support/hjl/binutils}.
950
951 These two configurations differ only in the required version of GNU
952 binutils.  For binutils 2.9.1.0.x, use @samp{arm-*-linux-gnuoldld}.  For 
953 newer versions of binutils, use @samp{arm-*-linux-gnu}.
954
955 @item arm-*-riscix
956 The ARM2 or ARM3 processor running RISC iX, Acorn's port of BSD Unix.
957 If you are running a version of RISC iX prior to 1.2 then you must
958 specify the version number during configuration.  Note that the
959 assembler shipped with RISC iX does not support stabs debugging
960 information; a new version of the assembler, with stabs support
961 included, is now available from Acorn and via ftp
962 @file{ftp.acorn.com:/pub/riscix/as+xterm.tar.Z}.  To enable stabs
963 debugging, pass @samp{--with-gnu-as} to configure.
964
965 You will need to install GNU @file{sed} before you can run configure.
966
967 @item a29k
968 AMD Am29k-family processors.  These are normally used in embedded
969 applications.  There are no standard Unix configurations.
970 This configuration
971 corresponds to AMD's standard calling sequence and binary interface
972 and is compatible with other 29k tools.
973
974 You may need to make a variant of the file @file{a29k.h} for your
975 particular configuration.
976
977 @item a29k-*-bsd
978 AMD Am29050 used in a system running a variant of BSD Unix.
979
980 @item avr
981 ATMEL AVR-family micro controllers.  These are used in embedded
982 applications.  There are no standard Unix configurations.
983 Supports following MCU's:
984  - AT90S23xx
985  - ATtiny22
986  - AT90S44xx
987  - AT90S85xx
988  - ATmega603/603L
989  - ATmega103/103L
990
991 @item decstation-*
992 MIPS-based DECstations can support three different personalities:
993 Ultrix, DEC OSF/1, and OSF/rose.  (Alpha-based DECstation products have
994 a configuration name beginning with @samp{alpha-dec}.)  To configure GCC
995 for these platforms use the following configurations:
996
997 @table @samp
998 @item decstation-ultrix
999 Ultrix configuration.
1000
1001 @item decstation-osf1
1002 Dec's version of OSF/1.
1003
1004 @item decstation-osfrose
1005 Open Software Foundation reference port of OSF/1 which uses the
1006 OSF/rose object file format instead of ECOFF.  Normally, you
1007 would not select this configuration.
1008 @end table
1009
1010 The MIPS C compiler needs to be told to increase its table size
1011 for switch statements with the @samp{-Wf,-XNg1500} option in
1012 order to compile @file{cp/parse.c}.  If you use the @samp{-O2}
1013 optimization option, you also need to use @samp{-Olimit 3000}.
1014 Both of these options are automatically generated in the
1015 @file{Makefile} that the shell script @file{configure} builds.
1016 If you override the @code{CC} make variable and use the MIPS
1017 compilers, you may need to add @samp{-Wf,-XNg1500 -Olimit 3000}.
1018
1019 @item elxsi-elxsi-bsd
1020 The Elxsi's C compiler has known limitations that prevent it from
1021 compiling GNU C.  Please contact @code{mrs@@cygnus.com} for more details.
1022
1023 @item dsp16xx
1024 A port to the AT&T DSP1610 family of processors.
1025
1026 @ignore
1027 @item fx80
1028 Alliant FX/8 computer.  Note that the standard installed C compiler in
1029 Concentrix 5.0 has a bug which prevent it from compiling GNU CC
1030 correctly.  You can patch the compiler bug as follows:
1031
1032 @smallexample
1033 cp /bin/pcc ./pcc
1034 adb -w ./pcc - << EOF
1035 15f6?w 6610
1036 EOF
1037 @end smallexample
1038
1039 Then you must use the @samp{-ip12} option when compiling GNU CC
1040 with the patched compiler, as shown here:
1041
1042 @smallexample
1043 make CC="./pcc -ip12" CFLAGS=-w
1044 @end smallexample
1045
1046 Note also that Alliant's version of DBX does not manage to work with the
1047 output from GNU CC.
1048 @end ignore
1049
1050 @item h8300-*-*
1051 Hitachi H8/300 series of processors.
1052
1053 The calling convention and structure layout has changed in release 2.6.
1054 All code must be recompiled.  The calling convention now passes the
1055 first three arguments in function calls in registers.  Structures are no
1056 longer a multiple of 2 bytes.
1057
1058 @item hppa*-*-*
1059 There are several variants of the HP-PA processor which run a variety
1060 of operating systems.  GNU CC must be configured to use the correct
1061 processor type and operating system, or GNU CC will not function correctly.
1062 The easiest way to handle this problem is to @emph{not} specify a target
1063 when configuring GNU CC, the @file{configure} script will try to automatically
1064 determine the right processor type and operating system.
1065
1066 @samp{-g} does not work on HP-UX, since that system uses a peculiar
1067 debugging format which GNU CC does not know about.  However, @samp{-g}
1068 will work if you also use GAS and GDB in conjunction with GCC.  We
1069 highly recommend using GAS for all HP-PA configurations.
1070
1071 You should be using GAS-2.6 (or later) along with GDB-4.16 (or later).  These
1072 can be retrieved from all the traditional GNU ftp archive sites.
1073
1074 On some versions of HP-UX, you will need to install GNU @file{sed}.
1075
1076 You will need to be install GAS into a directory before @code{/bin},
1077 @code{/usr/bin}, and @code{/usr/ccs/bin} in your search path.  You
1078 should install GAS before you build GNU CC.
1079
1080 To enable debugging, you must configure GNU CC with the @samp{--with-gnu-as}
1081 option before building.
1082
1083 @item i370-*-*
1084 This port is very preliminary and has many known bugs.  We hope to
1085 have a higher-quality port for this machine soon.
1086
1087 @item i386-*-linux-gnuoldld
1088 Use this configuration to generate @file{a.out} binaries on Linux-based
1089 GNU systems if you do not have gas/binutils version 2.5.2 or later
1090 installed. This is an obsolete configuration.
1091
1092 @item i386-*-linux-gnuaout
1093 Use this configuration to generate @file{a.out} binaries on Linux-based
1094 GNU systems. This configuration is being superseded. You must use
1095 gas/binutils version 2.5.2 or later.
1096
1097 @item i386-*-linux-gnu
1098 Use this configuration to generate ELF binaries on Linux-based GNU
1099 systems.  You must use gas/binutils version 2.5.2 or later.
1100
1101 @item i386-*-sco
1102 Compilation with RCC is recommended.  Also, it may be a good idea to
1103 link with GNU malloc instead of the malloc that comes with the system.
1104
1105 @item i386-*-sco3.2v4
1106 Use this configuration for SCO release 3.2 version 4.
1107
1108 @item i386-*-sco3.2v5*
1109 Use this for the SCO OpenServer Release family including 5.0.0, 5.0.2, 
1110 5.0.4, 5.0.5, Internet FastStart 1.0, and Internet FastStart 1.1.
1111
1112 GNU CC can generate COFF binaries if you specify @samp{-mcoff} or ELF
1113 binaries, the default.    A full @samp{make bootstrap} is recommended
1114 so that an ELF compiler that builds ELF is generated.                   
1115
1116 You must have TLS597 from @uref{ftp://ftp.sco.com/TLS} installed for ELF
1117 C++ binaries to work correctly on releases before 5.0.4. 
1118
1119 The native SCO assembler that is provided with the OS at no charge
1120 is normally required.  If, however, you must be able to use the GNU
1121 assembler (perhaps you have complex asms) you must configure this
1122 package @samp{--with-gnu-as}.  To do this, install (cp or symlink)
1123 gcc/as to your copy of the GNU assembler.  You must use a recent version
1124 of GNU binutils; version 2.9.1 seems to work well.  If you select this
1125 option, you will be unable to build COFF images.  Trying to do so will
1126 result in non-obvious failures.  In general, the "--with-gnu-as" option
1127 isn't as well tested as the native assembler.
1128
1129 @emph{NOTE:} If you are building C++, you must follow the instructions
1130 about invoking @samp{make bootstrap} because the native OpenServer
1131 compiler may build a @file{cc1plus} that will not correctly parse many
1132 valid C++ programs.  You must do a @samp{make bootstrap} if you are
1133 building with the native compiler.
1134
1135 @item i386-*-isc
1136 It may be a good idea to link with GNU malloc instead of the malloc that
1137 comes with the system.
1138
1139 In ISC version 4.1, @file{sed} core dumps when building
1140 @file{deduced.h}.  Use the version of @file{sed} from version 4.0.
1141
1142 @item i386-*-esix
1143 It may be good idea to link with GNU malloc instead of the malloc that
1144 comes with the system.
1145
1146 @item i386-ibm-aix
1147 You need to use GAS version 2.1 or later, and LD from
1148 GNU binutils version 2.2 or later.
1149
1150 @item i386-sequent-bsd
1151 Go to the Berkeley universe before compiling.
1152
1153 @item i386-sequent-ptx1*
1154 @itemx i386-sequent-ptx2*
1155 You must install GNU @file{sed} before running @file{configure}.
1156
1157 @item i386-sun-sunos4
1158 You may find that you need another version of GNU CC to begin
1159 bootstrapping with, since the current version when built with the
1160 system's own compiler seems to get an infinite loop compiling part of
1161 @file{libgcc2.c}.  GNU CC version 2 compiled with GNU CC (any version)
1162 seems not to have this problem.
1163
1164 See @ref{Sun Install}, for information on installing GNU CC on Sun
1165 systems.
1166
1167 @item i[345]86-*-winnt3.5
1168 This version requires a GAS that has not yet been released.  Until it
1169 is, you can get a prebuilt binary version via anonymous ftp from
1170 @file{cs.washington.edu:pub/gnat} or @file{cs.nyu.edu:pub/gnat}. You
1171 must also use the Microsoft header files from the Windows NT 3.5 SDK.
1172 Find these on the CDROM in the @file{/mstools/h} directory dated 9/4/94.  You
1173 must use a fixed version of Microsoft linker made especially for NT 3.5,
1174 which is also is available on the NT 3.5 SDK CDROM.  If you do not have
1175 this linker, can you also use the linker from Visual C/C++ 1.0 or 2.0.
1176
1177 Installing GNU CC for NT builds a wrapper linker, called @file{ld.exe},
1178 which mimics the behaviour of Unix @file{ld} in the specification of
1179 libraries (@samp{-L} and @samp{-l}).  @file{ld.exe} looks for both Unix
1180 and Microsoft named libraries.  For example, if you specify
1181 @samp{-lfoo}, @file{ld.exe} will look first for @file{libfoo.a}
1182 and then for @file{foo.lib}.
1183
1184 You may install GNU CC for Windows NT in one of two ways, depending on
1185 whether or not you have a Unix-like shell and various Unix-like
1186 utilities.
1187
1188 @enumerate
1189 @item
1190 If you do not have a Unix-like shell and few Unix-like utilities, you
1191 will use a DOS style batch script called @file{configure.bat}.  Invoke
1192 it as @code{configure winnt} from an MSDOS console window or from the
1193 program manager dialog box.  @file{configure.bat} assumes you have
1194 already installed and have in your path a Unix-like @file{sed} program
1195 which is used to create a working @file{Makefile} from @file{Makefile.in}.
1196
1197 @file{Makefile} uses the Microsoft Nmake program maintenance utility and
1198 the Visual C/C++ V8.00 compiler to build GNU CC.  You need only have the
1199 utilities @file{sed} and @file{touch} to use this installation method,
1200 which only automatically builds the compiler itself.  You must then
1201 examine what @file{fixinc.winnt} does, edit the header files by hand and
1202 build @file{libgcc.a} manually.
1203
1204 @item
1205 The second type of installation assumes you are running a Unix-like
1206 shell, have a complete suite of Unix-like utilities in your path, and
1207 have a previous version of GNU CC already installed, either through
1208 building it via the above installation method or acquiring a pre-built
1209 binary.  In this case, use the @file{configure} script in the normal
1210 fashion.
1211 @end enumerate
1212
1213 @item i860-intel-osf1
1214 This is the Paragon.
1215 @ifset INSTALLONLY
1216 If you have version 1.0 of the operating system, you need to take
1217 special steps to build GNU CC due to peculiarities of the system.  Newer
1218 system versions have no problem.  See the section `Installation Problems'
1219 in the GNU CC Manual.
1220 @end ifset
1221 @ifclear INSTALLONLY
1222 If you have version 1.0 of the operating system,
1223 see @ref{Installation Problems}, for special things you need to do to
1224 compensate for peculiarities in the system.
1225 @end ifclear
1226
1227 @item *-lynx-lynxos
1228 LynxOS 2.2 and earlier comes with GNU CC 1.x already installed as
1229 @file{/bin/gcc}.  You should compile with this instead of @file{/bin/cc}.
1230 You can tell GNU CC to use the GNU assembler and linker, by specifying
1231 @samp{--with-gnu-as --with-gnu-ld} when configuring.  These will produce
1232 COFF format object files and executables;  otherwise GNU CC will use the
1233 installed tools, which produce @file{a.out} format executables.
1234
1235 @item m32r-*-elf
1236 Mitsubishi M32R processor.
1237 This configuration is intended for embedded systems.
1238
1239 @item m68000-hp-bsd
1240 HP 9000 series 200 running BSD.  Note that the C compiler that comes
1241 with this system cannot compile GNU CC; contact @code{law@@cygnus.com}
1242 to get binaries of GNU CC for bootstrapping.
1243
1244 @item m68k-altos
1245 Altos 3068.  You must use the GNU assembler, linker and debugger.
1246 Also, you must fix a kernel bug.  Details in the file @file{README.ALTOS}.
1247
1248 @item m68k-apple-aux
1249 Apple Macintosh running A/UX.
1250 You may configure GCC  to use either the system assembler and
1251 linker or the GNU assembler and linker.  You should use the GNU configuration
1252 if you can, especially if you also want to use GNU C++.  You enabled
1253 that configuration with + the @samp{--with-gnu-as} and @samp{--with-gnu-ld}
1254 options to @code{configure}.
1255
1256 Note the C compiler that comes
1257 with this system cannot compile GNU CC.  You can find binaries of GNU CC
1258 for bootstrapping on @code{jagubox.gsfc.nasa.gov}.
1259 You will also a patched version of @file{/bin/ld} there that
1260 raises some of the arbitrary limits found in the original.
1261
1262 @item m68k-att-sysv
1263 AT&T 3b1, a.k.a. 7300 PC.  Special procedures are needed to compile GNU
1264 CC with this machine's standard C compiler, due to bugs in that
1265 compiler.  You can bootstrap it more easily with
1266 previous versions of GNU CC if you have them.
1267
1268 Installing GNU CC on the 3b1 is difficult if you do not already have
1269 GNU CC running, due to bugs in the installed C compiler.  However,
1270 the following procedure might work.  We are unable to test it.
1271
1272 @enumerate
1273 @item
1274 Comment out the @samp{#include "config.h"} line near the start of
1275 @file{cccp.c} and do @samp{make cpp}.  This makes a preliminary version
1276 of GNU cpp.
1277
1278 @item
1279 Save the old @file{/lib/cpp} and copy the preliminary GNU cpp to that
1280 file name.
1281
1282 @item
1283 Undo your change in @file{cccp.c}, or reinstall the original version,
1284 and do @samp{make cpp} again.
1285
1286 @item
1287 Copy this final version of GNU cpp into @file{/lib/cpp}.
1288
1289 @findex obstack_free
1290 @item
1291 Replace every occurrence of @code{obstack_free} in the file
1292 @file{tree.c} with @code{_obstack_free}.
1293
1294 @item
1295 Run @code{make} to get the first-stage GNU CC.
1296
1297 @item
1298 Reinstall the original version of @file{/lib/cpp}.
1299
1300 @item
1301 Now you can compile GNU CC with itself and install it in the normal
1302 fashion.
1303 @end enumerate
1304
1305 @item m68k-bull-sysv
1306 Bull DPX/2 series 200 and 300 with BOS-2.00.45 up to BOS-2.01. GNU CC works
1307 either with native assembler or GNU assembler. You can use
1308 GNU assembler with native coff generation by providing @samp{--with-gnu-as} to
1309 the configure script or use GNU assembler with dbx-in-coff encapsulation
1310 by providing @samp{--with-gnu-as --stabs}. For any problem with native
1311 assembler or for availability of the DPX/2 port of GAS, contact
1312 @code{F.Pierresteguy@@frcl.bull.fr}.
1313
1314 @item m68k-crds-unox
1315 Use @samp{configure unos} for building on Unos.
1316
1317 The Unos assembler is named @code{casm} instead of @code{as}.  For some
1318 strange reason linking @file{/bin/as} to @file{/bin/casm} changes the
1319 behavior, and does not work.  So, when installing GNU CC, you should
1320 install the following script as @file{as} in the subdirectory where
1321 the passes of GCC are installed:
1322
1323 @example
1324 #!/bin/sh
1325 casm $*
1326 @end example
1327
1328 The default Unos library is named @file{libunos.a} instead of
1329 @file{libc.a}.  To allow GNU CC to function, either change all
1330 references to @samp{-lc} in @file{gcc.c} to @samp{-lunos} or link
1331 @file{/lib/libc.a} to @file{/lib/libunos.a}.
1332
1333 @cindex @code{alloca}, for Unos
1334 When compiling GNU CC with the standard compiler, to overcome bugs in
1335 the support of @code{alloca}, do not use @samp{-O} when making stage 2.
1336 Then use the stage 2 compiler with @samp{-O} to make the stage 3
1337 compiler.  This compiler will have the same characteristics as the usual
1338 stage 2 compiler on other systems.  Use it to make a stage 4 compiler
1339 and compare that with stage 3 to verify proper compilation.
1340
1341 (Perhaps simply defining @code{ALLOCA} in @file{x-crds} as described in
1342 the comments there will make the above paragraph superfluous.  Please
1343 inform us of whether this works.)
1344
1345 Unos uses memory segmentation instead of demand paging, so you will need
1346 a lot of memory.  5 Mb is barely enough if no other tasks are running.
1347 If linking @file{cc1} fails, try putting the object files into a library
1348 and linking from that library.
1349
1350 @item m68k-hp-hpux
1351 HP 9000 series 300 or 400 running HP-UX.  HP-UX version 8.0 has a bug in
1352 the assembler that prevents compilation of GNU CC.  To fix it, get patch
1353 PHCO_4484 from HP.
1354
1355 In addition, if you wish to use gas @samp{--with-gnu-as} you must use
1356 gas version 2.1 or later, and you must use the GNU linker version 2.1 or
1357 later.  Earlier versions of gas relied upon a program which converted the
1358 gas output into the native HP-UX format, but that program has not been
1359 kept up to date.  gdb does not understand that native HP-UX format, so
1360 you must use gas if you wish to use gdb.
1361
1362 @item m68k-sun
1363 Sun 3.  We do not provide a configuration file to use the Sun FPA by
1364 default, because programs that establish signal handlers for floating
1365 point traps inherently cannot work with the FPA.
1366
1367 See @ref{Sun Install}, for information on installing GNU CC on Sun
1368 systems.
1369
1370 @item m88k-*-svr3
1371 Motorola m88k running the AT&T/Unisoft/Motorola V.3 reference port.
1372 These systems tend to use the Green Hills C, revision 1.8.5, as the
1373 standard C compiler.  There are apparently bugs in this compiler that
1374 result in object files differences between stage 2 and stage 3.  If this
1375 happens, make the stage 4 compiler and compare it to the stage 3
1376 compiler.  If the stage 3 and stage 4 object files are identical, this
1377 suggests you encountered a problem with the standard C compiler; the
1378 stage 3 and 4 compilers may be usable.
1379
1380 It is best, however, to use an older version of GNU CC for bootstrapping
1381 if you have one.
1382
1383 @item m88k-*-dgux
1384 Motorola m88k running DG/UX.  To build 88open BCS native or cross
1385 compilers on DG/UX, specify the configuration name as
1386 @samp{m88k-*-dguxbcs} and build in the 88open BCS software development
1387 environment.  To build ELF native or cross compilers on DG/UX, specify
1388 @samp{m88k-*-dgux} and build in the DG/UX ELF development environment.
1389 You set the software development environment by issuing
1390 @samp{sde-target} command and specifying either @samp{m88kbcs} or
1391 @samp{m88kdguxelf} as the operand.
1392
1393 If you do not specify a configuration name, @file{configure} guesses the
1394 configuration based on the current software development environment.
1395
1396 @item m88k-tektronix-sysv3
1397 Tektronix XD88 running UTekV 3.2e.  Do not turn on
1398 optimization while building stage1 if you bootstrap with
1399 the buggy Green Hills compiler.  Also, The bundled LAI
1400 System V NFS is buggy so if you build in an NFS mounted
1401 directory, start from a fresh reboot, or avoid NFS all together.
1402 Otherwise you may have trouble getting clean comparisons
1403 between stages.
1404
1405 @item mips-mips-bsd
1406 MIPS machines running the MIPS operating system in BSD mode.  It's
1407 possible that some old versions of the system lack the functions
1408 @code{memcpy}, @code{memcmp}, and @code{memset}.  If your system lacks
1409 these, you must remove or undo the definition of
1410 @code{TARGET_MEM_FUNCTIONS} in @file{mips-bsd.h}.
1411
1412 The MIPS C compiler needs to be told to increase its table size
1413 for switch statements with the @samp{-Wf,-XNg1500} option in
1414 order to compile @file{cp/parse.c}.  If you use the @samp{-O2}
1415 optimization option, you also need to use @samp{-Olimit 3000}.
1416 Both of these options are automatically generated in the
1417 @file{Makefile} that the shell script @file{configure} builds.
1418 If you override the @code{CC} make variable and use the MIPS
1419 compilers, you may need to add @samp{-Wf,-XNg1500 -Olimit 3000}.
1420
1421 @item mips-mips-riscos*
1422 The MIPS C compiler needs to be told to increase its table size
1423 for switch statements with the @samp{-Wf,-XNg1500} option in
1424 order to compile @file{cp/parse.c}.  If you use the @samp{-O2}
1425 optimization option, you also need to use @samp{-Olimit 3000}.
1426 Both of these options are automatically generated in the
1427 @file{Makefile} that the shell script @file{configure} builds.
1428 If you override the @code{CC} make variable and use the MIPS
1429 compilers, you may need to add @samp{-Wf,-XNg1500 -Olimit 3000}.
1430
1431 MIPS computers running RISC-OS can support four different
1432 personalities: default, BSD 4.3, System V.3, and System V.4
1433 (older versions of RISC-OS don't support V.4).  To configure GCC
1434 for these platforms use the following configurations:
1435
1436 @table @samp
1437 @item mips-mips-riscos@code{rev}
1438 Default configuration for RISC-OS, revision @code{rev}.
1439
1440 @item mips-mips-riscos@code{rev}bsd
1441 BSD 4.3 configuration for RISC-OS, revision @code{rev}.
1442
1443 @item mips-mips-riscos@code{rev}sysv4
1444 System V.4 configuration for RISC-OS, revision @code{rev}.
1445
1446 @item mips-mips-riscos@code{rev}sysv
1447 System V.3 configuration for RISC-OS, revision @code{rev}.
1448 @end table
1449
1450 The revision @code{rev} mentioned above is the revision of
1451 RISC-OS to use.  You must reconfigure GCC when going from a
1452 RISC-OS revision 4 to RISC-OS revision 5.  This has the effect of
1453 avoiding a linker
1454 @ifclear INSTALLONLY
1455 bug (see @ref{Installation Problems}, for more details).
1456 @end ifclear
1457 @ifset INSTALLONLY
1458 bug.
1459 @end ifset
1460
1461 @item mips-sgi-*
1462 In order to compile GCC on an SGI running IRIX 4, the "c.hdr.lib"
1463 option must be installed from the CD-ROM supplied from Silicon Graphics.
1464 This is found on the 2nd CD in release 4.0.1.
1465
1466 In order to compile GCC on an SGI running IRIX 5, the "compiler_dev.hdr"
1467 subsystem must be installed from the IDO CD-ROM supplied by Silicon
1468 Graphics.
1469
1470 @code{make compare} may fail on version 5 of IRIX unless you add
1471 @samp{-save-temps} to @code{CFLAGS}.  On these systems, the name of the
1472 assembler input file is stored in the object file, and that makes
1473 comparison fail if it differs between the @code{stage1} and
1474 @code{stage2} compilations.  The option @samp{-save-temps} forces a
1475 fixed name to be used for the assembler input file, instead of a
1476 randomly chosen name in @file{/tmp}.  Do not add @samp{-save-temps}
1477 unless the comparisons fail without that option.  If you do you
1478 @samp{-save-temps}, you will have to manually delete the @samp{.i} and
1479 @samp{.s} files after each series of compilations.
1480
1481 The MIPS C compiler needs to be told to increase its table size
1482 for switch statements with the @samp{-Wf,-XNg1500} option in
1483 order to compile @file{cp/parse.c}.  If you use the @samp{-O2}
1484 optimization option, you also need to use @samp{-Olimit 3000}.
1485 Both of these options are automatically generated in the
1486 @file{Makefile} that the shell script @file{configure} builds.
1487 If you override the @code{CC} make variable and use the MIPS
1488 compilers, you may need to add @samp{-Wf,-XNg1500 -Olimit 3000}.
1489
1490 On Irix version 4.0.5F, and perhaps on some other versions as well,
1491 there is an assembler bug that reorders instructions incorrectly.  To
1492 work around it, specify the target configuration
1493 @samp{mips-sgi-irix4loser}.  This configuration inhibits assembler
1494 optimization.
1495
1496 In a compiler configured with target @samp{mips-sgi-irix4}, you can turn
1497 off assembler optimization by using the @samp{-noasmopt} option.  This
1498 compiler option passes the option @samp{-O0} to the assembler, to
1499 inhibit reordering.
1500
1501 The @samp{-noasmopt} option can be useful for testing whether a problem
1502 is due to erroneous assembler reordering.  Even if a problem does not go
1503 away with @samp{-noasmopt}, it may still be due to assembler
1504 reordering---perhaps GNU CC itself was miscompiled as a result.
1505
1506 To enable debugging under Irix 5, you must use GNU as 2.5 or later,
1507 and use the @samp{--with-gnu-as} configure option when configuring gcc.
1508 GNU as is distributed as part of the binutils package.
1509
1510 @item mips-sony-sysv
1511 Sony MIPS NEWS.  This works in NEWSOS 5.0.1, but not in 5.0.2 (which
1512 uses ELF instead of COFF).  Support for 5.0.2 will probably be provided
1513 soon by volunteers.  In particular, the linker does not like the
1514 code generated by GCC when shared libraries are linked in.
1515
1516 @item ns32k-encore
1517 Encore ns32000 system.  Encore systems are supported only under BSD.
1518
1519 @item ns32k-*-genix
1520 National Semiconductor ns32000 system.  Genix has bugs in @code{alloca}
1521 and @code{malloc}; you must get the compiled versions of these from GNU
1522 Emacs.
1523
1524 @item ns32k-sequent
1525 Go to the Berkeley universe before compiling.
1526
1527 @item ns32k-utek
1528 UTEK ns32000 system (``merlin'').  The C compiler that comes with this
1529 system cannot compile GNU CC; contact @samp{tektronix!reed!mason} to get
1530 binaries of GNU CC for bootstrapping.
1531
1532 @item romp-*-aos
1533 @itemx romp-*-mach
1534 The only operating systems supported for the IBM RT PC are AOS and
1535 MACH.  GNU CC does not support AIX running on the RT.  We recommend you
1536 compile GNU CC with an earlier version of itself; if you compile GNU CC
1537 with @code{hc}, the Metaware compiler, it will work, but you will get
1538 mismatches between the stage 2 and stage 3 compilers in various files.
1539 These errors are minor differences in some floating-point constants and
1540 can be safely ignored; the stage 3 compiler is correct.
1541
1542 @item rs6000-*-aix
1543 @itemx powerpc-*-aix
1544 Various early versions of each release of the IBM XLC compiler will not
1545 bootstrap GNU CC.  Symptoms include differences between the stage2 and
1546 stage3 object files, and errors when compiling @file{libgcc.a} or
1547 @file{enquire}.  Known problematic releases include: xlc-1.2.1.8,
1548 xlc-1.3.0.0 (distributed with AIX 3.2.5), and xlc-1.3.0.19.  Both
1549 xlc-1.2.1.28 and xlc-1.3.0.24 (PTF 432238) are known to produce working
1550 versions of GNU CC, but most other recent releases correctly bootstrap
1551 GNU CC.
1552
1553 Release 4.3.0 of AIX and ones prior to AIX 3.2.4 include a version of
1554 the IBM assembler which does not accept debugging directives: assembler
1555 updates are available as PTFs.  Also, if you are using AIX 3.2.5 or
1556 greater and the GNU assembler, you must have a version modified after
1557 October 16th, 1995 in order for the GNU C compiler to build.  See the
1558 file @file{README.RS6000} for more details on any of these problems.
1559
1560 GNU CC does not yet support the 64-bit PowerPC instructions.
1561
1562 Objective C does not work on this architecture because it makes assumptions
1563 that are incompatible with the calling conventions.
1564
1565 AIX on the RS/6000 provides support (NLS) for environments outside of
1566 the United States.  Compilers and assemblers use NLS to support
1567 locale-specific representations of various objects including
1568 floating-point numbers ("." vs "," for separating decimal fractions).
1569 There have been problems reported where the library linked with GNU CC
1570 does not produce the same floating-point formats that the assembler
1571 accepts.  If you have this problem, set the LANG environment variable to
1572 "C" or "En_US".
1573
1574 Due to changes in the way that GNU CC invokes the binder (linker) for AIX
1575 4.1, you may now receive warnings of duplicate symbols from the link step
1576 that were not reported before.  The assembly files generated by GNU CC for
1577 AIX have always included multiple symbol definitions for certain global
1578 variable and function declarations in the original program.  The warnings
1579 should not prevent the linker from producing a correct library or runnable
1580 executable.
1581
1582 By default, AIX 4.1 produces code that can be used on either Power or
1583 PowerPC processors.
1584
1585 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1586 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1587
1588 @item powerpc-*-elf
1589 @itemx powerpc-*-sysv4
1590 PowerPC system in big endian mode, running System V.4.
1591
1592 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1593 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1594
1595 @item powerpc-*-linux-gnu
1596 PowerPC system in big endian mode, running the Linux-based GNU system.
1597
1598 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1599 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1600
1601 @item powerpc-*-eabiaix
1602 Embedded PowerPC system in big endian mode with -mcall-aix selected as
1603 the default.
1604
1605 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1606 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1607
1608 @item powerpc-*-eabisim
1609 Embedded PowerPC system in big endian mode for use in running under the
1610 PSIM simulator.
1611
1612 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1613 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1614
1615 @item powerpc-*-eabi
1616 Embedded PowerPC system in big endian mode.
1617
1618 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1619 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1620
1621 @item powerpcle-*-elf
1622 @itemx powerpcle-*-sysv4
1623 PowerPC system in little endian mode, running System V.4.
1624
1625 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1626 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1627
1628 @item powerpcle-*-solaris2*
1629 PowerPC system in little endian mode, running Solaris 2.5.1 or higher.
1630
1631 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1632 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1633 Beta versions of the Sun 4.0 compiler do not seem to be able to build
1634 GNU CC correctly.  There are also problems with the host assembler and
1635 linker that are fixed by using the GNU versions of these tools.
1636
1637 @item powerpcle-*-eabisim
1638 Embedded PowerPC system in little endian mode for use in running under
1639 the PSIM simulator.
1640
1641 @itemx powerpcle-*-eabi
1642 Embedded PowerPC system in little endian mode.
1643
1644 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1645 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1646
1647 @item powerpcle-*-winnt
1648 @itemx powerpcle-*-pe
1649 PowerPC system in little endian mode running Windows NT.
1650
1651 You can specify a default version for the @samp{-mcpu=}@var{cpu_type}
1652 switch by using the configure option @samp{--with-cpu-}@var{cpu_type}.
1653
1654 @item vax-dec-ultrix
1655 Don't try compiling with Vax C (@code{vcc}).  It produces incorrect code
1656 in some cases (for example, when @code{alloca} is used).
1657
1658 Meanwhile, compiling @file{cp/parse.c} with pcc does not work because of
1659 an internal table size limitation in that compiler.  To avoid this
1660 problem, compile just the GNU C compiler first, and use it to recompile
1661 building all the languages that you want to run.
1662
1663 @item sparc-sun-*
1664 See @ref{Sun Install}, for information on installing GNU CC on Sun
1665 systems.
1666
1667 @item vax-dec-vms
1668 See @ref{VMS Install}, for details on how to install GNU CC on VMS.
1669
1670 @item we32k-*-*
1671 These computers are also known as the 3b2, 3b5, 3b20 and other similar
1672 names.  (However, the 3b1 is actually a 68000; see
1673 @ref{Configurations}.)
1674
1675 Don't use @samp{-g} when compiling with the system's compiler.  The
1676 system's linker seems to be unable to handle such a large program with
1677 debugging information.
1678
1679 The system's compiler runs out of capacity when compiling @file{stmt.c}
1680 in GNU CC.  You can work around this by building @file{cpp} in GNU CC
1681 first, then use that instead of the system's preprocessor with the
1682 system's C compiler to compile @file{stmt.c}.  Here is how:
1683
1684 @smallexample
1685 mv /lib/cpp /lib/cpp.att
1686 cp cpp /lib/cpp.gnu
1687 echo '/lib/cpp.gnu -traditional $@{1+"$@@"@}' > /lib/cpp
1688 chmod +x /lib/cpp
1689 @end smallexample
1690
1691 The system's compiler produces bad code for some of the GNU CC
1692 optimization files.  So you must build the stage 2 compiler without
1693 optimization.  Then build a stage 3 compiler with optimization.
1694 That executable should work.  Here are the necessary commands:
1695
1696 @smallexample
1697 make LANGUAGES=c CC=stage1/xgcc CFLAGS="-Bstage1/ -g"
1698 make stage2
1699 make CC=stage2/xgcc CFLAGS="-Bstage2/ -g -O"
1700 @end smallexample
1701
1702 You may need to raise the ULIMIT setting to build a C++ compiler,
1703 as the file @file{cc1plus} is larger than one megabyte.
1704 @end table
1705
1706 @node Other Dir
1707 @section Compilation in a Separate Directory
1708 @cindex other directory, compilation in
1709 @cindex compilation in a separate directory
1710 @cindex separate directory, compilation in
1711
1712 If you wish to build the object files and executables in a directory
1713 other than the one containing the source files, here is what you must
1714 do differently:
1715
1716 @enumerate
1717 @item
1718 Make sure you have a version of Make that supports the @code{VPATH}
1719 feature.  (GNU Make supports it, as do Make versions on most BSD
1720 systems.)
1721
1722 @item
1723 If you have ever run @file{configure} in the source directory, you must undo
1724 the configuration.  Do this by running:
1725
1726 @example
1727 make distclean
1728 @end example
1729
1730 @item
1731 Go to the directory in which you want to build the compiler before
1732 running @file{configure}:
1733
1734 @example
1735 mkdir gcc-sun3
1736 cd gcc-sun3
1737 @end example
1738
1739 On systems that do not support symbolic links, this directory must be
1740 on the same file system as the source code directory.
1741
1742 @item
1743 Specify where to find @file{configure} when you run it:
1744
1745 @example
1746 ../gcc/configure @dots{}
1747 @end example
1748
1749 This also tells @code{configure} where to find the compiler sources;
1750 @code{configure} takes the directory from the file name that was used to
1751 invoke it.  But if you want to be sure, you can specify the source
1752 directory with the @samp{--srcdir} option, like this:
1753
1754 @example
1755 ../gcc/configure --srcdir=../gcc @var{other options}
1756 @end example
1757
1758 The directory you specify with @samp{--srcdir} need not be the same
1759 as the one that @code{configure} is found in.
1760 @end enumerate
1761
1762 Now, you can run @code{make} in that directory.  You need not repeat the
1763 configuration steps shown above, when ordinary source files change.  You
1764 must, however, run @code{configure} again when the configuration files
1765 change, if your system does not support symbolic links.
1766
1767 @node Cross-Compiler
1768 @section Building and Installing a Cross-Compiler
1769 @cindex cross-compiler, installation
1770
1771 GNU CC can function as a cross-compiler for many machines, but not all.
1772
1773 @itemize @bullet
1774 @item
1775 Cross-compilers for the Mips as target using the Mips assembler
1776 currently do not work, because the auxiliary programs
1777 @file{mips-tdump.c} and @file{mips-tfile.c} can't be compiled on
1778 anything but a Mips.  It does work to cross compile for a Mips
1779 if you use the GNU assembler and linker.
1780
1781 @item
1782 Cross-compilers between machines with different floating point formats
1783 have not all been made to work.  GNU CC now has a floating point
1784 emulator with which these can work, but each target machine description
1785 needs to be updated to take advantage of it.
1786
1787 @item
1788 Cross-compilation between machines of different word sizes is
1789 somewhat problematic and sometimes does not work.
1790 @end itemize
1791
1792 Since GNU CC generates assembler code, you probably need a
1793 cross-assembler that GNU CC can run, in order to produce object files.
1794 If you want to link on other than the target machine, you need a
1795 cross-linker as well.  You also need header files and libraries suitable
1796 for the target machine that you can install on the host machine.
1797
1798 @menu
1799 * Steps of Cross::      Using a cross-compiler involves several steps
1800                           that may be carried out on different machines.
1801 * Configure Cross::     Configuring a cross-compiler.
1802 * Tools and Libraries:: Where to put the linker and assembler, and the C library.
1803 * Cross Headers::       Finding and installing header files
1804                           for a cross-compiler.
1805 * Cross Runtime::       Supplying arithmetic runtime routines (@file{libgcc1.a}).
1806 * Build Cross::         Actually compiling the cross-compiler.
1807 @end menu
1808
1809 @node Steps of Cross
1810 @subsection Steps of Cross-Compilation
1811
1812 To compile and run a program using a cross-compiler involves several
1813 steps:
1814
1815 @itemize @bullet
1816 @item
1817 Run the cross-compiler on the host machine to produce assembler files
1818 for the target machine.  This requires header files for the target
1819 machine.
1820
1821 @item
1822 Assemble the files produced by the cross-compiler.  You can do this
1823 either with an assembler on the target machine, or with a
1824 cross-assembler on the host machine.
1825
1826 @item
1827 Link those files to make an executable.  You can do this either with a
1828 linker on the target machine, or with a cross-linker on the host
1829 machine.  Whichever machine you use, you need libraries and certain
1830 startup files (typically @file{crt@dots{}.o}) for the target machine.
1831 @end itemize
1832
1833 It is most convenient to do all of these steps on the same host machine,
1834 since then you can do it all with a single invocation of GNU CC.  This
1835 requires a suitable cross-assembler and cross-linker.  For some targets,
1836 the GNU assembler and linker are available.
1837
1838 @node Configure Cross
1839 @subsection Configuring a Cross-Compiler
1840
1841 To build GNU CC as a cross-compiler, you start out by running
1842 @file{configure}.  Use the @samp{--target=@var{target}} to specify the
1843 target type.  If @file{configure} was unable to correctly identify the
1844 system you are running on, also specify the @samp{--build=@var{build}}
1845 option.  For example, here is how to configure for a cross-compiler that
1846 produces code for an HP 68030 system running BSD on a system that
1847 @file{configure} can correctly identify:
1848
1849 @smallexample
1850 ./configure --target=m68k-hp-bsd4.3
1851 @end smallexample
1852
1853 @node Tools and Libraries
1854 @subsection Tools and Libraries for a Cross-Compiler
1855
1856 If you have a cross-assembler and cross-linker available, you should
1857 install them now.  Put them in the directory
1858 @file{/usr/local/@var{target}/bin}.  Here is a table of the tools
1859 you should put in this directory:
1860
1861 @table @file
1862 @item as
1863 This should be the cross-assembler.
1864
1865 @item ld
1866 This should be the cross-linker.
1867
1868 @item ar
1869 This should be the cross-archiver: a program which can manipulate
1870 archive files (linker libraries) in the target machine's format.
1871
1872 @item ranlib
1873 This should be a program to construct a symbol table in an archive file.
1874 @end table
1875
1876 The installation of GNU CC will find these programs in that directory,
1877 and copy or link them to the proper place to for the cross-compiler to
1878 find them when run later.
1879
1880 The easiest way to provide these files is to build the Binutils package
1881 and GAS.  Configure them with the same @samp{--host} and @samp{--target}
1882 options that you use for configuring GNU CC, then build and install
1883 them.  They install their executables automatically into the proper
1884 directory.  Alas, they do not support all the targets that GNU CC
1885 supports.
1886
1887 If you want to install libraries to use with the cross-compiler, such as
1888 a standard C library, put them in the directory
1889 @file{/usr/local/@var{target}/lib}; installation of GNU CC copies
1890 all the files in that subdirectory into the proper place for GNU CC to
1891 find them and link with them.  Here's an example of copying some
1892 libraries from a target machine:
1893
1894 @example
1895 ftp @var{target-machine}
1896 lcd /usr/local/@var{target}/lib
1897 cd /lib
1898 get libc.a
1899 cd /usr/lib
1900 get libg.a
1901 get libm.a
1902 quit
1903 @end example
1904
1905 @noindent
1906 The precise set of libraries you'll need, and their locations on
1907 the target machine, vary depending on its operating system.
1908
1909 @cindex start files
1910 Many targets require ``start files'' such as @file{crt0.o} and
1911 @file{crtn.o} which are linked into each executable; these too should be
1912 placed in @file{/usr/local/@var{target}/lib}.  There may be several
1913 alternatives for @file{crt0.o}, for use with profiling or other
1914 compilation options.  Check your target's definition of
1915 @code{STARTFILE_SPEC} to find out what start files it uses.
1916 Here's an example of copying these files from a target machine:
1917
1918 @example
1919 ftp @var{target-machine}
1920 lcd /usr/local/@var{target}/lib
1921 prompt
1922 cd /lib
1923 mget *crt*.o
1924 cd /usr/lib
1925 mget *crt*.o
1926 quit
1927 @end example
1928
1929 @node Cross Runtime
1930 @subsection @file{libgcc.a} and Cross-Compilers
1931
1932 Code compiled by GNU CC uses certain runtime support functions
1933 implicitly.  Some of these functions can be compiled successfully with
1934 GNU CC itself, but a few cannot be.  These problem functions are in the
1935 source file @file{libgcc1.c}; the library made from them is called
1936 @file{libgcc1.a}.
1937
1938 When you build a native compiler, these functions are compiled with some
1939 other compiler--the one that you use for bootstrapping GNU CC.
1940 Presumably it knows how to open code these operations, or else knows how
1941 to call the run-time emulation facilities that the machine comes with.
1942 But this approach doesn't work for building a cross-compiler.  The
1943 compiler that you use for building knows about the host system, not the
1944 target system.
1945
1946 So, when you build a cross-compiler you have to supply a suitable
1947 library @file{libgcc1.a} that does the job it is expected to do.
1948
1949 To compile @file{libgcc1.c} with the cross-compiler itself does not
1950 work.  The functions in this file are supposed to implement arithmetic
1951 operations that GNU CC does not know how to open code for your target
1952 machine.  If these functions are compiled with GNU CC itself, they
1953 will compile into infinite recursion.
1954
1955 On any given target, most of these functions are not needed.  If GNU CC
1956 can open code an arithmetic operation, it will not call these functions
1957 to perform the operation.  It is possible that on your target machine,
1958 none of these functions is needed.  If so, you can supply an empty
1959 library as @file{libgcc1.a}.
1960
1961 Many targets need library support only for multiplication and division.
1962 If you are linking with a library that contains functions for
1963 multiplication and division, you can tell GNU CC to call them directly
1964 by defining the macros @code{MULSI3_LIBCALL}, and the like.  These
1965 macros need to be defined in the target description macro file.  For
1966 some targets, they are defined already.  This may be sufficient to
1967 avoid the need for libgcc1.a; if so, you can supply an empty library.
1968
1969 Some targets do not have floating point instructions; they need other
1970 functions in @file{libgcc1.a}, which do floating arithmetic.
1971 Recent versions of GNU CC have a file which emulates floating point.
1972 With a certain amount of work, you should be able to construct a
1973 floating point emulator that can be used as @file{libgcc1.a}.  Perhaps
1974 future versions will contain code to do this automatically and
1975 conveniently.  That depends on whether someone wants to implement it.
1976
1977 Some embedded targets come with all the necessary @file{libgcc1.a}
1978 routines written in C or assembler.  These targets build
1979 @file{libgcc1.a} automatically and you do not need to do anything
1980 special for them.  Other embedded targets do not need any
1981 @file{libgcc1.a} routines since all the necessary operations are
1982 supported by the hardware.
1983
1984 If your target system has another C compiler, you can configure GNU CC
1985 as a native compiler on that machine, build just @file{libgcc1.a} with
1986 @samp{make libgcc1.a} on that machine, and use the resulting file with
1987 the cross-compiler.  To do this, execute the following on the target
1988 machine:
1989
1990 @example
1991 cd @var{target-build-dir}
1992 ./configure --host=sparc --target=sun3
1993 make libgcc1.a
1994 @end example
1995
1996 @noindent
1997 And then this on the host machine:
1998
1999 @example
2000 ftp @var{target-machine}
2001 binary
2002 cd @var{target-build-dir}
2003 get libgcc1.a
2004 quit
2005 @end example
2006
2007 Another way to provide the functions you need in @file{libgcc1.a} is to
2008 define the appropriate @code{perform_@dots{}} macros for those
2009 functions.  If these definitions do not use the C arithmetic operators
2010 that they are meant to implement, you should be able to compile them
2011 with the cross-compiler you are building.  (If these definitions already
2012 exist for your target file, then you are all set.)
2013
2014 To build @file{libgcc1.a} using the perform macros, use
2015 @samp{LIBGCC1=libgcc1.a OLDCC=./xgcc} when building the compiler.
2016 Otherwise, you should place your replacement library under the name
2017 @file{libgcc1.a} in the directory in which you will build the
2018 cross-compiler, before you run @code{make}.
2019
2020 @node Cross Headers
2021 @subsection Cross-Compilers and Header Files
2022
2023 If you are cross-compiling a standalone program or a program for an
2024 embedded system, then you may not need any header files except the few
2025 that are part of GNU CC (and those of your program).  However, if you
2026 intend to link your program with a standard C library such as
2027 @file{libc.a}, then you probably need to compile with the header files
2028 that go with the library you use.
2029
2030 The GNU C compiler does not come with these files, because (1) they are
2031 system-specific, and (2) they belong in a C library, not in a compiler.
2032
2033 If the GNU C library supports your target machine, then you can get the
2034 header files from there (assuming you actually use the GNU library when
2035 you link your program).
2036
2037 If your target machine comes with a C compiler, it probably comes with
2038 suitable header files also.  If you make these files accessible from the host
2039 machine, the cross-compiler can use them also.
2040
2041 Otherwise, you're on your own in finding header files to use when
2042 cross-compiling.
2043
2044 When you have found suitable header files, put them in the directory
2045 @file{/usr/local/@var{target}/include}, before building the cross
2046 compiler.  Then installation will run fixincludes properly and install
2047 the corrected versions of the header files where the compiler will use
2048 them.
2049
2050 Provide the header files before you build the cross-compiler, because
2051 the build stage actually runs the cross-compiler to produce parts of
2052 @file{libgcc.a}.  (These are the parts that @emph{can} be compiled with
2053 GNU CC.)  Some of them need suitable header files.
2054
2055 Here's an example showing how to copy the header files from a target
2056 machine.  On the target machine, do this:
2057
2058 @example
2059 (cd /usr/include; tar cf - .) > tarfile
2060 @end example
2061
2062 Then, on the host machine, do this:
2063
2064 @example
2065 ftp @var{target-machine}
2066 lcd /usr/local/@var{target}/include
2067 get tarfile
2068 quit
2069 tar xf tarfile
2070 @end example
2071
2072 @node Build Cross
2073 @subsection Actually Building the Cross-Compiler
2074
2075 Now you can proceed just as for compiling a single-machine compiler
2076 through the step of building stage 1.  If you have not provided some
2077 sort of @file{libgcc1.a}, then compilation will give up at the point
2078 where it needs that file, printing a suitable error message.  If you
2079 do provide @file{libgcc1.a}, then building the compiler will automatically
2080 compile and link a test program called @file{libgcc1-test}; if you get
2081 errors in the linking, it means that not all of the necessary routines
2082 in @file{libgcc1.a} are available.
2083
2084 You must provide the header file @file{float.h}.  One way to do this is
2085 to compile @file{enquire} and run it on your target machine.  The job of
2086 @file{enquire} is to run on the target machine and figure out by
2087 experiment the nature of its floating point representation.
2088 @file{enquire} records its findings in the header file @file{float.h}.
2089 If you can't produce this file by running @file{enquire} on the target
2090 machine, then you will need to come up with a suitable @file{float.h} in
2091 some other way (or else, avoid using it in your programs).
2092
2093 Do not try to build stage 2 for a cross-compiler.  It doesn't work to
2094 rebuild GNU CC as a cross-compiler using the cross-compiler, because
2095 that would produce a program that runs on the target machine, not on the
2096 host.  For example, if you compile a 386-to-68030 cross-compiler with
2097 itself, the result will not be right either for the 386 (because it was
2098 compiled into 68030 code) or for the 68030 (because it was configured
2099 for a 386 as the host).  If you want to compile GNU CC into 68030 code,
2100 whether you compile it on a 68030 or with a cross-compiler on a 386, you
2101 must specify a 68030 as the host when you configure it.
2102
2103 To install the cross-compiler, use @samp{make install}, as usual.
2104
2105 @node Sun Install
2106 @section Installing GNU CC on the Sun
2107 @cindex Sun installation
2108 @cindex installing GNU CC on the Sun
2109
2110 On Solaris, do not use the linker or other tools in
2111 @file{/usr/ucb} to build GNU CC.  Use @code{/usr/ccs/bin}.
2112
2113 If the assembler reports @samp{Error: misaligned data} when bootstrapping,
2114 you are probably using an obsolete version of the GNU assembler.  Upgrade
2115 to the latest version of GNU @code{binutils}, or use the Solaris assembler.
2116
2117 Make sure the environment variable @code{FLOAT_OPTION} is not set when
2118 you compile @file{libgcc.a}.  If this option were set to @code{f68881}
2119 when @file{libgcc.a} is compiled, the resulting code would demand to be
2120 linked with a special startup file and would not link properly without
2121 special pains.
2122
2123 @cindex @code{alloca}, for SunOS
2124 There is a bug in @code{alloca} in certain versions of the Sun library.
2125 To avoid this bug, install the binaries of GNU CC that were compiled by
2126 GNU CC.  They use @code{alloca} as a built-in function and never the one
2127 in the library.
2128
2129 Some versions of the Sun compiler crash when compiling GNU CC.  The
2130 problem is a segmentation fault in cpp.  This problem seems to be due to
2131 the bulk of data in the environment variables.  You may be able to avoid
2132 it by using the following command to compile GNU CC with Sun CC:
2133
2134 @example
2135 make CC="TERMCAP=x OBJS=x LIBFUNCS=x STAGESTUFF=x cc"
2136 @end example
2137
2138 SunOS 4.1.3 and 4.1.3_U1 have bugs that can cause intermittent core
2139 dumps when compiling GNU CC.  A common symptom is an
2140 internal compiler error which does not recur if you run it again.
2141 To fix the problem, install Sun recommended patch 100726 (for SunOS 4.1.3)
2142 or 101508 (for SunOS 4.1.3_U1), or upgrade to a later SunOS release.
2143
2144 @node VMS Install
2145 @section Installing GNU CC on VMS
2146 @cindex VMS installation
2147 @cindex installing GNU CC on VMS
2148
2149 The VMS version of GNU CC is distributed in a backup saveset containing
2150 both source code and precompiled binaries.
2151
2152 To install the @file{gcc} command so you can use the compiler easily, in
2153 the same manner as you use the VMS C compiler, you must install the VMS CLD
2154 file for GNU CC as follows:
2155
2156 @enumerate
2157 @item
2158 Define the VMS logical names @samp{GNU_CC} and @samp{GNU_CC_INCLUDE}
2159 to point to the directories where the GNU CC executables
2160 (@file{gcc-cpp.exe}, @file{gcc-cc1.exe}, etc.) and the C include files are
2161 kept respectively.  This should be done with the commands:@refill
2162
2163 @smallexample
2164 $ assign /system /translation=concealed -
2165   disk:[gcc.] gnu_cc
2166 $ assign /system /translation=concealed -
2167   disk:[gcc.include.] gnu_cc_include
2168 @end smallexample
2169
2170 @noindent
2171 with the appropriate disk and directory names.  These commands can be
2172 placed in your system startup file so they will be executed whenever
2173 the machine is rebooted.  You may, if you choose, do this via the
2174 @file{GCC_INSTALL.COM} script in the @file{[GCC]} directory.
2175
2176 @item
2177 Install the @file{GCC} command with the command line:
2178
2179 @smallexample
2180 $ set command /table=sys$common:[syslib]dcltables -
2181   /output=sys$common:[syslib]dcltables gnu_cc:[000000]gcc
2182 $ install replace sys$common:[syslib]dcltables
2183 @end smallexample
2184
2185 @item
2186 To install the help file, do the following:
2187
2188 @smallexample
2189 $ library/help sys$library:helplib.hlb gcc.hlp
2190 @end smallexample
2191
2192 @noindent
2193 Now you can invoke the compiler with a command like @samp{gcc /verbose
2194 file.c}, which is equivalent to the command @samp{gcc -v -c file.c} in
2195 Unix.
2196 @end enumerate
2197
2198 If you wish to use GNU C++ you must first install GNU CC, and then
2199 perform the following steps:
2200
2201 @enumerate
2202 @item
2203 Define the VMS logical name @samp{GNU_GXX_INCLUDE} to point to the
2204 directory where the preprocessor will search for the C++ header files.
2205 This can be done with the command:@refill
2206
2207 @smallexample
2208 $ assign /system /translation=concealed -
2209   disk:[gcc.gxx_include.] gnu_gxx_include
2210 @end smallexample
2211
2212 @noindent
2213 with the appropriate disk and directory name.  If you are going to be
2214 using a C++ runtime library, this is where its install procedure will install
2215 its header files.
2216
2217 @item
2218 Obtain the file @file{gcc-cc1plus.exe}, and place this in the same
2219 directory that @file{gcc-cc1.exe} is kept.
2220
2221 The GNU C++ compiler can be invoked with a command like @samp{gcc /plus
2222 /verbose file.cc}, which is equivalent to the command @samp{g++ -v -c
2223 file.cc} in Unix.
2224 @end enumerate
2225
2226 We try to put corresponding binaries and sources on the VMS distribution
2227 tape.  But sometimes the binaries will be from an older version than the
2228 sources, because we don't always have time to update them.  (Use the
2229 @samp{/version} option to determine the version number of the binaries and
2230 compare it with the source file @file{version.c} to tell whether this is
2231 so.)  In this case, you should use the binaries you get to recompile the
2232 sources.  If you must recompile, here is how:
2233
2234 @enumerate
2235 @item
2236 Execute the command procedure @file{vmsconfig.com} to set up the files
2237 @file{tm.h}, @file{config.h}, @file{aux-output.c}, and @file{md.}, and
2238 to create files @file{tconfig.h} and @file{hconfig.h}.  This procedure
2239 also creates several linker option files used by @file{make-cc1.com} and
2240 a data file used by @file{make-l2.com}.@refill
2241
2242 @smallexample
2243 $ @@vmsconfig.com
2244 @end smallexample
2245
2246 @item
2247 Setup the logical names and command tables as defined above.  In
2248 addition, define the VMS logical name @samp{GNU_BISON} to point at the
2249 to the directories where the Bison executable is kept.  This should be
2250 done with the command:@refill
2251
2252 @smallexample
2253 $ assign /system /translation=concealed -
2254   disk:[bison.] gnu_bison
2255 @end smallexample
2256
2257 You may, if you choose, use the @file{INSTALL_BISON.COM} script in the
2258 @file{[BISON]} directory.
2259
2260 @item
2261 Install the @samp{BISON} command with the command line:@refill
2262
2263 @smallexample
2264 $ set command /table=sys$common:[syslib]dcltables -
2265   /output=sys$common:[syslib]dcltables -
2266   gnu_bison:[000000]bison
2267 $ install replace sys$common:[syslib]dcltables
2268 @end smallexample
2269
2270 @item
2271 Type @samp{@@make-gcc} to recompile everything (alternatively, submit
2272 the file @file{make-gcc.com} to a batch queue).  If you wish to build
2273 the GNU C++ compiler as well as the GNU CC compiler, you must first edit
2274 @file{make-gcc.com} and follow the instructions that appear in the
2275 comments.@refill
2276
2277 @item
2278 In order to use GCC, you need a library of functions which GCC compiled code
2279 will call to perform certain tasks, and these functions are defined in the
2280 file @file{libgcc2.c}.  To compile this you should use the command procedure
2281 @file{make-l2.com}, which will generate the library @file{libgcc2.olb}.
2282 @file{libgcc2.olb} should be built using the compiler built from
2283 the same distribution that @file{libgcc2.c} came from, and
2284 @file{make-gcc.com} will automatically do all of this for you.
2285
2286 To install the library, use the following commands:@refill
2287
2288 @smallexample
2289 $ library gnu_cc:[000000]gcclib/delete=(new,eprintf)
2290 $ library gnu_cc:[000000]gcclib/delete=L_*
2291 $ library libgcc2/extract=*/output=libgcc2.obj
2292 $ library gnu_cc:[000000]gcclib libgcc2.obj
2293 @end smallexample
2294
2295 The first command simply removes old modules that will be replaced with
2296 modules from @file{libgcc2} under different module names.  The modules
2297 @code{new} and @code{eprintf} may not actually be present in your
2298 @file{gcclib.olb}---if the VMS librarian complains about those modules
2299 not being present, simply ignore the message and continue on with the
2300 next command.  The second command removes the modules that came from the
2301 previous version of the library @file{libgcc2.c}.
2302
2303 Whenever you update the compiler on your system, you should also update the
2304 library with the above procedure.
2305
2306 @item
2307 You may wish to build GCC in such a way that no files are written to the
2308 directory where the source files reside.  An example would be the when
2309 the source files are on a read-only disk.  In these cases, execute the
2310 following DCL commands (substituting your actual path names):
2311
2312 @smallexample
2313 $ assign dua0:[gcc.build_dir.]/translation=concealed, -
2314          dua1:[gcc.source_dir.]/translation=concealed  gcc_build
2315 $ set default gcc_build:[000000]
2316 @end smallexample
2317
2318 @noindent
2319 where the directory @file{dua1:[gcc.source_dir]} contains the source
2320 code, and the directory @file{dua0:[gcc.build_dir]} is meant to contain
2321 all of the generated object files and executables.  Once you have done
2322 this, you can proceed building GCC as described above.  (Keep in mind
2323 that @file{gcc_build} is a rooted logical name, and thus the device
2324 names in each element of the search list must be an actual physical
2325 device name rather than another rooted logical name).
2326
2327 @item
2328 @strong{If you are building GNU CC with a previous version of GNU CC,
2329 you also should check to see that you have the newest version of the
2330 assembler}.  In particular, GNU CC version 2 treats global constant
2331 variables slightly differently from GNU CC version 1, and GAS version
2332 1.38.1 does not have the patches required to work with GCC version 2.
2333 If you use GAS 1.38.1, then @code{extern const} variables will not have
2334 the read-only bit set, and the linker will generate warning messages
2335 about mismatched psect attributes for these variables.  These warning
2336 messages are merely a nuisance, and can safely be ignored.
2337
2338 If you are compiling with a version of GNU CC older than 1.33, specify
2339 @samp{/DEFINE=("inline=")} as an option in all the compilations.  This
2340 requires editing all the @code{gcc} commands in @file{make-cc1.com}.
2341 (The older versions had problems supporting @code{inline}.)  Once you
2342 have a working 1.33 or newer GNU CC, you can change this file back.
2343
2344 @item
2345 If you want to build GNU CC with the VAX C compiler, you will need to
2346 make minor changes in @file{make-cccp.com} and @file{make-cc1.com}
2347 to choose alternate definitions of @code{CC}, @code{CFLAGS}, and
2348 @code{LIBS}.  See comments in those files.  However, you must
2349 also have a working version of the GNU assembler (GNU as, aka GAS) as
2350 it is used as the back-end for GNU CC to produce binary object modules
2351 and is not included in the GNU CC sources.  GAS is also needed to
2352 compile @file{libgcc2} in order to build @file{gcclib} (see above);
2353 @file{make-l2.com} expects to be able to find it operational in
2354 @file{gnu_cc:[000000]gnu-as.exe}.
2355
2356 To use GNU CC on VMS, you need the VMS driver programs
2357 @file{gcc.exe}, @file{gcc.com}, and @file{gcc.cld}.  They are
2358 distributed with the VMS binaries (@file{gcc-vms}) rather than the
2359 GNU CC sources.  GAS is also included in @file{gcc-vms}, as is Bison.
2360
2361 Once you have successfully built GNU CC with VAX C, you should use the
2362 resulting compiler to rebuild itself.  Before doing this, be sure to
2363 restore the @code{CC}, @code{CFLAGS}, and @code{LIBS} definitions in
2364 @file{make-cccp.com} and @file{make-cc1.com}.  The second generation
2365 compiler will be able to take advantage of many optimizations that must
2366 be suppressed when building with other compilers.
2367 @end enumerate
2368
2369 Under previous versions of GNU CC, the generated code would occasionally
2370 give strange results when linked with the sharable @file{VAXCRTL} library.
2371 Now this should work.
2372
2373 Even with this version, however, GNU CC itself should not be linked with
2374 the sharable @file{VAXCRTL}.  The version of @code{qsort} in
2375 @file{VAXCRTL} has a bug (known to be present in VMS versions V4.6
2376 through V5.5) which causes the compiler to fail.
2377
2378 The executables are generated by @file{make-cc1.com} and
2379 @file{make-cccp.com} use the object library version of @file{VAXCRTL} in
2380 order to make use of the @code{qsort} routine in @file{gcclib.olb}.  If
2381 you wish to link the compiler executables with the shareable image
2382 version of @file{VAXCRTL}, you should edit the file @file{tm.h} (created
2383 by @file{vmsconfig.com}) to define the macro @code{QSORT_WORKAROUND}.
2384
2385 @code{QSORT_WORKAROUND} is always defined when GNU CC is compiled with
2386 VAX C, to avoid a problem in case @file{gcclib.olb} is not yet
2387 available.
2388
2389 @node Collect2
2390 @section @code{collect2}
2391
2392 GNU CC uses a utility called @code{collect2} on nearly all systems to arrange
2393 to call various initialization functions at start time.
2394
2395 The program @code{collect2} works by linking the program once and
2396 looking through the linker output file for symbols with particular names
2397 indicating they are constructor functions.  If it finds any, it
2398 creates a new temporary @samp{.c} file containing a table of them,
2399 compiles it, and links the program a second time including that file.
2400
2401 @findex __main
2402 @cindex constructors, automatic calls
2403 The actual calls to the constructors are carried out by a subroutine
2404 called @code{__main}, which is called (automatically) at the beginning
2405 of the body of @code{main} (provided @code{main} was compiled with GNU
2406 CC).  Calling @code{__main} is necessary, even when compiling C code, to
2407 allow linking C and C++ object code together.  (If you use
2408 @samp{-nostdlib}, you get an unresolved reference to @code{__main},
2409 since it's defined in the standard GCC library.  Include @samp{-lgcc} at
2410 the end of your compiler command line to resolve this reference.)
2411
2412 The program @code{collect2} is installed as @code{ld} in the directory
2413 where the passes of the compiler are installed.  When @code{collect2}
2414 needs to find the @emph{real} @code{ld}, it tries the following file
2415 names:
2416
2417 @itemize @bullet
2418 @item
2419 @file{real-ld} in the directories listed in the compiler's search
2420 directories.
2421
2422 @item
2423 @file{real-ld} in the directories listed in the environment variable
2424 @code{PATH}.
2425
2426 @item
2427 The file specified in the @code{REAL_LD_FILE_NAME} configuration macro,
2428 if specified.
2429
2430 @item
2431 @file{ld} in the compiler's search directories, except that
2432 @code{collect2} will not execute itself recursively.
2433
2434 @item
2435 @file{ld} in @code{PATH}.
2436 @end itemize
2437
2438 ``The compiler's search directories'' means all the directories where
2439 @code{gcc} searches for passes of the compiler.  This includes
2440 directories that you specify with @samp{-B}.
2441
2442 Cross-compilers search a little differently:
2443
2444 @itemize @bullet
2445 @item
2446 @file{real-ld} in the compiler's search directories.
2447
2448 @item
2449 @file{@var{target}-real-ld} in @code{PATH}.
2450
2451 @item
2452 The file specified in the @code{REAL_LD_FILE_NAME} configuration macro,
2453 if specified.
2454
2455 @item
2456 @file{ld} in the compiler's search directories.
2457
2458 @item
2459 @file{@var{target}-ld} in @code{PATH}.
2460 @end itemize
2461
2462 @code{collect2} explicitly avoids running @code{ld} using the file name
2463 under which @code{collect2} itself was invoked.  In fact, it remembers
2464 up a list of such names---in case one copy of @code{collect2} finds
2465 another copy (or version) of @code{collect2} installed as @code{ld} in a
2466 second place in the search path.
2467
2468 @code{collect2} searches for the utilities @code{nm} and @code{strip}
2469 using the same algorithm as above for @code{ld}.
2470
2471 @node Header Dirs
2472 @section Standard Header File Directories
2473
2474 @code{GCC_INCLUDE_DIR} means the same thing for native and cross.  It is
2475 where GNU CC stores its private include files, and also where GNU CC
2476 stores the fixed include files.  A cross compiled GNU CC runs
2477 @code{fixincludes} on the header files in @file{$(tooldir)/include}.
2478 (If the cross compilation header files need to be fixed, they must be
2479 installed before GNU CC is built.  If the cross compilation header files
2480 are already suitable for ANSI C and GNU CC, nothing special need be
2481 done).
2482
2483 @code{GPLUSPLUS_INCLUDE_DIR} means the same thing for native and cross.  It
2484 is where @code{g++} looks first for header files.  The C++ library
2485 installs only target independent header files in that directory.
2486
2487 @code{LOCAL_INCLUDE_DIR} is used only for a native compiler.  It is
2488 normally @file{/usr/local/include}.  GNU CC searches this directory so
2489 that users can install header files in @file{/usr/local/include}.
2490
2491 @code{CROSS_INCLUDE_DIR} is used only for a cross compiler.  GNU CC
2492 doesn't install anything there.
2493
2494 @code{TOOL_INCLUDE_DIR} is used for both native and cross compilers.  It
2495 is the place for other packages to install header files that GNU CC will
2496 use.  For a cross-compiler, this is the equivalent of
2497 @file{/usr/include}.  When you build a cross-compiler,
2498 @code{fixincludes} processes any header files in this directory.