Mark __func__ with line number 0, to avoid confusing debuggers.
[official-gcc.git] / gcc / config.gcc
blob14dbef9d5a7d1443c5c4c4364ede0d5850885a33
1 # GCC build-, host- and target-specific configuration file.
2 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 #This file is part of GCC.
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.
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.
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.
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.
29 # This file switches on the shell variable ${machine}, and also uses the
30 # following shell variables:
32 #  with_*               Various variables as set by configure.
34 #  enable_threads_flag  Either the name, yes or no depending on whether
35 #                       threads support was requested.
37 #  gas_flag             Either yes or no depending on whether GNU as was
38 #                       requested.
40 #  gnu_ld_flag          Either yes or no depending on whether GNU ld was
41 #                       requested.
43 # This file sets the following shell variables for use by the
44 # autoconf-generated configure script:
46 #  cpu_type             The name of the cpu, if different from machine.
48 #  tm_defines           List of target macros to define for all compilations.
50 #  tm_file              A list of target macro files, if different from
51 #                       "$cpu_type/$cpu_type.h". Usually it's constructed
52 #                       per target in a way like this:
53 #                       tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
54 #                       Note that the preferred order is:
55 #                       - specific target header "${cpu_type}/${cpu_type.h}"
56 #                       - generic headers like dbxelf.h elfos.h, netware.h, etc.
57 #                       - specializing target headers like ${cpu_type.h}/elf.h
58 #                       This helps to keep OS specific stuff out of the CPU
59 #                       defining header ${cpu_type}/${cpu_type.h}.
61 #  tm_p_file            Location of file with declarations for functions
62 #                       in $out_file.
64 #  out_file             The name of the machine description C support
65 #                       file, if different from "$cpu_type/$cpu_type.c".
67 #  md_file              The name of the machine-description file, if
68 #                       different from "$cpu_type/$cpu_type.md".
70 #  tmake_file           A list of machine-description-specific
71 #                       makefile-fragments, if different from
72 #                       "$cpu_type/t-$cpu_type".
74 #  extra_modes          The name of the file containing a list of extra
75 #                       machine modes, if necessary and different from
76 #                       "$cpu_type/$cpu_type-modes.def".
78 #  float_format         Set to the symbolic name for the floating-point
79 #                       formats used for this machine, if different from
80 #                       "i64".  Used to derive a header file name to
81 #                       include, like "vax" for "float-vax.h".  If no such
82 #                       file is wanted, set to "none".
84 #  extra_objs           List of extra objects that should be linked into
85 #                       the compiler proper (cc1, cc1obj, cc1plus)
86 #                       depending on target.
88 #  extra_headers        List of used header files from the directory
89 #                       config/${cpu_type}.
91 #  host_xmake_file      List of host-specific makefile-fragments.
93 #  extra_passes         List of extra executables compiled for this target
94 #                       machine, used for compiling from source to object.
96 #  extra_parts          List of extra object files that should be compiled
97 #                       for this target machine.
99 #  extra_programs       Like extra_passes, but these are used when linking.
101 #  host_extra_objs      List of extra host-dependent objects that should
102 #                       be linked into the compiler proper.
104 #  host_extra_gcc_objs  List of extra host-dependent objects that should
105 #                       be linked into the gcc driver.
107 #  c_target_objs        List of extra target-dependent objects that be
108 #                       linked into the C compiler only.
110 #  cxx_target_objs      List of extra target-dependent objects that be
111 #                       linked into the C++ compiler only.
113 #  target_gtfiles       List of extra source files with type information.
115 #  build_xm_defines     List of macros to define when compiling for the
116 #                       build machine.
118 #  build_xm_file        List of files to include when compiling for the
119 #                       build machine.
121 #  host_xm_defines      List of macros to define when compiling for the
122 #                       host machine.
124 #  host_xm_file         List of files to include when compiling for the
125 #                       host machine.
127 #  xm_defines           List of macros to define when compiling for the
128 #                       target machine.
130 #  xm_file              List of files to include when compiling for the
131 #                       target machine.
133 #  use_collect2         Set to yes or no, depending on whether collect2
134 #                       will be used.
136 #  target_cpu_default   Set to override the default target model.
138 #  build_install_headers_dir
139 #                       Target to use when installing header files.
141 #  host_truncate_target
142 #                       Non-empty if the target name should be truncated
143 #                       on this host, due to filename length issues.
145 #  gdb_needs_out_file_path
146 #                       Set to yes if gdb needs a dir command with
147 #                       `dirname $out_file`.
149 #  build_exeext         Set to the suffix, if the build machine requires
150 #                       executables to have a file name suffix.
152 #  host_exeext          Set to the suffix, if the host machine requires
153 #                       executables to have a file name suffix.
155 #  thread_file          Set to control which thread package to use.
157 #  gas                  Set to yes or no depending on whether the target
158 #                       system normally uses GNU as.
160 # The following variables are used in each case-construct to build up the
161 # outgoing variables:
163 #  xmake_file           Makefile-fragment when this system is as a host,
164 #                       for host_xmake_file.
166 #  extra_host_objs      List of extra objects that should be linked into
167 #                       the compiler proper when this system is a host,
168 #                       for host_extra_objs.
170 #  install_headers_dir  Makefile-target for how the header file directory
171 #                       is installed, when this system is a build system,
172 #                       for build_install_headers_dir.
174 #  truncate_target      Non-empty if the target name should be truncated
175 #                       when this system is a host, due to filename length
176 #                       issues.  For host_truncate_target.
178 #  exeext               The suffix for executables on this system.
180 #  gnu_ld               Set to yes or no depending on whether the target
181 #                       system normally uses GNU ld.
183 out_file=
184 xmake_file=
185 tmake_file=
186 extra_headers=
187 extra_passes=
188 extra_parts=
189 extra_programs=
190 extra_objs=
191 extra_host_objs=
192 extra_gcc_objs=
193 c_target_objs=
194 cxx_target_objs=
195 tm_defines=
196 xm_defines=
197 float_format=
198 # Set this to force installation and use of collect2.
199 use_collect2=
200 # Set this to override the default target model.
201 target_cpu_default=
202 # Set this to control how the header file directory is installed.
203 install_headers_dir=install-headers-tar
204 # Set this if directory names should be truncated to 14 characters.
205 truncate_target=
206 # Set this if gdb needs a dir command with `dirname $out_file`
207 gdb_needs_out_file_path=
208 # Set this if the build machine requires executables to have a
209 # file name suffix.
210 exeext=
211 # Set this to control which thread package will be used.
212 thread_file=
213 # Reinitialize these from the flag values every loop pass, since some
214 # configure entries modify them.
215 gas="$gas_flag"
216 gnu_ld="$gnu_ld_flag"
217 enable_threads=$enable_threads_flag
218 target_gtfiles=
220 # Obsolete configurations.
221 case $machine in
222    m88k-*-aout*     \
223  | m88k-*-openbsd*  \
224  | m88k-*-sysv4*    \
225  | mips-sni-sysv4   \
226  | mn10200-*-*      \
227  | ns32k-*-openbsd* \
228  | romp-*-openbsd*  \
229  | vax-*-vms* \
231     if test "x$enable_obsolete" != xyes; then
232       echo "*** Configuration $machine is obsolete." >&2
233       echo "*** Specify --enable-obsolete to build it anyway." >&2
234       echo "*** Support will be REMOVED in the next major release of GCC," >&2
235       echo "*** unless a maintainer comes forward." >&2
236       exit 1
237     fi;;
238 esac
240 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
241 # updated in each machine entry.  Also set default extra_headers for some
242 # machines.
243 tm_p_file=
244 cpu_type=`echo $machine | sed 's/-.*$//'`
245 case $machine in
246 alpha*-*-*)
247         cpu_type=alpha
248         ;;
249 strongarm*-*-*)
250         cpu_type=arm
251         ;;
252 arm*-*-*)
253         cpu_type=arm
254         ;;
255 xscale-*-*)
256         cpu_type=arm
257         ;;
258 i[34567]86-*-*)
259         cpu_type=i386
260         extra_headers="mmintrin.h xmmintrin.h"
261         ;;
262 x86_64-*-*)
263         cpu_type=i386
264         extra_headers="mmintrin.h xmmintrin.h"
265         ;;
266 ia64-*-*)
267         extra_headers=ia64intrin.h
268         ;;
269 hppa*-*-* | parisc*-*-*)
270         cpu_type=pa
271         ;;
272 m680[012]0-*-*)
273         cpu_type=m68k
274         extra_headers=math-68881.h
275         ;;
276 m68k-*-*)
277         extra_headers=math-68881.h
278         ;;
279 mips*-*-*)
280         cpu_type=mips
281         ;;
282 powerpc*-*-*)
283         cpu_type=rs6000
284         extra_headers="ppc-asm.h altivec.h spe.h"
285         ;;
286 sparc*-*-*)
287         cpu_type=sparc
288         ;;
289 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
290 sh[123456789l]*-*-*)
291         cpu_type=sh
292         ;;
293 esac
295 tm_file=${cpu_type}/${cpu_type}.h
296 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
297 then
298         tm_p_file=${cpu_type}/${cpu_type}-protos.h
300 extra_modes=
301 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
302 then
303         extra_modes=${cpu_type}/${cpu_type}-modes.def
306 case $machine in
307 x86_64-*-*)
308         tm_file="i386/biarch64.h ${tm_file}"
309         ;;
310 esac
312 # On a.out targets, we need to use collect2.
313 case $machine in
314 *-*-*aout*)
315         use_collect2=yes
316         ;;
317 esac
319 # Common parts for GNU/Linux, GNU/Hurd, OpenBSD, NetBSD, and FreeBSD systems.
320 case $machine in
321 *-*-linux*)
322         xm_defines=POSIX
323         case $machine in
324         *-*-linux*ecoff* | *-*-linux*libc1* | *-*-linux*oldld* | *-*-linux*aout*)
325                 ;;
326         *)
327                 case x${enable_threads} in
328                         x | xyes | xposix) thread_file='posix'
329                         ;;
330                 esac
331                 ;;
332         esac
333         ;;
334 *-*-gnu*)
335         # On the Hurd, the setup is just about the same on
336         # each different CPU.  The specific machines that we
337         # support are matched above and just set $cpu_type.
338         xm_defines=POSIX
339         tm_file="${cpu_type}/gnu.h"
340         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
341         # GNU always uses ELF.
342         elf=yes
343         # GNU tools are the only tools.
344         gnu_ld=yes
345         gas=yes
346         # These details are the same as for Linux.
347         # But here we need a little extra magic.
348         tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
349         case $machine in
350         alpha*)
351                 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
352                 ;;
353         i[34567]86-*-*)
354                 tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
355                 ;;
356         esac
357         ;;
358 *-*-openbsd*)
359         tm_file=${cpu_type}/openbsd.h
360         tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
361         xm_defines=POSIX
362         if test x$enable_threads = xyes; then
363                 thread_file='posix'
364                 tmake_file="${tmake_file} t-openbsd-thread"
365         fi
366         ;;
367 *-*-netbsd*)
368         tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd"
369         xm_defines=POSIX
370         gas=yes
371         gnu_ld=yes
372         ;;
373 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
374         # This is the place-holder for the generic a.out configuration
375         # of FreeBSD.  No actual configuration resides here since
376         # there was only ever a bare-bones ix86 configuration for
377         # a.out and it exists solely in the machine-specific section.
378         # This place-holder must exist to avoid dropping into
379         # the generic ELF configuration of FreeBSD (i.e. it must be
380         # ordered before that section).
381         ;;
382 *-*-freebsd*)
383         # This is the generic ELF configuration of FreeBSD.  Later
384         # machine-specific sections may refine and add to this
385         # configuration.
386         #
387         # Due to tm_file entry ordering issues that vary between cpu
388         # architectures, we only define fbsd_tm_file to allow the
389         # machine-specific section to dictate the final order of all
390         # entries of tm_file with the minor exception that components
391         # of the tm_file set here will always be of the form:
392         #
393         # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
394         #
395         # The machine-specific section should not tamper with this
396         # ordering but may order all other entries of tm_file as it
397         # pleases around the provided core setting.
398         gas=yes
399         gnu_ld=yes
400         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
401         case $machine in
402         *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
403         *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
404         *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
405         *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
406         *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
407         esac
408         tmake_file="t-slibgcc-elf-ver t-freebsd"
409         xmake_file=none
410         xm_defines=POSIX
411         case x${enable_threads} in
412         xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
413         x | xyes | xpthreads | xposix)
414                 thread_file='posix'
415                 tmake_file="${tmake_file} t-freebsd-thread"
416                 # Before 5.0, FreeBSD can't bind shared libraries to -lc
417                 # when "optionally" threaded via weak pthread_* checks.
418                 case $machine in
419                 *-*-freebsd[34] | *-*-freebsd[34].*)
420                         tmake_file="${tmake_file} t-slibgcc-nolc-override";;
421                 esac
422                 ;;
423         *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
424         esac
425         fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
426         ;;
427 esac
429 case $machine in
430 # Support site-specific machine types.
431 *local*)
432         rest=`echo $machine | sed -e "s/$cpu_type-//"`
433         tm_file=${cpu_type}/$rest.h
434         if test -f $srcdir/config/${cpu_type}/xm-$rest.h
435         then xm_file=${cpu_type}/xm-$rest.h
436         fi
437         if test -f $srcdir/config/${cpu_type}/x-$rest
438         then xmake_file=${cpu_type}/x-$rest
439         fi
440         if test -f $srcdir/config/${cpu_type}/t-$rest
441         then tmake_file=${cpu_type}/t-$rest
442         fi
443         ;;
444 alpha*-*-unicosmk*)
445         use_collect2=yes
446         tm_file="${tm_file} alpha/unicosmk.h"
448         # Don't include t-ieee for now because we don't support that yet
449         # tmake_file="alpha/t-ieee"
450         tmake_file="alpha/t-unicosmk"
451         ;;
452 alpha-*-interix)
453         tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
455         # GAS + IEEE_CONFORMANT+IEEE (no inexact);
456         #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
458         # GAS + IEEE_CONFORMANT
459         target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
461         xm_defines=POSIX
462         xm_file="alpha/xm-alpha-interix.h"
463         tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee"
464         if test x$enable_threads = xyes ; then
465                 thread_file='posix'
466         fi
467         if test x$stabs = xyes ; then
468                 tm_file="${tm_file} dbxcoff.h"
469         fi
470         #prefix='$$INTERIX_ROOT'/usr/contrib
471         #local_prefix='$$INTERIX_ROOT'/usr/contrib
472         ;;
473 alpha*-*-linux*ecoff*)
474         echo "Configuration $machine no longer supported" 1>&2
475         exit 1
476         ;;
477 alpha*-*-linux*libc1*)
478         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
479         target_cpu_default="MASK_GAS"
480         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtfm alpha/t-ieee"
481         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
482         gas=yes gnu_ld=yes
483         if test x$enable_threads = xyes; then
484                 thread_file='posix'
485         fi
486         ;;
487 alpha*-*-linux*)
488         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
489         target_cpu_default="MASK_GAS"
490         tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
491         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
492         gas=yes gnu_ld=yes
493         ;;
494 alpha*-*-gnu*)
495         target_cpu_default="MASK_GAS"
496         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
497         ;;
498 alpha*-*-freebsd*)
499         tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
500         target_cpu_default="MASK_GAS"
501         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
502         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
503         ;;
504 alpha*-*-netbsd*)
505         tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
506         target_cpu_default="MASK_GAS"
507         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
508         ;;
510 alpha*-*-openbsd*)
511         tm_file="${cpu_type}/${cpu_type}.h ${tm_file}"
512         # default x-alpha is only appropriate for dec-osf.
513         target_cpu_default="MASK_GAS"
514         tmake_file="alpha/t-alpha alpha/t-ieee"
515         ;;
517 alpha*-dec-osf[45]*)
518         xm_defines=POSIX
519         if test x$stabs = xyes
520         then
521                 tm_file="${tm_file} dbx.h"
522         fi
523         if test x$gas != xyes
524         then
525                 extra_passes="mips-tfile mips-tdump"
526         fi
527         use_collect2=yes
528         tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
529         tm_file="${tm_file} alpha/osf.h"
530         extra_headers=va_list.h
531         case $machine in
532           *-*-osf4*)
533             # Some versions of OSF4 (specifically X4.0-9 296.7) have
534             # a broken tar, so we use cpio instead.
535             install_headers_dir=install-headers-cpio
536             # Set target_cpu_default except on 4.0a.
537             case $machine in
538                 *-*-osf4.0a) ;;
539                 *) target_cpu_default=MASK_SUPPORT_ARCH
540             esac
541             ;;
542           *-*-osf5*)
543             tm_file="${tm_file} alpha/osf5.h"
544             target_cpu_default=MASK_SUPPORT_ARCH
545             float_format=i128
546             ;;
547         esac
548         ;;
549 alpha*-*-vxworks*)
550         xm_defines=POSIX
551         tm_file="${tm_file} dbx.h alpha/vxworks.h"
552         tmake_file="alpha/t-alpha alpha/t-ieee"
553         if [ x$gas != xyes ]
554         then
555                 extra_passes="mips-tfile mips-tdump"
556         fi
557         use_collect2=yes
558         thread_file='vxworks'
559         ;;
560 alpha64-dec-*vms*)
561         xm_defines=POSIX
562         tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
563         xm_file="alpha/xm-vms.h alpha/xm-vms64.h"
564         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
565         xmake_file=alpha/x-vms
566         exeext=.exe
567         # This removes the cpu type and manufacturer components and
568         #  replaces "." with "_" in the operating system version.
569         case $host in *-*-*vms*)
570                 target_alias=`echo $host \
571                   | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
572                 ;;
573         esac
574         install_headers_dir=install-headers-cp
575         prefix=/gnu
576         local_prefix=/gnu
577         ;;
578 alpha*-dec-*vms*)
579         xm_defines=POSIX
580         tm_file="${tm_file} alpha/vms.h"
581         xm_file=alpha/xm-vms.h
582         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
583         xmake_file=alpha/x-vms
584         exeext=.exe
585         # This removes the cpu type and manufacturer components and
586         #  replaces "." with "_" in the operating system version.
587         case $host in *-*-*vms*)
588                 target_alias=`echo $host \
589                   | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
590                 ;;
591         esac
592         install_headers_dir=install-headers-cp
593         prefix=/gnu
594         local_prefix=/gnu
595         ;;
596 arc-*-elf*)
597         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
598         extra_parts="crtinit.o crtfini.o"
599         ;;
600 arm-*-coff* | armel-*-coff*)
601         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
602         tmake_file=arm/t-arm-coff
603         ;;
604 arm-*-vxworks*)
605         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/vxarm.h arm/arm.h"
606         tmake_file=arm/t-arm-coff
607         thread_file='vxworks'
608         ;;
609 arm-semi-aout | armel-semi-aout)
610         tm_file="arm/semi.h arm/aout.h arm/arm.h"
611         tmake_file=arm/t-semi
612         ;;
613 arm-semi-aof | armel-semi-aof)
614         tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
615         tmake_file=arm/t-semi
616         ;;
617 arm*-*-freebsd*|strongarm*-*-freebsd*)
618         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
619         tmake_file="${tmake_file} arm/t-strongarm-elf"
620         ;;
621 arm*-*-netbsdelf*)
622         echo "GCC does not yet support the ${machine} target"; exit 1
623         ;;
624 arm*-*-netbsd*)
625         tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
626         tmake_file="t-netbsd arm/t-netbsd"
627         use_collect2=yes
628         ;;
629 arm*-*-linux*)                  # ARM GNU/Linux with ELF
630         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"
631         tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
632         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
633         gnu_ld=yes
634         case x${enable_threads} in
635         x | xyes | xpthreads | xposix)
636                 thread_file='posix'
637                 ;;
638         esac
639         ;;
640 arm*-*-uclinux*)                # ARM ucLinux
641         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"
642         tmake_file=arm/t-arm-elf
643         ;;
644 arm*-*-aout)
645         tm_file="arm/aout.h arm/arm.h"
646         tmake_file=arm/t-arm-aout
647         ;;
648 arm*-*-ecos-elf)
649         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
650         tmake_file=arm/t-arm-elf
651         ;;
652 arm*-*-rtems*)
653         xm_defines=POSIX
654         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"
655         tmake_file="arm/t-arm-elf t-rtems"
656         if test x$enable_threads = xyes; then
657           thread_file='rtems'
658         fi
659         ;;
660 arm*-*-elf)
661         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
662         tmake_file=arm/t-arm-elf
663         ;;
664 arm*-*-conix*)
665         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h arm/aout.h arm/arm.h"
666         tmake_file=arm/t-arm-elf
667         ;;
668 arm*-*-oabi)
669         tm_file="arm/unknown-elf-oabi.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
670         tmake_file=arm/t-arm-elf
671         ;;
672 arm-*-pe*)
673         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
674         tmake_file=arm/t-pe
675         extra_objs="pe.o"
676         ;;
677 avr-*-*)
678         ;;
679 c4x-*-rtems*)
680         xm_defines=POSIX
681         tmake_file="c4x/t-c4x t-rtems"
682         tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
683         if test x$enable_threads = xyes; then
684           thread_file='rtems'
685         fi
686         c_target_objs="c4x-c.o"
687         cxx_target_objs="c4x-c.o"
688         ;;
689 c4x-*)
690         float_format=c4x
691         tmake_file=c4x/t-c4x
692         c_target_objs="c4x-c.o"
693         cxx_target_objs="c4x-c.o"
694         ;;
695 cris-*-aout)
696         tm_file="dbxelf.h ${tm_file} cris/aout.h"
697         gas=yes
698         tmake_file="cris/t-cris cris/t-aout"
699         ;;
700 cris-*-elf | cris-*-none)
701         tm_file="dbxelf.h elfos.h ${tm_file}"
702         tmake_file="cris/t-cris cris/t-elfmulti"
703         gas=yes
704         ;;
705 cris-*-linux*)
706         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
707         tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
708         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
709         case x${enable_threads} in
710         x | xyes | xpthreads | xposix)
711                 thread_file=posix
712                 ;;
713         esac
714         gas=yes
715         ;;
716 d30v-*)
717         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
718         float_format=i64
719         ;;
720 dsp16xx-*)
721         ;;
722 fr30-*-elf)
723         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
724         tmake_file=fr30/t-fr30
725         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
726         ;;
727 frv-*-elf)
728         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
729         tmake_file=frv/t-frv
730         ;;
731 h8300-*-rtems*)
732         xm_defines=POSIX
733         tmake_file="h8300/t-h8300 t-rtems"
734         tm_file="h8300/h8300.h h8300/rtems.h rtems.h"
735         if test x$enable_threads = xyes; then
736           thread_file='rtems'
737         fi
738         float_format=i32
739         ;;
740 h8300-*-elf*)
741         tmake_file="h8300/t-h8300 h8300/t-elf"
742         tm_file="h8300/h8300.h h8300/elf.h"
743         float_format=i32
744         ;;
745 h8300-*-*)
746         float_format=i32
747         ;;
748 hppa*64*-*-linux* | parisc*64*-*-linux*)
749         target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
750         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
751                  pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
752         tmake_file=pa/t-linux64
753         gas=yes gnu_ld=yes
754         ;;
755 hppa*-*-linux* | parisc*-*-linux*)
756         target_cpu_default="MASK_PA_11"
757         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
758                  pa/pa32-regs.h pa/pa32-linux.h"
759         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
760         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
761         gas=yes gnu_ld=yes
762         ;;
763 hppa*-*-openbsd*)
764         target_cpu_default="MASK_PA_11"
765         tmake_file=pa/t-bsd
766         ;;
767 hppa1.1-*-pro*)
768         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
769         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
770         tmake_file="pa/t-bsd pa/t-pro"
771         xmake_file="pa/x-ada"
772         ;;
773 hppa1.1-*-osf*)
774         target_cpu_default="MASK_PA_11"
775         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
776         tmake_file="pa/t-bsd pa/t-pa"
777         xmake_file="pa/x-ada"
778         use_collect2=yes
779         ;;
780 hppa1.1-*-rtems*)
781         xm_defines=POSIX
782         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
783         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
784         tmake_file="pa/t-bsd pa/t-pro"
785         xmake_file="pa/x-ada"
786         ;;
787 hppa1.0-*-osf*)
788         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
789         tmake_file="pa/t-bsd pa/t-pa"
790         xmake_file="pa/x-ada"
791         use_collect2=yes
792         ;;
793 hppa1.1-*-bsd*)
794         tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
795         target_cpu_default="MASK_PA_11"
796         tmake_file="pa/t-bsd pa/t-pa"
797         xmake_file="pa/x-ada"
798         use_collect2=yes
799         ;;
800 hppa1.0-*-bsd*)
801         tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
802         tmake_file="pa/t-bsd pa/t-pa"
803         xmake_file="pa/x-ada"
804         use_collect2=yes
805         ;;
806 hppa1.0-*-hpux7*)
807         tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
808         xm_defines=POSIX
809         tmake_file=pa/t-pa-hpux
810         install_headers_dir=install-headers-cpio
811         use_collect2=yes
812         ;;
813 hppa1.0-*-hpux8.0[0-2]*)
814         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
815         xm_defines=POSIX
816         tmake_file=pa/t-pa-hpux
817         if test x$gas != xyes
818         then
819                 tm_file="pa/pa-oldas.h ${tm_file}"
820         fi
821         install_headers_dir=install-headers-cpio
822         use_collect2=yes
823         ;;
824 hppa1.1-*-hpux8.0[0-2]*)
825         target_cpu_default="MASK_PA_11"
826         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
827         xm_defines=POSIX
828         tmake_file=pa/t-pa-hpux
829         if test x$gas != xyes
830         then
831                 tm_file="pa/pa-oldas.h ${tm_file}"
832         fi
833         install_headers_dir=install-headers-cpio
834         use_collect2=yes
835         ;;
836 hppa1.1-*-hpux8*)
837         target_cpu_default="MASK_PA_11"
838         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
839         xm_defines=POSIX
840         tmake_file=pa/t-pa-hpux
841         install_headers_dir=install-headers-cpio
842         use_collect2=yes
843         ;;
844 hppa1.0-*-hpux8*)
845         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
846         xm_defines=POSIX
847         tmake_file=pa/t-pa-hpux
848         install_headers_dir=install-headers-cpio
849         use_collect2=yes
850         ;;
851 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
852         target_cpu_default="MASK_PA_11"
853         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
854         float_format=i128
855         xm_defines=POSIX
856         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
857         xmake_file="pa/x-ada"
858         if test x$enable_threads = x; then
859             enable_threads=$have_pthread_h
860         fi
861         case x${enable_threads} in
862         xyes | xdce)
863                 tmake_file="${tmake_file} pa/t-dce-thr"
864                 ;;
865         esac
866         install_headers_dir=install-headers-cpio
867         use_collect2=yes
868         ;;
869 hppa1.0-*-hpux10*)
870         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
871         float_format=i128
872         xm_defines=POSIX
873         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
874         xmake_file="pa/x-ada"
875         if test x$enable_threads = x; then
876             enable_threads=$have_pthread_h
877         fi
878         case x${enable_threads} in
879         xyes | xdce)
880                 tmake_file="${tmake_file} pa/t-dce-thr"
881                 ;;
882         esac
883         install_headers_dir=install-headers-cpio
884         use_collect2=yes
885         ;;
886 hppa*64*-*-hpux11*)
887         xm_defines=POSIX
888         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"
889         float_format=i128
890         tmake_file="pa/t-pa64 pa/t-pa-hpux"
891         xmake_file="pa/x-ada"
892         target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
894 #       if [ x$enable_threads = x ]; then
895 #           enable_threads=$have_pthread_h
896 #       fi
897 #       if [ x$enable_threads = xyes ]; then
898 #               thread_file='dce'
899 #               tmake_file="${tmake_file} pa/t-dce-thr"
900 #       fi
901         install_headers_dir=install-headers-cpio
902         use_collect2=yes
903         ;;
904 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
905         target_cpu_default="MASK_PA_11"
906         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
907         float_format=i128
908         xm_defines=POSIX
909         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
910         xmake_file="pa/x-ada"
911 #       if test x$enable_threads = x; then
912 #           enable_threads=$have_pthread_h
913 #       fi
914 #       if test x$enable_threads = xyes; then
915 #               thread_file='dce'
916 #               tmake_file="${tmake_file} pa/t-dce-thr"
917 #       fi
918         install_headers_dir=install-headers-cpio
919         use_collect2=yes
920         ;;
921 hppa1.0-*-hpux11*)
922         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
923         float_format=i128
924         xm_defines=POSIX
925         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
926         xmake_file="pa/x-ada"
927 #       if test x$enable_threads = x; then
928 #           enable_threads=$have_pthread_h
929 #       fi
930 #       if test x$enable_threads = xyes; then
931 #               thread_file='dce'
932 #               tmake_file="${tmake_file} pa/t-dce-thr"
933 #       fi
934         install_headers_dir=install-headers-cpio
935         use_collect2=yes
936         ;;
937 hppa1.1-*-hpux* | hppa2*-*-hpux*)
938         target_cpu_default="MASK_PA_11"
939         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
940         xm_defines=POSIX
941         tmake_file=pa/t-pa-hpux
942         install_headers_dir=install-headers-cpio
943         use_collect2=yes
944         ;;
945 hppa1.0-*-hpux*)
946         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
947         xm_defines=POSIX
948         tmake_file=pa/t-pa-hpux
949         install_headers_dir=install-headers-cpio
950         use_collect2=yes
951         ;;
952 hppa1.1-*-hiux* | hppa2*-*-hiux*)
953         target_cpu_default="MASK_PA_11"
954         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
955         xm_defines=POSIX
956         tmake_file=pa/t-pa-hpux
957         install_headers_dir=install-headers-cpio
958         use_collect2=yes
959         ;;
960 hppa1.0-*-hiux*)
961         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
962         xm_defines=POSIX
963         tmake_file=pa/t-pa-hpux
964         install_headers_dir=install-headers-cpio
965         use_collect2=yes
966         ;;
967 hppa*-*-lites*)
968         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h"
969         target_cpu_default="MASK_PA_11"
970         tmake_file="pa/t-bsd pa/t-pa"
971         xmake_file="pa/x-ada"
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         ;;
1006 i[34567]86-*-darwin*)
1007         tm_file="${tm_file} darwin.h i386/darwin.h"
1008         tm_p_file="${tm_p_file} darwin-protos.h"
1009         tmake_file=i386/t-darwin
1010         extra_objs="darwin.o"
1011         target_gtfiles="\$(srcdir)/config/darwin.c"
1012         c_target_objs="darwin-c.o"
1013         cxx_target_objs="darwin-c.o"
1014         # Darwin linker does collect2 functionality
1015         use_collect2=no
1016         float_format=i386
1017         ;;
1018 i[34567]86-*-elf*)
1019         xm_defines=POSIX
1020         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
1021         tmake_file="i386/t-i386elf t-svr4"
1022         ;;
1023 i[34567]86-ncr-sysv4*)          # NCR 3000 - ix86 running system V.4
1024         xm_defines="POSIX SMALL_ARG_MAX"
1025         if test x$stabs = xyes -a x$gas = xyes
1026         then
1027                 tm_file=i386/sysv4gdb.h
1028         else
1029                 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1030         fi
1031         extra_parts="crtbegin.o crtend.o"
1032         tmake_file=i386/t-crtpic
1033         ;;
1034 i[34567]86-*-netware)           # Intel 80386's running netware
1035         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
1036         tmake_file=i386/t-netware
1037         ;;
1038 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1039         if test x$gas = xyes
1040         then
1041                 tm_file="${tm_file} usegas.h"
1042         fi
1043         xm_defines="POSIX SMALL_ARG_MAX"
1044         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
1045         tmake_file=t-svr4
1046         extra_parts="crtbegin.o crtend.o"
1047         install_headers_dir=install-headers-cpio
1048         ;;
1049 i[34567]86-sequent-sysv*)       # would otherwise be caught by i?86-*-sysv*
1050         echo "*** Configuration $machine not supported" 1>&2
1051         exit 1
1052         ;;
1053 i[34567]86-wrs-vxworks*)
1054         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/vxi386.h"
1055         thread_file='vxworks'
1056         ;;
1057 i[34567]86-*-aout*)
1058         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
1059         ;;
1060 i[34567]86-*-beoself* | i[34567]86-*-beos*)
1061         xm_defines=POSIX
1062         tmake_file='i386/t-beos i386/t-crtpic'
1063         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
1064         extra_parts='crtbegin.o crtend.o'
1065         ;;
1066 i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
1067         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
1068         tmake_file=t-freebsd
1069         ;;
1070 i[34567]86-*-freebsd*)
1071         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
1072         ;;
1073 x86_64-*-freebsd*)
1074         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/x86-64.h i386/freebsd.h i386/freebsd64.h"
1075         ;;
1076 i[34567]86-*-netbsdelf*)
1077         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
1078         float_format=i386
1079         ;;
1080 i[34567]86-*-netbsd*)
1081         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
1082         tmake_file=t-netbsd
1083         use_collect2=yes
1084         ;;
1085 x86_64-*-netbsd*)
1086         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h"
1087         float_format=i386
1088         ;;
1089 i[34567]86-*-openbsd*)
1090         tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h ${tm_file}"
1091         # needed to unconfuse gdb
1092         tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
1093         # we need collect2 until our bug is fixed...
1094         use_collect2=yes
1095         ;;
1096 i[34567]86-*-coff*)
1097         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
1098         ;;
1099 i[34567]86-*-linux*oldld*)      # would otherwise be caught by i?86-*-linux*
1100         echo "*** Configuration $machine not supported" 1>&2
1101         exit 1
1102         ;;
1103 i[34567]86-*-linux*aout*)       # Intel 80386's running GNU/Linux
1104                                 # with a.out format
1105         tmake_file="t-linux-aout i386/t-crtstuff"
1106         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
1107         gnu_ld=yes
1108         float_format=i386
1109         ;;
1110 i[34567]86-*-linux*libc1)       # Intel 80386's running GNU/Linux
1111                                 # with ELF format using the
1112                                 # GNU/Linux C library 5
1113         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1114         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
1115         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1116         gnu_ld=yes
1117         float_format=i386
1118         if test x$enable_threads = xyes; then
1119                 thread_file='single'
1120         fi
1121         ;;
1122 i[34567]86-*-linux*)    # Intel 80386's running GNU/Linux
1123                         # with ELF format using glibc 2
1124                         # aka GNU/Linux C library 6
1125         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1126         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1127         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1128         gnu_ld=yes
1129         float_format=i386
1130         ;;
1131 x86_64-*-linux*)
1132         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
1133                  i386/x86-64.h i386/linux64.h"
1134         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff i386/t-linux64"
1135         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1136         gnu_ld=yes
1137         float_format=i386
1138         ;;
1139 i[34567]86-*-gnu*)
1140         float_format=i386
1141         ;;
1142 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1143         echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1144         exit 1
1145         ;;
1146 i[34567]86-pc-msdosdjgpp*)
1147         xm_file=i386/xm-djgpp.h
1148         tm_file="dbxcoff.h ${tm_file} i386/djgpp.h"
1149         tmake_file=i386/t-djgpp
1150         gnu_ld=yes
1151         gas=yes
1152         exeext=.exe
1153         float_format=none
1154         case $host in *pc-msdosdjgpp*)
1155                 target_alias=djgpp
1156                 ;;
1157         esac
1158         ;;
1159 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1160         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
1161         tmake_file=t-libc-ok
1162         gnu_ld=yes
1163         gas=yes
1164         ;;
1165 i[34567]86-*-lynxos*)
1166         if test x$gas = xyes
1167         then
1168                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h"
1169         else
1170                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
1171         fi
1172         ;;
1173 i[34567]86-*-mach*)
1174         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
1175 #       tmake_file=t-libc-ok
1176         use_collect2=yes
1177         ;;
1178 i[34567]86-go32-rtems* | i[34567]86-*-rtemscoff*)
1179         # would otherwise be caught by i?86-*-rtems*
1180         echo "*** Configuration $machine not supported" 1>&2
1181         exit 1
1182         ;;
1183 i[34567]86-*-rtems*)
1184         xm_defines=POSIX
1185         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
1186         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1187         tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1188         if test x$enable_threads = xyes; then
1189           thread_file='rtems'
1190         fi
1191         ;;
1192 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1193         xm_defines=POSIX
1194         install_headers_dir=install-headers-cpio
1195         tm_file="${tm_file} i386/unix.h i386/att.h i386/sco5.h"
1196         if test x$gas = xyes
1197         then
1198                 tm_file="usegas.h ${tm_file}"
1199                 tmake_file=i386/t-sco5gas
1200         else
1201                 tmake_file=i386/t-sco5
1202         fi
1203         extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1204         ;;
1205 i[34567]86-*-solaris2*)
1206         xm_defines="POSIX SMALL_ARG_MAX"
1207         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
1208         tmake_file="i386/t-sol2 t-svr4"
1209         if test x$gnu_ld = xyes; then
1210                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1211         else
1212                 tmake_file="$tmake_file t-slibgcc-sld"
1213         fi
1214         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1215         if test x${enable_threads} = x; then
1216             enable_threads=$have_pthread_h
1217             if test x${enable_threads} = x; then
1218                 enable_threads=$have_thread_h
1219             fi
1220         fi
1221         if test x${enable_threads} = xyes; then
1222             if test x${have_pthread_h} = xyes; then
1223                 thread_file='posix'
1224             else
1225                 thread_file='solaris'
1226             fi
1227         fi
1228         ;;
1229 i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
1230        xm_defines=POSIX
1231        tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1232        if test x$stabs = xyes
1233        then
1234                tm_file="${tm_file} dbx.h"
1235        fi
1236        tmake_file="i386/t-crtpic t-svr4"
1237        extra_parts="crtbegin.o crtend.o"
1238        if test x$enable_threads = xyes; then
1239                thread_file='posix'
1240        fi
1241        ;;
1242 i[34567]86-*-sysv4*)            # Intel 80386's running system V.4
1243         xm_defines="POSIX SMALL_ARG_MAX"
1244         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1245         if test x$stabs = xyes
1246         then
1247                 tm_file="${tm_file} dbx.h"
1248         fi
1249         tmake_file="i386/t-crtpic t-svr4"
1250         extra_parts="crtbegin.o crtend.o"
1251         ;;
1252 i[34567]86-*-udk*)      # Intel x86 on SCO UW/OSR5 Dev Kit
1253         xm_defines=POSIX
1254         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
1255         tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1256         extra_parts="crtbegin.o crtend.o"
1257         install_headers_dir=install-headers-cpio
1258         ;;
1259 i[34567]86-*-sysv*)             # Intel 80386's running system V
1260         xm_defines=POSIX
1261         if test x$gas = xyes
1262         then
1263                 if test x$stabs = xyes
1264                 then
1265                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
1266                         tmake_file=i386/t-svr3dbx
1267                         extra_parts="svr3.ifile svr3z.ifile"
1268                 else
1269                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
1270                         extra_parts="crtbegin.o crtend.o"
1271                         tmake_file=i386/t-crtstuff
1272                 fi
1273         else
1274                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
1275                 extra_parts="crtbegin.o crtend.o"
1276                 tmake_file=i386/t-crtstuff
1277         fi
1278         tmake_file="$tmake_file i386/t-crtpic"
1279         ;;
1280 i386-*-vsta)                    # Intel 80386's running VSTa kernel
1281         xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h"
1282         tm_file="${tm_file} i386/vsta.h"
1283         ;;
1284 i[34567]86-*-win32)
1285         xm_defines=POSIX
1286         xm_file=i386/xm-cygwin.h
1287         float_format=i386
1288         tmake_file=i386/t-cygwin
1289         tm_file="${tm_file} i386/win32.h"
1290         extra_objs=winnt.o
1291         if test x$enable_threads = xyes; then
1292                 thread_file='win32'
1293         fi
1294         exeext=.exe
1295         ;;
1296 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1297         xm_defines=POSIX
1298         xm_file=i386/xm-cygwin.h
1299         float_format=i386
1300         tmake_file=i386/t-cygwin
1301         tm_file=i386/cygwin.h
1302         extra_objs=winnt.o
1303         if test x$enable_threads = xyes; then
1304                 thread_file='win32'
1305         fi
1306         exeext=.exe
1307         ;;
1308 i[34567]86-*-mingw32*)
1309         tm_file=i386/mingw32.h
1310         float_format=i386
1311         xm_defines=POSIX
1312         xm_file=i386/xm-mingw32.h
1313         tmake_file="i386/t-cygwin i386/t-mingw32"
1314         extra_objs=winnt.o
1315         if test x$enable_threads = xyes; then
1316                 thread_file='win32'
1317         fi
1318         exeext=.exe
1319         case $machine in
1320                 *mingw32crt*)
1321                         tm_file="${tm_file} i386/crtdll.h"
1322                         ;;
1323                 *minwg32msv* | *mingw32*)
1324                         ;;
1325         esac
1326         ;;
1327 i[34567]86-*-uwin*)
1328         tm_file="i386/cygwin.h i386/uwin.h"
1329         tmake_file="i386/t-cygwin i386/t-uwin"
1330         extra_objs=winnt.o
1331         if test x$enable_threads = xyes; then
1332                 thread_file='win32'
1333         fi
1334         exeext=.exe
1335         ;;
1336 i[34567]86-*-interix3*)
1337         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h i386/i386-interix3.h interix.h interix3.h"
1338         xm_file="i386/xm-i386-interix.h"
1339         xm_defines=POSIX
1340         tmake_file="t-interix i386/t-interix"
1341         extra_objs=winnt.o
1342         xmake_file="x-interix"
1343         if test x$enable_threads = xyes ; then
1344                 thread_file='posix'
1345         fi
1346         if test x$stabs = xyes ; then
1347                 tm_file="${tm_file} dbxcoff.h"
1348         fi
1349         ;;
1350 i[34567]86-*-interix*)
1351         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
1352         xm_file="i386/xm-i386-interix.h"
1353         xm_defines=POSIX
1354         tmake_file="t-interix i386/t-interix"
1355         extra_objs=winnt.o
1356         if test x$enable_threads = xyes ; then
1357                 thread_file='posix'
1358         fi
1359         if test x$stabs = xyes ; then
1360                 tm_file="${tm_file} dbxcoff.h"
1361         fi
1362         ;;
1363 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1364         tm_file="${tm_file} i960/vx960.h"
1365         tmake_file=i960/t-vxworks960
1366         use_collect2=yes
1367         thread_file='vxworks'
1368         c_target_objs="i960-c.o"
1369         cxx_target_objs="i960-c.o"
1370         ;;
1371 i960-wrs-vxworks5* | i960-wrs-vxworks)
1372         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1373         tmake_file=i960/t-vxworks960
1374         use_collect2=yes
1375         thread_file='vxworks'
1376         c_target_objs="i960-c.o"
1377         cxx_target_objs="i960-c.o"
1378         ;;
1379 i960-wrs-vxworks*)
1380         tm_file="${tm_file} i960/vx960.h"
1381         tmake_file=i960/t-vxworks960
1382         use_collect2=yes
1383         thread_file='vxworks'
1384         c_target_objs="i960-c.o"
1385         cxx_target_objs="i960-c.o"
1386         ;;
1387 i960-*-coff*)
1388         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1389         tmake_file=i960/t-960bare
1390         c_target_objs="i960-c.o"
1391         cxx_target_objs="i960-c.o"
1392         ;;
1393 i960-*-rtems)
1394         xm_defines=POSIX
1395         tmake_file="i960/t-960bare t-rtems"
1396         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
1397         if test x$enable_threads = xyes; then
1398           thread_file='rtems'
1399         fi
1400         c_target_objs="i960-c.o"
1401         cxx_target_objs="i960-c.o"
1402         ;;
1403 i960-*-*)                       # Default i960 environment.
1404         use_collect2=yes
1405         tmake_file=i960/t-960bare
1406         c_target_objs="i960-c.o"
1407         cxx_target_objs="i960-c.o"
1408         ;;
1409 ia64*-*-aix*)
1410         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
1411         tmake_file="ia64/t-ia64 ia64/t-aix"
1412         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1413         ;;
1414 ia64*-*-elf*)
1415         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1416         tmake_file="ia64/t-ia64"
1417         target_cpu_default="0"
1418         if test x$gas = xyes
1419         then
1420                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1421         fi
1422         if test x$gnu_ld = xyes
1423         then
1424                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1425         fi
1426         float_format=i386
1427         ;;
1428 ia64*-*-freebsd*)
1429         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1430         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1431         tmake_file="${tmake_file} ia64/t-ia64"
1432         float_format=i386
1433         ;;
1434 ia64*-*-linux*)
1435         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1436         tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1437         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1438         float_format=i386
1439         ;;
1440 ia64*-*-hpux*)
1441         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1442         tmake_file="ia64/t-ia64 ia64/t-hpux"
1443         target_cpu_default="MASK_GNU_AS"
1444         if test x$enable_threads = xyes; then
1445                 thread_file='posix'
1446         fi
1447         use_collect2=no
1448         float_format=i128
1449         ;;
1450 ip2k-*-elf)
1451         ;;
1452 m32r-*-elf*)
1453         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1454         extra_parts="crtinit.o crtfini.o"
1455         ;;
1456 # m68hc11 and m68hc12 share the same machine description.
1457 m68hc11-*-*|m6811-*-*)
1458         tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1459         tm_p_file="m68hc11/m68hc11-protos.h"
1460         md_file="m68hc11/m68hc11.md"
1461         out_file="m68hc11/m68hc11.c"
1462         tmake_file="m68hc11/t-m68hc11-gas"
1463         ;;
1464 m68hc12-*-*|m6812-*-*)
1465         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1466         tm_p_file="m68hc11/m68hc11-protos.h"
1467         md_file="m68hc11/m68hc11.md"
1468         out_file="m68hc11/m68hc11.c"
1469         tmake_file="m68hc11/t-m68hc11-gas"
1470         ;;
1471 m68000-hp-bsd*)                 # HP 9000/200 running BSD
1472         tm_file=m68k/hp2bsd.h
1473         use_collect2=yes
1474         ;;
1475 m68000-hp-hpux*)                # HP 9000 series 300
1476         xm_defines=POSIX
1477         if test x$gas = xyes
1478         then
1479                 tm_file=m68k/hp310g.h
1480         else
1481                 tm_file=m68k/hp310.h
1482         fi
1483         tmake_file=m68k/t-hp320
1484         install_headers_dir=install-headers-cpio
1485         use_collect2=yes
1486         ;;
1487 m68000-sun-sunos3*)
1488         tm_file=m68k/sun2.h
1489         use_collect2=yes
1490         ;;
1491 m68000-sun-sunos4*)
1492         tm_file=m68k/sun2o4.h
1493         use_collect2=yes
1494         ;;
1495 m68000-att-sysv*)
1496         xm_defines=POSIX
1497         if test x$gas = xyes
1498         then
1499                 tm_file=m68k/3b1g.h
1500         else
1501                 tm_file=m68k/3b1.h
1502         fi
1503         use_collect2=yes
1504         ;;
1505 m68k-atari-sysv4*)              # Atari variant of V.4.
1506         tm_file=m68k/atari.h
1507         xm_defines=POSIX
1508         tmake_file=t-svr4
1509         extra_parts="crtbegin.o crtend.o"
1510         float_format=m68k
1511         ;;
1512 m68k-apollo-sysv* | m68k-bull-sysv*)
1513         # can otherwise be caught by m68k-*-sysv4*
1514         echo "*** Configuration $machine not supported" 1>&2
1515         exit 1
1516         ;;
1517 m68k-motorola-sysv*)
1518         tm_file=m68k/mot3300.h
1519         xm_defines=POSIX
1520         if test x$gas = xyes
1521         then
1522                 if test x$gnu_ld = xyes
1523                 then
1524                         tmake_file=m68k/t-mot3300-gald
1525                 else
1526                         tmake_file=m68k/t-mot3300-gas
1527                         use_collect2=yes
1528                 fi
1529         else
1530                 if test x$gnu_ld = xyes
1531                 then
1532                         tmake_file=m68k/t-mot3300-gld
1533                 else
1534                         tmake_file=m68k/t-mot3300
1535                         use_collect2=yes
1536                 fi
1537         fi
1538         gdb_needs_out_file_path=yes
1539         extra_parts="crt0.o mcrt0.o"
1540         float_format=m68k
1541         ;;
1542 m68k-ncr-sysv*)                 # NCR Tower 32 SVR3
1543         tm_file=m68k/tower-as.h
1544         xm_defines=POSIX
1545         extra_parts="crtbegin.o crtend.o"
1546         ;;
1547 m68k-plexus-sysv*)
1548         tm_file=m68k/plexus.h
1549         xm_defines=POSIX
1550         use_collect2=yes
1551         ;;
1552 m68k-tti-*)
1553         tm_file=m68k/pbb.h
1554         xm_defines=POSIX
1555         ;;
1556 m68k-crds-unos*)
1557         xm_defines=POSIX
1558         tm_file=m68k/crds.h
1559         use_collect2=yes
1560         ;;
1561 m68k-cbm-sysv4*)                # Commodore variant of V.4.
1562         tm_file=m68k/amix.h
1563         xm_defines=POSIX
1564         tmake_file=t-svr4
1565         extra_parts="crtbegin.o crtend.o"
1566         float_format=m68k
1567         ;;
1568 m68k-ccur-rtu)
1569         tm_file=m68k/ccur-GAS.h
1570         use_collect2=yes
1571         float_format=m68k
1572         ;;
1573 m68k-hp-bsd4.4*)                # HP 9000/3xx running 4.4bsd
1574         tm_file=m68k/hp3bsd44.h
1575         use_collect2=yes
1576         float_format=m68k
1577         ;;
1578 m68k-hp-bsd*)                   # HP 9000/3xx running Berkeley Unix
1579         tm_file=m68k/hp3bsd.h
1580         use_collect2=yes
1581         float_format=m68k
1582         ;;
1583 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1584         xm_defines=POSIX
1585         if test x$gas = xyes
1586         then
1587                 xmake_file=m68k/x-hp320g
1588                 tm_file=m68k/hp320g.h
1589         else
1590                 xmake_file=m68k/x-hp320
1591                 tm_file=m68k/hpux7.h
1592         fi
1593         install_headers_dir=install-headers-cpio
1594         use_collect2=yes
1595         float_format=m68k
1596         ;;
1597 m68k-hp-hpux*)  # HP 9000 series 300
1598         xm_defines=POSIX
1599         if test x$gas = xyes
1600         then
1601                 xmake_file=m68k/x-hp320g
1602                 tm_file=m68k/hp320g.h
1603         else
1604                 xmake_file=m68k/x-hp320
1605                 tm_file=m68k/hp320.h
1606         fi
1607         install_headers_dir=install-headers-cpio
1608         use_collect2=yes
1609         float_format=m68k
1610         ;;
1611 m68k-sun-mach*)
1612         tm_file=m68k/sun3mach.h
1613         use_collect2=yes
1614         float_format=m68k
1615         ;;
1616 m68k-sun-sunos3*)
1617         if test x$with_fp = xno
1618         then
1619                 tm_file=m68k/sun3n3.h
1620         else
1621                 tm_file=m68k/sun3o3.h
1622                 float_format=m68k
1623         fi
1624         use_collect2=yes
1625         ;;
1626 m68k-sun-sunos*)                        # For SunOS 4 (the default).
1627         if test x$with_fp = xno
1628         then
1629                 tm_file=m68k/sun3n.h
1630         else
1631                 tm_file=m68k/sun3.h
1632                 float_format=m68k
1633         fi
1634         use_collect2=yes
1635         ;;
1636 m68k-wrs-vxworks*)
1637         tm_file=m68k/vxm68k.h
1638         tmake_file=m68k/t-vxworks68
1639         thread_file='vxworks'
1640         float_format=m68k
1641         ;;
1642 m68k-*-aout*)
1643         tmake_file=m68k/t-m68kbare
1644         tm_file="m68k/m68k-aout.h libgloss.h"
1645         float_format=m68k
1646         ;;
1647 m68k-*-coff*)
1648         tmake_file=m68k/t-m68kbare
1649         tm_file="m68k/m68k-coff.h dbx.h"
1650         float_format=m68k
1651         ;;
1652 m68020-*-elf* | m68k-*-elf*)
1653         tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1654         xm_defines=POSIX
1655         tmake_file=m68k/t-m68kelf
1656         extra_parts="crtbegin.o crtend.o"
1657         ;;
1658 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1659         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1660         case $machine in
1661         m68010*)
1662                 target_cpu_default="0"
1663                 ;;
1664         *)
1665                 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1666                 ;;
1667         esac
1668         float_format=m68k
1669         ;;
1670 m68k*-*-netbsd*)
1671         tm_file=m68k/netbsd.h
1672         tmake_file=t-netbsd
1673         float_format=m68k
1674         use_collect2=yes
1675         ;;
1676 m68k*-*-openbsd*)
1677         # needed to unconfuse gdb
1678         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1679         float_format=m68k
1680         # we need collect2 until our bug is fixed...
1681         use_collect2=yes
1682         ;;
1683 m68k-*-sysv4*)                  # Motorola m68k's running system V.4
1684         tm_file=m68k/m68kv4.h
1685         xm_defines=POSIX
1686         tmake_file=t-svr4
1687         extra_parts="crtbegin.o crtend.o"
1688         float_format=m68k
1689         ;;
1690 m68k-*-linux*aout*)             # Motorola m68k's running GNU/Linux
1691                                 # with a.out format
1692         tm_file=m68k/linux-aout.h
1693         tmake_file="t-linux-aout m68k/t-linux-aout"
1694         float_format=m68k
1695         gnu_ld=yes
1696         ;;
1697 m68k-*-linux*libc1)             # Motorola m68k's running GNU/Linux
1698                                 # with ELF format using the
1699                                 # GNU/Linux C library 5
1700         tm_file=m68k/linux.h
1701         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
1702         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1703         float_format=m68k
1704         gnu_ld=yes
1705         ;;
1706 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1707                                 # with ELF format using glibc 2
1708                                 # aka the GNU/Linux C library 6.
1709         tm_file=m68k/linux.h
1710         tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
1711         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1712         float_format=m68k
1713         gnu_ld=yes
1714         ;;
1715 m68k-*-psos*)
1716         tmake_file=m68k/t-m68kbare
1717         tm_file=m68k/m68k-psos.h
1718         float_format=m68k
1719         ;;
1720 m68k-*-rtemscoff*)      # would otherwise be caught by m68k-*-rtems*
1721         echo "*** Configuration $machine not supported" 1>&2
1722         exit 1
1723         ;;
1724 m68k-*-rtems*)
1725         xm_defines=POSIX
1726         tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
1727         tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h"
1728         float_format=m68k
1729         extra_parts="crtbegin.o crtend.o"
1730         if test x$enable_threads = xyes; then
1731           thread_file='rtems'
1732         fi
1733         ;;
1734 m88k-*-aout*)
1735         xm_defines=POSIX
1736         tm_file=m88k/m88k-aout.h
1737         ;;
1738 m88k-*-openbsd*)
1739         tmake_file="${tmake_file} m88k/t-luna-gas"
1740         tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
1741         ;;
1742 m88k-*-sysv4*)
1743         xm_defines=POSIX
1744         tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h"
1745         extra_parts="crtbegin.o crtend.o"
1746         tmake_file=m88k/t-sysv4
1747         ;;
1748 mcore-*-elf)
1749         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
1750         tmake_file=mcore/t-mcore
1751         ;;
1752 mcore-*-pe*)
1753         tm_file=mcore/mcore-pe.h
1754         tmake_file=mcore/t-mcore-pe
1755         ;;
1756 mips-sgi-irix6*o32)             # SGI System V.4., IRIX 6, O32 ABI
1757         if test x$gas = xyes
1758         then
1759                 tm_file="mips/iris5.h mips/iris5gas.h mips/iris6-o32-gas.h"
1760                 if test x$stabs = xyes
1761                 then
1762                         tm_file="${tm_file} dbx.h"
1763                 fi
1764                 tmake_file=mips/t-iris5-gas
1765         else
1766                 tm_file="mips/iris5.h mips/iris6-o32-as.h"
1767                 tmake_file=mips/t-iris5-as
1768         fi
1769         tm_file="${tm_file} mips/iris6-o32.h"
1770         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1771         xm_defines=POSIX
1772         xm_file=mips/xm-iris5.h
1773         # mips-tfile doesn't work yet
1774         # See comment in mips/iris5.h file.
1775         use_collect2=yes
1776 #       if test x$enable_threads = xyes; then
1777 #               thread_file='irix'
1778 #       fi
1779         ;;
1780 mips-sgi-irix6*)                # SGI System V.4., IRIX 6
1781         if test "x$gnu_ld" = xyes
1782         then
1783                 tm_file="mips/iris6.h mips/iris6gld.h"
1784         else
1785                 tm_file=mips/iris6.h
1786         fi
1787         tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
1788         xm_defines=POSIX
1789 #       if test x$enable_threads = xyes; then
1790 #               thread_file='irix'
1791 #       fi
1792         ;;
1793 mips-wrs-vxworks)
1794         tm_file="${tm_file} mips/elf.h mips/vxworks.h"
1795         tmake_file=mips/t-ecoff
1796         gas=yes
1797         gnu_ld=yes
1798         extra_parts="crtbegin.o crtend.o"
1799         thread_file='vxworks'
1800         ;;
1801 mips-sgi-irix5cross64)          # Irix5 host, Irix 6 target, cross64
1802         tm_file="mips/iris6.h mips/cross64.h"
1803         xm_defines=POSIX
1804         xm_file=mips/xm-iris5.h
1805         tmake_file="mips/t-iris mips/t-cross64"
1806         # See comment in mips/iris[56].h files.
1807         use_collect2=yes
1808 #       if test x$enable_threads = xyes; then
1809 #               thread_file='irix'
1810 #       fi
1811         ;;
1812 mips-sni-sysv4)
1813         if test x$gas = xyes
1814         then
1815                 if test x$stabs = xyes
1816                 then
1817                         tm_file=mips/iris5gdb.h
1818                 else
1819                         tm_file="mips/sni-svr4.h mips/sni-gas.h"
1820                 fi
1821         else
1822                 tm_file=mips/sni-svr4.h
1823         fi
1824         xm_defines=POSIX
1825         if test x$gnu_ld != xyes
1826         then
1827                 use_collect2=yes
1828         fi
1829         ;;
1830 mips-sgi-irix5*)                # SGI System V.4., IRIX 5
1831         if test x$gas = xyes
1832         then
1833                 tm_file="mips/iris5.h mips/iris5gas.h"
1834                 if test x$stabs = xyes
1835                 then
1836                         tm_file="${tm_file} dbx.h"
1837                 fi
1838                 tmake_file=mips/t-iris5-gas
1839         else
1840                 tm_file=mips/iris5.h
1841                 tmake_file=mips/t-iris5-as
1842         fi
1843         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1844         xm_defines=POSIX
1845         xm_file=mips/xm-iris5.h
1846         # mips-tfile doesn't work yet
1847         # See comment in mips/iris5.h file.
1848         use_collect2=yes
1849 #       if test x$enable_threads = xyes; then
1850 #               thread_file='irix'
1851 #       fi
1852         ;;
1853 mips-sgi-*)     # would otherwise be caught by mips-*-elf*
1854         echo "*** Configuration $machine not supported" 1>&2
1855         exit 1
1856         ;;
1857 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1858         tm_file="elfos.h mips/netbsd.h"
1859         tmake_file="${tmake_file} mips/t-netbsd"
1860         ;;
1861 mips*-*-linux*)                         # Linux MIPS, either endian.
1862         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
1863         case $machine in
1864         mipsisa32*-*)
1865                 target_cpu_default="MASK_SOFT_FLOAT"
1866                 tm_defines="MIPS_ISA_DEFAULT=32"
1867                 ;;
1868         esac
1869         tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux"
1870         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1871         gnu_ld=yes
1872         gas=yes
1873         ;;
1874 mips*el-*-openbsd*)     # mips little endian
1875         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1876         ;;
1877 mips*-*-openbsd*)               # mips big endian
1878         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1879         tm_file="mips/openbsd-be.h ${tm_file}"
1880         ;;
1881 mips-*-ecoff* | mipsel-*-ecoff*)
1882         if test x$stabs = xyes; then
1883                 tm_file="${tm_file} dbx.h"
1884         fi
1885         tmake_file=mips/t-ecoff
1886         ;;
1887 mipsisa32-*-elf* | mipsisa32el-*-elf*)
1888         tm_file="${tm_file} mips/elf.h"
1889         tmake_file=mips/t-isa3264
1890         tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_MEABI"
1891         ;;
1892 mipsisa64-*-elf* | mipsisa64el-*-elf*)
1893         tm_file="${tm_file} mips/elf.h"
1894         tmake_file=mips/t-isa3264
1895         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1896         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_MEABI"
1897         ;;
1898 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1899         tm_file="${tm_file} mips/elf.h"
1900         tmake_file=mips/t-elf
1901         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1902         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1903         ;;
1904 mips-*-elf* | mipsel-*-elf*)
1905         tm_file="${tm_file} mips/elf.h"
1906         tmake_file=mips/t-elf
1907         ;;
1908 mips64-*-elf* | mips64el-*-elf*)
1909         tm_file="${tm_file} mips/elf64.h"
1910         tmake_file=mips/t-elf
1911         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1912         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1913         ;;
1914 mips64orion-*-elf* | mips64orionel-*-elf*)
1915         tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1916         tmake_file=mips/t-elf
1917         tmake_file=mips/t-elf
1918         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1919         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1920         ;;
1921 mips64orion-*-rtems*)
1922         xm_defines=POSIX
1923         tm_file="${tm_file} mips/elforion.h mips/elf64.h mips/rtems64.h rtems.h"
1924         tmake_file="mips/t-elf t-rtems"
1925         tmake_file=mips/t-elf
1926         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1927         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1928         if test x$enable_threads = xyes; then
1929           thread_file='rtems'
1930         fi
1931         ;;
1932 mips*-*-rtems*)
1933         xm_defines=POSIX
1934         tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
1935         tmake_file="mips/t-elf t-rtems"
1936         if test x$enable_threads = xyes; then
1937           thread_file='rtems'
1938         fi
1939         ;;
1940 mipstx39-*-elf* | mipstx39el-*-elf*)
1941         tm_file="${tm_file} mips/r3900.h mips/elf.h"
1942         tmake_file=mips/t-r3900
1943         ;;
1944 mmix-knuth-mmixware)
1945         ;;
1946 mn10200-*-*)
1947         float_format=i32
1948         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1949         if test x$stabs = xyes
1950         then
1951                 tm_file="${tm_file} dbx.h"
1952         fi
1953         use_collect2=no
1954         ;;
1955 mn10300-*-*)
1956         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1957         if test x$stabs = xyes
1958         then
1959                 tm_file="${tm_file} dbx.h"
1960         fi
1961         use_collect2=no
1962         ;;
1963 ns32k-*-netbsdelf*)
1964         echo "GCC does not yet support the ${machine} target"; exit 1
1965         ;;
1966 ns32k-*-netbsd*)
1967         tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1968         # On NetBSD, the headers are already okay, except for math.h.
1969         tmake_file="t-netbsd ns32k/t-ns32k"
1970         use_collect2=yes
1971         ;;
1972 pdp11-*-bsd)
1973         tm_file="${tm_file} pdp11/2bsd.h"
1974         ;;
1975 pdp11-*-*)
1976         ;;
1977 avr-*-*)
1978         ;;
1979 ns32k-*-openbsd*)
1980         # Nothing special
1981         ;;
1982 romp-*-openbsd*)
1983         # Nothing special
1984         ;;
1985 powerpc-*-openbsd*)
1986         tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
1987         extra_headers=
1988         ;;
1989 powerpc64-*-linux*)
1990         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h"
1991         out_file=rs6000/rs6000.c
1992         tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-linux rs6000/t-linux64"
1993         ;;
1994 powerpc64-*-gnu*)
1995         tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux64.h rs6000/gnu.h"
1996         out_file=rs6000/rs6000.c
1997         tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
1998         ;;
1999 powerpc-*-beos*)
2000         tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
2001         xm_defines=POSIX
2002         tmake_file=rs6000/t-beos
2003         extra_headers=
2004         ;;
2005 powerpc-*-darwin*)
2006         tm_file="${tm_file} darwin.h rs6000/darwin.h"
2007         tm_p_file="${tm_p_file} darwin-protos.h"
2008         tmake_file=rs6000/t-darwin
2009         extra_objs="darwin.o"
2010         target_gtfiles="\$(srcdir)/config/darwin.c"
2011         c_target_objs="darwin-c.o"
2012         cxx_target_objs="darwin-c.o"
2013         # Darwin linker does collect2 functionality
2014         use_collect2=no
2015         extra_headers=altivec.h
2016         ;;
2017 powerpc*-*-freebsd*)
2018         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
2019         xm_file=rs6000/xm-sysv4.h
2020         out_file=rs6000/rs6000.c
2021         tmake_file="rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2022         ;;
2023 powerpc-*-sysv*)
2024         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2025         xm_defines=POSIX
2026         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2027         ;;
2028 powerpc-*-netbsd*)
2029         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2030         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2031         ;;
2032 powerpc-*-chorusos*)
2033         xm_defines=POSIX
2034         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
2035         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2036         case x${enable_threads} in
2037           xyes | xpthreads | xposix)
2038                 thread_file='posix'
2039                 ;;
2040         esac
2041         ;;
2042 powerpc-*-eabiaix*)
2043         xm_defines=POSIX
2044         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
2045         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2046         ;;
2047 powerpc-*-eabispe*)
2048         xm_defines=POSIX
2049         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
2050         tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2051         ;;
2052 powerpc-*-eabisimaltivec*)
2053         xm_defines=POSIX
2054         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"
2055         tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2056         ;;
2057 powerpc-*-eabisim*)
2058         xm_defines=POSIX
2059         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
2060         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2061         ;;
2062 powerpc-*-elf*)
2063         xm_defines=POSIX
2064         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2065         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2066         ;;
2067 powerpc-*-eabialtivec*)
2068         xm_defines=POSIX
2069         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
2070         tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2071         ;;
2072 powerpc-*-eabi*)
2073         xm_defines=POSIX
2074         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
2075         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2076         ;;
2077 powerpc-*-rtems*)
2078         xm_defines=POSIX
2079         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
2080         tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2081         if test x$enable_threads = xyes; then
2082           thread_file='rtems'
2083         fi
2084         ;;
2085 powerpc-*-linux*libc1)
2086         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2087         out_file=rs6000/rs6000.c
2088         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2089         if test x$enable_threads = xyes; then
2090                 thread_file='posix'
2091         fi
2092         ;;
2093 powerpc-*-linux-gnualtivec*)
2094         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
2095         out_file=rs6000/rs6000.c
2096         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2097         ;;
2098 powerpc-*-linux*)
2099         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2100         out_file=rs6000/rs6000.c
2101         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2102         ;;
2103 powerpc-*-gnu-gnualtivec*)
2104         tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h rs6000/gnu.h"
2105         out_file=rs6000/rs6000.c
2106         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2107         if test x$enable_threads = xyes; then
2108                 thread_file='posix'
2109         fi
2110         ;;
2111 powerpc-*-gnu*)
2112         tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/gnu.h"
2113         out_file=rs6000/rs6000.c
2114         tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2115         if test x$enable_threads = xyes; then
2116                 thread_file='posix'
2117         fi
2118         ;;
2119 powerpc-wrs-vxworks*)
2120         xm_defines=POSIX
2121         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/vxppc.h"
2122         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2123         thread_file='vxworks'
2124         ;;
2125 powerpc-wrs-windiss*)
2126         xm_defines=POSIX
2127         tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
2128         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2129         thread_file=""
2130         ;;
2131 powerpcle-wrs-vxworks*)
2132         xm_defines=POSIX
2133         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h"
2134         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2135         thread_file='vxworks'
2136         ;;
2137 powerpcle-*-sysv*)
2138         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2139         xm_defines=POSIX
2140         tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2141         ;;
2142 powerpcle-*-elf*)
2143         xm_defines=POSIX
2144         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2145         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2146         ;;
2147 powerpcle-*-eabisim*)
2148         xm_defines=POSIX
2149         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"
2150         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2151         ;;
2152 powerpcle-*-eabi*)
2153         xm_defines=POSIX
2154         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
2155         tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2156         ;;
2157 rs6000-ibm-aix3.[01]*)
2158         xm_defines=POSIX
2159         tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
2160         float_format=none
2161         use_collect2=yes
2162         ;;
2163 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
2164         xm_defines=POSIX
2165         tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
2166         tmake_file=rs6000/t-newas
2167         float_format=none
2168         use_collect2=yes
2169         extra_headers=
2170         ;;
2171 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
2172         xm_defines=POSIX
2173         tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
2174         tmake_file=rs6000/t-newas
2175         float_format=none
2176         use_collect2=yes
2177         extra_headers=
2178         ;;
2179 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2180         xm_defines=POSIX
2181         tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
2182         tmake_file=rs6000/t-aix43
2183         float_format=none
2184         use_collect2=yes
2185         thread_file='aix'
2186         extra_headers=
2187         ;;
2188 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
2189         xm_defines=POSIX
2190         tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
2191         tmake_file=rs6000/t-aix43
2192         float_format=none
2193         use_collect2=yes
2194         thread_file='aix'
2195         extra_headers=
2196         ;;
2197 rs6000-ibm-aix*)
2198         xm_defines=POSIX
2199         tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2200         float_format=none
2201         use_collect2=yes
2202         ;;
2203 rs6000-bull-bosx)
2204         xm_defines=POSIX
2205         tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2206         float_format=none
2207         use_collect2=yes
2208         ;;
2209 rs6000-*-mach*)
2210         tm_file="${tm_file} rs6000/mach.h"
2211         xm_defines=POSIX
2212         use_collect2=yes
2213         ;;
2214 rs6000-*-lynxos*)
2215         tm_file="lynx.h rs6000/lynx.h"
2216         tmake_file=rs6000/t-rs6000
2217         use_collect2=yes
2218         ;;
2219 s390-*-linux*)
2220         tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
2221         tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
2222         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
2223         ;;
2224 s390x-*-linux*)
2225         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
2226         tm_p_file=s390/s390-protos.h
2227         md_file=s390/s390.md
2228         extra_modes=s390/s390-modes.def
2229         out_file=s390/s390.c
2230         tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux s390/t-linux64"
2231         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
2232         ;;
2233 sh-*-elf* | sh[2346l]*-*-elf*)
2234         tmake_file="sh/t-sh sh/t-elf"
2235         case $machine in
2236         shl* | sh64l*)
2237                 tm_file="sh/little.h ${tm_file}"
2238                 tmake_file="${tmake_file} sh/t-le"
2239                 ;;
2240         esac
2241         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h"
2242         float_format=sh
2243         case $machine in
2244         sh64*)
2245                 tmake_file="${tmake_file} sh/t-sh64"
2246                 tm_file="${tm_file} sh/sh64.h"
2247                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2248                 ;;
2249         sh4_single*)  target_cpu_default="SELECT_SH4_SINGLE" ;;
2250         sh4*)  target_cpu_default="SELECT_SH4" ;;
2251         sh3e*) target_cpu_default="SELECT_SH3E" ;;
2252         sh3*)  target_cpu_default="SELECT_SH3" ;;
2253         sh2*)  target_cpu_default="SELECT_SH2" ;;
2254         esac
2255         case $machine in
2256         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
2257         esac
2258         ;;
2259 sh-*-rtemself*)
2260         xm_defines=POSIX
2261         tmake_file="sh/t-sh sh/t-elf t-rtems"
2262         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h sh/rtemself.h rtems.h"
2263         float_format=sh
2264         if test x$enable_threads = xyes; then
2265           thread_file='rtems'
2266         fi
2267         ;;
2268 sh-*-rtems*)
2269         xm_defines=POSIX
2270         tmake_file="sh/t-sh t-rtems"
2271         tm_file="${tm_file} sh/coff.h sh/rtems.h rtems.h"
2272         float_format=sh
2273         if test x$enable_threads = xyes; then
2274           thread_file='rtems'
2275         fi
2276         ;;
2277 sh-*-linux* | sh[2346lbe]*-*-linux*)
2278         tmake_file="sh/t-sh sh/t-elf sh/t-linux"
2279         case $machine in
2280         sh*be-*-* | sh*eb-*-*) ;;
2281         *)
2282                 tm_file="sh/little.h ${tm_file}"
2283                 tmake_file="${tmake_file} sh/t-le"
2284                 ;;
2285         esac
2286         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
2287         gas=yes gnu_ld=yes
2288         float_format=sh
2289         case $machine in
2290         sh64*)
2291                 tmake_file="${tmake_file} sh/t-sh64"
2292                 tm_file="${tm_file} sh/sh64.h"
2293                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2294                 ;;
2295         sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
2296         sh4*) target_cpu_default="SELECT_SH4" ;;
2297         sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
2298         sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
2299         sh3e*) target_cpu_default="SELECT_SH3E" ;;
2300         sh3*) target_cpu_default="SELECT_SH3" ;;
2301         sh2*) target_cpu_default="SELECT_SH2" ;;
2302         esac
2303         case $machine in
2304         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
2305         esac
2306         ;;
2307 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2308   sh64-*-netbsd* | sh64l*-*-netbsd*)
2309         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2310         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2311         case $machine in
2312         sh*l*-*)
2313                 tm_file="sh/little.h ${tm_file}"
2314                 tmake_file="${tmake_file} sh/t-le"
2315                 ;;
2316         *)
2317                 tmake_file="${tmake_file} sh/t-be"
2318                 ;;
2319         esac
2320         case $machine in
2321         sh5*-*)
2322                 # SHmedia, 32-bit ABI
2323                 target_cpu_default="SH5_BIT|SH4_BIT|SH3E_BIT"
2324                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
2325                 ;;
2326         sh64*-*)
2327                 # SHmedia, 64-bit ABI
2328                 target_cpu_default="SH5_BIT|SH4_BIT"
2329                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
2330                 ;;
2331         *)
2332                 # SH3, software floating point
2333                 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
2334                 tmake_file="${tmake_file} sh/t-netbsd"
2335                 ;;
2336         esac
2337         float_format=sh
2338         ;;
2339 sh-*-*)
2340         tm_file="${tm_file} sh/coff.h"
2341         float_format=sh
2342         ;;
2343 sparc-tti-*)
2344         tm_file="${tm_file} sparc/pbd.h"
2345         xm_defines=POSIX
2346         ;;
2347 sparc64-wrs-vxworks*)
2348         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/biarch64.h gofast.h sparc/vxsparc64.h"
2349         tmake_file="sparc/t-vxsparc64 sparc/t-crtfm"
2350         use_collect2=yes
2351         ;;
2352 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
2353         tm_file="${tm_file} aoutos.h sparc/aout.h gofast.h sparc/vxsparc.h"
2354         tmake_file=sparc/t-vxsparc
2355         use_collect2=yes
2356         thread_file='vxworks'
2357         ;;
2358 sparc-*-aout*)
2359         tmake_file=sparc/t-sparcbare
2360         tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
2361         ;;
2362 sparc-*-netbsdelf*)
2363         tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2364         ;;
2365 sparc-*-netbsd*)
2366         tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h"
2367         tmake_file=t-netbsd
2368         use_collect2=yes
2369         ;;
2370 sparc-*-openbsd*)
2371         tm_file="sparc/sparc.h ${tm_file}"
2372         # needed to unconfuse gdb
2373         tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
2374         # we need collect2 until our bug is fixed...
2375         use_collect2=yes
2376         ;;
2377 sparc64-*-openbsd*)
2378         tm_file="sparc/openbsd1-64.h sparc/sparc.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
2379         xm_file=sparc/xm-sp64.h
2380         gas=yes gnu_ld=yes
2381         with_cpu=ultrasparc
2382         float_format=i128
2383         ;;
2384 sparc-*-bsd*)
2385         tm_file="${tm_file} sparc/bsd.h"
2386         ;;
2387 sparc-*-chorusos*)
2388         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h chorus.h"
2389         tmake_file="sparc/t-chorus-elf sparc/t-crtfm"
2390         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2391         float_format=i64
2392         case x${enable_threads} in
2393           xyes | xpthreads | xposix)
2394                 thread_file='posix'
2395                 ;;
2396         esac
2397         ;;
2398 sparc-*-elf*)
2399         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
2400         tmake_file="sparc/t-elf sparc/t-crtfm"
2401         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2402         #float_format=i128
2403         float_format=i64
2404         ;;
2405 sparc-*-linux*aout*)            # Sparc's running GNU/Linux, a.out
2406         tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h"
2407         gnu_ld=yes
2408         ;;
2409 sparc-*-linux*libc1*)   # Sparc's running GNU/Linux, libc5
2410         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
2411         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 sparc/t-crtfm"
2412         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2413         gnu_ld=yes
2414         float_format=sparc
2415         ;;
2416 sparc-*-linux*)         # Sparc's running GNU/Linux, libc6
2417         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
2418         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
2419         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
2420         gnu_ld=yes
2421         float_format=sparc
2422         ;;
2423 sparc-*-lynxos*)
2424         if test x$gas = xyes
2425         then
2426                 tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h"
2427         else
2428                 tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h"
2429         fi
2430         tmake_file=sparc/t-sunos41
2431         ;;
2432 sparc-*-rtemsaout*)     # would otherwise be caught by sparc-*-rtems*
2433         echo "*** Configuration $machine not supported" 1>&2
2434         exit 1
2435         ;;
2436 sparc-*-rtems*)
2437         xm_defines=POSIX
2438         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
2439         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
2440         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2441         #float_format=i128
2442         float_format=i64
2443         if test x$enable_threads = xyes; then
2444           thread_file='rtems'
2445         fi
2446         ;;
2447 sparc64-*-solaris2* | sparcv9-*-solaris2*)
2448         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
2449         if test x$gnu_ld = xyes; then
2450                 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
2451         fi
2452         if test x$gas = xyes; then
2453                 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2454         fi
2455         xm_defines=POSIX
2456         tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
2457         if test x$gnu_ld = xyes; then
2458                 tmake_file="$tmake_file t-slibgcc-elf-ver"
2459         else
2460                 tmake_file="$tmake_file t-slibgcc-sld"
2461         fi
2462         extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
2463         float_format=i128
2464         if test x${enable_threads} = x ; then
2465             enable_threads=$have_pthread_h
2466             if test x${enable_threads} = x ; then
2467                 enable_threads=$have_thread_h
2468             fi
2469         fi
2470         if test x${enable_threads} = xyes ; then
2471             if test x${have_pthread_h} = xyes ; then
2472                 thread_file='posix'
2473             else
2474                 thread_file='solaris'
2475             fi
2476         fi
2477         ;;
2478 sparc-hal-solaris2*)
2479         xm_defines=POSIX
2480         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/hal.h"
2481         tmake_file="sparc/t-halos sparc/t-sol2 sparc/t-crtfm"
2482         if test x$gnu_ld = xyes; then
2483                 tm_file="${tm_file} sparc/sol2-gld.h"
2484                 tmake_file="$tmake_file t-slibgcc-elf-ver"
2485         else
2486                 tmake_file="$tmake_file t-slibgcc-sld"
2487         fi
2488         extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
2489         float_format=i128
2490         thread_file='solaris'
2491         ;;
2492 sparc-*-solaris2*)
2493         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
2494         if test x$gnu_ld = xyes; then
2495                 tm_file="${tm_file} sparc/sol2-gld.h"
2496         fi
2497         tmake_file="sparc/t-sol2 sparc/t-crtfm"
2498         if test x$gnu_ld = xyes; then
2499                 tmake_file="$tmake_file t-slibgcc-elf-ver"
2500         else
2501                 tmake_file="$tmake_file t-slibgcc-sld"
2502         fi
2503         case $machine in
2504         *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
2505                 if test x$gnu_ld = xno; then
2506                         tm_file="${tm_file} sparc/sol26-sld.h"
2507                 fi
2508                 ;;
2509         *-*-solaris2.[789])
2510                 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
2511                 if test x$gnu_ld = xyes; then
2512                         tm_file="${tm_file} sparc/sol2-gld-bi.h"
2513                 fi
2514                 if test x$gas = xyes; then
2515                         tm_file="${tm_file} sparc/sol2-gas-bi.h"
2516                 fi
2517                 tmake_file="$tmake_file sparc/t-sol2-64"
2518                 ;;
2519         esac
2520         xm_defines=POSIX
2521         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
2522         float_format=i128
2523         if test x${enable_threads} = x; then
2524             enable_threads=$have_pthread_h
2525             if test x${enable_threads} = x; then
2526                 enable_threads=$have_thread_h
2527             fi
2528         fi
2529         if test x${enable_threads} = xyes; then
2530             if test x${have_pthread_h} = xyes; then
2531                 thread_file='posix'
2532             else
2533                 thread_file='solaris'
2534             fi
2535         fi
2536         ;;
2537 sparc-*-sunos4.0*)
2538         tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
2539         use_collect2=yes
2540         ;;
2541 sparc-*-sunos4*)
2542         tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
2543         tmake_file=sparc/t-sunos41
2544         use_collect2=yes
2545         if test x$gas = xyes; then
2546                 tm_file="${tm_file} sparc/sun4gas.h"
2547         fi
2548         ;;
2549 sparc-*-sunos3*)
2550         tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h"
2551         use_collect2=yes
2552         ;;
2553 sparc-*-sysv4*)
2554         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h"
2555         xm_defines=POSIX
2556         tmake_file=t-svr4
2557         extra_parts="crtbegin.o crtend.o"
2558         ;;
2559 sparc-*-vxsim*)
2560         xm_defines=POSIX
2561         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/vxsim.h"
2562         tmake_file=sparc/t-vxsparc
2563         ;;
2564 sparclet-*-aout*)
2565         tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h"
2566         tmake_file=sparc/t-splet
2567         ;;
2568 sparclite-*-coff*)
2569         tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
2570         tmake_file=sparc/t-sparclite
2571         ;;
2572 sparclite-*-aout*)
2573         tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h"
2574         tmake_file=sparc/t-sparclite
2575         ;;
2576 sparclite-*-elf*)
2577         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h"
2578         tmake_file="sparc/t-sparclite sparc/t-crtfm"
2579         extra_parts="crtbegin.o crtend.o"
2580         ;;
2581 sparc86x-*-aout*)
2582         tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h"
2583         tmake_file=sparc/t-sp86x
2584         ;;
2585 sparc86x-*-elf*)
2586         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h"
2587         tmake_file="sparc/t-sp86x sparc/t-crtfm"
2588         extra_parts="crtbegin.o crtend.o"
2589         ;;
2590 sparc64-*-aout*)
2591         tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
2592         ;;
2593 sparc64-*-elf*)
2594         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
2595         tmake_file="${tmake_file} sparc/t-crtfm"
2596         extra_parts="crtbegin.o crtend.o"
2597         ;;
2598 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2599         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2600         tmake_file="${tmake_file} sparc/t-crtfm"
2601         xmake_file=none
2602         case "x$with_cpu" in
2603                 xultrasparc) ;;
2604                 x) with_cpu=ultrasparc ;;
2605                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2606         esac
2607         ;;
2608 sparc64-*-linux*)               # 64-bit Sparc's running GNU/Linux
2609         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
2610         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
2611         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
2612         gnu_ld=yes
2613         float_format=sparc
2614         ;;
2615 sparc64-*-netbsd*)
2616         tmake_file="${tmake_file} sparc/t-netbsd64"
2617         tm_file="sparc/biarch64.h ${tm_file}"
2618         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2619         float_format=sparc
2620         ;;
2621 strongarm-*-elf*)
2622         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2623         tmake_file=arm/t-strongarm-elf
2624         out_file=arm/arm.c
2625         md_file=arm/arm.md
2626         extra_modes=arm/arm-modes.def
2627         ;;
2628 strongarm-*-coff*)
2629         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h"
2630         tmake_file=arm/t-strongarm-coff
2631         out_file=arm/arm.c
2632         md_file=arm/arm.md
2633         extra_modes=arm/arm-modes.def
2634         ;;
2635 strongarm-*-pe)
2636         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"
2637         tmake_file=arm/t-strongarm-pe
2638         out_file=arm/arm.c
2639         md_file=arm/arm.md
2640         extra_modes=arm/arm-modes.def
2641         extra_objs=pe.o
2642         ;;
2643 thumb*-*-*)
2644         { echo "config.gcc: error:
2645 *** The Thumb targets have been deprecated.  The equivalent
2646 *** ARM based toolchain can now generate Thumb instructions
2647 *** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
2648         ;;
2649 v850-*-rtems*)
2650         xm_defines=POSIX
2651         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/v850.h v850/rtems.h rtems.h"
2652         tmake_file="v850/t-v850 t-rtems"
2653         if test x$stabs = xyes
2654         then
2655                 tm_file="${tm_file} dbx.h"
2656         fi
2657         use_collect2=no
2658         c_target_objs="v850-c.o"
2659         cxx_target_objs="v850-c.o"
2660         ;;
2661 v850-*-*)
2662         target_cpu_default="TARGET_CPU_generic"
2663         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2664         tmake_file=v850/t-v850
2665         if test x$stabs = xyes
2666         then
2667                 tm_file="${tm_file} dbx.h"
2668         fi
2669         use_collect2=no
2670         c_target_objs="v850-c.o"
2671         cxx_target_objs="v850-c.o"
2672         ;;
2673 vax-*-bsd*)                     # VAXen running BSD
2674         tm_file="${tm_file} vax/bsd.h"
2675         use_collect2=yes
2676         float_format=vax
2677         ;;
2678 vax-*-sysv*)                    # VAXen running system V
2679         tm_file="${tm_file} vax/vaxv.h"
2680         xm_defines=POSIX
2681         float_format=vax
2682         ;;
2683 vax-*-netbsdelf*)
2684         echo "GCC does not yet support the ${machine} target"; exit 1
2685         ;;
2686 vax-*-netbsd*)
2687         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2688         tmake_file=t-netbsd
2689         float_format=vax
2690         use_collect2=yes
2691         ;;
2692 vax-*-openbsd*)
2693         tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
2694         float_format=vax
2695         use_collect2=yes
2696         ;;
2697 vax-*-ultrix*)                  # VAXen running ultrix
2698         tm_file="${tm_file} vax/ultrix.h"
2699         float_format=vax
2700         ;;
2701 vax-*-vms*)                     # VAXen running VMS
2702         xm_file=vax/xm-vms.h
2703         tm_file=vax/vms.h
2704         float_format=vax
2705         ;;
2706 vax-*-*)                        # VAX default entry
2707         float_format=vax
2708         ;;
2709 xscale-*-elf)
2710         tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2711         tmake_file=arm/t-xscale-elf
2712         out_file=arm/arm.c
2713         md_file=arm/arm.md
2714         extra_modes=arm/arm-modes.def
2715         ;;
2716 xscale-*-coff)
2717         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
2718         tmake_file=arm/t-xscale-coff
2719         out_file=arm/arm.c
2720         md_file=arm/arm.md
2721         extra_modes=arm/arm-modes.def
2722         ;;
2723 xstormy16-*-elf)
2724         # For historical reasons, the target files omit the 'x'.
2725         tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
2726         tm_p_file=stormy16/stormy16-protos.h
2727         md_file=stormy16/stormy16.md
2728         out_file=stormy16/stormy16.c
2729         tmake_file="stormy16/t-stormy16"
2730         extra_parts="crtbegin.o crtend.o"
2731         ;;
2732 xtensa-*-elf*)
2733         tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2734         with_newlib=yes
2735         tmake_file=xtensa/t-xtensa
2736         extra_parts="crtbegin.o crtend.o"
2737         fixincludes=Makefile.in # newlib headers should be OK
2738         ;;
2739 xtensa-*-linux*)
2740         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2741         tmake_file="t-linux xtensa/t-xtensa"
2742         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
2743         gas=yes gnu_ld=yes
2744         ;;
2746         echo "*** Configuration $machine not supported" 1>&2
2747         exit 1
2748         ;;
2749 esac
2751 case $machine in
2752 *-*-sysv*)
2753         install_headers_dir=install-headers-cpio
2754         ;;
2755 esac
2757 # Distinguish i[34567]86
2758 # Also, do not run mips-tfile on MIPS if using gas.
2759 # Process --with-cpu= for PowerPC/rs6000
2760 target_cpu_default2=
2761 case $machine in
2762 i486-*-*)
2763         target_cpu_default2=TARGET_CPU_DEFAULT_i486
2764         ;;
2765 i586-*-*)
2766         case $target_alias in
2767                 k6_2-*)
2768                         target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
2769                         ;;
2770                 k6_3-*)
2771                         target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
2772                         ;;
2773                 k6-*)
2774                         target_cpu_default2=TARGET_CPU_DEFAULT_k6
2775                         ;;
2776                 pentium_mmx-*)
2777                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
2778                         ;;
2779                 *)
2780                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium
2781                         ;;
2782         esac
2783         ;;
2784 i686-*-* | i786-*-*)
2785         case $target_alias in
2786                 athlon_xp-*|athlon_mp-*|athlon_4-*)
2787                         target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
2788                         ;;
2789                 athlon_tbird-*|athlon-*)
2790                         target_cpu_default2=TARGET_CPU_DEFAULT_athlon
2791                         ;;
2792                 pentium2-*)
2793                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
2794                         ;;
2795                 pentium3-*)
2796                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
2797                         ;;
2798                 pentium4-*)
2799                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
2800                         ;;
2801                 *)
2802                         target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
2803                         ;;
2804         esac
2805         ;;
2806 x86_64-*-*)
2807         # We should have hammer chip here, but it does not exist yet and
2808         # thus it is not supported.  Athlon_SSE is probably equivalent feature
2809         # wise to hammer from our point of view except for 64bit mode.
2810         target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
2811         ;;
2812 alpha*-*-*)
2813         case $machine in
2814                 alphaev6[78]*)
2815                         target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
2816                         ;;
2817                 alphaev6*)
2818                         target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
2819                         ;;
2820                 alphapca56*)
2821                         target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
2822                         ;;
2823                 alphaev56*)
2824                         target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
2825                         ;;
2826                 alphaev5*)
2827                         target_cpu_default2="MASK_CPU_EV5"
2828                         ;;
2829         esac
2831         if test x$gas = xyes
2832         then
2833                 if test "$target_cpu_default2" = ""
2834                 then
2835                         target_cpu_default2="MASK_GAS"
2836                 else
2837                         target_cpu_default2="${target_cpu_default2}|MASK_GAS"
2838                 fi
2839         fi
2840         ;;
2841 arm*-*-*)
2842         case "x$with_cpu" in
2843                 x)
2844                         # The most generic
2845                         target_cpu_default2="TARGET_CPU_generic"
2846                         ;;
2848                 # Distinguish cores, and major variants
2849                 # arm7m doesn't exist, but D & I don't affect code
2850                 xarm[236789] | xarm250 | xarm[67][01]0 \
2851                 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
2852                 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
2853                 | xxscale \
2854                 | xstrongarm | xstrongarm110 | xstrongarm1100)
2855                         target_cpu_default2="TARGET_CPU_$with_cpu"
2856                         ;;
2858                 xyes | xno)
2859                         echo "--with-cpu must be passed a value" 1>&2
2860                         exit 1
2861                         ;;
2863                 *)
2864                         if test x$pass2done = xyes
2865                         then
2866                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2867                                 exit 1
2868                         fi
2869                         ;;
2870         esac
2871         ;;
2873 hppa*-*-* | parisc*-*-*)
2874         if test x$gas = xyes
2875         then
2876                 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2877         fi
2878         case $machine in
2879                 hppa1* | parisc1*)
2880                         tm_defines="TARGET_SCHED_DEFAULT=\\\"7100LC\\\""
2881                         ;;
2882         esac
2883         ;;
2884 mips*-*-*)
2885         case $machine in
2886         mips*-*-ecoff* | mips*-*-elf*)
2887                 if test x$gas = xyes
2888                 then
2889                         if test x$gnu_ld = xyes
2890                         then
2891                                 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2892                         else
2893                                 target_cpu_default2="MASK_GAS"
2894                         fi
2895                 fi
2896                 ;;
2897         mips*-*-*)
2898                 if test x$gas = xyes
2899                 then
2900                         target_cpu_default2="MASK_GAS"
2901                 fi
2902                 ;;
2903         esac
2904         case $machine in
2905                 mips*el-*-*)
2906                         tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2907                         ;;
2908         esac
2909         if test "x$enable_gofast" = xyes
2910         then
2911                 tm_defines="INIT_SUBTARGET_OPTABS=INIT_GOFAST_OPTABS $tm_defines"
2912                 tm_file="gofast.h $tm_file"
2913                 tmake_file="mips/t-gofast $tmake_file"
2914         else
2915                 tmake_file="mips/t-mips $tmake_file"
2916         fi
2917         ;;
2918 powerpc*-*-* | rs6000-*-*)
2919         if test x$enable_altivec = xyes
2920         then
2921                 tm_file="$tm_file rs6000/altivec-defs.h"
2922         fi
2923         case "x$with_cpu" in
2924                 x)
2925                         ;;
2927                 xcommon | xpower | xpower2 | xpower3 | xpowerpc | xpowerpc64 \
2928                   | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \
2929                   | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \
2930                   | x740 | x750 | x7400 | x7450 | x505)
2931                         target_cpu_default2="\\\"$with_cpu\\\""
2932                         ;;
2934                 x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860)
2935                         target_cpu_default2="\\\"$with_cpu\\\""
2936                         ;;
2938                 xyes | xno)
2939                         echo "--with-cpu must be passed a value" 1>&2
2940                         exit 1
2941                         ;;
2943                 *)
2944                         if test x$pass2done = xyes
2945                         then
2946                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2947                                 exit 1
2948                         fi
2949                         ;;
2950         esac
2951         c_target_objs="${c_target_objs} rs6000-c.o"
2952         cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2953         tmake_file="${tmake_file} rs6000/t-rs6000-c-rule"
2954         ;;
2955 sparc*-*-*)
2956         case ".$with_cpu" in
2957                 .)
2958                         target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
2959                         ;;
2960                 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
2961                         target_cpu_default2="TARGET_CPU_$with_cpu"
2962                         ;;
2963                 *)
2964                         if test x$pass2done = xyes
2965                         then
2966                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2967                                 exit 1
2968                         fi
2969                         ;;
2970         esac
2971         ;;
2972 esac
2974 if test "$target_cpu_default2" != ""
2975 then
2976         if test "$target_cpu_default" != ""
2977         then
2978                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2979         else
2980                 target_cpu_default=$target_cpu_default2
2981         fi
2984 # Save data on machine being used to compile GCC in build_xm_file.
2985 # Save data on host machine in vars host_xm_file and host_xmake_file.
2986 if test x$pass1done = x
2987 then
2988         if test x$xm_file != x
2989         then build_xm_file=$xm_file
2990         fi
2991         build_xm_defines=$xm_defines
2992         build_install_headers_dir=$install_headers_dir
2993         build_exeext=$exeext
2994         pass1done=yes
2995 else
2996         if test x$pass2done = x
2997         then
2998                 if test x$xm_file != x
2999                 then host_xm_file=$xm_file
3000                 fi
3001                 host_xm_defines=$xm_defines
3002                 host_xmake_file="$xmake_file"
3003                 host_truncate_target=$truncate_target
3004                 host_extra_gcc_objs=$extra_gcc_objs
3005                 host_extra_objs=$extra_host_objs
3006                 host_exeext=$exeext
3007                 pass2done=yes
3008         fi