OSDN Git Service

* rtl.h (struct rtx_def): Update comments.
[pf3gnuchains/gcc-fork.git] / gcc / config.gcc
1 # GCC build-, host- and target-specific configuration file.
2 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3
4 #This file is part of GCC.
5
6 #GCC is free software; you can redistribute it and/or modify it under
7 #the terms of the GNU General Public License as published by the Free
8 #Software Foundation; either version 2, or (at your option) any later
9 #version.
10
11 #GCC is distributed in the hope that it will be useful, but WITHOUT
12 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 #for more details.
15
16 #You should have received a copy of the GNU General Public License
17 #along with GCC; see the file COPYING.  If not, write to the Free
18 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 #02111-1307, USA.
20
21 # This is the GCC build-, host- and target-specific configuration file
22 # where a configuration type, as recognized and generated by config.bfd,
23 # is mapped to different system-specific definitions and files.  This is
24 # invoked by the autoconf-generated configure script, called for build,
25 # host and target in that order, setting ${machine} to each.  Putting it
26 # in a separate shell file lets us skip running autoconf when modifying
27 # build-, host- and target-specific information.
28
29 # This file switches on the shell variable ${machine}, and also uses the
30 # following shell variables:
31 #
32 #  with_*               Various variables as set by configure.
33 #
34 #  enable_threads_flag  Either the name, yes or no depending on whether
35 #                       threads support was requested.
36 #
37 #  gas_flag             Either yes or no depending on whether GNU as was
38 #                       requested.
39 #
40 #  gnu_ld_flag          Either yes or no depending on whether GNU ld was
41 #                       requested.
42
43 # This file sets the following shell variables for use by the
44 # autoconf-generated configure script:
45 #
46 #  cpu_type             The name of the cpu, if different from machine.
47 #
48 #  tm_file              A list of target macro files, if different from
49 #                       "$cpu_type/$cpu_type.h". Usually it's constructed
50 #                       per target in a way like this:
51 #                       tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
52 #                       Note that the preferred order is:
53 #                       - specific target header "${cpu_type}/${cpu_type.h}"
54 #                       - generic headers like dbxelf.h elfos.h, netware.h, etc.
55 #                       - specializing target headers like ${cpu_type.h}/elf.h
56 #                       This helps to keep OS specific stuff out of the CPU
57 #                       defining header ${cpu_type}/${cpu_type.h}.
58 #
59 #  tm_p_file            Location of file with declarations for functions
60 #                       in $out_file.
61 #
62 #  out_file             The name of the machine description C support
63 #                       file, if different from "$cpu_type/$cpu_type.c".
64 #
65 #  md_file              The name of the machine-description file, if
66 #                       different from "$cpu_type/$cpu_type.md".
67 #
68 #  tmake_file           A list of machine-description-specific
69 #                       makefile-fragments, if different from
70 #                       "$cpu_type/t-$cpu_type".
71 #
72 #  float_format         Set to the symbolic name for the floating-point
73 #                       formats used for this machine, if different from
74 #                       "i64".  Used to derive a header file name to
75 #                       include, like "vax" for "float-vax.h".  If no such
76 #                       file is wanted, set to "none".
77 #
78 #  extra_objs           List of extra objects that should be linked into
79 #                       the compiler proper (cc1, cc1obj, cc1plus)
80 #                       depending on target.
81 #
82 #  extra_headers        List of used header files from the directory
83 #                       config/${cpu_type}.
84 #
85 #  host_xmake_file      List of host-specific makefile-fragments.
86 #
87 #  extra_passes         List of extra executables compiled for this target
88 #                       machine, used for compiling from source to object.
89 #
90 #  extra_parts          List of extra object files that should be compiled
91 #                       for this target machine.
92 #
93 #  extra_programs       Like extra_passes, but these are used when linking.
94 #
95 #  host_extra_objs      List of extra host-dependent objects that should
96 #                       be linked into the compiler proper.
97 #
98 #  host_extra_gcc_objs  List of extra host-dependent objects that should
99 #                       be linked into the gcc driver.
100 #
101 #  c_target_objs        List of extra target-dependent objects that be
102 #                       linked into the C compiler only.
103 #
104 #  cxx_target_objs      List of extra target-dependent objects that be
105 #                       linked into the C++ compiler only.
106 #
107 #  build_xm_defines     List of macros to define when compiling for the
108 #                       build machine.
109 #
110 #  build_xm_file        List of files to include when compiling for the
111 #                       build machine.
112 #
113 #  host_xm_defines      List of macros to define when compiling for the
114 #                       host machine.
115 #
116 #  host_xm_file         List of files to include when compiling for the
117 #                       host machine.
118 #
119 #  xm_defines           List of macros to define when compiling for the
120 #                       target machine.
121 #
122 #  xm_file              List of files to include when compiling for the
123 #                       target machine.
124 #
125 #  use_collect2         Set to yes or no, depending on whether collect2
126 #                       will be used.
127 #
128 #  target_cpu_default   Set to override the default target model.
129 #
130 #  build_install_headers_dir
131 #                       Target to use when installing header files.
132 #
133 #  host_truncate_target
134 #                       Non-empty if the target name should be truncated
135 #                       on this host, due to filename length issues.
136 #
137 #  gdb_needs_out_file_path
138 #                       Set to yes if gdb needs a dir command with
139 #                       `dirname $out_file`.
140 #
141 #  build_exeext         Set to the suffix, if the build machine requires
142 #                       executables to have a file name suffix.
143 #
144 #  host_exeext          Set to the suffix, if the host machine requires
145 #                       executables to have a file name suffix.
146 #
147 #  thread_file          Set to control which thread package to use.
148 #
149 #  gas                  Set to yes or no depending on whether the target
150 #                       system normally uses GNU as.
151
152 # The following variables are used in each case-construct to build up the
153 # outgoing variables:
154 #
155 #  xmake_file           Makefile-fragment when this system is as a host,
156 #                       for host_xmake_file.
157 #
158 #  extra_host_objs      List of extra objects that should be linked into
159 #                       the compiler proper when this system is a host,
160 #                       for host_extra_objs.
161 #
162 #  install_headers_dir  Makefile-target for how the header file directory
163 #                       is installed, when this system is a build system,
164 #                       for build_install_headers_dir.
165 #
166 #  truncate_target      Non-empty if the target name should be truncated
167 #                       when this system is a host, due to filename length
168 #                       issues.  For host_truncate_target.
169 #
170 #  exeext               The suffix for executables on this system.
171 #
172 #  gnu_ld               Set to yes or no depending on whether the target
173 #                       system normally uses GNU ld.
174
175 out_file=
176 xmake_file=
177 tmake_file=
178 extra_headers=
179 extra_passes=
180 extra_parts=
181 extra_programs=
182 extra_objs=
183 extra_host_objs=
184 extra_gcc_objs=
185 c_target_objs=
186 cxx_target_objs=
187 xm_defines=
188 float_format=
189 # Set this to force installation and use of collect2.
190 use_collect2=
191 # Set this to override the default target model.
192 target_cpu_default=
193 # Set this to control how the header file directory is installed.
194 install_headers_dir=install-headers-tar
195 # Set this if directory names should be truncated to 14 characters.
196 truncate_target=
197 # Set this if gdb needs a dir command with `dirname $out_file`
198 gdb_needs_out_file_path=
199 # Set this if the build machine requires executables to have a
200 # file name suffix.
201 exeext=
202 # Set this to control which thread package will be used.
203 thread_file=
204 # Reinitialize these from the flag values every loop pass, since some
205 # configure entries modify them.
206 gas="$gas_flag"
207 gnu_ld="$gnu_ld_flag"
208 enable_threads=$enable_threads_flag
209
210 # Obsolete configurations.
211 # To avoid some tedious lists, we have a blacklist with a whitelist
212 # embedded within it.
213 case $machine in
214           1750a-* \
215         | a29k-* \
216         | alpha*-*-osf[123]* \
217         | arm-*-riscix* \
218         | c*-convex-* \
219         | clipper-* \
220         | elxsi-* \
221         | i860-* \
222         | i?86-*-aix* \
223         | i?86-*-bsd* \
224         | i?86-*-chorusos* \
225         | i?86-*-dgux* \
226         | i?86-*-freebsd1.* \
227         | i?86-*-isc* \
228         | i?86-*-linux*oldld* \
229         | i?86-*-osf1* \
230         | i?86-*-osfrose* \
231         | i?86-*-rtemscoff* \
232         | i?86-*-sunos* \
233         | i?86-go32-rtems* \
234         | i?86-next-* \
235         | i?86-sequent-bsd* \
236         | i?86-sequent-ptx[12]* \
237         | i?86-sequent-sysv3* \
238         | m68[k0]*-*-lynxos* \
239         | m68[k0]*-*-rtemscoff* \
240         | m68[k0]*-*-sysv3* \
241         | m68[k0]*-altos-* \
242         | m68[k0]*-apollo-* \
243         | m68[k0]*-apple-* \
244         | m68[k0]*-bull-* \
245         | m68[k0]*-convergent-* \
246         | m68[k0]*-isi-* \
247         | m68[k0]*-next-* \
248         | m68[k0]*-sony-* \
249         | m88k-* \
250         | mips-*-bsd* \
251         | mips-*-riscos* \
252         | mips-*-sysv* \
253         | mips-*-ultrix* \
254         | mips-dec-* \
255         | mips-sgi-irix[1234]* \
256         | mips-sony-* \
257         | mips-tandem-* \
258         | ns32k-* \
259         | pj-* \
260         | pjl-* \
261         | romp-* \
262         | sparc-*-rtemsaout* \
263         | we32k-* \
264 )
265   case $machine in
266           mips-sni-sysv4 \
267         | m88k-*-aout* | m88k-*-openbsd* | m88k-*-sysv4* \
268         | ns32k-*-netbsd* | ns32k-*-openbsd* \
269         | romp-*-openbsd* \
270    )
271     # Whitelisted.
272     ;;
273   *)
274     if test "x$enable_obsolete" != xyes; then
275       echo "*** Configuration $machine is obsolete." >&2
276       echo "*** Specify --enable-obsolete to build it anyway." >&2
277       echo "*** Support will be REMOVED in the next major release of GCC," >&2
278       echo "*** unless a maintainer comes forward." >&2
279       exit 1
280     fi;;
281   esac
282 esac
283
284 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
285 # updated in each machine entry.  Also set default extra_headers for some
286 # machines.
287 tm_p_file=
288 cpu_type=`echo $machine | sed 's/-.*$//'`
289 case $machine in
290 alpha*-*-*)
291         cpu_type=alpha
292         ;;
293 strongarm*-*-*)
294         cpu_type=arm
295         ;;
296 arm*-*-*)
297         cpu_type=arm
298         ;;
299 xscale-*-*)
300         cpu_type=arm
301         ;;
302 c*-convex-*)
303         cpu_type=convex
304         extra_headers=proto.h
305         ;;
306 i[34567]86-*-*)
307         cpu_type=i386
308         extra_headers="mmintrin.h xmmintrin.h"
309         ;;
310 x86_64-*-*)
311         cpu_type=i386
312         extra_headers="mmintrin.h xmmintrin.h"
313         ;;
314 ia64-*-*)
315         extra_headers=ia64intrin.h
316         ;;
317 hppa*-*-* | parisc*-*-*)
318         cpu_type=pa
319         ;;
320 m680[012]0-*-*)
321         cpu_type=m68k
322         extra_headers=math-68881.h
323         ;;
324 m68k-*-*)
325         extra_headers=math-68881.h
326         ;;
327 mips*-*-*)
328         cpu_type=mips
329         ;;
330 pj*-*-*)
331         cpu_type=pj
332         ;;
333 powerpc*-*-*)
334         cpu_type=rs6000
335         extra_headers="ppc-asm.h altivec.h"
336         ;;
337 sparc*-*-*)
338         cpu_type=sparc
339         ;;
340 sh64-*-*)
341         cpu_type=sh
342         ;;
343 esac
344
345 tm_file=${cpu_type}/${cpu_type}.h
346 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
347 then
348         tm_p_file=${cpu_type}/${cpu_type}-protos.h
349 fi
350
351 case $machine in
352 x86_64-*-*)
353         tm_file="i386/biarch64.h ${tm_file}"
354         ;;
355 esac
356
357 # On a.out targets, we need to use collect2.
358 case $machine in
359 *-*-*aout*)
360         use_collect2=yes
361         ;;
362 esac
363
364 # Common parts for GNU/Linux, GNU/Hurd, OpenBSD, NetBSD, and FreeBSD systems.
365 case $machine in
366 *-*-linux*)
367         xm_defines=POSIX
368         ;;
369 *-*-gnu*)
370         # On the Hurd, the setup is just about the same on
371         # each different CPU.  The specific machines that we
372         # support are matched above and just set $cpu_type.
373         xm_defines=POSIX
374         tm_file="${cpu_type}/gnu.h"
375         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
376         # GNU always uses ELF.
377         elf=yes
378         # GNU tools are the only tools.
379         gnu_ld=yes
380         gas=yes
381         # These details are the same as for Linux.
382         # But here we need a little extra magic.
383         tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
384         case $machine in
385         alpha*)
386                 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
387                 ;;
388         i[34567]86-*-*)
389                 tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
390                 ;;
391         esac
392         ;;
393 *-*-openbsd*)
394         tm_file=${cpu_type}/openbsd.h
395         tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
396         xm_defines=POSIX
397         if test x$enable_threads = xyes; then
398                 thread_file='posix'
399                 tmake_file="${tmake_file} t-openbsd-thread"
400         fi
401         ;;
402 *-*-netbsd*)
403         tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd"
404         xm_defines=POSIX
405         gas=yes
406         gnu_ld=yes
407         ;;
408 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
409         # This is the place-holder for the generic a.out configuration
410         # of FreeBSD.  No actual configuration resides here since
411         # there was only ever a bare-bones ix86 configuration for
412         # a.out and it exists solely in the machine-specific section.
413         # This place-holder must exist to avoid dropping into
414         # the generic ELF configuration of FreeBSD (i.e. it must be
415         # ordered before that section).
416         ;;
417 *-*-freebsd*)
418         # This is the generic ELF configuration of FreeBSD.  Later
419         # machine-specific sections may refine and add to this
420         # configuration.
421         #
422         # Due to tm_file entry ordering issues that vary between cpu
423         # architectures, we only define fbsd_tm_file to allow the
424         # machine-specific section to dictate the final order of all
425         # entries of tm_file with the minor exception that components
426         # of the tm_file set here will always be of the form:
427         #
428         # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
429         #
430         # The machine-specific section should not tamper with this
431         # ordering but may order all other entries of tm_file as it
432         # pleases around the provided core setting.
433         gas=yes
434         gnu_ld=yes
435         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
436         case $machine in
437         *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
438         *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
439         *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
440         *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
441         *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
442         esac
443         tmake_file="t-slibgcc-elf-ver t-freebsd"
444         xmake_file=none
445         xm_defines=POSIX
446         case x${enable_threads} in
447         xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
448         x | xyes | xpthreads | xposix)
449                 thread_file='posix'
450                 tmake_file="${tmake_file} t-freebsd-thread"
451                 # Before 5.0, FreeBSD can't bind shared libraries to -lc
452                 # when "optionally" threaded via weak pthread_* checks.
453                 case $machine in
454                 *-*-freebsd[34] | *-*-freebsd[34].*)
455                         tmake_file="${tmake_file} t-slibgcc-nolc-override";;
456                 esac
457                 ;;
458         *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
459         esac
460         fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
461         ;;
462 esac
463
464 case $machine in
465 # Support site-specific machine types.
466 *local*)
467         rest=`echo $machine | sed -e "s/$cpu_type-//"`
468         tm_file=${cpu_type}/$rest.h
469         if test -f $srcdir/config/${cpu_type}/xm-$rest.h
470         then xm_file=${cpu_type}/xm-$rest.h
471         fi
472         if test -f $srcdir/config/${cpu_type}/x-$rest
473         then xmake_file=${cpu_type}/x-$rest
474         fi
475         if test -f $srcdir/config/${cpu_type}/t-$rest
476         then tmake_file=${cpu_type}/t-$rest
477         fi
478         ;;
479 1750a-*-*)
480         # 1750a is only supported as a target.
481         case "$build,$host" in 1750a*,* | *,1750a* )
482                 echo "*** $machine is only supported as a target" >&2
483                 exit 1
484         esac
485         ;;
486 a29k-*-bsd* | a29k-*-sym1*)
487         tm_file="${tm_file} a29k/unix.h"
488         xm_defines=POSIX
489         use_collect2=yes
490         ;;
491 a29k-*-udi | a29k-*-coff)
492         tm_file="${tm_file} dbxcoff.h"
493         tmake_file=a29k/t-a29kbare
494         ;;
495 a29k*-*-rtems*)
496         xm_defines=POSIX
497         tm_file="a29k/a29k.h a29k/rtems.h rtems.h"
498         tmake_file="a29k/t-a29kbare t-rtems"
499         if test x$enable_threads = xyes; then
500           thread_file='rtems'
501         fi
502         ;;
503 a29k-wrs-vxworks*)
504         tm_file="${tm_file} dbxcoff.h a29k/vx29k.h"
505         tmake_file=a29k/t-vx29k
506         extra_parts="crtbegin.o crtend.o"
507         thread_file='vxworks'
508         ;;
509 a29k-*-*)                       # Default a29k environment.
510         use_collect2=yes
511         ;;
512 alpha*-*-unicosmk*)
513         use_collect2=yes
514         tm_file="${tm_file} alpha/unicosmk.h"
515
516         # Don't include t-ieee for now because we don't support that yet
517         # tmake_file="alpha/t-ieee"
518         tmake_file="alpha/t-unicosmk"
519         ;;
520 alpha-*-interix)
521         tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
522
523         # GAS + IEEE_CONFORMANT+IEEE (no inexact);
524         #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
525
526         # GAS + IEEE_CONFORMANT
527         target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
528
529         xm_defines=POSIX
530         xm_file="alpha/xm-alpha-interix.h"
531         tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee"
532         if test x$enable_threads = xyes ; then
533                 thread_file='posix'
534         fi
535         if test x$stabs = xyes ; then
536                 tm_file="${tm_file} dbxcoff.h"
537         fi
538         #prefix='$$INTERIX_ROOT'/usr/contrib
539         #local_prefix='$$INTERIX_ROOT'/usr/contrib
540         ;;
541 alpha*-*-linux*ecoff*)
542         echo "Configuration $machine no longer supported" 1>&2
543         exit 1
544         ;;
545 alpha*-*-linux*libc1*)
546         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
547         target_cpu_default="MASK_GAS"
548         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtfm alpha/t-ieee"
549         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
550         gas=yes gnu_ld=yes
551         if test x$enable_threads = xyes; then
552                 thread_file='posix'
553         fi
554         ;;
555 alpha*-*-linux*)
556         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
557         target_cpu_default="MASK_GAS"
558         tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
559         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
560         gas=yes gnu_ld=yes
561         if test x$enable_threads = xyes; then
562                 thread_file='posix'
563         fi
564         ;;
565 alpha*-*-gnu*)
566         target_cpu_default="MASK_GAS"
567         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
568         ;;
569 alpha*-*-freebsd*)
570         tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
571         target_cpu_default="MASK_GAS"
572         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
573         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
574         ;;
575 alpha*-*-netbsd*)
576         tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
577         target_cpu_default="MASK_GAS"
578         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
579         ;;
580
581 alpha*-*-openbsd*)
582         tm_file="${cpu_type}/${cpu_type}.h ${tm_file}"
583         # default x-alpha is only appropriate for dec-osf.
584         target_cpu_default="MASK_GAS"
585         tmake_file="alpha/t-alpha alpha/t-ieee"
586         ;;
587
588 alpha*-dec-osf*)
589         xm_defines=POSIX
590         if test x$stabs = xyes
591         then
592                 tm_file="${tm_file} dbx.h"
593         fi
594         if test x$gas != xyes
595         then
596                 extra_passes="mips-tfile mips-tdump"
597         fi
598         use_collect2=yes
599         tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm"
600         extra_headers=va_list.h
601         case $machine in
602           *-*-osf1*)
603             tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
604             ;;
605           *-*-osf[23]*)
606             tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
607             ;;
608           *-*-osf4*)
609             tm_file="${tm_file} alpha/osf.h"
610             tmake_file="$tmake_file alpha/t-osf4"
611             # Some versions of OSF4 (specifically X4.0-9 296.7) have
612             # a broken tar, so we use cpio instead.
613             install_headers_dir=install-headers-cpio
614             ;;
615           *-*-osf5*)
616             tm_file="${tm_file} alpha/osf.h alpha/osf5.h"
617             tmake_file="$tmake_file alpha/t-osf4"
618             float_format=i128
619             ;;
620         esac
621         case $machine in
622           *-*-osf4.0[b-z] | *-*-osf4.[1-9]* | *-*-osf5*)
623             target_cpu_default=MASK_SUPPORT_ARCH
624             ;;
625         esac
626         ;;
627 alpha*-*-vxworks*)
628         xm_defines=POSIX
629         tm_file="${tm_file} dbx.h alpha/vxworks.h"
630         tmake_file="alpha/t-alpha alpha/t-ieee"
631         if [ x$gas != xyes ]
632         then
633                 extra_passes="mips-tfile mips-tdump"
634         fi
635         use_collect2=yes
636         thread_file='vxworks'
637         ;;
638 alpha64-dec-*vms*)
639         xm_defines=POSIX
640         tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
641         xm_file="alpha/xm-vms.h alpha/xm-vms64.h"
642         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
643         xmake_file=alpha/x-vms
644         exeext=.exe
645         # This removes the cpu type and manufacturer components and
646         #  replaces "." with "_" in the operating system version.
647         case $host in *-*-*vms*)
648                 target_alias=`echo $host \
649                   | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
650                 ;;
651         esac
652         install_headers_dir=install-headers-cp
653         prefix=/gnu
654         local_prefix=/gnu
655         ;;
656 alpha*-dec-*vms*)
657         xm_defines=POSIX
658         tm_file="${tm_file} alpha/vms.h"
659         xm_file=alpha/xm-vms.h
660         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
661         xmake_file=alpha/x-vms
662         exeext=.exe
663         # This removes the cpu type and manufacturer components and
664         #  replaces "." with "_" in the operating system version.
665         case $host in *-*-*vms*)
666                 target_alias=`echo $host \
667                   | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
668                 ;;
669         esac
670         install_headers_dir=install-headers-cp
671         prefix=/gnu
672         local_prefix=/gnu
673         ;;
674 arc-*-elf*)
675         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
676         extra_parts="crtinit.o crtfini.o"
677         ;;
678 arm-*-coff* | armel-*-coff*)
679         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
680         tmake_file=arm/t-arm-coff
681         ;;
682 arm-*-vxworks*)
683         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/vxarm.h arm/arm.h"
684         tmake_file=arm/t-arm-coff
685         thread_file='vxworks'
686         ;;
687 arm-*-riscix1.[01]*)            # Acorn RISC machine (early versions)
688         tm_file="arm/riscix1-1.h arm/arm.h"
689         use_collect2=yes
690         ;;
691 arm-*-riscix*)                  # Acorn RISC machine
692         if test x$gas = xyes
693         then
694             tm_file="arm/riscix.h arm/rix-gas.h arm/arm.h"
695         else
696             tm_file="arm/riscix.h arm/arm.h"
697         fi
698         tmake_file=arm/t-riscix
699         use_collect2=yes
700         ;;
701 arm-semi-aout | armel-semi-aout)
702         tm_file="arm/semi.h arm/aout.h arm/arm.h"
703         tmake_file=arm/t-semi
704         ;;
705 arm-semi-aof | armel-semi-aof)
706         tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
707         tmake_file=arm/t-semi
708         ;;
709 arm*-*-freebsd*|strongarm*-*-freebsd*)
710         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
711         tmake_file="${tmake_file} arm/t-strongarm-elf"
712         ;;
713 arm*-*-netbsdelf*)
714         echo "GCC does not yet support the ${machine} target"; exit 1
715         ;;
716 arm*-*-netbsd*)
717         tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
718         tmake_file="t-netbsd arm/t-netbsd"
719         use_collect2=yes
720         ;;
721 arm*-*-linux*)                  # ARM GNU/Linux with ELF
722         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h"
723         tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
724         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
725         gnu_ld=yes
726         case x${enable_threads} in
727         x | xyes | xpthreads | xposix)
728                 thread_file='posix'
729                 ;;
730         esac
731         ;;
732 arm*-*-uclinux*)                # ARM ucLinux
733         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h arm/uclinux-elf.h"
734         tmake_file=arm/t-arm-elf
735         ;;
736 arm*-*-aout)
737         tm_file="arm/aout.h arm/arm.h"
738         tmake_file=arm/t-arm-aout
739         ;;
740 arm*-*-ecos-elf)
741         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
742         tmake_file=arm/t-arm-elf
743         ;;
744 arm*-*-rtems*)
745         xm_defines=POSIX
746         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/rtems-elf.h rtems.h"
747         tmake_file="arm/t-arm-elf t-rtems"
748         if test x$enable_threads = xyes; then
749           thread_file='rtems'
750         fi
751         ;;
752 arm*-*-elf)
753         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
754         tmake_file=arm/t-arm-elf
755         ;;
756 arm*-*-conix*)
757         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h arm/aout.h arm/arm.h"
758         tmake_file=arm/t-arm-elf
759         ;;
760 arm*-*-oabi)
761         tm_file="arm/unknown-elf-oabi.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
762         tmake_file=arm/t-arm-elf
763         ;;
764 arm-*-pe*)
765         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
766         tmake_file=arm/t-pe
767         extra_objs="pe.o"
768         ;;
769 avr-*-*)
770         ;;
771 c1-convex-*)                    # Convex C1
772         target_cpu_default=1
773         use_collect2=yes
774         ;;
775 c2-convex-*)                    # Convex C2
776         target_cpu_default=2
777         use_collect2=yes
778         ;;
779 c32-convex-*)
780         target_cpu_default=4
781         use_collect2=yes
782         ;;
783 c34-convex-*)
784         target_cpu_default=8
785         use_collect2=yes
786         ;;
787 c38-convex-*)
788         target_cpu_default=16
789         use_collect2=yes
790         ;;
791 c4x-*-rtems*)
792         xm_defines=POSIX
793         tmake_file="c4x/t-c4x t-rtems"
794         tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
795         if test x$enable_threads = xyes; then
796           thread_file='rtems'
797         fi
798         c_target_objs="c4x-c.o"
799         cxx_target_objs="c4x-c.o"
800         ;;
801 c4x-*)
802         float_format=c4x
803         tmake_file=c4x/t-c4x
804         c_target_objs="c4x-c.o"
805         cxx_target_objs="c4x-c.o"
806         ;;
807 clipper-intergraph-clix*)
808         tm_file="${tm_file} svr3.h clipper/clix.h"
809         xm_defines=POSIX
810         extra_parts="crtbegin.o crtend.o"
811         install_headers_dir=install-headers-cpio
812         ;;
813 cris-*-aout)
814         tm_file="dbxelf.h ${tm_file} cris/aout.h"
815         gas=yes
816         tmake_file="cris/t-cris cris/t-aout"
817         ;;
818 cris-*-elf | cris-*-none)
819         tm_file="dbxelf.h elfos.h ${tm_file}"
820         tmake_file="cris/t-cris cris/t-elfmulti"
821         gas=yes
822         ;;
823 cris-*-linux*)
824         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
825         tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
826         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
827         case x${enable_threads} in
828         x | xyes | xpthreads | xposix)
829                 thread_file=posix
830                 ;;
831         esac
832         gas=yes
833         ;;
834 d30v-*)
835         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
836         float_format=i64
837         ;;
838 dsp16xx-*)
839         ;;
840 elxsi-elxsi-*)
841         use_collect2=yes
842         ;;
843 fr30-*-elf)
844         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
845         tmake_file=fr30/t-fr30
846         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
847         ;;
848 h8300-*-rtems*)
849         xm_defines=POSIX
850         tmake_file="h8300/t-h8300 t-rtems"
851         tm_file="h8300/h8300.h h8300/rtems.h rtems.h"
852         if test x$enable_threads = xyes; then
853           thread_file='rtems'
854         fi
855         float_format=i32
856         ;;
857 h8300-*-elf*)
858         tmake_file="h8300/t-h8300 h8300/t-elf"
859         tm_file="h8300/h8300.h h8300/elf.h"
860         float_format=i32
861         ;;
862 h8300-*-*)
863         float_format=i32
864         ;;
865 hppa*64*-*-linux* | parisc*64*-*-linux*)
866         target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
867         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
868                  pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
869         tmake_file=pa/t-linux64
870         gas=yes gnu_ld=yes
871         ;;
872 hppa*-*-linux* | parisc*-*-linux*)
873         target_cpu_default="MASK_PA_11"
874         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
875                  pa/pa32-regs.h pa/pa32-linux.h"
876         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
877         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
878         gas=yes gnu_ld=yes
879         if test x$enable_threads = xyes; then
880                 thread_file='posix'
881         fi
882         ;;
883 hppa*-*-openbsd*)
884         target_cpu_default="MASK_PA_11"
885         tmake_file=pa/t-bsd
886         ;;
887 hppa1.1-*-pro*)
888         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
889         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
890         tmake_file="pa/t-bsd pa/t-pro"
891         xmake_file="pa/x-ada"
892         ;;
893 hppa1.1-*-osf*)
894         target_cpu_default="MASK_PA_11"
895         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
896         tmake_file="pa/t-bsd pa/t-pa"
897         xmake_file="pa/x-ada"
898         use_collect2=yes
899         ;;
900 hppa1.1-*-rtems*)
901         xm_defines=POSIX
902         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
903         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
904         tmake_file="pa/t-bsd pa/t-pro"
905         xmake_file="pa/x-ada"
906         ;;
907 hppa1.0-*-osf*)
908         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
909         tmake_file="pa/t-bsd pa/t-pa"
910         xmake_file="pa/x-ada"
911         use_collect2=yes
912         ;;
913 hppa1.1-*-bsd*)
914         tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
915         target_cpu_default="MASK_PA_11"
916         tmake_file="pa/t-bsd pa/t-pa"
917         xmake_file="pa/x-ada"
918         use_collect2=yes
919         ;;
920 hppa1.0-*-bsd*)
921         tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
922         tmake_file="pa/t-bsd pa/t-pa"
923         xmake_file="pa/x-ada"
924         use_collect2=yes
925         ;;
926 hppa1.0-*-hpux7*)
927         tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
928         xm_defines=POSIX
929         tmake_file=pa/t-pa-hpux
930         install_headers_dir=install-headers-cpio
931         use_collect2=yes
932         ;;
933 hppa1.0-*-hpux8.0[0-2]*)
934         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
935         xm_defines=POSIX
936         tmake_file=pa/t-pa-hpux
937         if test x$gas != xyes
938         then
939                 tm_file="pa/pa-oldas.h ${tm_file}"
940         fi
941         install_headers_dir=install-headers-cpio
942         use_collect2=yes
943         ;;
944 hppa1.1-*-hpux8.0[0-2]*)
945         target_cpu_default="MASK_PA_11"
946         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
947         xm_defines=POSIX
948         tmake_file=pa/t-pa-hpux
949         if test x$gas != xyes
950         then
951                 tm_file="pa/pa-oldas.h ${tm_file}"
952         fi
953         install_headers_dir=install-headers-cpio
954         use_collect2=yes
955         ;;
956 hppa1.1-*-hpux8*)
957         target_cpu_default="MASK_PA_11"
958         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
959         xm_defines=POSIX
960         tmake_file=pa/t-pa-hpux
961         install_headers_dir=install-headers-cpio
962         use_collect2=yes
963         ;;
964 hppa1.0-*-hpux8*)
965         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
966         xm_defines=POSIX
967         tmake_file=pa/t-pa-hpux
968         install_headers_dir=install-headers-cpio
969         use_collect2=yes
970         ;;
971 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
972         target_cpu_default="MASK_PA_11"
973         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
974         float_format=i128
975         xm_defines=POSIX
976         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
977         xmake_file="pa/x-ada"
978         if test x$enable_threads = x; then
979             enable_threads=$have_pthread_h
980         fi
981         case x${enable_threads} in
982         xyes | xdce)
983                 tmake_file="${tmake_file} pa/t-dce-thr"
984                 ;;
985         esac
986         install_headers_dir=install-headers-cpio
987         use_collect2=yes
988         ;;
989 hppa1.0-*-hpux10*)
990         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
991         float_format=i128
992         xm_defines=POSIX
993         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
994         xmake_file="pa/x-ada"
995         if test x$enable_threads = x; then
996             enable_threads=$have_pthread_h
997         fi
998         case x${enable_threads} in
999         xyes | xdce)
1000                 tmake_file="${tmake_file} pa/t-dce-thr"
1001                 ;;
1002         esac
1003         install_headers_dir=install-headers-cpio
1004         use_collect2=yes
1005         ;;
1006 hppa*64*-*-hpux11*)
1007         xm_defines=POSIX
1008         tm_file="pa/pa64-start.h ${tm_file} pa/pa64-regs.h pa/long_double.h pa/elf.h pa/pa-hpux.h pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
1009         float_format=i128
1010         tmake_file="pa/t-pa64 pa/t-pa-hpux"
1011         xmake_file="pa/x-ada"
1012         target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
1013
1014 #       if [ x$enable_threads = x ]; then
1015 #           enable_threads=$have_pthread_h
1016 #       fi
1017 #       if [ x$enable_threads = xyes ]; then
1018 #               thread_file='dce'
1019 #               tmake_file="${tmake_file} pa/t-dce-thr"
1020 #       fi
1021         install_headers_dir=install-headers-cpio
1022         use_collect2=yes
1023         ;;
1024 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
1025         target_cpu_default="MASK_PA_11"
1026         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1027         float_format=i128
1028         xm_defines=POSIX
1029         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
1030         xmake_file="pa/x-ada"
1031 #       if test x$enable_threads = x; then
1032 #           enable_threads=$have_pthread_h
1033 #       fi
1034 #       if test x$enable_threads = xyes; then
1035 #               thread_file='dce'
1036 #               tmake_file="${tmake_file} pa/t-dce-thr"
1037 #       fi
1038         install_headers_dir=install-headers-cpio
1039         use_collect2=yes
1040         ;;
1041 hppa1.0-*-hpux11*)
1042         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1043         float_format=i128
1044         xm_defines=POSIX
1045         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
1046         xmake_file="pa/x-ada"
1047 #       if test x$enable_threads = x; then
1048 #           enable_threads=$have_pthread_h
1049 #       fi
1050 #       if test x$enable_threads = xyes; then
1051 #               thread_file='dce'
1052 #               tmake_file="${tmake_file} pa/t-dce-thr"
1053 #       fi
1054         install_headers_dir=install-headers-cpio
1055         use_collect2=yes
1056         ;;
1057 hppa1.1-*-hpux* | hppa2*-*-hpux*)
1058         target_cpu_default="MASK_PA_11"
1059         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
1060         xm_defines=POSIX
1061         tmake_file=pa/t-pa-hpux
1062         install_headers_dir=install-headers-cpio
1063         use_collect2=yes
1064         ;;
1065 hppa1.0-*-hpux*)
1066         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
1067         xm_defines=POSIX
1068         tmake_file=pa/t-pa-hpux
1069         install_headers_dir=install-headers-cpio
1070         use_collect2=yes
1071         ;;
1072 hppa1.1-*-hiux* | hppa2*-*-hiux*)
1073         target_cpu_default="MASK_PA_11"
1074         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
1075         xm_defines=POSIX
1076         tmake_file=pa/t-pa-hpux
1077         install_headers_dir=install-headers-cpio
1078         use_collect2=yes
1079         ;;
1080 hppa1.0-*-hiux*)
1081         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
1082         xm_defines=POSIX
1083         tmake_file=pa/t-pa-hpux
1084         install_headers_dir=install-headers-cpio
1085         use_collect2=yes
1086         ;;
1087 hppa*-*-lites*)
1088         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h"
1089         target_cpu_default="MASK_PA_11"
1090         tmake_file="pa/t-bsd pa/t-pa"
1091         xmake_file="pa/x-ada"
1092         use_collect2=yes
1093         ;;
1094 hppa*-*-mpeix*)
1095         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h"
1096         tmake_file=pa/t-mpeix
1097         echo "You must use gas. Assuming it is already installed."
1098         gas=yes
1099         install_headers_dir=install-headers-tar
1100         use_collect2=yes
1101         ;;
1102 i370-*-opened*)                  # IBM 360/370/390 Architecture
1103         xm_defines='POSIX FATAL_EXIT_CODE=12'
1104         tm_file=i370/oe.h
1105         tmake_file="i370/t-oe i370/t-i370"
1106         c_target_objs="i370-c.o"
1107         cxx_target_objs="i370-c.o"
1108         ;;
1109 i370-*-mvs*)
1110         xm_defines='POSIX FATAL_EXIT_CODE=12'
1111         tm_file=i370/mvs.h
1112         tmake_file="i370/t-i370"
1113         c_target_objs="i370-c.o"
1114         cxx_target_objs="i370-c.o"
1115         ;;
1116 i370-*-linux*)
1117         tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
1118         tmake_file="t-slibgcc-elf-ver t-linux"
1119         # broken_install=yes
1120         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1121         # extra_parts="crtbegin.o crtend.o"
1122         gnu_ld=yes
1123         gas=yes
1124         elf=yes
1125         if test x$enable_threads = xyes; then
1126                 thread_file='posix'
1127         fi
1128         ;;
1129 i[34567]86-*-chorusos*)
1130         xm_defines=POSIX
1131         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h chorus.h"
1132         tmake_file="i386/t-i386elf t-svr4"
1133         case x${enable_threads} in
1134           xyes | xpthreads | xposix)
1135                 thread_file='posix'
1136                 ;;
1137         esac
1138         ;;
1139 i[34567]86-*-elf*)
1140         xm_defines=POSIX
1141         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
1142         tmake_file="i386/t-i386elf t-svr4"
1143         ;;
1144 i[34567]86-ibm-aix*)            # IBM PS/2 running AIX
1145         if test x$gas = xyes
1146         then
1147                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/aix386.h"
1148                 extra_parts="crtbegin.o crtend.o"
1149                 tmake_file=i386/t-crtstuff
1150         else
1151                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/aix386ng.h"
1152                 use_collect2=yes
1153         fi
1154         xm_defines=POSIX
1155         ;;
1156 i[34567]86-ncr-sysv4*)          # NCR 3000 - ix86 running system V.4
1157         xm_defines="POSIX SMALL_ARG_MAX"
1158         if test x$stabs = xyes -a x$gas = xyes
1159         then
1160                 tm_file=i386/sysv4gdb.h
1161         else
1162                 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h"
1163         fi
1164         extra_parts="crtbegin.o crtend.o"
1165         tmake_file=i386/t-crtpic
1166         ;;
1167 i[34567]86-next-*)
1168         tm_p_file="${tm_p_file} nextstep-protos.h"
1169         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h nextstep.h i386/next.h"
1170         tmake_file=i386/t-next
1171         extra_objs=nextstep.o
1172         extra_parts="crtbegin.o crtend.o"
1173         if test x$enable_threads = xyes; then
1174                 thread_file='mach'
1175         fi
1176         ;;
1177 i[34567]86-*-netware)           # Intel 80386's running netware
1178         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
1179         tmake_file=i386/t-netware
1180         ;;
1181 i[34567]86-sequent-bsd*)                # 80386 from Sequent
1182         use_collect2=yes
1183         if test x$gas = xyes
1184         then
1185                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/sequent.h i386/seq-gas.h"
1186         else
1187                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/sequent.h"
1188         fi
1189         ;;
1190 i[34567]86-sequent-ptx1*)
1191         xm_defines=POSIX
1192         tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/seq-sysv3.h"
1193         tmake_file=i386/t-crtstuff
1194         extra_parts="crtbegin.o crtend.o"
1195         install_headers_dir=install-headers-cpio
1196         ;;
1197 i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
1198         xm_defines=POSIX
1199         tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/seq-sysv3.h i386/seq2-sysv3.h"
1200         tmake_file=i386/t-crtstuff
1201         extra_parts="crtbegin.o crtend.o"
1202         install_headers_dir=install-headers-cpio
1203         ;;
1204 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1205         if test x$gas = xyes
1206         then
1207                 tm_file="${tm_file} usegas.h"
1208         fi
1209         xm_defines="POSIX SMALL_ARG_MAX"
1210         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
1211         tmake_file=t-svr4
1212         extra_parts="crtbegin.o crtend.o"
1213         install_headers_dir=install-headers-cpio
1214         ;;
1215 i386-sun-sunos*)                # Sun i386 roadrunner
1216         xm_defines=POSIX
1217         tm_file="${tm_file} i386/unix.h i386/sun386.h i386/sun.h"
1218         use_collect2=yes
1219         ;;
1220 i[34567]86-wrs-vxworks*)
1221         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h i386/vxi386.h"
1222         thread_file='vxworks'
1223         ;;
1224 i[34567]86-*-aout*)
1225         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
1226         ;;
1227 i[34567]86-*-beoself* | i[34567]86-*-beos*)
1228         xm_defines=POSIX
1229         tmake_file='i386/t-beos i386/t-crtpic'
1230         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
1231         extra_parts='crtbegin.o crtend.o'
1232         ;;
1233 i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
1234         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/386bsd.h i386/bsd386.h"
1235 #       tmake_file=t-libc-ok
1236         ;;
1237 i[34567]86-*-bsd*)
1238         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/386bsd.h"
1239 #       tmake_file=t-libc-ok
1240 # Next line turned off because both 386BSD and BSD/386 use GNU ld.
1241 #       use_collect2=yes
1242         ;;
1243 i[34567]86-*-freebsd[12] | i[34567]86-*-freebsd[12].* | i[34567]86-*-freebsd*aout*)
1244         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
1245         tmake_file=t-freebsd
1246         ;;
1247 i[34567]86-*-freebsd*)
1248         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
1249         ;;
1250 x86_64-*-freebsd*)
1251         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/x86-64.h i386/freebsd.h i386/freebsd64.h"
1252         ;;
1253 i[34567]86-*-netbsdelf*)
1254         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
1255         float_format=i386
1256         ;;
1257 i[34567]86-*-netbsd*)
1258         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
1259         tmake_file=t-netbsd
1260         use_collect2=yes
1261         ;;
1262 x86_64-*-netbsd*)
1263         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h"
1264         float_format=i386
1265         ;;
1266 i[34567]86-*-openbsd*)
1267         tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h ${tm_file}"
1268         # needed to unconfuse gdb
1269         tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
1270         # we need collect2 until our bug is fixed...
1271         use_collect2=yes
1272         ;;
1273 i[34567]86-*-coff*)
1274         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
1275         ;;
1276 i[34567]86-*-isc*)              # 80386 running ISC system
1277         xm_defines=POSIX
1278         if test x$gas = xyes -a x$stabs = xyes
1279         then
1280                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h i386/iscdbx.h"
1281                 tmake_file=i386/t-svr3dbx
1282                 extra_parts="svr3.ifile svr3z.ifile"
1283         else
1284                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/isc.h"
1285                 tmake_file=i386/t-crtstuff
1286                 extra_parts="crtbegin.o crtend.o"
1287         fi
1288         install_headers_dir=install-headers-cpio
1289         ;;
1290 i[34567]86-*-linux*oldld*)      # Intel 80386's running GNU/Linux
1291                                 # with a.out format using
1292                                 # pre BFD linkers
1293         tmake_file="t-linux-aout i386/t-crtstuff"
1294         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-oldld.h"
1295         gnu_ld=yes
1296         float_format=i386
1297         ;;
1298 i[34567]86-*-linux*aout*)       # Intel 80386's running GNU/Linux
1299                                 # with a.out format
1300         tmake_file="t-linux-aout i386/t-crtstuff"
1301         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
1302         gnu_ld=yes
1303         float_format=i386
1304         ;;
1305 i[34567]86-*-linux*libc1)       # Intel 80386's running GNU/Linux
1306                                 # with ELF format using the
1307                                 # GNU/Linux C library 5
1308         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1309         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
1310         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1311         gnu_ld=yes
1312         float_format=i386
1313         if test x$enable_threads = xyes; then
1314                 thread_file='single'
1315         fi
1316         ;;
1317 i[34567]86-*-linux*)    # Intel 80386's running GNU/Linux
1318                         # with ELF format using glibc 2
1319                         # aka GNU/Linux C library 6
1320         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1321         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1322         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1323         gnu_ld=yes
1324         float_format=i386
1325         if test x$enable_threads = xyes; then
1326                 thread_file='posix'
1327         fi
1328         ;;
1329 x86_64-*-linux*)
1330         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
1331                  i386/x86-64.h i386/linux64.h"
1332         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff i386/t-linux64"
1333         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1334         gnu_ld=yes
1335         float_format=i386
1336         if test x$enable_threads = xyes; then
1337                 thread_file='posix'
1338         fi
1339         ;;
1340 i[34567]86-*-gnu*)
1341         float_format=i386
1342         ;;
1343 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1344         echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1345         exit 1
1346         ;;
1347 i[34567]86-pc-msdosdjgpp*)
1348         xm_file=i386/xm-djgpp.h
1349         tm_file="dbxcoff.h ${tm_file} i386/djgpp.h"
1350         tmake_file=i386/t-djgpp
1351         gnu_ld=yes
1352         gas=yes
1353         exeext=.exe
1354         float_format=none
1355         case $host in *pc-msdosdjgpp*)
1356                 target_alias=djgpp
1357                 ;;
1358         esac
1359         ;;
1360 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1361         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
1362         tmake_file=t-libc-ok
1363         gnu_ld=yes
1364         gas=yes
1365         ;;
1366 i[34567]86-*-lynxos*)
1367         if test x$gas = xyes
1368         then
1369                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h"
1370         else
1371                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
1372         fi
1373         ;;
1374 i[34567]86-*-mach*)
1375         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
1376 #       tmake_file=t-libc-ok
1377         use_collect2=yes
1378         ;;
1379 i[34567]86-*-osfrose*)          # 386 using OSF/rose
1380         if test x$elf = xyes
1381         then
1382                 tm_file="${tm_file} halfpic.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/osfrose.h i386/osfelf.h"
1383                 use_collect2=
1384         else
1385                 tm_file="${tm_file} halfpic.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/osfrose.h"
1386                 use_collect2=yes
1387         fi
1388         tmake_file=i386/t-osf
1389         extra_objs=halfpic.o
1390         ;;
1391 i[34567]86-go32-rtems*)
1392         xm_defines=POSIX
1393         tm_file="dbxcoff.h ${tm_file} i386/djgpp.h i386/djgpp-rtems.h rtems.h"
1394         tmake_file=t-rtems
1395         if test x$enable_threads = xyes; then
1396           thread_file='rtems'
1397         fi
1398         ;;
1399 i[34567]86-*-rtemscoff*)
1400         xm_defines=POSIX
1401         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h i386/rtems.h rtems.h"
1402         tmake_file=t-rtems
1403         if test x$enable_threads = xyes; then
1404           thread_file='rtems'
1405         fi
1406         ;;
1407 i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
1408         xm_defines=POSIX
1409         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
1410         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1411         tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1412         if test x$enable_threads = xyes; then
1413           thread_file='rtems'
1414         fi
1415         ;;
1416 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1417         xm_defines=POSIX
1418         install_headers_dir=install-headers-cpio
1419         tm_file="${tm_file} i386/unix.h i386/att.h i386/sco5.h"
1420         if test x$gas = xyes
1421         then
1422                 tm_file="usegas.h ${tm_file}"
1423                 tmake_file=i386/t-sco5gas
1424         else
1425                 tmake_file=i386/t-sco5
1426         fi
1427         extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1428         ;;
1429 i[34567]86-*-solaris2*)
1430         xm_defines="POSIX SMALL_ARG_MAX"
1431         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sol2.h"
1432         if test x$gas = xyes; then
1433                 tm_file="i386/sol2gas.h ${tm_file}"
1434         fi
1435         tmake_file="i386/t-sol2 t-svr4"
1436         if test x$gnu_ld = xyes; then
1437                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1438         else
1439                 tmake_file="$tmake_file t-slibgcc-sld"
1440         fi
1441         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1442         if test x${enable_threads} = x; then
1443             enable_threads=$have_pthread_h
1444             if test x${enable_threads} = x; then
1445                 enable_threads=$have_thread_h
1446             fi
1447         fi
1448         if test x${enable_threads} = xyes; then
1449             if test x${have_pthread_h} = xyes; then
1450                 thread_file='posix'
1451             else
1452                 thread_file='solaris'
1453             fi
1454         fi
1455         ;;
1456 i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
1457        xm_defines=POSIX
1458        tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1459        if test x$stabs = xyes
1460        then
1461                tm_file="${tm_file} dbx.h"
1462        fi
1463        tmake_file="i386/t-crtpic t-svr4"
1464        extra_parts="crtbegin.o crtend.o"
1465        if test x$enable_threads = xyes; then
1466                thread_file='posix'
1467        fi
1468        ;;
1469 i[34567]86-*-sysv4*)            # Intel 80386's running system V.4
1470         xm_defines="POSIX SMALL_ARG_MAX"
1471         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h"
1472         if test x$stabs = xyes
1473         then
1474                 tm_file="${tm_file} dbx.h"
1475         fi
1476         tmake_file="i386/t-crtpic t-svr4"
1477         extra_parts="crtbegin.o crtend.o"
1478         ;;
1479 i[34567]86-*-udk*)      # Intel x86 on SCO UW/OSR5 Dev Kit
1480         xm_defines=POSIX
1481         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
1482         tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1483         extra_parts="crtbegin.o crtend.o"
1484         install_headers_dir=install-headers-cpio
1485         ;;
1486 i[34567]86-*-osf1*)             # Intel 80386's running OSF/1 1.3+
1487         xm_defines='POSIX USE_C_ALLOCA SMALL_ARG_MAX'
1488         if test x$stabs = xyes
1489         then
1490                 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h i386/osf1elfgdb.h"
1491         else
1492                 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h"
1493         fi
1494         tmake_file=i386/t-osf1elf
1495         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1496         ;;
1497 i[34567]86-*-sysv*)             # Intel 80386's running system V
1498         xm_defines=POSIX
1499         if test x$gas = xyes
1500         then
1501                 if test x$stabs = xyes
1502                 then
1503                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
1504                         tmake_file=i386/t-svr3dbx
1505                         extra_parts="svr3.ifile svr3z.rfile"
1506                 else
1507                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
1508                         extra_parts="crtbegin.o crtend.o"
1509                         tmake_file=i386/t-crtstuff
1510                 fi
1511         else
1512                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
1513                 extra_parts="crtbegin.o crtend.o"
1514                 tmake_file=i386/t-crtstuff
1515         fi
1516         tmake_file="$tmake_file i386/t-crtpic"
1517         ;;
1518 i386-*-vsta)                    # Intel 80386's running VSTa kernel
1519         xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h"
1520         tm_file="${tm_file} i386/vsta.h"
1521         ;;
1522 i[34567]86-*-win32)
1523         xm_defines=POSIX
1524         xm_file=i386/xm-cygwin.h
1525         float_format=i386
1526         tmake_file=i386/t-cygwin
1527         tm_file="${tm_file} i386/win32.h"
1528         extra_objs=winnt.o
1529         if test x$enable_threads = xyes; then
1530                 thread_file='win32'
1531         fi
1532         exeext=.exe
1533         ;;
1534 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1535         xm_defines=POSIX
1536         xm_file=i386/xm-cygwin.h
1537         float_format=i386
1538         tmake_file=i386/t-cygwin
1539         tm_file=i386/cygwin.h
1540         extra_objs=winnt.o
1541         if test x$enable_threads = xyes; then
1542                 thread_file='win32'
1543         fi
1544         exeext=.exe
1545         ;;
1546 i[34567]86-*-mingw32*)
1547         tm_file=i386/mingw32.h
1548         float_format=i386
1549         xm_defines=POSIX
1550         xm_file=i386/xm-mingw32.h
1551         tmake_file="i386/t-cygwin i386/t-mingw32"
1552         extra_objs=winnt.o
1553         if test x$enable_threads = xyes; then
1554                 thread_file='win32'
1555         fi
1556         exeext=.exe
1557         case $machine in
1558                 *mingw32crt*)
1559                         tm_file="${tm_file} i386/crtdll.h"
1560                         ;;
1561                 *minwg32msv* | *mingw32*)
1562                         ;;
1563         esac
1564         ;;
1565 i[34567]86-*-uwin*)
1566         tm_file="i386/cygwin.h i386/uwin.h"
1567         tmake_file="i386/t-cygwin i386/t-uwin"
1568         extra_objs=winnt.o
1569         if test x$enable_threads = xyes; then
1570                 thread_file='win32'
1571         fi
1572         exeext=.exe
1573         ;;
1574 i[34567]86-*-interix3*)
1575         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h i386/i386-interix3.h interix.h interix3.h"
1576         xm_file="i386/xm-i386-interix.h"
1577         xm_defines=POSIX
1578         tmake_file="t-interix i386/t-interix"
1579         extra_objs=interix.o
1580         xmake_file="x-interix"
1581         if test x$enable_threads = xyes ; then
1582                 thread_file='posix'
1583         fi
1584         if test x$stabs = xyes ; then
1585                 tm_file="${tm_file} dbxcoff.h"
1586         fi
1587         ;;
1588 i[34567]86-*-interix*)
1589         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
1590         xm_file="i386/xm-i386-interix.h"
1591         xm_defines=POSIX
1592         tmake_file="t-interix i386/t-interix"
1593         extra_objs=interix.o
1594         if test x$enable_threads = xyes ; then
1595                 thread_file='posix'
1596         fi
1597         if test x$stabs = xyes ; then
1598                 tm_file="${tm_file} dbxcoff.h"
1599         fi
1600         ;;
1601 i[34567]86-dg-dgux*)
1602         xm_defines=POSIX
1603         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/dgux.h"
1604         tmake_file=i386/t-dgux
1605         install_headers_dir=install-headers-cpio
1606       ;;
1607 i860-alliant-*)         # Alliant FX/2800
1608         tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h i860/fx2800.h"
1609         tmake_file=i860/t-fx2800
1610         extra_parts="crtbegin.o crtend.o"
1611         ;;
1612 i860-*-bsd*)
1613         tm_file="${tm_file} i860/bsd.h"
1614         if test x$gas = xyes
1615         then
1616                 tm_file="${tm_file} i860/bsd-gas.h"
1617         fi
1618         use_collect2=yes
1619         ;;
1620 i860-*-mach*)
1621         tm_file="${tm_file} i860/mach.h"
1622         tmake_file=t-libc-ok
1623         ;;
1624 i860-*-osf*)                    # Intel Paragon XP/S, OSF/1AD
1625         tm_file="${tm_file} svr3.h i860/paragon.h"
1626         xm_defines=POSIX
1627         ;;
1628 i860-*-sysv3*)
1629         tm_file="${tm_file} svr3.h i860/sysv3.h"
1630         xm_defines=POSIX
1631         extra_parts="crtbegin.o crtend.o"
1632         ;;
1633 i860-*-sysv4*)
1634         tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h"
1635         xm_defines=POSIX
1636         tmake_file=t-svr4
1637         extra_parts="crtbegin.o crtend.o"
1638         ;;
1639 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1640         tm_file="${tm_file} i960/vx960.h"
1641         tmake_file=i960/t-vxworks960
1642         use_collect2=yes
1643         thread_file='vxworks'
1644         c_target_objs="i960-c.o"
1645         cxx_target_objs="i960-c.o"
1646         ;;
1647 i960-wrs-vxworks5* | i960-wrs-vxworks)
1648         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1649         tmake_file=i960/t-vxworks960
1650         use_collect2=yes
1651         thread_file='vxworks'
1652         c_target_objs="i960-c.o"
1653         cxx_target_objs="i960-c.o"
1654         ;;
1655 i960-wrs-vxworks*)
1656         tm_file="${tm_file} i960/vx960.h"
1657         tmake_file=i960/t-vxworks960
1658         use_collect2=yes
1659         thread_file='vxworks'
1660         c_target_objs="i960-c.o"
1661         cxx_target_objs="i960-c.o"
1662         ;;
1663 i960-*-coff*)
1664         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1665         tmake_file=i960/t-960bare
1666         c_target_objs="i960-c.o"
1667         cxx_target_objs="i960-c.o"
1668         ;;
1669 i960-*-rtems)
1670         xm_defines=POSIX
1671         tmake_file="i960/t-960bare t-rtems"
1672         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
1673         if test x$enable_threads = xyes; then
1674           thread_file='rtems'
1675         fi
1676         c_target_objs="i960-c.o"
1677         cxx_target_objs="i960-c.o"
1678         ;;
1679 i960-*-*)                       # Default i960 environment.
1680         use_collect2=yes
1681         tmake_file=i960/t-960bare
1682         c_target_objs="i960-c.o"
1683         cxx_target_objs="i960-c.o"
1684         ;;
1685 ia64*-*-aix*)
1686         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
1687         tmake_file="ia64/t-ia64 ia64/t-aix"
1688         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1689         ;;
1690 ia64*-*-elf*)
1691         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1692         tmake_file="ia64/t-ia64"
1693         target_cpu_default="0"
1694         if test x$gas = xyes
1695         then
1696                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1697         fi
1698         if test x$gnu_ld = xyes
1699         then
1700                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1701         fi
1702         float_format=i386
1703         ;;
1704 ia64*-*-freebsd*)
1705         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1706         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1707         tmake_file="${tmake_file} ia64/t-ia64"
1708         float_format=i386
1709         ;;
1710 ia64*-*-linux*)
1711         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1712         tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1713         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1714         if test x$enable_threads = xyes; then
1715                 thread_file='posix'
1716         fi
1717         float_format=i386
1718         ;;
1719 ia64*-*-hpux*)
1720         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1721         tmake_file="ia64/t-ia64 ia64/t-hpux"
1722         target_cpu_default="MASK_GNU_AS"
1723         if test x$enable_threads = xyes; then
1724                 thread_file='posix'
1725         fi
1726         float_format=i386
1727         ;;
1728 m32r-*-elf*)
1729         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1730         extra_parts="crtinit.o crtfini.o"
1731         ;;
1732 # m68hc11 and m68hc12 share the same machine description.
1733 m68hc11-*-*|m6811-*-*)
1734         tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1735         tm_p_file="m68hc11/m68hc11-protos.h"
1736         md_file="m68hc11/m68hc11.md"
1737         out_file="m68hc11/m68hc11.c"
1738         tmake_file="m68hc11/t-m68hc11-gas"
1739         ;;
1740 m68hc12-*-*|m6812-*-*)
1741         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1742         tm_p_file="m68hc11/m68hc11-protos.h"
1743         md_file="m68hc11/m68hc11.md"
1744         out_file="m68hc11/m68hc11.c"
1745         tmake_file="m68hc11/t-m68hc11-gas"
1746         ;;
1747 m68000-convergent-sysv*)
1748         tm_file=m68k/ctix.h
1749         xm_defines=POSIX
1750         use_collect2=yes
1751         ;;
1752 m68000-hp-bsd*)                 # HP 9000/200 running BSD
1753         tm_file=m68k/hp2bsd.h
1754         use_collect2=yes
1755         ;;
1756 m68000-hp-hpux*)                # HP 9000 series 300
1757         xm_defines=POSIX
1758         if test x$gas = xyes
1759         then
1760                 tm_file=m68k/hp310g.h
1761         else
1762                 tm_file=m68k/hp310.h
1763         fi
1764         tmake_file=m68k/t-hp320
1765         install_headers_dir=install-headers-cpio
1766         use_collect2=yes
1767         ;;
1768 m68000-sun-sunos3*)
1769         tm_file=m68k/sun2.h
1770         use_collect2=yes
1771         ;;
1772 m68000-sun-sunos4*)
1773         tm_file=m68k/sun2o4.h
1774         use_collect2=yes
1775         ;;
1776 m68000-att-sysv*)
1777         xm_defines=POSIX
1778         if test x$gas = xyes
1779         then
1780                 tm_file=m68k/3b1g.h
1781         else
1782                 tm_file=m68k/3b1.h
1783         fi
1784         use_collect2=yes
1785         ;;
1786 m68k-apple-aux*)                # Apple Macintosh running A/UX
1787         xm_defines=POSIX
1788         tmake_file=m68k/t-aux
1789         install_headers_dir=install-headers-cpio
1790         extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1791         tm_file=
1792         if test "$gnu_ld" = yes
1793         then
1794                 tm_file="${tm_file} m68k/auxgld.h"
1795         else
1796                 tm_file="${tm_file} m68k/auxld.h"
1797         fi
1798         if test "$gas" = yes
1799         then
1800                 tm_file="${tm_file} m68k/auxgas.h"
1801         else
1802                 tm_file="${tm_file} m68k/auxas.h"
1803         fi
1804         tm_file="${tm_file} m68k/a-ux.h"
1805         float_format=m68k
1806         ;;
1807 m68k-apollo-*)
1808         tm_file=m68k/apollo68.h
1809         use_collect2=yes
1810         float_format=m68k
1811         ;;
1812 m68k-altos-sysv*)                  # Altos 3068
1813         if test x$gas = xyes
1814         then
1815                 tm_file=m68k/altos3068.h
1816                 xm_defines=POSIX
1817         else
1818                 echo "The Altos is supported only with the GNU assembler" 1>&2
1819                 exit 1
1820         fi
1821         ;;
1822 m68k-bull-sysv*)                # Bull DPX/2
1823         if test x$gas = xyes
1824         then
1825                 if test x$stabs = xyes
1826                 then
1827                         tm_file=m68k/dpx2cdbx.h
1828                 else
1829                         tm_file=m68k/dpx2g.h
1830                 fi
1831         else
1832                 tm_file=m68k/dpx2.h
1833         fi
1834         xm_defines=POSIX
1835         use_collect2=yes
1836         ;;
1837 m68k-atari-sysv4*)              # Atari variant of V.4.
1838         tm_file=m68k/atari.h
1839         xm_defines=POSIX
1840         tmake_file=t-svr4
1841         extra_parts="crtbegin.o crtend.o"
1842         float_format=m68k
1843         ;;
1844 m68k-motorola-sysv*)
1845         tm_file=m68k/mot3300.h
1846         xm_defines=POSIX
1847         if test x$gas = xyes
1848         then
1849                 if test x$gnu_ld = xyes
1850                 then
1851                         tmake_file=m68k/t-mot3300-gald
1852                 else
1853                         tmake_file=m68k/t-mot3300-gas
1854                         use_collect2=yes
1855                 fi
1856         else
1857                 if test x$gnu_ld = xyes
1858                 then
1859                         tmake_file=m68k/t-mot3300-gld
1860                 else
1861                         tmake_file=m68k/t-mot3300
1862                         use_collect2=yes
1863                 fi
1864         fi
1865         gdb_needs_out_file_path=yes
1866         extra_parts="crt0.o mcrt0.o"
1867         float_format=m68k
1868         ;;
1869 m68k-ncr-sysv*)                 # NCR Tower 32 SVR3
1870         tm_file=m68k/tower-as.h
1871         xm_defines=POSIX
1872         extra_parts="crtbegin.o crtend.o"
1873         ;;
1874 m68k-plexus-sysv*)
1875         tm_file=m68k/plexus.h
1876         xm_defines=POSIX
1877         use_collect2=yes
1878         ;;
1879 m68k-tti-*)
1880         tm_file=m68k/pbb.h
1881         xm_defines=POSIX
1882         ;;
1883 m68k-crds-unos*)
1884         xm_defines=POSIX
1885         tm_file=m68k/crds.h
1886         use_collect2=yes
1887         ;;
1888 m68k-cbm-sysv4*)                # Commodore variant of V.4.
1889         tm_file=m68k/amix.h
1890         xm_defines=POSIX
1891         tmake_file=t-svr4
1892         extra_parts="crtbegin.o crtend.o"
1893         float_format=m68k
1894         ;;
1895 m68k-ccur-rtu)
1896         tm_file=m68k/ccur-GAS.h
1897         use_collect2=yes
1898         float_format=m68k
1899         ;;
1900 m68k-hp-bsd4.4*)                # HP 9000/3xx running 4.4bsd
1901         tm_file=m68k/hp3bsd44.h
1902         use_collect2=yes
1903         float_format=m68k
1904         ;;
1905 m68k-hp-bsd*)                   # HP 9000/3xx running Berkeley Unix
1906         tm_file=m68k/hp3bsd.h
1907         use_collect2=yes
1908         float_format=m68k
1909         ;;
1910 m68k-isi-bsd*)
1911         if test x$with_fp = xno
1912         then
1913                 tm_file=m68k/isi-nfp.h
1914         else
1915                 tm_file=m68k/isi.h
1916                 float_format=m68k
1917         fi
1918         use_collect2=yes
1919         ;;
1920 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1921         xm_defines=POSIX
1922         if test x$gas = xyes
1923         then
1924                 xmake_file=m68k/x-hp320g
1925                 tm_file=m68k/hp320g.h
1926         else
1927                 xmake_file=m68k/x-hp320
1928                 tm_file=m68k/hpux7.h
1929         fi
1930         install_headers_dir=install-headers-cpio
1931         use_collect2=yes
1932         float_format=m68k
1933         ;;
1934 m68k-hp-hpux*)  # HP 9000 series 300
1935         xm_defines=POSIX
1936         if test x$gas = xyes
1937         then
1938                 xmake_file=m68k/x-hp320g
1939                 tm_file=m68k/hp320g.h
1940         else
1941                 xmake_file=m68k/x-hp320
1942                 tm_file=m68k/hp320.h
1943         fi
1944         install_headers_dir=install-headers-cpio
1945         use_collect2=yes
1946         float_format=m68k
1947         ;;
1948 m68k-sun-mach*)
1949         tm_file=m68k/sun3mach.h
1950         use_collect2=yes
1951         float_format=m68k
1952         ;;
1953 m68k-sony-newsos3*)
1954         if test x$gas = xyes
1955         then
1956                 tm_file=m68k/news3gas.h
1957         else
1958                 tm_file=m68k/news3.h
1959         fi
1960         use_collect2=yes
1961         float_format=m68k
1962         ;;
1963 m68k-sony-bsd* | m68k-sony-newsos*)
1964         if test x$gas = xyes
1965         then
1966                 tm_file=m68k/newsgas.h
1967         else
1968                 tm_file=m68k/news.h
1969         fi
1970         use_collect2=yes
1971         float_format=m68k
1972         ;;
1973 m68k-next-nextstep2*)
1974         tm_p_file="${tm_p_file} nextstep-protos.h"
1975         tm_file=m68k/next21.h
1976         tmake_file=m68k/t-next
1977         xmake_file=m68k/x-next
1978         extra_objs=nextstep.o
1979         use_collect2=yes
1980         float_format=m68k
1981         ;;
1982 m68k-next-nextstep[34]*)
1983         tm_p_file="${tm_p_file} nextstep-protos.h"
1984         tm_file=m68k/next.h
1985         tmake_file=m68k/t-next
1986         xmake_file=m68k/x-next
1987         extra_objs=nextstep.o
1988         extra_parts="crtbegin.o crtend.o"
1989         float_format=m68k
1990         if test x$enable_threads = xyes; then
1991                 thread_file='mach'
1992         fi
1993         ;;
1994 m68k-sun-sunos3*)
1995         if test x$with_fp = xno
1996         then
1997                 tm_file=m68k/sun3n3.h
1998         else
1999                 tm_file=m68k/sun3o3.h
2000                 float_format=m68k
2001         fi
2002         use_collect2=yes
2003         ;;
2004 m68k-sun-sunos*)                        # For SunOS 4 (the default).
2005         if test x$with_fp = xno
2006         then
2007                 tm_file=m68k/sun3n.h
2008         else
2009                 tm_file=m68k/sun3.h
2010                 float_format=m68k
2011         fi
2012         use_collect2=yes
2013         ;;
2014 m68k-wrs-vxworks*)
2015         tm_file=m68k/vxm68k.h
2016         tmake_file=m68k/t-vxworks68
2017         thread_file='vxworks'
2018         float_format=m68k
2019         ;;
2020 m68k-*-aout*)
2021         tmake_file=m68k/t-m68kbare
2022         tm_file="m68k/m68k-aout.h libgloss.h"
2023         float_format=m68k
2024         ;;
2025 m68k-*-coff*)
2026         tmake_file=m68k/t-m68kbare
2027         tm_file="m68k/m68k-coff.h dbx.h"
2028         float_format=m68k
2029         ;;
2030 m68020-*-elf* | m68k-*-elf*)
2031         tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
2032         xm_defines=POSIX
2033         tmake_file=m68k/t-m68kelf
2034         extra_parts="crtbegin.o crtend.o"
2035         ;;
2036 m68k-*-lynxos*)
2037         if test x$gas = xyes
2038         then
2039                 tm_file=m68k/lynx.h
2040         else
2041                 tm_file=m68k/lynx-ng.h
2042         fi
2043         tmake_file=m68k/t-lynx
2044         float_format=m68k
2045         ;;
2046 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
2047         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
2048         case $machine in
2049         m68010*)
2050                 target_cpu_default="0"
2051                 ;;
2052         *)
2053                 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
2054                 ;;
2055         esac
2056         float_format=m68k
2057         ;;
2058 m68k*-*-netbsd*)
2059         tm_file=m68k/netbsd.h
2060         tmake_file=t-netbsd
2061         float_format=m68k
2062         use_collect2=yes
2063         ;;
2064 m68k*-*-openbsd*)
2065         # needed to unconfuse gdb
2066         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
2067         float_format=m68k
2068         # we need collect2 until our bug is fixed...
2069         use_collect2=yes
2070         ;;
2071 m68k-*-sysv3*)                  # Motorola m68k's running system V.3
2072         xm_defines=POSIX
2073         extra_parts="crtbegin.o crtend.o"
2074         float_format=m68k
2075         ;;
2076 m68k-*-sysv4*)                  # Motorola m68k's running system V.4
2077         tm_file=m68k/m68kv4.h
2078         xm_defines=POSIX
2079         tmake_file=t-svr4
2080         extra_parts="crtbegin.o crtend.o"
2081         float_format=m68k
2082         ;;
2083 m68k-*-linux*aout*)             # Motorola m68k's running GNU/Linux
2084                                 # with a.out format
2085         tm_file=m68k/linux-aout.h
2086         tmake_file="t-linux-aout m68k/t-linux-aout"
2087         float_format=m68k
2088         gnu_ld=yes
2089         ;;
2090 m68k-*-linux*libc1)             # Motorola m68k's running GNU/Linux
2091                                 # with ELF format using the
2092                                 # GNU/Linux C library 5
2093         tm_file=m68k/linux.h
2094         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
2095         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2096         float_format=m68k
2097         gnu_ld=yes
2098         ;;
2099 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
2100                                 # with ELF format using glibc 2
2101                                 # aka the GNU/Linux C library 6.
2102         tm_file=m68k/linux.h
2103         tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
2104         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2105         float_format=m68k
2106         gnu_ld=yes
2107         if test x$enable_threads = xyes; then
2108                 thread_file='posix'
2109         fi
2110         ;;
2111 m68k-*-psos*)
2112         tmake_file=m68k/t-m68kbare
2113         tm_file=m68k/m68k-psos.h
2114         float_format=m68k
2115         ;;
2116 m68k-*-rtemscoff*)
2117         xm_defines=POSIX
2118         tmake_file="m68k/t-m68kbare t-rtems"
2119         tm_file="m68k/m68k-coff.h m68k/rtems.h rtems.h"
2120         float_format=m68k
2121         if test x$enable_threads = xyes; then
2122           thread_file='rtems'
2123         fi
2124         ;;
2125 m68k-*-rtemself*|m68k-*-rtems*)
2126         xm_defines=POSIX
2127         tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
2128         tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h"
2129         float_format=m68k
2130         extra_parts="crtbegin.o crtend.o"
2131         if test x$enable_threads = xyes; then
2132           thread_file='rtems'
2133         fi
2134         ;;
2135 m88k-dg-dgux*)
2136         xm_defines=POSIX
2137         case $machine in
2138           m88k-dg-dguxbcs*)
2139             tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h m88k/dguxbcs.h"
2140             tmake_file="m88k/t-dgux m88k/t-dguxbcs"
2141             ;;
2142           *)
2143             tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h"
2144             tmake_file=m88k/t-dgux
2145             ;;
2146         esac
2147         extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
2148         if test x$gas = xyes
2149         then
2150                 tmake_file=m88k/t-dgux-gas
2151         fi
2152         ;;
2153 m88k-dolphin-sysv3*)
2154         xm_defines=POSIX
2155         tm_file=m88k/dolph.h
2156         extra_parts="crtbegin.o crtend.o"
2157         tmake_file=m88k/t-dolph
2158         if test x$gas = xyes
2159         then
2160                 tmake_file=m88k/t-m88k-gas
2161         fi
2162         ;;
2163 m88k-tektronix-sysv3)
2164         xm_defines=POSIX
2165         tm_file=m88k/tekXD88.h
2166         extra_parts="crtbegin.o crtend.o"
2167         tmake_file=m88k/t-tekXD88
2168         if test x$gas = xyes
2169         then
2170                 tmake_file=m88k/t-m88k-gas
2171         fi
2172         ;;
2173 m88k-*-aout*)
2174         xm_defines=POSIX
2175         tm_file=m88k/m88k-aout.h
2176         ;;
2177 m88k-*-coff*)
2178         xm_defines=POSIX
2179         tm_file=m88k/m88k-coff.h
2180         tmake_file=m88k/t-bug
2181         ;;
2182 m88k-*-luna*)
2183         tm_file=m88k/luna.h
2184         extra_parts="crtbegin.o crtend.o"
2185         if test x$gas = xyes
2186         then
2187                 tmake_file=m88k/t-luna-gas
2188         else
2189                 tmake_file=m88k/t-luna
2190         fi
2191         ;;
2192 m88k-*-openbsd*)
2193         tmake_file="${tmake_file} m88k/t-luna-gas"
2194         tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
2195         ;;
2196 m88k-*-sysv3*)
2197         xm_defines=POSIX
2198         tm_file=m88k/sysv3.h
2199         extra_parts="crtbegin.o crtend.o"
2200         if test x$gas = xyes
2201         then
2202                 tmake_file=m88k/t-m88k-gas
2203         fi
2204         ;;
2205 m88k-*-sysv4*)
2206         xm_defines=POSIX
2207         tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h"
2208         extra_parts="crtbegin.o crtend.o"
2209         tmake_file=m88k/t-sysv4
2210         ;;
2211 mcore-*-elf)
2212         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
2213         tmake_file=mcore/t-mcore
2214         ;;
2215 mcore-*-pe*)
2216         tm_file=mcore/mcore-pe.h
2217         tmake_file=mcore/t-mcore-pe
2218         ;;
2219 mips-sgi-irix6*)                # SGI System V.4., IRIX 6
2220         if test "x$gnu_ld" = xyes
2221         then
2222                 tm_file="mips/iris6.h mips/iris6gld.h"
2223         else
2224                 tm_file=mips/iris6.h
2225         fi
2226         tmake_file="mips/t-iris mips/t-iris6"
2227         xm_defines=POSIX
2228 #       if test x$enable_threads = xyes; then
2229 #               thread_file='irix'
2230 #       fi
2231         ;;
2232 mips-wrs-vxworks)
2233         tm_file="mips/elf.h mips/vxworks.h"
2234         tmake_file=mips/t-ecoff
2235         gas=yes
2236         gnu_ld=yes
2237         extra_parts="crtbegin.o crtend.o"
2238         thread_file='vxworks'
2239         ;;
2240 mips-sgi-irix5cross64)          # Irix5 host, Irix 6 target, cross64
2241         tm_file="mips/iris6.h mips/cross64.h"
2242         xm_defines=POSIX
2243         xm_file=mips/xm-iris5.h
2244         tmake_file="mips/t-iris mips/t-cross64"
2245         # See comment in mips/iris[56].h files.
2246         use_collect2=yes
2247 #       if test x$enable_threads = xyes; then
2248 #               thread_file='irix'
2249 #       fi
2250         ;;
2251 mips-sni-sysv4)
2252         if test x$gas = xyes
2253         then
2254                 if test x$stabs = xyes
2255                 then
2256                         tm_file=mips/iris5gdb.h
2257                 else
2258                         tm_file="mips/sni-svr4.h mips/sni-gas.h"
2259                 fi
2260         else
2261                 tm_file=mips/sni-svr4.h
2262         fi
2263         xm_defines=POSIX
2264         if test x$gnu_ld != xyes
2265         then
2266                 use_collect2=yes
2267         fi
2268         ;;
2269 mips-sgi-irix5*)                # SGI System V.4., IRIX 5
2270         if test x$gas = xyes
2271         then
2272                 tm_file="mips/iris5.h mips/iris5gas.h"
2273                 if test x$stabs = xyes
2274                 then
2275                         tm_file="${tm_file} dbx.h"
2276                 fi
2277         else
2278                 tm_file=mips/iris5.h
2279         fi
2280         tmake_file=mips/t-iris
2281         xm_defines=POSIX
2282         xm_file=mips/xm-iris5.h
2283         # mips-tfile doesn't work yet
2284         # See comment in mips/iris5.h file.
2285         use_collect2=yes
2286 #       if test x$enable_threads = xyes; then
2287 #               thread_file='irix'
2288 #       fi
2289         ;;
2290 mips-sgi-irix4loser*)           # Mostly like a MIPS.
2291         tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
2292         if test x$stabs = xyes; then
2293                 tm_file="${tm_file} dbx.h"
2294         fi
2295         tmake_file=mips/t-iris
2296         xm_defines=POSIX
2297         if test x$gas = xyes
2298         then    :
2299         else
2300                 extra_passes="mips-tfile mips-tdump"
2301         fi
2302         if test x$gnu_ld != xyes
2303         then
2304                 use_collect2=yes
2305         fi
2306 #       if test x$enable_threads = xyes; then
2307 #               thread_file='irix'
2308 #       fi
2309         ;;
2310 mips-sgi-irix4*)                # Mostly like a MIPS.
2311         tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
2312         if test x$stabs = xyes; then
2313                 tm_file="${tm_file} dbx.h"
2314         fi
2315         tmake_file=mips/t-iris
2316         xm_defines=POSIX
2317         if test x$gas = xyes
2318         then    :
2319         else
2320                 extra_passes="mips-tfile mips-tdump"
2321         fi
2322         if test x$gnu_ld != xyes
2323         then
2324                 use_collect2=yes
2325         fi
2326 #       if test x$enable_threads = xyes; then
2327 #               thread_file='irix'
2328 #       fi
2329         ;;
2330 mips-sgi-*)                     # Mostly like a MIPS.
2331         tm_file="mips/iris3.h ${tm_file}"
2332         if test x$stabs = xyes; then
2333                 tm_file="${tm_file} dbx.h"
2334         fi
2335         xm_defines=POSIX
2336         if test x$gas = xyes
2337         then    :
2338         else
2339                 extra_passes="mips-tfile mips-tdump"
2340         fi
2341         if test x$gnu_ld != xyes
2342         then
2343                 use_collect2=yes
2344         fi
2345         ;;
2346 mips-dec-osfrose*)              # Decstation running OSF/1 reference port with OSF/rose.
2347         tm_file="mips/osfrose.h ${tm_file}"
2348         extra_objs=halfpic.o
2349         use_collect2=yes
2350         ;;
2351 mips-dec-osf*)                  # Decstation running OSF/1 as shipped by DIGITAL
2352         tm_file=mips/dec-osf1.h
2353         if test x$stabs = xyes; then
2354                 tm_file="${tm_file} dbx.h"
2355         fi
2356         if test x$gas = xyes
2357         then    :
2358         else
2359                 tmake_file=mips/t-ultrix
2360                 extra_passes="mips-tfile mips-tdump"
2361         fi
2362         if test x$gnu_ld != xyes
2363         then
2364                 use_collect2=yes
2365         fi
2366         ;;
2367 mips-dec-bsd*)                  # Decstation running 4.4 BSD
2368       tm_file=mips/dec-bsd.h
2369       if test x$gas = xyes
2370       then      :
2371       else
2372                 tmake_file=mips/t-ultrix
2373                 extra_passes="mips-tfile mips-tdump"
2374       fi
2375       if test x$gnu_ld != xyes
2376       then
2377                 use_collect2=yes
2378       fi
2379       ;;
2380 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
2381         tm_file="elfos.h mips/netbsd.h"
2382         case $machine in
2383         mips*el-*)
2384                 tm_file="mips/little.h $tm_file" 
2385                 ;;
2386         esac
2387         ;;
2388 mips*-*-linux*)                         # Linux MIPS, either endian.
2389         tm_file="dbxelf.h elfos.h svr4.h linux.h mips/linux.h"
2390         case $machine in
2391         mipsisa32*-*)
2392                 tm_file="$tm_file mips/isa32-linux.h"
2393                 target_cpu_default="MASK_SOFT_FLOAT"
2394                 ;;
2395         esac
2396         case $machine in
2397         mips*el-*)
2398                 tm_file="mips/little.h $tm_file"
2399                 ;;
2400         esac
2401         tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux"
2402         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
2403         gnu_ld=yes
2404         gas=yes
2405         if test x$enable_threads = xyes; then
2406                 thread_file='posix'
2407         fi
2408         ;;
2409 mips*el-*-openbsd*)     # mips little endian
2410         target_cpu_default="MASK_GAS|MASK_ABICALLS"
2411         ;;
2412 mips*-*-openbsd*)               # mips big endian
2413         target_cpu_default="MASK_GAS|MASK_ABICALLS"
2414         tm_file="mips/openbsd-be.h ${tm_file}"
2415         ;;
2416 mips-sony-bsd* | mips-sony-newsos*)     # Sony NEWS 3600 or risc/news.
2417         tm_file="mips/news4.h ${tm_file}"
2418         if test x$stabs = xyes; then
2419                 tm_file="${tm_file} dbx.h"
2420         fi
2421         if test x$gas = xyes
2422         then    :
2423         else
2424                 extra_passes="mips-tfile mips-tdump"
2425         fi
2426         if test x$gnu_ld != xyes
2427         then
2428                 use_collect2=yes
2429         fi
2430         ;;
2431 mips-sony-sysv*)                # Sony NEWS 3800 with NEWSOS5.0.
2432                                 # That is based on svr4.
2433         # t-svr4 is not right because this system doesn't use ELF.
2434         tm_file="mips/news5.h ${tm_file}"
2435         if test x$stabs = xyes; then
2436                 tm_file="${tm_file} dbx.h"
2437         fi
2438         xm_defines=POSIX
2439         if test x$gas = xyes
2440         then    :
2441         else
2442                 extra_passes="mips-tfile mips-tdump"
2443         fi
2444         if test x$gnu_ld != xyes
2445         then
2446                 use_collect2=yes
2447         fi
2448         ;;
2449 mips-tandem-sysv4*)             # Tandem S2 running NonStop UX
2450         tm_file="mips/svr4-5.h mips/svr4-t.h"
2451         if test x$stabs = xyes; then
2452                 tm_file="${tm_file} dbx.h"
2453         fi
2454         xm_defines=POSIX
2455         if test x$gas = xyes
2456         then
2457                 extra_parts="crtbegin.o crtend.o"
2458         else
2459                 extra_passes="mips-tfile mips-tdump"
2460         fi
2461         if test x$gnu_ld != xyes
2462         then
2463                 use_collect2=yes
2464         fi
2465         ;;
2466 mips-*-ultrix* | mips-dec-mach3)        # Decstation.
2467         tm_file="mips/ultrix.h ${tm_file}"
2468         if test x$stabs = xyes; then
2469                 tm_file="${tm_file} dbx.h"
2470         fi
2471         if test x$gas = xyes
2472         then    :
2473         else
2474                 tmake_file=mips/t-ultrix
2475                 extra_passes="mips-tfile mips-tdump"
2476         fi
2477         if test x$gnu_ld != xyes
2478         then
2479                 use_collect2=yes
2480         fi
2481         ;;
2482 mips-*-riscos[56789]bsd*)
2483         tm_file=mips/bsd-5.h    # MIPS BSD 4.3, RISC-OS 5.0
2484         if test x$stabs = xyes; then
2485                 tm_file="${tm_file} dbx.h"
2486         fi
2487         if test x$gas = xyes
2488         then
2489                 tmake_file=mips/t-bsd-gas
2490         else
2491                 tmake_file=mips/t-bsd
2492                 extra_passes="mips-tfile mips-tdump"
2493         fi
2494         if test x$gnu_ld != xyes
2495         then
2496                 use_collect2=yes
2497         fi
2498         ;;
2499 mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2500         tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
2501         if test x$stabs = xyes; then
2502                 tm_file="${tm_file} dbx.h"
2503         fi
2504         if test x$gas = xyes
2505         then
2506                 tmake_file=mips/t-bsd-gas
2507         else
2508                 tmake_file=mips/t-bsd
2509                 extra_passes="mips-tfile mips-tdump"
2510         fi
2511         if test x$gnu_ld != xyes
2512         then
2513                 use_collect2=yes
2514         fi
2515         ;;
2516 mips-*-riscos[56789]sysv4*)
2517         tm_file=mips/svr4-5.h   # MIPS System V.4., RISC-OS 5.0
2518         if test x$stabs = xyes; then
2519                 tm_file="${tm_file} dbx.h"
2520         fi
2521         if test x$gas = xyes
2522         then
2523                 tmake_file=mips/t-svr4-gas
2524         else
2525                 tmake_file=mips/t-svr4
2526                 extra_passes="mips-tfile mips-tdump"
2527         fi
2528         if test x$gnu_ld != xyes
2529         then
2530                 use_collect2=yes
2531         fi
2532         ;;
2533 mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2534         tm_file="mips/svr4-4.h ${tm_file}"
2535         if test x$stabs = xyes; then
2536                 tm_file="${tm_file} dbx.h"
2537         fi
2538         xm_defines=POSIX
2539         if test x$gas = xyes
2540         then
2541                 tmake_file=mips/t-svr4-gas
2542         else
2543                 tmake_file=mips/t-svr4
2544                 extra_passes="mips-tfile mips-tdump"
2545         fi
2546         if test x$gnu_ld != xyes
2547         then
2548                 use_collect2=yes
2549         fi
2550         ;;
2551 mips-*-riscos[56789]sysv*)
2552         tm_file=mips/svr3-5.h   # MIPS System V.3, RISC-OS 5.0
2553         if test x$stabs = xyes; then
2554                 tm_file="${tm_file} dbx.h"
2555         fi
2556         xm_defines=POSIX
2557         if test x$gas = xyes
2558         then
2559                 tmake_file=mips/t-svr3-gas
2560         else
2561                 tmake_file=mips/t-svr3
2562                 extra_passes="mips-tfile mips-tdump"
2563         fi
2564         if test x$gnu_ld != xyes
2565         then
2566                 use_collect2=yes
2567         fi
2568         ;;
2569 mips-*-sysv* | mips-*-riscos*sysv*)
2570         tm_file="mips/svr3-4.h ${tm_file}"
2571         if test x$stabs = xyes; then
2572                 tm_file="${tm_file} dbx.h"
2573         fi
2574         xm_defines=POSIX
2575         if test x$gas = xyes
2576         then
2577                 tmake_file=mips/t-svr3-gas
2578         else
2579                 tmake_file=mips/t-svr3
2580                 extra_passes="mips-tfile mips-tdump"
2581         fi
2582         if test x$gnu_ld != xyes
2583         then
2584                 use_collect2=yes
2585         fi
2586         ;;
2587 mips-*-riscos[56789]*)          # Default MIPS RISC-OS 5.0.
2588         tm_file=mips/mips-5.h
2589         if test x$stabs = xyes; then
2590                 tm_file="${tm_file} dbx.h"
2591         fi
2592         if test x$gas = xyes
2593         then    :
2594         else
2595                 extra_passes="mips-tfile mips-tdump"
2596         fi
2597         if test x$gnu_ld != xyes
2598         then
2599                 use_collect2=yes
2600         fi
2601         ;;
2602 mipsel-*-ecoff*)
2603         tm_file=mips/ecoffl.h
2604         if test x$stabs = xyes; then
2605                 tm_file="${tm_file} dbx.h"
2606         fi
2607         tmake_file=mips/t-ecoff
2608         ;;
2609 mips-*-ecoff*)
2610         tm_file="gofast.h mips/ecoff.h"
2611         if test x$stabs = xyes; then
2612                 tm_file="${tm_file} dbx.h"
2613         fi
2614         tmake_file=mips/t-ecoff
2615         ;;
2616 mipsisa32-*-elf*)
2617         tm_file="mips/isa3264.h mips/abi64.h"
2618         tmake_file=mips/t-isa3264
2619         target_cpu_default="MASK_SOFT_FLOAT"
2620         ;;
2621 mipsel-*-elf*)
2622         tm_file="mips/elfl.h"
2623         tmake_file=mips/t-elf
2624         ;;
2625 mips-*-elf*)
2626         tm_file="mips/elf.h"
2627         tmake_file=mips/t-elf
2628         ;;
2629 mips64el-*-elf*)
2630         tm_file="mips/elfl64.h"
2631         tmake_file=mips/t-elf
2632         ;;
2633 mips64orionel-*-elf*)
2634         tm_file="mips/elforion.h mips/elfl64.h"
2635         tmake_file=mips/t-elf
2636         ;;
2637 mips64-*-elf*)
2638         tm_file="mips/elf64.h"
2639         tmake_file=mips/t-elf
2640         ;;
2641 mips64orion-*-elf*)
2642         tm_file="mips/elforion.h mips/elf64.h"
2643         tmake_file=mips/t-elf
2644         ;;
2645 mips64orion-*-rtems*)
2646         xm_defines=POSIX
2647         tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h rtems.h"
2648         tmake_file="mips/t-elf t-rtems"
2649         if test x$enable_threads = xyes; then
2650           thread_file='rtems'
2651         fi
2652         ;;
2653 mips*-*-rtems*)
2654         xm_defines=POSIX
2655         tm_file="mips/elf.h mips/rtems.h rtems.h"
2656         tmake_file="mips/t-elf t-rtems"
2657         if test x$enable_threads = xyes; then
2658           thread_file='rtems'
2659         fi
2660         ;;
2661 mipstx39el-*-elf*)
2662         tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
2663         tmake_file=mips/t-r3900
2664         target_cpu_default="MASK_SOFT_FLOAT"
2665         ;;
2666 mipstx39-*-elf*)
2667         tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
2668         tmake_file=mips/t-r3900
2669         ;;
2670 mips-*-*)                               # Default MIPS RISC-OS 4.0.
2671         if test x$stabs = xyes; then
2672                 tm_file="${tm_file} dbx.h"
2673         fi
2674         if test x$gas = xyes
2675         then    :
2676         else
2677                 extra_passes="mips-tfile mips-tdump"
2678         fi
2679         if test x$gnu_ld != xyes
2680         then
2681                 use_collect2=yes
2682         fi
2683         ;;
2684 mmix-knuth-mmixware)
2685         ;;
2686 mn10200-*-*)
2687         float_format=i32
2688         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2689         if test x$stabs = xyes
2690         then
2691                 tm_file="${tm_file} dbx.h"
2692         fi
2693         use_collect2=no
2694         ;;
2695 mn10300-*-*)
2696         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2697         if test x$stabs = xyes
2698         then
2699                 tm_file="${tm_file} dbx.h"
2700         fi
2701         use_collect2=no
2702         ;;
2703 ns32k-encore-bsd*)
2704         tm_file=ns32k/encore.h
2705         use_collect2=yes
2706         ;;
2707 ns32k-sequent-bsd*)
2708         tm_file=ns32k/sequent.h
2709         use_collect2=yes
2710         ;;
2711 ns32k-tek6100-bsd*)
2712         tm_file=ns32k/tek6100.h
2713         use_collect2=yes
2714         ;;
2715 ns32k-tek6200-bsd*)
2716         tm_file=ns32k/tek6200.h
2717         use_collect2=yes
2718         ;;
2719 ns32k-merlin-*)
2720         tm_file=ns32k/merlin.h
2721         use_collect2=yes
2722         ;;
2723 ns32k-pc532-mach*)
2724         tm_file=ns32k/pc532-mach.h
2725         use_collect2=yes
2726         ;;
2727 ns32k-pc532-minix*)
2728         tm_file=ns32k/pc532-min.h
2729         xm_defines='POSIX HZ=60'
2730         use_collect2=yes
2731         ;;
2732 ns32k-*-netbsdelf*)
2733         echo "GCC does not yet support the ${machine} target"; exit 1
2734         ;;
2735 ns32k-*-netbsd*)
2736         tm_file=ns32k/netbsd.h
2737         # On NetBSD, the headers are already okay, except for math.h.
2738         tmake_file=t-netbsd
2739         use_collect2=yes
2740         ;;
2741 pdp11-*-bsd)
2742         tm_file="${tm_file} pdp11/2bsd.h"
2743         ;;
2744 pdp11-*-*)
2745         ;;
2746 avr-*-*)
2747         ;;
2748 ns32k-*-openbsd*)
2749         # Nothing special
2750         ;;
2751 pj*-linux*)
2752         tm_file="dbxelf.h elfos.h svr4.h pj/linux.h ${tm_file}"
2753         ;;
2754 pj-*)
2755         ;;
2756 pjl-*)
2757         tm_file="dbxelf.h elfos.h svr4.h pj/pjl.h ${tm_file}"
2758         ;;
2759
2760 romp-*-aos*)
2761         use_collect2=yes
2762         ;;
2763 romp-*-mach*)
2764         use_collect2=yes
2765         ;;
2766 romp-*-openbsd*)
2767         # Nothing special
2768         ;;
2769 powerpc-*-openbsd*)
2770         tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
2771         extra_headers=
2772         ;;
2773 powerpc64-*-linux*)
2774         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h"
2775         out_file=rs6000/rs6000.c
2776         tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-linux rs6000/t-linux64"
2777         ;;
2778 powerpc64-*-gnu*)
2779         tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux64.h rs6000/gnu.h"
2780         out_file=rs6000/rs6000.c
2781         tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
2782         ;;
2783 powerpc-*-beos*)
2784         tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
2785         xm_defines=POSIX
2786         tmake_file=rs6000/t-beos
2787         extra_headers=
2788         ;;
2789 powerpc-*-darwin*)
2790         tm_file="${tm_file} darwin.h rs6000/darwin.h"
2791         tm_p_file="${tm_p_file} darwin-protos.h"
2792         tmake_file=rs6000/t-darwin
2793         extra_objs="darwin.o"
2794         c_target_objs="darwin-c.o"
2795         cxx_target_objs="darwin-c.o"
2796         # Darwin linker does collect2 functionality
2797         use_collect2=no
2798         extra_headers=altivec.h
2799         ;;
2800 powerpc*-*-freebsd*)
2801         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
2802         xm_file=rs6000/xm-sysv4.h
2803         out_file=rs6000/rs6000.c
2804         tmake_file="rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2805         ;;
2806 powerpc-*-sysv*)
2807         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2808         xm_defines=POSIX
2809         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2810         ;;
2811 powerpc-*-netbsd*)
2812         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2813         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2814         ;;
2815 powerpc-*-chorusos*)
2816         xm_defines=POSIX
2817         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
2818         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2819         case x${enable_threads} in
2820           xyes | xpthreads | xposix)
2821                 thread_file='posix'
2822                 ;;
2823         esac
2824         ;;
2825 powerpc-*-eabiaix*)
2826         xm_defines=POSIX
2827         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
2828         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2829         ;;
2830 powerpc-*-eabisimaltivec*)
2831         xm_defines=POSIX
2832         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h rs6000/eabialtivec.h"
2833         tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2834         ;;
2835 powerpc-*-eabisim*)
2836         xm_defines=POSIX
2837         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
2838         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2839         ;;
2840 powerpc-*-elf*)
2841         xm_defines=POSIX
2842         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2843         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2844         ;;
2845 powerpc-*-eabialtivec*)
2846         xm_defines=POSIX
2847         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
2848         tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2849         ;;
2850 powerpc-*-eabi*)
2851         xm_defines=POSIX
2852         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
2853         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2854         ;;
2855 powerpc-*-rtems*)
2856         xm_defines=POSIX
2857         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
2858         tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2859         if test x$enable_threads = xyes; then
2860           thread_file='rtems'
2861         fi
2862         ;;
2863 powerpc-*-linux*libc1)
2864         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2865         out_file=rs6000/rs6000.c
2866         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2867         if test x$enable_threads = xyes; then
2868                 thread_file='posix'
2869         fi
2870         ;;
2871 powerpc-*-linux-gnualtivec*)
2872         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
2873         out_file=rs6000/rs6000.c
2874         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2875         if test x$enable_threads = xyes; then
2876                 thread_file='posix'
2877         fi
2878         ;;
2879 powerpc-*-linux*)
2880         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2881         out_file=rs6000/rs6000.c
2882         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2883         if test x$enable_threads = xyes; then
2884                 thread_file='posix'
2885         fi
2886         ;;
2887 powerpc-*-gnu-gnualtivec*)
2888         tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h rs6000/gnu.h"
2889         out_file=rs6000/rs6000.c
2890         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2891         if test x$enable_threads = xyes; then
2892                 thread_file='posix'
2893         fi
2894         ;;
2895 powerpc-*-gnu*)
2896         tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/gnu.h"
2897         out_file=rs6000/rs6000.c
2898         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2899         if test x$enable_threads = xyes; then
2900                 thread_file='posix'
2901         fi
2902         ;;
2903 powerpc-wrs-vxworks*)
2904         xm_defines=POSIX
2905         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/vxppc.h"
2906         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2907         thread_file='vxworks'
2908         ;;
2909 powerpcle-wrs-vxworks*)
2910         xm_defines=POSIX
2911         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h"
2912         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2913         thread_file='vxworks'
2914         ;;
2915 powerpcle-*-sysv*)
2916         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2917         xm_defines=POSIX
2918         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2919         ;;
2920 powerpcle-*-elf*)
2921         xm_defines=POSIX
2922         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2923         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2924         ;;
2925 powerpcle-*-eabisim*)
2926         xm_defines=POSIX
2927         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/eabisim.h"
2928         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2929         ;;
2930 powerpcle-*-eabi*)
2931         xm_defines=POSIX
2932         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
2933         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2934         ;;
2935 rs6000-ibm-aix3.[01]*)
2936         xm_defines=POSIX
2937         tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
2938         float_format=none
2939         use_collect2=yes
2940         ;;
2941 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
2942         xm_defines=POSIX
2943         tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
2944         tmake_file=rs6000/t-newas
2945         float_format=none
2946         use_collect2=yes
2947         extra_headers=
2948         ;;
2949 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
2950         xm_defines=POSIX
2951         tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
2952         tmake_file=rs6000/t-newas
2953         float_format=none
2954         use_collect2=yes
2955         extra_headers=
2956         ;;
2957 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2958         xm_defines=POSIX
2959         tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
2960         tmake_file=rs6000/t-aix43
2961         float_format=none
2962         use_collect2=yes
2963         thread_file='aix'
2964         extra_headers=
2965         ;;
2966 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
2967         xm_defines=POSIX
2968         tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
2969         tmake_file=rs6000/t-aix43
2970         float_format=none
2971         use_collect2=yes
2972         thread_file='aix'
2973         extra_headers=
2974         ;;
2975 rs6000-ibm-aix*)
2976         xm_defines=POSIX
2977         tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2978         float_format=none
2979         use_collect2=yes
2980         ;;
2981 rs6000-bull-bosx)
2982         xm_defines=POSIX
2983         tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2984         float_format=none
2985         use_collect2=yes
2986         ;;
2987 rs6000-*-mach*)
2988         tm_file="${tm_file} rs6000/mach.h"
2989         xm_defines=POSIX
2990         use_collect2=yes
2991         ;;
2992 rs6000-*-lynxos*)
2993         tm_file="lynx.h rs6000/lynx.h"
2994         tmake_file=rs6000/t-rs6000
2995         use_collect2=yes
2996         ;;
2997 s390-*-linux*)
2998         tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
2999         tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
3000         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
3001         if test x$enable_threads = xyes; then
3002                 thread_file='posix'
3003         fi
3004         ;;
3005 s390x-*-linux*)
3006         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
3007         tm_p_file=s390/s390-protos.h
3008         md_file=s390/s390.md
3009         out_file=s390/s390.c
3010         tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux s390/t-linux64"
3011         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
3012         if test x$enable_threads = xyes; then
3013                 thread_file='posix'
3014         fi
3015         ;;
3016 sh-*-elf*)
3017         tmake_file="sh/t-sh sh/t-elf"
3018         tm_file="${tm_file} sh/embed-elf.h"
3019         float_format=sh
3020         ;;
3021 sh64-*-elf*)
3022         tmake_file="sh/t-sh sh/t-elf sh/t-sh64"
3023         tm_file="${tm_file} sh/sh.h sh/embed-elf.h sh/sh64.h"
3024         float_format=sh
3025         extra_headers="../../config/sh/shmedia.h ../../config/sh/ushmedia.h ../../config/sh/sshmedia.h"
3026         # Not strictly necessary to check this, but a good idea anyway.
3027         if test $machine = $target; then
3028                 target_requires_64bit_host_wide_int=yes
3029         fi
3030         ;;
3031 sh-*-rtemself*)
3032         xm_defines=POSIX
3033         tmake_file="sh/t-sh sh/t-elf t-rtems"
3034         tm_file="${tm_file} sh/embed-elf.h sh/rtemself.h rtems.h"
3035         float_format=sh
3036         if test x$enable_threads = xyes; then
3037           thread_file='rtems'
3038         fi
3039         ;;
3040 sh-*-rtems*)
3041         xm_defines=POSIX
3042         tmake_file="sh/t-sh t-rtems"
3043         tm_file="${tm_file} sh/rtems.h rtems.h"
3044         float_format=sh
3045         if test x$enable_threads = xyes; then
3046           thread_file='rtems'
3047         fi
3048         ;;
3049 sh-*-linux*)
3050         tm_file="${tm_file} sh/elf.h sh/linux.h"
3051         tmake_file="sh/t-sh sh/t-elf sh/t-linux"
3052         gas=yes gnu_ld=yes
3053         if test x$enable_threads = xyes; then
3054                 thread_file='posix'
3055         fi
3056         float_format=sh
3057         ;;
3058 sh-*-*)
3059         float_format=sh
3060         ;;
3061 sparc-tti-*)
3062         tm_file="${tm_file} sparc/pbd.h"
3063         xm_defines=POSIX
3064         ;;
3065 sparc64-wrs-vxworks*)
3066         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/biarch64.h gofast.h sparc/vxsparc64.h"
3067         tmake_file="sparc/t-vxsparc64 sparc/t-crtfm"
3068         use_collect2=yes
3069         ;;
3070 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
3071         tm_file="${tm_file} aoutos.h sparc/aout.h gofast.h sparc/vxsparc.h"
3072         tmake_file=sparc/t-vxsparc
3073         use_collect2=yes
3074         thread_file='vxworks'
3075         ;;
3076 sparc-*-aout*)
3077         tmake_file=sparc/t-sparcbare
3078         tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
3079         ;;
3080 sparc-*-netbsdelf*)
3081         tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
3082         ;;
3083 sparc-*-netbsd*)
3084         tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h"
3085         tmake_file=t-netbsd
3086         use_collect2=yes
3087         ;;
3088 sparc-*-openbsd*)
3089         tm_file="sparc/sparc.h ${tm_file}"
3090         # needed to unconfuse gdb
3091         tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
3092         # we need collect2 until our bug is fixed...
3093         use_collect2=yes
3094         ;;
3095 sparc-*-bsd*)
3096         tm_file="${tm_file} sparc/bsd.h"
3097         ;;
3098 sparc-*-chorusos*)
3099         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h chorus.h"
3100         tmake_file="sparc/t-chorus-elf sparc/t-crtfm"
3101         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3102         float_format=i64
3103         case x${enable_threads} in
3104           xyes | xpthreads | xposix)
3105                 thread_file='posix'
3106                 ;;
3107         esac
3108         ;;
3109 sparc-*-elf*)
3110         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h"
3111         tmake_file="sparc/t-elf sparc/t-crtfm"
3112         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3113         #float_format=i128
3114         float_format=i64
3115         ;;
3116 sparc-*-linux*aout*)            # Sparc's running GNU/Linux, a.out
3117         tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h"
3118         gnu_ld=yes
3119         ;;
3120 sparc-*-linux*libc1*)   # Sparc's running GNU/Linux, libc5
3121         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
3122         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 sparc/t-crtfm"
3123         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3124         gnu_ld=yes
3125         float_format=sparc
3126         ;;
3127 sparc-*-linux*)         # Sparc's running GNU/Linux, libc6
3128         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
3129         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
3130         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
3131         gnu_ld=yes
3132         if test x$enable_threads = xyes; then
3133                 thread_file='posix'
3134         fi
3135         float_format=sparc
3136         ;;
3137 sparc-*-lynxos*)
3138         if test x$gas = xyes
3139         then
3140                 tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h"
3141         else
3142                 tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h"
3143         fi
3144         tmake_file=sparc/t-sunos41
3145         ;;
3146 sparc-*-rtemsaout*)
3147         xm_defines=POSIX
3148         tmake_file="sparc/t-sparcbare t-rtems"
3149         tm_file="${tm_file} aoutos.h sparc/aout.h sparc/rtems.h rtems.h"
3150         if test x$enable_threads = xyes; then
3151           thread_file='rtems'
3152         fi
3153         ;;
3154 sparc-*-rtems*|sparc-*-rtemself*)
3155         xm_defines=POSIX
3156         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
3157         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
3158         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3159         #float_format=i128
3160         float_format=i64
3161         if test x$enable_threads = xyes; then
3162           thread_file='rtems'
3163         fi
3164         ;;
3165 sparc64-*-solaris2* | sparcv9-*-solaris2*)
3166         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
3167         if test x$gnu_ld = xyes; then
3168                 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
3169         fi
3170         if test x$gas = xyes; then
3171                 tm_file="${tm_file} sparc/sol2-gas-bi.h"
3172         fi
3173         xm_defines=POSIX
3174         tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
3175         if test x$gnu_ld = xyes; then
3176                 tmake_file="$tmake_file t-slibgcc-elf-ver"
3177         else
3178                 tmake_file="$tmake_file t-slibgcc-sld"
3179         fi
3180         extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
3181         float_format=i128
3182         if test x${enable_threads} = x ; then
3183             enable_threads=$have_pthread_h
3184             if test x${enable_threads} = x ; then
3185                 enable_threads=$have_thread_h
3186             fi
3187         fi
3188         if test x${enable_threads} = xyes ; then
3189             if test x${have_pthread_h} = xyes ; then
3190                 thread_file='posix'
3191             else
3192                 thread_file='solaris'
3193             fi
3194         fi
3195         ;;
3196 sparc-hal-solaris2*)
3197         xm_defines=POSIX
3198         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/hal.h"
3199         tmake_file="sparc/t-halos sparc/t-sol2 sparc/t-crtfm"
3200         if test x$gnu_ld = xyes; then
3201                 tm_file="${tm_file} sparc/sol2-gld.h"
3202                 tmake_file="$tmake_file t-slibgcc-elf-ver"
3203         else
3204                 tmake_file="$tmake_file t-slibgcc-sld"
3205         fi
3206         extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
3207         float_format=i128
3208         thread_file='solaris'
3209         ;;
3210 sparc-*-solaris2*)
3211         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h"
3212         if test x$gnu_ld = xyes; then
3213                 tm_file="${tm_file} sparc/sol2-gld.h"
3214         fi
3215         tmake_file="sparc/t-sol2 sparc/t-crtfm"
3216         if test x$gnu_ld = xyes; then
3217                 tmake_file="$tmake_file t-slibgcc-elf-ver"
3218         else
3219                 tmake_file="$tmake_file t-slibgcc-sld"
3220         fi
3221         case $machine in
3222         *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
3223                 if test x$gnu_ld = xno; then
3224                         tm_file="${tm_file} sparc/sol26-sld.h"
3225                 fi
3226                 ;;
3227         *-*-solaris2.[789])
3228                 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
3229                 if test x$gnu_ld = xyes; then
3230                         tm_file="${tm_file} sparc/sol2-gld-bi.h"
3231                 fi
3232                 if test x$gas = xyes; then
3233                         tm_file="${tm_file} sparc/sol2-gas-bi.h"
3234                 fi
3235                 tmake_file="$tmake_file sparc/t-sol2-64"
3236                 ;;
3237         esac
3238         xm_defines=POSIX
3239         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
3240         float_format=i128
3241         if test x${enable_threads} = x; then
3242             enable_threads=$have_pthread_h
3243             if test x${enable_threads} = x; then
3244                 enable_threads=$have_thread_h
3245             fi
3246         fi
3247         if test x${enable_threads} = xyes; then
3248             if test x${have_pthread_h} = xyes; then
3249                 thread_file='posix'
3250             else
3251                 thread_file='solaris'
3252             fi
3253         fi
3254         ;;
3255 sparc-*-sunos4.0*)
3256         tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
3257         use_collect2=yes
3258         ;;
3259 sparc-*-sunos4*)
3260         tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
3261         tmake_file=sparc/t-sunos41
3262         use_collect2=yes
3263         if test x$gas = xyes; then
3264                 tm_file="${tm_file} sparc/sun4gas.h"
3265         fi
3266         ;;
3267 sparc-*-sunos3*)
3268         tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h"
3269         use_collect2=yes
3270         ;;
3271 sparc-*-sysv4*)
3272         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h"
3273         xm_defines=POSIX
3274         tmake_file=t-svr4
3275         extra_parts="crtbegin.o crtend.o"
3276         ;;
3277 sparc-*-vxsim*)
3278         xm_defines=POSIX
3279         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/vxsim.h"
3280         tmake_file=sparc/t-vxsparc
3281         ;;
3282 sparclet-*-aout*)
3283         tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h"
3284         tmake_file=sparc/t-splet
3285         ;;
3286 sparclite-*-coff*)
3287         tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
3288         tmake_file=sparc/t-sparclite
3289         ;;
3290 sparclite-*-aout*)
3291         tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h"
3292         tmake_file=sparc/t-sparclite
3293         ;;
3294 sparclite-*-elf*)
3295         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h"
3296         tmake_file="sparc/t-sparclite sparc/t-crtfm"
3297         extra_parts="crtbegin.o crtend.o"
3298         ;;
3299 sparc86x-*-aout*)
3300         tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h"
3301         tmake_file=sparc/t-sp86x
3302         ;;
3303 sparc86x-*-elf*)
3304         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h"
3305         tmake_file="sparc/t-sp86x sparc/t-crtfm"
3306         extra_parts="crtbegin.o crtend.o"
3307         ;;
3308 sparc64-*-aout*)
3309         tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
3310         ;;
3311 sparc64-*-elf*)
3312         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h"
3313         tmake_file="${tmake_file} sparc/t-crtfm"
3314         extra_parts="crtbegin.o crtend.o"
3315         ;;
3316 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
3317         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
3318         tmake_file="${tmake_file} sparc/t-crtfm"
3319         xmake_file=none
3320         case "x$with_cpu" in
3321                 xultrasparc) ;;
3322                 x) with_cpu=ultrasparc ;;
3323                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
3324         esac
3325         ;;
3326 sparc64-*-linux*)               # 64-bit Sparc's running GNU/Linux
3327         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
3328         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
3329         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
3330         gnu_ld=yes
3331         if test x$enable_threads = xyes; then
3332                 thread_file='posix'
3333         fi
3334         float_format=sparc
3335         ;;
3336 sparc64-*-netbsd*)
3337         tmake_file="${tmake_file} sparc/t-netbsd64"
3338         tm_file="sparc/biarch64.h ${tm_file}"
3339         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
3340         float_format=sparc
3341         ;;
3342 strongarm-*-elf*)
3343         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
3344         tmake_file=arm/t-strongarm-elf
3345         out_file=arm/arm.c
3346         md_file=arm/arm.md
3347         ;;
3348 strongarm-*-coff*)
3349         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h"
3350         tmake_file=arm/t-strongarm-coff
3351         out_file=arm/arm.c
3352         md_file=arm/arm.md
3353         ;;
3354 strongarm-*-pe)
3355         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
3356         tmake_file=arm/t-strongarm-pe
3357         out_file=arm/arm.c
3358         md_file=arm/arm.md
3359         extra_objs=pe.o
3360         ;;
3361 thumb*-*-*)
3362         { echo "config.gcc: error:
3363 *** The Thumb targets have been deprecated.  The equivalent
3364 *** ARM based toolchain can now generate Thumb instructions
3365 *** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
3366         ;;
3367 v850-*-rtems*)
3368         xm_defines=POSIX
3369         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/v850.h v850/rtems.h rtems.h"
3370         tmake_file="v850/t-v850 t-rtems"
3371         if test x$stabs = xyes
3372         then
3373                 tm_file="${tm_file} dbx.h"
3374         fi
3375         use_collect2=no
3376         c_target_objs="v850-c.o"
3377         cxx_target_objs="v850-c.o"
3378         ;;
3379 v850-*-*)
3380         target_cpu_default="TARGET_CPU_generic"
3381         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
3382         tmake_file=v850/t-v850
3383         if test x$stabs = xyes
3384         then
3385                 tm_file="${tm_file} dbx.h"
3386         fi
3387         use_collect2=no
3388         c_target_objs="v850-c.o"
3389         cxx_target_objs="v850-c.o"
3390         ;;
3391 vax-*-bsd*)                     # VAXen running BSD
3392         use_collect2=yes
3393         float_format=vax
3394         ;;
3395 vax-*-sysv*)                    # VAXen running system V
3396         tm_file="${tm_file} vax/vaxv.h"
3397         xm_defines=POSIX
3398         float_format=vax
3399         ;;
3400 vax-*-netbsdelf*)
3401         echo "GCC does not yet support the ${machine} target"; exit 1
3402         ;;
3403 vax-*-netbsd*)
3404         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
3405         tmake_file=t-netbsd
3406         float_format=vax
3407         use_collect2=yes
3408         ;;
3409 vax-*-openbsd*)
3410         tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
3411         float_format=vax
3412         use_collect2=yes
3413         ;;
3414 vax-*-ultrix*)                  # VAXen running ultrix
3415         tm_file="${tm_file} vax/ultrix.h"
3416         float_format=vax
3417         ;;
3418 vax-*-vms*)                     # VAXen running VMS
3419         xm_file=vax/xm-vms.h
3420         tm_file=vax/vms.h
3421         float_format=vax
3422         ;;
3423 vax-*-*)                        # VAX default entry
3424         float_format=vax
3425         ;;
3426 we32k-att-sysv*)
3427         xm_defines=POSIX
3428         use_collect2=yes
3429         ;;
3430 xscale-*-elf)
3431         tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
3432         tmake_file=arm/t-xscale-elf
3433         out_file=arm/arm.c
3434         md_file=arm/arm.md
3435         ;;
3436 xscale-*-coff)
3437         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
3438         tmake_file=arm/t-xscale-coff
3439         out_file=arm/arm.c
3440         md_file=arm/arm.md
3441         ;;
3442 xstormy16-*-elf)
3443         # For historical reasons, the target files omit the 'x'.
3444         tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
3445         tm_p_file=stormy16/stormy16-protos.h
3446         md_file=stormy16/stormy16.md
3447         out_file=stormy16/stormy16.c
3448         tmake_file="stormy16/t-stormy16"
3449         extra_parts="crtbegin.o crtend.o"
3450         ;;
3451 xtensa-*-elf*)
3452         tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
3453         with_newlib=yes
3454         tmake_file=xtensa/t-xtensa
3455         extra_parts="crtbegin.o crtend.o"
3456         fixincludes=Makefile.in # newlib headers should be OK
3457         ;;
3458 xtensa-*-linux*)
3459         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
3460         tmake_file="t-linux xtensa/t-xtensa"
3461         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
3462         gas=yes gnu_ld=yes
3463         if test x$enable_threads = xyes; then
3464                 thread_file='posix'
3465         fi
3466         ;;
3467 *)
3468         echo "Configuration $machine not supported" 1>&2
3469         exit 1
3470         ;;
3471 esac
3472
3473 case $machine in
3474 *-*-sysv*)
3475         install_headers_dir=install-headers-cpio
3476         ;;
3477 esac
3478
3479 # Distinguish i[34567]86
3480 # Also, do not run mips-tfile on MIPS if using gas.
3481 # Process --with-cpu= for PowerPC/rs6000
3482 target_cpu_default2=
3483 case $machine in
3484 i486-*-*)
3485         target_cpu_default2=TARGET_CPU_DEFAULT_i486
3486         ;;
3487 i586-*-*)
3488         case $target_alias in
3489                 k6_2-*)
3490                         target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
3491                         ;;
3492                 k6_3-*)
3493                         target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
3494                         ;;
3495                 k6-*)
3496                         target_cpu_default2=TARGET_CPU_DEFAULT_k6
3497                         ;;
3498                 pentium_mmx-*)
3499                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
3500                         ;;
3501                 *)
3502                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium
3503                         ;;
3504         esac
3505         ;;
3506 i686-*-* | i786-*-*)
3507         case $target_alias in
3508                 athlon_xp-*|athlon_mp-*|athlon_4-*)
3509                         target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
3510                         ;;
3511                 athlon_tbird-*|athlon-*)
3512                         target_cpu_default2=TARGET_CPU_DEFAULT_athlon
3513                         ;;
3514                 pentium2-*)
3515                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
3516                         ;;
3517                 pentium3-*)
3518                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
3519                         ;;
3520                 pentium4-*)
3521                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
3522                         ;;
3523                 *)
3524                         target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
3525                         ;;
3526         esac
3527         ;;
3528 x86_64-*-*)
3529         # We should have hammer chip here, but it does not exist yet and
3530         # thus it is not supported.  Athlon_SSE is probably equivalent feature
3531         # wise to hammer from our point of view except for 64bit mode.
3532         target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
3533         ;;
3534 alpha*-*-*)
3535         case $machine in
3536                 alphaev6[78]*)
3537                         target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
3538                         ;;
3539                 alphaev6*)
3540                         target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
3541                         ;;
3542                 alphapca56*)
3543                         target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
3544                         ;;
3545                 alphaev56*)
3546                         target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
3547                         ;;
3548                 alphaev5*)
3549                         target_cpu_default2="MASK_CPU_EV5"
3550                         ;;
3551         esac
3552
3553         if test x$gas = xyes
3554         then
3555                 if test "$target_cpu_default2" = ""
3556                 then
3557                         target_cpu_default2="MASK_GAS"
3558                 else
3559                         target_cpu_default2="${target_cpu_default2}|MASK_GAS"
3560                 fi
3561         fi
3562         ;;
3563 arm*-*-*)
3564         case "x$with_cpu" in
3565                 x)
3566                         # The most generic
3567                         target_cpu_default2="TARGET_CPU_generic"
3568                         ;;
3569
3570                 # Distinguish cores, and major variants
3571                 # arm7m doesn't exist, but D & I don't affect code
3572                 xarm[236789] | xarm250 | xarm[67][01]0 \
3573                 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
3574                 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
3575                 | xxscale \
3576                 | xstrongarm | xstrongarm110 | xstrongarm1100)
3577                         target_cpu_default2="TARGET_CPU_$with_cpu"
3578                         ;;
3579
3580                 xyes | xno)
3581                         echo "--with-cpu must be passed a value" 1>&2
3582                         exit 1
3583                         ;;
3584
3585                 *)
3586                         if test x$pass2done = xyes
3587                         then
3588                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3589                                 exit 1
3590                         fi
3591                         ;;
3592         esac
3593         ;;
3594
3595 hppa*-*-* | parisc*-*-*)
3596         if test x$gas = xyes
3597         then
3598                 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
3599         fi
3600         ;;
3601
3602 mips*-*-ecoff* | mips*-*-elf*)
3603         if test x$gas = xyes
3604         then
3605                 if test x$gnu_ld = xyes
3606                 then
3607                         target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
3608                 else
3609                         target_cpu_default2="MASK_GAS"
3610                 fi
3611         fi
3612         ;;
3613 mips*-*-*)
3614         if test x$gas = xyes
3615         then
3616                 target_cpu_default2="MASK_GAS"
3617         fi
3618         ;;
3619 powerpc*-*-* | rs6000-*-*)
3620         if test x$enable_altivec = xyes
3621         then
3622                 tm_file="$tm_file rs6000/altivec-defs.h"
3623         fi
3624         case "x$with_cpu" in
3625                 x)
3626                         ;;
3627
3628                 xcommon | xpower | xpower2 | xpower3 | xpowerpc | xpowerpc64 \
3629                   | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \
3630                   | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \
3631                   | x740 | x750 | x7400 | x7450 | x505)
3632                         target_cpu_default2="\\\"$with_cpu\\\""
3633                         ;;
3634
3635                 x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860)
3636                         target_cpu_default2="\\\"$with_cpu\\\""
3637                         tm_file="$tm_file rs6000/softfloat.h"
3638                         ;;
3639
3640                 xyes | xno)
3641                         echo "--with-cpu must be passed a value" 1>&2
3642                         exit 1
3643                         ;;
3644
3645                 *)
3646                         if test x$pass2done = xyes
3647                         then
3648                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3649                                 exit 1
3650                         fi
3651                         ;;
3652         esac
3653         ;;
3654 sparc*-*-*)
3655         case ".$with_cpu" in
3656                 .)
3657                         target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3658                         ;;
3659                 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
3660                         target_cpu_default2="TARGET_CPU_$with_cpu"
3661                         ;;
3662                 *)
3663                         if test x$pass2done = xyes
3664                         then
3665                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3666                                 exit 1
3667                         fi
3668                         ;;
3669         esac
3670         ;;
3671 esac
3672
3673 if test "$target_cpu_default2" != ""
3674 then
3675         if test "$target_cpu_default" != ""
3676         then
3677                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3678         else
3679                 target_cpu_default=$target_cpu_default2
3680         fi
3681 fi
3682
3683 # Save data on machine being used to compile GCC in build_xm_file.
3684 # Save data on host machine in vars host_xm_file and host_xmake_file.
3685 if test x$pass1done = x
3686 then
3687         if test x$xm_file != x
3688         then build_xm_file=$xm_file
3689         fi
3690         build_xm_defines=$xm_defines
3691         build_install_headers_dir=$install_headers_dir
3692         build_exeext=$exeext
3693         pass1done=yes
3694 else
3695         if test x$pass2done = x
3696         then
3697                 if test x$xm_file != x
3698                 then host_xm_file=$xm_file
3699                 fi
3700                 host_xm_defines=$xm_defines
3701                 host_xmake_file="$xmake_file"
3702                 host_truncate_target=$truncate_target
3703                 host_extra_gcc_objs=$extra_gcc_objs
3704                 host_extra_objs=$extra_host_objs
3705                 host_exeext=$exeext
3706                 pass2done=yes
3707         fi
3708 fi