OSDN Git Service

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