OSDN Git Service

* config/i386/linux.h (NO_PROFILE_COUNTERS): Define to 1.
[pf3gnuchains/gcc-fork.git] / gcc / config.gcc
1 # GCC build-, host- and target-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 # Free Software Foundation, Inc.
4
5 #This file is part of GCC.
6
7 #GCC is free software; you can redistribute it and/or modify it under
8 #the terms of the GNU General Public License as published by the Free
9 #Software Foundation; either version 2, or (at your option) any later
10 #version.
11
12 #GCC is distributed in the hope that it will be useful, but WITHOUT
13 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 #for more details.
16
17 #You should have received a copy of the GNU General Public License
18 #along with GCC; see the file COPYING.  If not, write to the Free
19 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 #02111-1307, USA.
21
22 # This is the GCC build-, host- and target-specific configuration file
23 # where a configuration type, as recognized and generated by config.bfd,
24 # is mapped to different system-specific definitions and files.  This is
25 # invoked by the autoconf-generated configure script, called for build,
26 # host and target in that order, setting ${machine} to each.  Putting it
27 # in a separate shell file lets us skip running autoconf when modifying
28 # build-, host- and target-specific information.
29
30 # This file switches on the shell variable ${machine}, and also uses the
31 # following shell variables:
32 #
33 #  with_*               Various variables as set by configure.
34 #
35 #  enable_threads_flag  Either the name, yes or no depending on whether
36 #                       threads support was requested.
37 #
38 #  default_use_cxa_atexit
39 #                       "no" by default, can be set to "yes" if a target
40 #                       wishes to use __cxa_atexit() by default if the
41 #                       $enable___cxa_atexit variable is not set.
42 #
43 #  gas_flag             Either yes or no depending on whether GNU as was
44 #                       requested.
45 #
46 #  gnu_ld_flag          Either yes or no depending on whether GNU ld was
47 #                       requested.
48
49 # This file sets the following shell variables for use by the
50 # autoconf-generated configure script:
51 #
52 #  cpu_type             The name of the cpu, if different from machine.
53 #
54 #  tm_defines           List of target macros to define for all compilations.
55 #
56 #  tm_file              A list of target macro files, if different from
57 #                       "$cpu_type/$cpu_type.h". Usually it's constructed
58 #                       per target in a way like this:
59 #                       tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
60 #                       Note that the preferred order is:
61 #                       - specific target header "${cpu_type}/${cpu_type.h}"
62 #                       - generic headers like dbxelf.h elfos.h, netware.h, etc.
63 #                       - specializing target headers like ${cpu_type.h}/elf.h
64 #                       This helps to keep OS specific stuff out of the CPU
65 #                       defining header ${cpu_type}/${cpu_type.h}.
66 #
67 #  tm_p_file            Location of file with declarations for functions
68 #                       in $out_file.
69 #
70 #  out_file             The name of the machine description C support
71 #                       file, if different from "$cpu_type/$cpu_type.c".
72 #
73 #  md_file              The name of the machine-description file, if
74 #                       different from "$cpu_type/$cpu_type.md".
75 #
76 #  tmake_file           A list of machine-description-specific
77 #                       makefile-fragments, if different from
78 #                       "$cpu_type/t-$cpu_type".
79 #
80 #  extra_modes          The name of the file containing a list of extra
81 #                       machine modes, if necessary and different from
82 #                       "$cpu_type/$cpu_type-modes.def".
83 #
84 #  extra_objs           List of extra objects that should be linked into
85 #                       the compiler proper (cc1, cc1obj, cc1plus)
86 #                       depending on target.
87 #
88 #  extra_headers        List of used header files from the directory
89 #                       config/${cpu_type}.
90 #
91 #  host_xmake_file      List of host-specific makefile-fragments.
92 #
93 #  extra_passes         List of extra executables compiled for this target
94 #                       machine, used for compiling from source to object.
95 #
96 #  extra_parts          List of extra object files that should be compiled
97 #                       for this target machine.
98 #
99 #  extra_programs       Like extra_passes, but these are used when linking.
100 #
101 #  host_extra_objs      List of extra host-dependent objects that should
102 #                       be linked into the compiler proper.
103 #
104 #  host_extra_gcc_objs  List of extra host-dependent objects that should
105 #                       be linked into the gcc driver.
106 #
107 #  out_host_hook_obj    An object file that provides the host hooks.
108 #
109 #  c_target_objs        List of extra target-dependent objects that be
110 #                       linked into the C compiler only.
111 #
112 #  cxx_target_objs      List of extra target-dependent objects that be
113 #                       linked into the C++ compiler only.
114 #
115 #  target_gtfiles       List of extra source files with type information.
116 #
117 #  build_xm_defines     List of macros to define when compiling for the
118 #                       build machine.
119 #
120 #  build_xm_file        List of files to include when compiling for the
121 #                       build machine.
122 #
123 #  host_xm_defines      List of macros to define when compiling for the
124 #                       host machine.
125 #
126 #  host_xm_file         List of files to include when compiling for the
127 #                       host machine.
128 #
129 #  xm_defines           List of macros to define when compiling for the
130 #                       target machine.
131 #
132 #  xm_file              List of files to include when compiling for the
133 #                       target machine.
134 #
135 #  use_collect2         Set to yes or no, depending on whether collect2
136 #                       will be used.
137 #
138 #  target_cpu_default   Set to override the default target model.
139 #
140 #  build_install_headers_dir
141 #                       Target to use when installing header files.
142 #
143 #  host_truncate_target
144 #                       Non-empty if the target name should be truncated
145 #                       on this host, due to filename length issues.
146 #
147 #  gdb_needs_out_file_path
148 #                       Set to yes if gdb needs a dir command with
149 #                       `dirname $out_file`.
150 #
151 #  build_exeext         Set to the suffix, if the build machine requires
152 #                       executables to have a file name suffix.
153 #
154 #  host_exeext          Set to the suffix, if the host machine requires
155 #                       executables to have a file name suffix.
156 #
157 #  thread_file          Set to control which thread package to use.
158 #
159 #  gas                  Set to yes or no depending on whether the target
160 #                       system normally uses GNU as.
161 #
162 #  need_64bit_hwint     Set to yes if HOST_WIDE_INT must be 64 bits wide
163 #                       for this target.  This is true iff
164 #                       MAX_LONG_TYPE_SIZE is 64.  (The code which
165 #                       determines the underlying integral type for
166 #                       HOST_WIDE_INT cannot see the definition of
167 #                       MAX_LONG_TYPE_SIZE.)
168
169 # The following variables are used in each case-construct to build up the
170 # outgoing variables:
171 #
172 #  xmake_file           Makefile-fragment when this system is as a host,
173 #                       for host_xmake_file.
174 #
175 #  extra_host_objs      List of extra objects that should be linked into
176 #                       the compiler proper when this system is a host,
177 #                       for host_extra_objs.
178 #
179 #  host_hook_obj        An object file that provides the host hooks.
180 #
181 #  install_headers_dir  Makefile-target for how the header file directory
182 #                       is installed, when this system is a build system,
183 #                       for build_install_headers_dir.
184 #
185 #  truncate_target      Non-empty if the target name should be truncated
186 #                       when this system is a host, due to filename length
187 #                       issues.  For host_truncate_target.
188 #
189 #  exeext               The suffix for executables on this system.
190 #
191 #  gnu_ld               Set to yes or no depending on whether the target
192 #                       system normally uses GNU ld.
193
194 out_file=
195 xmake_file=
196 tmake_file=
197 extra_headers=
198 extra_passes=
199 extra_parts=
200 extra_programs=
201 extra_objs=
202 extra_host_objs=
203 extra_gcc_objs=
204 c_target_objs=
205 cxx_target_objs=
206 host_hook_obj=host-default.o
207 tm_defines=
208 xm_defines=
209 # Set this to force installation and use of collect2.
210 use_collect2=
211 # Set this to override the default target model.
212 target_cpu_default=
213 # Set this to control how the header file directory is installed.
214 install_headers_dir=install-headers-tar
215 # Set this if directory names should be truncated to 14 characters.
216 truncate_target=
217 # Set this if gdb needs a dir command with `dirname $out_file`
218 gdb_needs_out_file_path=
219 # Set this if the build machine requires executables to have a
220 # file name suffix.
221 exeext=
222 # Set this to control which thread package will be used.
223 thread_file=
224 # Reinitialize these from the flag values every loop pass, since some
225 # configure entries modify them.
226 gas="$gas_flag"
227 gnu_ld="$gnu_ld_flag"
228 enable_threads=$enable_threads_flag
229 default_use_cxa_atexit=no
230 target_gtfiles=
231 need_64bit_hwint=
232
233 # Don't carry these over build->host->target.  Please.
234 xm_file=
235 md_file=
236
237 # Obsolete configurations.
238 case $machine in
239  dummy)
240     if test "x$enable_obsolete" != xyes; then
241       echo "*** Configuration $machine is obsolete." >&2
242       echo "*** Specify --enable-obsolete to build it anyway." >&2
243       echo "*** Support will be REMOVED in the next major release of GCC," >&2
244       echo "*** unless a maintainer comes forward." >&2
245       exit 1
246     fi;;
247 esac
248
249 # Unsupported targets list.  Do not put an entry in this list unless
250 # it would otherwise be caught by a more permissive pattern.  The list
251 # should be in alphabetical order.
252 case $machine in
253    alpha*-*-linux*libc1*                \
254  | i[34567]86-sequent-sysv*             \
255  | i[34567]86-go32-*                    \
256  | i[34567]86-*-go32*                   \
257  | m68k-*-linux*aout*                   \
258  | m68k-*-linux*libc1*                  \
259  | mips64orion*-*-rtems*                \
260  | powerpc-*-linux*libc1*               \
261  | sparc-*-linux*aout*                  \
262  | sparc-*-linux*libc1*                 \
263  | sparc-hal-solaris2*                  \
264  | thumb-*-*                            \
265  | *-*-linux*coff*                      \
266  | *-*-linux*oldld*                     \
267  | *-*-rtemsaout*                       \
268  | *-*-rtemscoff*                       \
269  )
270         echo "*** Configuration $machine not supported" 1>&2
271         exit 1
272         ;;
273 esac
274
275 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
276 # updated in each machine entry.  Also set default extra_headers for some
277 # machines.
278 tm_p_file=
279 cpu_type=`echo $machine | sed 's/-.*$//'`
280 case $machine in
281 alpha*-*-*)
282         cpu_type=alpha
283         need_64bit_hwint=yes
284         ;;
285 strongarm*-*-*)
286         cpu_type=arm
287         ;;
288 arm*-*-*)
289         cpu_type=arm
290         ;;
291 ep9312*-*-*)
292         cpu_type=arm
293         ;;
294 xscale-*-*)
295         cpu_type=arm
296         ;;
297 i[34567]86-*-*)
298         cpu_type=i386
299         extra_headers="mmintrin.h xmmintrin.h"
300         ;;
301 x86_64-*-*)
302         cpu_type=i386
303         extra_headers="mmintrin.h xmmintrin.h"
304         need_64bit_hwint=yes
305         ;;
306 ia64-*-*)
307         extra_headers=ia64intrin.h
308         need_64bit_hwint=yes
309         ;;
310 hppa*-*-* | parisc*-*-*)
311         cpu_type=pa
312         ;;
313 m680[012]0-*-*)
314         cpu_type=m68k
315         extra_headers=math-68881.h
316         ;;
317 m68k-*-*)
318         extra_headers=math-68881.h
319         ;;
320 mips*-*-*)
321         cpu_type=mips
322         need_64bit_hwint=yes
323         ;;
324 powerpc*-*-*)
325         cpu_type=rs6000
326         extra_headers="ppc-asm.h altivec.h spe.h"
327         need_64bit_hwint=yes
328         ;;
329 rs6000*-*-*)
330         need_64bit_hwint=yes
331         ;;
332 sparc64*-*-*)
333         cpu_type=sparc
334         need_64bit_hwint=yes
335         ;;
336 sparc*-*-*)
337         cpu_type=sparc
338         ;;
339 s390*-*-*)
340         need_64bit_hwint=yes
341         ;;
342 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
343 sh[123456789l]*-*-*)
344         cpu_type=sh
345         need_64bit_hwint=yes
346         ;;
347 tic4x-*-*)
348         cpu_type=c4x
349         ;;
350 esac
351
352 tm_file=${cpu_type}/${cpu_type}.h
353 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
354 then
355         tm_p_file=${cpu_type}/${cpu_type}-protos.h
356 fi
357 extra_modes=
358 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
359 then
360         extra_modes=${cpu_type}/${cpu_type}-modes.def
361 fi
362
363 case $machine in
364 x86_64-*-*)
365         tm_file="i386/biarch64.h ${tm_file}"
366         ;;
367 esac
368
369 # On a.out targets, we need to use collect2.
370 case $machine in
371 *-*-*aout*)
372         use_collect2=yes
373         ;;
374 esac
375
376 # Common parts for widely ported systems.
377 case $machine in
378 *-*-linux*)
379         case $machine in
380          *-*-linux*libc1* | *-*-linux*aout*)
381                 ;;
382         *)
383                 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
384                 gas=yes gnu_ld=yes
385                 case x${enable_threads} in
386                         x | xyes | xposix) thread_file='posix'
387                         ;;
388                 esac
389                 ;;
390         esac
391         ;;
392 *-*-gnu*)
393         # On the Hurd, the setup is just about the same on
394         # each different CPU.  The specific machines that we
395         # support are matched above and just set $cpu_type.
396         tm_file="${cpu_type}/gnu.h"
397         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
398         # GNU always uses ELF.
399         elf=yes
400         # GNU tools are the only tools.
401         gnu_ld=yes
402         gas=yes
403         # These details are the same as for Linux.
404         # But here we need a little extra magic.
405         tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
406         case $machine in
407         alpha*)
408                 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
409                 ;;
410         i[34567]86-*-*)
411                 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}"
412                 ;;
413         esac
414         ;;
415 *-*-openbsd*)
416         tm_file=${cpu_type}/openbsd.h
417         tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
418         if test x$enable_threads = xyes; then
419                 thread_file='posix'
420                 tmake_file="${tmake_file} t-openbsd-thread"
421         fi
422         ;;
423 *-*-netbsd*)
424         tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd"
425         gas=yes
426         gnu_ld=yes
427
428         # NetBSD 2.0 and later get POSIX threads enabled by default.
429         # Allow them to be explicitly enabled on any other version.
430         case x${enable_threads} in
431         x)
432                 case $machine in
433                 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
434                         thread_file='posix'
435                         tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
436                         ;;
437                 esac
438                 ;;
439         xyes | xposix)
440                 thread_file='posix'
441                 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
442                 ;;
443         esac
444
445         # NetBSD 1.7 and later are set up to use GCC's crtstuff for
446         # ELF configurations.  We will clear extra_parts in the
447         # a.out configurations.
448         case $machine in
449         *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
450                 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
451                 ;;
452         esac
453
454         # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
455         # default (unless overridden by --disable-__cxa_atexit).
456         case $machine in
457         *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
458                 default_use_cxa_atexit=yes
459                 ;;
460         esac
461         ;;
462 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
463         # This is the place-holder for the generic a.out configuration
464         # of FreeBSD.  No actual configuration resides here since
465         # there was only ever a bare-bones ix86 configuration for
466         # a.out and it exists solely in the machine-specific section.
467         # This place-holder must exist to avoid dropping into
468         # the generic ELF configuration of FreeBSD (i.e. it must be
469         # ordered before that section).
470         ;;
471 *-*-freebsd*)
472         # This is the generic ELF configuration of FreeBSD.  Later
473         # machine-specific sections may refine and add to this
474         # configuration.
475         #
476         # Due to tm_file entry ordering issues that vary between cpu
477         # architectures, we only define fbsd_tm_file to allow the
478         # machine-specific section to dictate the final order of all
479         # entries of tm_file with the minor exception that components
480         # of the tm_file set here will always be of the form:
481         #
482         # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
483         #
484         # The machine-specific section should not tamper with this
485         # ordering but may order all other entries of tm_file as it
486         # pleases around the provided core setting.
487         gas=yes
488         gnu_ld=yes
489         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
490         case $machine in
491         *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
492         *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
493         *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
494         *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
495         *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
496         esac
497         tmake_file="t-slibgcc-elf-ver t-freebsd"
498         xmake_file=none
499         case x${enable_threads} in
500         xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
501         x | xyes | xpthreads | xposix)
502                 thread_file='posix'
503                 tmake_file="${tmake_file} t-freebsd-thread"
504                 # Before 5.0, FreeBSD can't bind shared libraries to -lc
505                 # when "optionally" threaded via weak pthread_* checks.
506                 case $machine in
507                 *-*-freebsd[34] | *-*-freebsd[34].*)
508                         tmake_file="${tmake_file} t-slibgcc-nolc-override";;
509                 esac
510                 ;;
511         *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
512         esac
513         fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
514         ;;
515 *-*-darwin*)
516         tm_file="${tm_file} darwin.h"
517         tm_p_file="${tm_p_file} darwin-protos.h"
518         tmake_file="t-darwin"
519         target_gtfiles="\$(srcdir)/config/darwin.c"
520         c_target_objs="darwin-c.o"
521         cxx_target_objs="darwin-c.o"
522         extra_parts="crt2.o"
523         extra_objs="darwin.o"
524         ;;      
525 *-*-vxworks*)
526         tmake_file=t-vxworks
527         tm_file="${tm_file} elfos.h svr4.h vxworks.h"
528         thread_file='vxworks'
529         use_collect2=yes
530         ;;
531 esac
532
533 case $machine in
534 # Support site-specific machine types.
535 *local*)
536         rest=`echo $machine | sed -e "s/$cpu_type-//"`
537         tm_file=${cpu_type}/$rest.h
538         if test -f $srcdir/config/${cpu_type}/xm-$rest.h
539         then xm_file=${cpu_type}/xm-$rest.h
540         fi
541         if test -f $srcdir/config/${cpu_type}/x-$rest
542         then xmake_file=${cpu_type}/x-$rest
543         fi
544         if test -f $srcdir/config/${cpu_type}/t-$rest
545         then tmake_file=${cpu_type}/t-$rest
546         fi
547         ;;
548 alpha*-*-unicosmk*)
549         use_collect2=yes
550         tm_file="${tm_file} alpha/unicosmk.h"
551
552         # Don't include t-ieee for now because we don't support that yet
553         # tmake_file="alpha/t-ieee"
554         tmake_file="alpha/t-unicosmk"
555         ;;
556 alpha*-*-linux*)
557         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
558         target_cpu_default="MASK_GAS"
559         tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
560         ;;
561 alpha*-*-gnu*)
562         target_cpu_default="MASK_GAS"
563         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
564         ;;
565 alpha*-*-freebsd*)
566         tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
567         target_cpu_default="MASK_GAS"
568         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
569         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
570         ;;
571 alpha*-*-netbsd*)
572         tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
573         target_cpu_default="MASK_GAS"
574         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
575         ;;
576
577 alpha*-*-openbsd*)
578         tm_file="${cpu_type}/${cpu_type}.h ${tm_file}"
579         # default x-alpha is only appropriate for dec-osf.
580         target_cpu_default="MASK_GAS"
581         tmake_file="alpha/t-alpha alpha/t-ieee"
582         ;;
583
584 alpha*-dec-osf[45]*)
585         if test x$stabs = xyes
586         then
587                 tm_file="${tm_file} dbx.h"
588         fi
589         if test x$gas != xyes
590         then
591                 extra_passes="mips-tfile mips-tdump"
592         fi
593         use_collect2=yes
594         tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
595         tm_file="${tm_file} alpha/osf.h"
596         extra_headers=va_list.h
597         case $machine in
598           *-*-osf4*)
599             # Some versions of OSF4 (specifically X4.0-9 296.7) have
600             # a broken tar, so we use cpio instead.
601             install_headers_dir=install-headers-cpio
602             # Set target_cpu_default except on 4.0a.
603             case $machine in
604                 *-*-osf4.0a) ;;
605                 *) target_cpu_default=MASK_SUPPORT_ARCH
606             esac
607             ;;
608           *-*-osf5*)
609             tm_file="${tm_file} alpha/osf5.h"
610             target_cpu_default=MASK_SUPPORT_ARCH
611             ;;
612         esac
613         ;;
614 alpha64-dec-*vms*)
615         tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
616         xm_file="alpha/xm-vms.h"
617         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
618         xmake_file=alpha/x-vms
619         exeext=.exe
620         # This removes the cpu type and manufacturer components and
621         #  replaces "." with "_" in the operating system version.
622         case $host in *-*-*vms*)
623                 target_alias=`echo $host \
624                   | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
625                 ;;
626         esac
627         install_headers_dir=install-headers-cp
628         prefix=/gnu
629         local_prefix=/gnu
630         ;;
631 alpha*-dec-*vms*)
632         tm_file="${tm_file} alpha/vms.h"
633         xm_file=alpha/xm-vms.h
634         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
635         xmake_file=alpha/x-vms
636         exeext=.exe
637         # This removes the cpu type and manufacturer components and
638         #  replaces "." with "_" in the operating system version.
639         case $host in *-*-*vms*)
640                 target_alias=`echo $host \
641                   | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
642                 ;;
643         esac
644         install_headers_dir=install-headers-cp
645         prefix=/gnu
646         local_prefix=/gnu
647         ;;
648 arc-*-elf*)
649         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
650         extra_parts="crtinit.o crtfini.o"
651         ;;
652 arm-*-coff* | armel-*-coff*)
653         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
654         tmake_file=arm/t-arm-coff
655         ;;
656 arm-semi-aof | armel-semi-aof)
657         tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
658         tmake_file=arm/t-semi
659         ;;
660 arm*-*-freebsd*|strongarm*-*-freebsd*)
661         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
662         tmake_file="${tmake_file} arm/t-strongarm-elf"
663         ;;
664 arm*-*-netbsdelf*)
665         tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
666         tmake_file="${tmake_file} arm/t-netbsd"
667         ;;
668 arm*-*-netbsd*)
669         tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
670         tmake_file="t-netbsd arm/t-netbsd"
671         extra_parts=""
672         use_collect2=yes
673         ;;
674 arm*-*-linux*)                  # ARM GNU/Linux with ELF
675         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"
676         tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
677         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
678         gnu_ld=yes
679         case x${enable_threads} in
680         x | xyes | xpthreads | xposix)
681                 thread_file='posix'
682                 ;;
683         esac
684         ;;
685 arm*-*-uclinux*)                # ARM ucLinux
686         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"
687         tmake_file=arm/t-arm-elf
688         ;;
689 arm*-*-ecos-elf)
690         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
691         tmake_file=arm/t-arm-elf
692         ;;
693 arm*-*-rtems*)
694         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"
695         tmake_file="arm/t-arm-elf t-rtems"
696         if test x$enable_threads = xyes; then
697           thread_file='rtems'
698         fi
699         ;;
700 arm*-*-elf | ep9312-*-elf)
701         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
702         tmake_file=arm/t-arm-elf
703         ;;
704 arm-*-pe*)
705         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
706         tmake_file=arm/t-pe
707         extra_objs="pe.o"
708         ;;
709 avr-*-*)
710         ;;
711 c4x-*-rtems* | tic4x-*-rtems*)
712         tmake_file="c4x/t-c4x t-rtems"
713         tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
714         if test x$enable_threads = xyes; then
715           thread_file='rtems'
716         fi
717         c_target_objs="c4x-c.o"
718         cxx_target_objs="c4x-c.o"
719         ;;
720 c4x-* | tic4x-*)
721         tmake_file=c4x/t-c4x
722         c_target_objs="c4x-c.o"
723         cxx_target_objs="c4x-c.o"
724         ;;
725 cris-*-aout)
726         tm_file="dbxelf.h ${tm_file} cris/aout.h"
727         gas=yes
728         tmake_file="cris/t-cris cris/t-aout"
729         ;;
730 cris-*-elf | cris-*-none)
731         tm_file="dbxelf.h elfos.h ${tm_file}"
732         tmake_file="cris/t-cris cris/t-elfmulti"
733         gas=yes
734         ;;
735 cris-*-linux*)
736         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
737         tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
738         ;;
739 d30v-*)
740         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
741         ;;
742 dsp16xx-*)
743         ;;
744 fr30-*-elf)
745         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
746         tmake_file=fr30/t-fr30
747         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
748         ;;
749 frv-*-elf)
750         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
751         tmake_file=frv/t-frv
752         ;;
753 h8300-*-rtems*)
754         tmake_file="h8300/t-h8300 t-rtems"
755         tm_file="h8300/h8300.h h8300/rtems.h rtems.h"
756         if test x$enable_threads = xyes; then
757           thread_file='rtems'
758         fi
759         ;;
760 h8300-*-elf*)
761         tmake_file="h8300/t-h8300 h8300/t-elf"
762         tm_file="h8300/h8300.h h8300/elf.h"
763         ;;
764 h8300-*-*)
765         ;;
766 hppa*64*-*-linux* | parisc*64*-*-linux*)
767         target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
768         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
769                  pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
770         tmake_file=pa/t-linux64
771         gas=yes gnu_ld=yes
772         need_64bit_hwint=yes
773         ;;
774 hppa*-*-linux* | parisc*-*-linux*)
775         target_cpu_default="MASK_PA_11 | MASK_NO_SPACE_REGS"
776         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
777                  pa/pa32-regs.h pa/pa32-linux.h"
778         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
779         ;;
780 hppa*-*-openbsd*)
781         target_cpu_default="MASK_PA_11"
782         tmake_file=pa/t-bsd
783         ;;
784 hppa1.1-*-pro*)
785         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
786         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
787         tmake_file="pa/t-bsd pa/t-pro"
788         xmake_file="pa/x-ada"
789         ;;
790 hppa1.1-*-osf*)
791         target_cpu_default="MASK_PA_11"
792         tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
793         tmake_file="pa/t-bsd pa/t-pa"
794         xmake_file="pa/x-ada"
795         use_collect2=yes
796         ;;
797 hppa1.1-*-rtems*)
798         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
799         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"
800         tmake_file="pa/t-bsd pa/t-pro t-rtems"
801         xmake_file="pa/x-ada"
802         if test x$enable_threads = xyes; then
803           thread_file='rtems'
804         fi
805         ;;
806 hppa1.1-*-bsd*)
807         tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
808         target_cpu_default="MASK_PA_11"
809         tmake_file="pa/t-bsd pa/t-pa"
810         xmake_file="pa/x-ada"
811         use_collect2=yes
812         ;;
813 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
814         target_cpu_default="MASK_PA_11"
815         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
816         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
817         xmake_file="pa/x-ada"
818         if test x$enable_threads = x; then
819             enable_threads=$have_pthread_h
820         fi
821         case x${enable_threads} in
822         xyes | xdce)
823                 tmake_file="${tmake_file} pa/t-dce-thr"
824                 ;;
825         esac
826         install_headers_dir=install-headers-cpio
827         use_collect2=yes
828         ;;
829 hppa1.0-*-hpux10*)
830         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
831         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
832         xmake_file="pa/x-ada"
833         if test x$enable_threads = x; then
834             enable_threads=$have_pthread_h
835         fi
836         case x${enable_threads} in
837         xyes | xdce)
838                 tmake_file="${tmake_file} pa/t-dce-thr"
839                 ;;
840         esac
841         install_headers_dir=install-headers-cpio
842         use_collect2=yes
843         ;;
844 hppa*64*-*-hpux11*)
845         if test x$gas = xyes
846         then
847                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h  \
848                          pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
849                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
850         else
851                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
852                          pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
853                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
854         fi
855         need_64bit_hwint=yes
856         tmake_file="pa/t-pa64 pa/t-pa-hpux"
857         xmake_file="pa/x-ada"
858         target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
859         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
860         if test x$gnu_ld = xyes
861         then
862                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
863         fi
864 #       if [ x$enable_threads = x ]; then
865 #           enable_threads=$have_pthread_h
866 #       fi
867 #       if [ x$enable_threads = xyes ]; then
868 #               thread_file='dce'
869 #               tmake_file="${tmake_file} pa/t-dce-thr"
870 #       fi
871         install_headers_dir=install-headers-cpio
872         ;;
873 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
874         target_cpu_default="MASK_PA_11"
875         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
876         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
877         xmake_file="pa/x-ada"
878 #       if test x$enable_threads = x; then
879 #           enable_threads=$have_pthread_h
880 #       fi
881 #       if test x$enable_threads = xyes; then
882 #               thread_file='dce'
883 #               tmake_file="${tmake_file} pa/t-dce-thr"
884 #       fi
885         install_headers_dir=install-headers-cpio
886         use_collect2=yes
887         ;;
888 hppa1.0-*-hpux11*)
889         tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
890         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
891         xmake_file="pa/x-ada"
892 #       if test x$enable_threads = x; then
893 #           enable_threads=$have_pthread_h
894 #       fi
895 #       if test x$enable_threads = xyes; then
896 #               thread_file='dce'
897 #               tmake_file="${tmake_file} pa/t-dce-thr"
898 #       fi
899         install_headers_dir=install-headers-cpio
900         use_collect2=yes
901         ;;
902 i370-*-opened*)                  # IBM 360/370/390 Architecture
903         xm_defines='FATAL_EXIT_CODE=12'
904         tm_file=i370/oe.h
905         tmake_file="i370/t-oe i370/t-i370"
906         c_target_objs="i370-c.o"
907         cxx_target_objs="i370-c.o"
908         ;;
909 i370-*-mvs*)
910         xm_defines='FATAL_EXIT_CODE=12'
911         tm_file=i370/mvs.h
912         tmake_file="i370/t-i370"
913         c_target_objs="i370-c.o"
914         cxx_target_objs="i370-c.o"
915         ;;
916 i370-*-linux*)
917         tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
918         tmake_file="t-slibgcc-elf-ver t-linux"
919         # broken_install=yes
920         elf=yes
921         ;;
922 i[34567]86-*-darwin*)
923         tm_file="${tm_file} i386/darwin.h"
924         ;;
925 i[34567]86-*-elf*)
926         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
927         tmake_file="i386/t-i386elf t-svr4"
928         ;;
929 i[34567]86-ncr-sysv4*)          # NCR 3000 - ix86 running system V.4
930         xm_defines="SMALL_ARG_MAX"
931         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
932         extra_parts="crtbegin.o crtend.o"
933         tmake_file=i386/t-crtpic
934         ;;
935 i[34567]86-*-netware)           # Intel 80386's running netware
936         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
937         tmake_file=i386/t-netware
938         ;;
939 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
940         if test x$gas = xyes
941         then
942                 tm_file="${tm_file} usegas.h"
943         fi
944         xm_defines="SMALL_ARG_MAX"
945         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
946         tmake_file=t-svr4
947         extra_parts="crtbegin.o crtend.o"
948         install_headers_dir=install-headers-cpio
949         ;;
950 i[34567]86-*-aout*)
951         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
952         ;;
953 i[34567]86-*-beoself* | i[34567]86-*-beos*)
954         tmake_file='i386/t-beos i386/t-crtpic'
955         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
956         extra_parts='crtbegin.o crtend.o'
957         ;;
958 i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
959         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
960         tmake_file=t-freebsd
961         ;;
962 i[34567]86-*-freebsd*)
963         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
964         ;;
965 x86_64-*-freebsd*)
966         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"
967         ;;
968 i[34567]86-*-netbsdelf*)
969         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
970         ;;
971 i[34567]86-*-netbsd*)
972         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
973         tmake_file=t-netbsd
974         extra_parts=""
975         use_collect2=yes
976         ;;
977 x86_64-*-netbsd*)
978         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"
979         ;;
980 i[34567]86-*-openbsd*)
981         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}"
982         # needed to unconfuse gdb
983         tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
984         # we need collect2 until our bug is fixed...
985         use_collect2=yes
986         ;;
987 i[34567]86-*-coff*)
988         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
989         ;;
990 i[34567]86-*-linux*aout*)       # Intel 80386's running GNU/Linux
991                                 # with a.out format
992         tmake_file="t-linux-aout i386/t-crtstuff"
993         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
994         gnu_ld=yes
995         ;;
996 i[34567]86-*-linux*libc1)       # Intel 80386's running GNU/Linux
997                                 # with ELF format using the
998                                 # GNU/Linux C library 5
999         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1000         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
1001         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1002         gnu_ld=yes
1003         if test x$enable_threads = xyes; then
1004                 thread_file='single'
1005         fi
1006         ;;
1007 i[34567]86-*-linux*)    # Intel 80386's running GNU/Linux
1008                         # with ELF format using glibc 2
1009                         # aka GNU/Linux C library 6
1010         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1011         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1012         ;;
1013 x86_64-*-linux*)
1014         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
1015                  i386/x86-64.h i386/linux64.h"
1016         tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64"
1017         ;;
1018 i[34567]86-*-gnu*)
1019         ;;
1020 i[34567]86-pc-msdosdjgpp*)
1021         xm_file=i386/xm-djgpp.h
1022         tm_file="dbxcoff.h ${tm_file} i386/djgpp.h"
1023         tmake_file=i386/t-djgpp
1024         gnu_ld=yes
1025         gas=yes
1026         exeext=.exe
1027         case $host in *pc-msdosdjgpp*)
1028                 target_alias=djgpp
1029                 ;;
1030         esac
1031         ;;
1032 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1033         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
1034         tmake_file=t-libc-ok
1035         gnu_ld=yes
1036         gas=yes
1037         ;;
1038 i[34567]86-*-lynxos*)
1039         if test x$gas = xyes
1040         then
1041                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h"
1042         else
1043                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
1044         fi
1045         ;;
1046 i[34567]86-*-mach*)
1047         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
1048 #       tmake_file=t-libc-ok
1049         use_collect2=yes
1050         ;;
1051 i[34567]86-*-rtems*)
1052         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
1053         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1054         tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1055         if test x$enable_threads = xyes; then
1056           thread_file='rtems'
1057         fi
1058         ;;
1059 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1060         install_headers_dir=install-headers-cpio
1061         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sco5.h"
1062         if test x$gas = xyes
1063         then
1064                 tm_file="usegas.h ${tm_file}"
1065         fi
1066         tmake_file=i386/t-sco5
1067         extra_parts="crtbegin.o crtend.o"
1068         ;;
1069 i[34567]86-*-solaris2*)
1070         xm_defines="SMALL_ARG_MAX"
1071         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
1072         tmake_file="i386/t-sol2 t-svr4"
1073         if test x$gnu_ld = xyes; then
1074                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1075         else
1076                 tmake_file="$tmake_file t-slibgcc-sld"
1077         fi
1078         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1079         if test x${enable_threads} = x; then
1080             enable_threads=$have_pthread_h
1081             if test x${enable_threads} = x; then
1082                 enable_threads=$have_thread_h
1083             fi
1084         fi
1085         if test x${enable_threads} = xyes; then
1086             if test x${have_pthread_h} = xyes; then
1087                 thread_file='posix'
1088             else
1089                 thread_file='solaris'
1090             fi
1091         fi
1092         ;;
1093 i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
1094        tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1095        if test x$stabs = xyes
1096        then
1097                tm_file="${tm_file} dbx.h"
1098        fi
1099        tmake_file="i386/t-crtpic t-svr4"
1100        extra_parts="crtbegin.o crtend.o"
1101        if test x$enable_threads = xyes; then
1102                thread_file='posix'
1103        fi
1104        ;;
1105 i[34567]86-*-sysv4*)            # Intel 80386's running system V.4
1106         xm_defines="SMALL_ARG_MAX"
1107         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1108         if test x$stabs = xyes
1109         then
1110                 tm_file="${tm_file} dbx.h"
1111         fi
1112         tmake_file="i386/t-crtpic t-svr4"
1113         extra_parts="crtbegin.o crtend.o"
1114         ;;
1115 i[34567]86-*-udk*)      # Intel x86 on SCO UW/OSR5 Dev Kit
1116         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"
1117         tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1118         extra_parts="crtbegin.o crtend.o"
1119         install_headers_dir=install-headers-cpio
1120         ;;
1121 i[34567]86-*-sysv*)             # Intel 80386's running system V
1122         if test x$gas = xyes
1123         then
1124                 if test x$stabs = xyes
1125                 then
1126                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
1127                         tmake_file=i386/t-svr3dbx
1128                         extra_parts="svr3.ifile svr3z.ifile"
1129                 else
1130                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
1131                         extra_parts="crtbegin.o crtend.o"
1132                         tmake_file=i386/t-crtstuff
1133                 fi
1134         else
1135                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
1136                 extra_parts="crtbegin.o crtend.o"
1137                 tmake_file=i386/t-crtstuff
1138         fi
1139         tmake_file="$tmake_file i386/t-crtpic"
1140         ;;
1141 i386-*-vsta)                    # Intel 80386's running VSTa kernel
1142         xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h"
1143         tm_file="${tm_file} i386/vsta.h"
1144         ;;
1145 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1146         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
1147         xm_file=i386/xm-cygwin.h
1148         tmake_file="i386/t-cygming i386/t-cygwin"
1149         extra_objs=winnt.o
1150         c_target_objs=cygwin2.o
1151         cxx_target_objs=cygwin2.o
1152         if test x$enable_threads = xyes; then
1153                 thread_file='posix'
1154         fi
1155         exeext=.exe
1156         ;;
1157 i[34567]86-*-mingw32*)
1158         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
1159         xm_file=i386/xm-mingw32.h
1160         tmake_file="i386/t-cygming i386/t-mingw32"
1161         xmake_file=i386/x-mingw32
1162         extra_objs=winnt.o
1163         if test x$enable_threads = xyes; then
1164                 thread_file='win32'
1165         fi
1166         exeext=.exe
1167         case $machine in
1168                 *mingw32crt*)
1169                         tm_file="${tm_file} i386/crtdll.h"
1170                         ;;
1171                 *mingw32msv* | *mingw32*)
1172                         ;;
1173         esac
1174         ;;
1175 i[34567]86-*-uwin*)
1176         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h"
1177         tmake_file="i386/t-cygwin i386/t-uwin"
1178         extra_objs=winnt.o
1179         if test x$enable_threads = xyes; then
1180                 thread_file='win32'
1181         fi
1182         exeext=.exe
1183         ;;
1184 i[34567]86-*-interix3*)
1185         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"
1186         tmake_file="t-interix i386/t-interix"
1187         extra_objs=winnt.o
1188         xmake_file="x-interix"
1189         if test x$enable_threads = xyes ; then
1190                 thread_file='posix'
1191         fi
1192         if test x$stabs = xyes ; then
1193                 tm_file="${tm_file} dbxcoff.h"
1194         fi
1195         ;;
1196 i[34567]86-*-interix*)
1197         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
1198         tmake_file="t-interix i386/t-interix"
1199         extra_objs=winnt.o
1200         if test x$enable_threads = xyes ; then
1201                 thread_file='posix'
1202         fi
1203         if test x$stabs = xyes ; then
1204                 tm_file="${tm_file} dbxcoff.h"
1205         fi
1206         ;;
1207 i960-*-coff*)
1208         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1209         tmake_file=i960/t-960bare
1210         c_target_objs="i960-c.o"
1211         cxx_target_objs="i960-c.o"
1212         ;;
1213 i960-*-rtems)
1214         tmake_file="i960/t-960bare t-rtems"
1215         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
1216         if test x$enable_threads = xyes; then
1217           thread_file='rtems'
1218         fi
1219         c_target_objs="i960-c.o"
1220         cxx_target_objs="i960-c.o"
1221         ;;
1222 i960-*-*)                       # Default i960 environment.
1223         use_collect2=yes
1224         tmake_file=i960/t-960bare
1225         c_target_objs="i960-c.o"
1226         cxx_target_objs="i960-c.o"
1227         ;;
1228 ia64*-*-elf*)
1229         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1230         tmake_file="ia64/t-ia64"
1231         target_cpu_default="0"
1232         if test x$gas = xyes
1233         then
1234                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1235         fi
1236         if test x$gnu_ld = xyes
1237         then
1238                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1239         fi
1240         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1241         ;;
1242 ia64*-*-freebsd*)
1243         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1244         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1245         tmake_file="${tmake_file} ia64/t-ia64"
1246         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1247         ;;
1248 ia64*-*-linux*)
1249         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1250         tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1251         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1252         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1253         if test x"$use_libunwind_exceptions" = xyes; then
1254           tmake_file="$tmake_file t-libunwind"
1255         fi
1256         ;;
1257 ia64*-*-hpux*)
1258         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1259         tmake_file="ia64/t-ia64 ia64/t-hpux"
1260         target_cpu_default="MASK_GNU_AS"
1261         if test x$enable_threads = xyes; then
1262                 thread_file='posix'
1263         fi
1264         use_collect2=no
1265         c_target_objs="ia64-c.o"
1266         cxx_target_objs="ia64-c.o"
1267         ;;
1268 ip2k-*-elf)
1269         ;;
1270 m32r-*-elf*)
1271         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1272         extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
1273         ;;
1274 # m68hc11 and m68hc12 share the same machine description.
1275 m68hc11-*-*|m6811-*-*)
1276         tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1277         tm_p_file="m68hc11/m68hc11-protos.h"
1278         md_file="m68hc11/m68hc11.md"
1279         out_file="m68hc11/m68hc11.c"
1280         tmake_file="m68hc11/t-m68hc11-gas"
1281         ;;
1282 m68hc12-*-*|m6812-*-*)
1283         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1284         tm_p_file="m68hc11/m68hc11-protos.h"
1285         md_file="m68hc11/m68hc11.md"
1286         out_file="m68hc11/m68hc11.c"
1287         tmake_file="m68hc11/t-m68hc11-gas"
1288         ;;
1289 m68000-hp-hpux*)                # HP 9000 series 300
1290         if test x$gas = xyes
1291         then
1292                 tm_file=m68k/hp310g.h
1293         else
1294                 tm_file=m68k/hp310.h
1295         fi
1296         tmake_file=m68k/t-hp320
1297         install_headers_dir=install-headers-cpio
1298         use_collect2=yes
1299         ;;
1300 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1301         if test x$gas = xyes
1302         then
1303                 tm_file=m68k/hp320g.h
1304         else
1305                 tm_file=m68k/hpux7.h
1306         fi
1307         install_headers_dir=install-headers-cpio
1308         use_collect2=yes
1309         ;;
1310 m68k-hp-hpux*)  # HP 9000 series 300
1311         if test x$gas = xyes
1312         then
1313                 tm_file=m68k/hp320g.h
1314         else
1315                 tm_file=m68k/hp320.h
1316         fi
1317         install_headers_dir=install-headers-cpio
1318         use_collect2=yes
1319         ;;
1320 m68k-*-aout*)
1321         tmake_file=m68k/t-m68kbare
1322         tm_file="m68k/m68k-aout.h libgloss.h"
1323         ;;
1324 m68k-*-coff*)
1325         tmake_file=m68k/t-m68kbare
1326         tm_file="m68k/m68k-coff.h dbx.h"
1327         ;;
1328 m68020-*-elf* | m68k-*-elf*)
1329         tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1330         tmake_file=m68k/t-m68kelf
1331         extra_parts="crtbegin.o crtend.o"
1332         ;;
1333 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1334         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1335         case $machine in
1336         m68010*)
1337                 target_cpu_default="0"
1338                 ;;
1339         *)
1340                 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1341                 ;;
1342         esac
1343         ;;
1344 m68k*-*-netbsd*)
1345         tm_file=m68k/netbsd.h
1346         tmake_file=t-netbsd
1347         extra_parts=""
1348         use_collect2=yes
1349         ;;
1350 m68k*-*-openbsd*)
1351         # needed to unconfuse gdb
1352         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1353         # we need collect2 until our bug is fixed...
1354         use_collect2=yes
1355         ;;
1356 m68k-*-sysv4*)                  # Motorola m68k's running system V.4
1357         tm_file=m68k/m68kv4.h
1358         tmake_file=t-svr4
1359         extra_parts="crtbegin.o crtend.o"
1360         ;;
1361 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1362                                 # with ELF format using glibc 2
1363                                 # aka the GNU/Linux C library 6.
1364         tm_file=m68k/linux.h
1365         tmake_file="t-slibgcc-elf-ver t-linux"
1366         ;;
1367 m68k-*-rtems*)
1368         tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
1369         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"
1370         extra_parts="crtbegin.o crtend.o"
1371         if test x$enable_threads = xyes; then
1372           thread_file='rtems'
1373         fi
1374         ;;
1375 mcore-*-elf)
1376         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
1377         tmake_file=mcore/t-mcore
1378         ;;
1379 mcore-*-pe*)
1380         tm_file=mcore/mcore-pe.h
1381         tmake_file=mcore/t-mcore-pe
1382         ;;
1383 mips-sgi-irix6*o32)             # SGI System V.4., IRIX 6, O32 ABI
1384         if test x$gas = xyes
1385         then
1386                 tm_file="mips/iris5.h mips/iris5gas.h mips/iris6-o32-gas.h"
1387                 if test x$stabs = xyes
1388                 then
1389                         tm_file="${tm_file} dbx.h"
1390                 fi
1391                 tmake_file=mips/t-iris5-gas
1392         else
1393                 tm_file="mips/iris5.h mips/iris6-o32-as.h"
1394                 tmake_file=mips/t-iris5-as
1395         fi
1396         tm_file="${tm_file} mips/iris6-o32.h"
1397         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1398         xm_file=mips/xm-iris5.h
1399         # mips-tfile doesn't work yet
1400         # See comment in mips/iris5.h file.
1401         use_collect2=yes
1402 #       if test x$enable_threads = xyes; then
1403 #               thread_file='irix'
1404 #       fi
1405         ;;
1406 mips-sgi-irix6*)                # SGI System V.4., IRIX 6
1407         if test "x$gnu_ld" = xyes
1408         then
1409                 tm_file="mips/iris6.h mips/iris6gld.h"
1410         else
1411                 tm_file=mips/iris6.h
1412         fi
1413         tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
1414 #       if test x$enable_threads = xyes; then
1415 #               thread_file='irix'
1416 #       fi
1417         ;;
1418 mips-sgi-irix5cross64)          # Irix5 host, Irix 6 target, cross64
1419         tm_file="mips/iris6.h mips/cross64.h"
1420         xm_file=mips/xm-iris5.h
1421         tmake_file="mips/t-iris mips/t-cross64"
1422         # See comment in mips/iris[56].h files.
1423         use_collect2=yes
1424 #       if test x$enable_threads = xyes; then
1425 #               thread_file='irix'
1426 #       fi
1427         ;;
1428 mips-sgi-irix5*)                # SGI System V.4., IRIX 5
1429         if test x$gas = xyes
1430         then
1431                 tm_file="mips/iris5.h mips/iris5gas.h"
1432                 if test x$stabs = xyes
1433                 then
1434                         tm_file="${tm_file} dbx.h"
1435                 fi
1436                 tmake_file=mips/t-iris5-gas
1437         else
1438                 tm_file=mips/iris5.h
1439                 tmake_file=mips/t-iris5-as
1440         fi
1441         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1442         xm_file=mips/xm-iris5.h
1443         # mips-tfile doesn't work yet
1444         # See comment in mips/iris5.h file.
1445         use_collect2=yes
1446 #       if test x$enable_threads = xyes; then
1447 #               thread_file='irix'
1448 #       fi
1449         ;;
1450 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1451         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1452         tm_file="elfos.h ${tm_file} mips/netbsd.h"
1453         tmake_file="${tmake_file}"
1454         ;;
1455 mips64*-*-linux*)
1456         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
1457         tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux64"
1458
1459         # This default ABI is a partial lie: t-linux64 overrides the
1460         # DRIVER_SELF_SPEC that sets the default abi, in the spec file
1461         # that is installed.  What GCC thinks of as the default must
1462         # remain as ABI_32 such that the SONAMEs of the libgcc shared
1463         # libraries remain compatible with those of mips-linux-gnu.
1464         tm_defines="MIPS_ISA_DEFAULT=1 MIPS_ABI_DEFAULT=ABI_32"
1465         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1466         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1467         gnu_ld=yes
1468         gas=yes
1469         if test x$enable_threads = xyes; then
1470                 thread_file='posix'
1471         fi
1472         ;;
1473 mips*-*-linux*)                         # Linux MIPS, either endian.
1474         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
1475         case $machine in
1476         mipsisa32*-*)
1477                 target_cpu_default="MASK_SOFT_FLOAT"
1478                 tm_defines="MIPS_ISA_DEFAULT=32"
1479                 ;;
1480         esac
1481         tmake_file="t-slibgcc-elf-ver t-linux"
1482         ;;
1483 mips*el-*-openbsd*)     # mips little endian
1484         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1485         ;;
1486 mips*-*-openbsd*)               # mips big endian
1487         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1488         tm_file="mips/openbsd-be.h ${tm_file}"
1489         ;;
1490 mipsisa32-*-elf* | mipsisa32el-*-elf*)
1491         tm_file="${tm_file} mips/elf.h"
1492         tmake_file=mips/t-isa3264
1493         tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_EABI"
1494         ;;
1495 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
1496         tm_file="${tm_file} mips/elf.h"
1497         tmake_file=mips/t-isa3264
1498         tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_EABI"
1499         ;;
1500 mipsisa64-*-elf* | mipsisa64el-*-elf*)
1501         tm_file="${tm_file} mips/elf.h"
1502         tmake_file=mips/t-isa3264
1503         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1504         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_EABI"
1505         ;;
1506 mipsisa64sr71k-*-elf*)
1507         tm_file="${tm_file} mips/elf.h"
1508         tmake_file=mips/t-sr71k
1509         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1510         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
1511         ;;
1512 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1513         tm_file="${tm_file} mips/elf.h"
1514         tmake_file=mips/t-elf
1515         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1516         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1517         ;;
1518 mips-*-elf* | mipsel-*-elf*)
1519         tm_file="${tm_file} mips/elf.h"
1520         tmake_file=mips/t-elf
1521         ;;
1522 mips64-*-elf* | mips64el-*-elf*)
1523         tm_file="${tm_file} mips/elf64.h"
1524         tmake_file=mips/t-elf
1525         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1526         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1527         ;;
1528 mips64vr-*-elf* | mips64vrel-*-elf*)
1529         tm_file="mips/vr.h ${tm_file} mips/elf64.h"
1530         tm_defines="MIPS_ABI_DEFAULT=ABI_O64 MIPS_MARCH_CONTROLS_SOFT_FLOAT=1"
1531         tmake_file=mips/t-vr
1532         ;;
1533 mips64orion-*-elf* | mips64orionel-*-elf*)
1534         tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1535         tmake_file=mips/t-elf
1536         tmake_file=mips/t-elf
1537         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1538         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1539         ;;
1540 mips*-*-rtems*)
1541         tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
1542         tmake_file="mips/t-elf t-rtems"
1543         if test x$enable_threads = xyes; then
1544           thread_file='rtems'
1545         fi
1546         ;;
1547 mipstx39-*-elf* | mipstx39el-*-elf*)
1548         tm_file="${tm_file} mips/r3900.h mips/elf.h"
1549         tmake_file=mips/t-r3900
1550         ;;
1551 mmix-knuth-mmixware)
1552         need_64bit_hwint=yes
1553         ;;
1554 mn10300-*-*)
1555         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1556         if test x$stabs = xyes
1557         then
1558                 tm_file="${tm_file} dbx.h"
1559         fi
1560         use_collect2=no
1561         ;;
1562 ns32k-*-netbsdelf*)
1563         echo "GCC does not yet support the ${machine} target"; exit 1
1564         ;;
1565 ns32k-*-netbsd*)
1566         tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1567         # On NetBSD, the headers are already okay, except for math.h.
1568         tmake_file="t-netbsd ns32k/t-ns32k"
1569         extra_parts=""
1570         use_collect2=yes
1571         ;;
1572 pdp11-*-bsd)
1573         tm_file="${tm_file} pdp11/2bsd.h"
1574         ;;
1575 pdp11-*-*)
1576         ;;
1577 avr-*-*)
1578         ;;
1579 powerpc-*-openbsd*)
1580         tmake_file="${tmake_file} rs6000/t-fprules "
1581         extra_headers=
1582         ;;
1583 powerpc64-*-linux*)
1584         tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1585         case x$with_cpu in
1586         x|xpowerpc64|xdefault64) tm_file="${tm_file} rs6000/default64.h";;
1587         esac
1588         tm_file="${tm_file} rs6000/linux64.h"
1589         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-linux rs6000/t-ppccomm rs6000/t-linux64"
1590         ;;
1591 powerpc64-*-gnu*)
1592         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"
1593         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
1594         ;;
1595 powerpc-*-beos*)
1596         tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
1597         tmake_file="rs6000/t-fprules rs6000/t-beos"
1598         extra_headers=
1599         ;;
1600 powerpc-*-darwin*)
1601         tm_file="${tm_file} rs6000/darwin.h"
1602         tmake_file="rs6000/t-fprules t-darwin rs6000/t-darwin"
1603         extra_headers=altivec.h
1604         # override ppc default
1605         need_64bit_hwint=
1606         # powerpc-darwin host support.
1607         host_hook_obj=host-darwin.o
1608         xmake_file=rs6000/x-darwin
1609         ;;
1610 powerpc*-*-freebsd*)
1611         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1612         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1613         ;;
1614 powerpc-*-netbsd*)
1615         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1616         tmake_file="${tmake_file} rs6000/t-netbsd"
1617         ;;
1618 powerpc-*-chorusos*)
1619         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
1620         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1621         case x${enable_threads} in
1622           xyes | xpthreads | xposix)
1623                 thread_file='posix'
1624                 ;;
1625         esac
1626         ;;
1627 powerpc-*-eabispe*)
1628         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
1629         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
1630         ;;
1631 powerpc-*-eabisimaltivec*)
1632         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"
1633         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1634         ;;
1635 powerpc-*-eabisim*)
1636         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
1637         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1638         ;;
1639 powerpc-*-elf*)
1640         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1641         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1642         ;;
1643 powerpc-*-eabialtivec*)
1644         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
1645         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1646         ;;
1647 powerpc-*-eabi*)
1648         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
1649         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1650         ;;
1651 powerpc-*-rtems*)
1652         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
1653         tmake_file="rs6000/t-fprules t-rtems rs6000/t-ppccomm"
1654         if test x$enable_threads = xyes; then
1655           thread_file='rtems'
1656         fi
1657         ;;
1658 powerpc-*-linux*altivec*)
1659         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
1660         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1661         ;;
1662 powerpc-*-linux*spe*)
1663         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h"
1664         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1665         ;;
1666 powerpc-*-linux*)
1667         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
1668         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1669         ;;
1670 powerpc-*-gnu-gnualtivec*)
1671         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"
1672         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1673         if test x$enable_threads = xyes; then
1674                 thread_file='posix'
1675         fi
1676         ;;
1677 powerpc-*-gnu*)
1678         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"
1679         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1680         if test x$enable_threads = xyes; then
1681                 thread_file='posix'
1682         fi
1683         ;;
1684 powerpc-wrs-vxworks*)
1685         # We want vxworks.h after rs6000/sysv4.h, which unfortunately
1686         # means we have to redo the tm_file list from scratch.
1687         tm_file="rs6000/rs6000.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1688         tm_file="${tm_file} vxworks.h rs6000/vxworks.h"
1689         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
1690         extra_headers=ppc-asm.h
1691         ;;
1692 powerpc-wrs-windiss*)
1693         tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
1694         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1695         thread_file=""
1696         ;;
1697 powerpcle-*-sysv*)
1698         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1699         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1700         ;;
1701 powerpcle-*-elf*)
1702         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1703         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1704         ;;
1705 powerpcle-*-eabisim*)
1706         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"
1707         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1708         ;;
1709 powerpcle-*-eabi*)
1710         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
1711         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1712         ;;
1713 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
1714         tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
1715         tmake_file="rs6000/t-fprules rs6000/t-newas"
1716         use_collect2=yes
1717         extra_headers=
1718         ;;
1719 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
1720         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
1721         tmake_file=rs6000/t-aix43
1722         use_collect2=yes
1723         thread_file='aix'
1724         extra_headers=
1725         ;;
1726 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
1727         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
1728         tmake_file=rs6000/t-aix43
1729         use_collect2=yes
1730         thread_file='aix'
1731         extra_headers=
1732         ;;
1733 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
1734         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
1735         tmake_file=rs6000/t-aix52
1736         use_collect2=yes
1737         thread_file='aix'
1738         extra_headers=
1739         ;;
1740 rs6000-*-lynxos*)
1741         tm_file="lynx.h rs6000/lynx.h"
1742         tmake_file=rs6000/t-fprules
1743         use_collect2=yes
1744         ;;
1745 s390-*-linux*)
1746         tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1747         tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff"
1748         ;;
1749 s390x-*-linux*)
1750         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1751         tm_p_file=s390/s390-protos.h
1752         md_file=s390/s390.md
1753         extra_modes=s390/s390-modes.def
1754         out_file=s390/s390.c
1755         tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff s390/t-linux64"
1756         ;;
1757 sh-*-elf* | sh[2346l]*-*-elf*)
1758         tmake_file="sh/t-sh sh/t-elf"
1759         case $machine in
1760         shl* | sh64l*)
1761                 tm_file="sh/little.h ${tm_file}"
1762                 tmake_file="${tmake_file} sh/t-le"
1763                 ;;
1764         esac
1765         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h"
1766         case $machine in
1767         sh64*)
1768                 tmake_file="${tmake_file} sh/t-sh64"
1769                 tm_file="${tm_file} sh/sh64.h"
1770                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1771                 ;;
1772         sh4_single*)  target_cpu_default="SELECT_SH4_SINGLE" ;;
1773         sh4*)  target_cpu_default="SELECT_SH4" ;;
1774         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1775         sh3*)  target_cpu_default="SELECT_SH3" ;;
1776         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1777         sh2*)  target_cpu_default="SELECT_SH2" ;;
1778         esac
1779         case $machine in
1780         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1781         esac
1782         ;;
1783 sh-*-rtemself*)
1784         tmake_file="sh/t-sh sh/t-elf t-rtems"
1785         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h sh/rtemself.h rtems.h"
1786         if test x$enable_threads = xyes; then
1787           thread_file='rtems'
1788         fi
1789         ;;
1790 sh-*-rtems*)
1791         tmake_file="sh/t-sh t-rtems"
1792         tm_file="${tm_file} sh/coff.h sh/rtems.h rtems.h"
1793         if test x$enable_threads = xyes; then
1794           thread_file='rtems'
1795         fi
1796         ;;
1797 sh-*-linux* | sh[2346lbe]*-*-linux*)
1798         tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux sh/t-linux"
1799         case $machine in
1800         sh*be-*-* | sh*eb-*-*) ;;
1801         *)
1802                 tm_file="sh/little.h ${tm_file}"
1803                 tmake_file="${tmake_file} sh/t-le"
1804                 ;;
1805         esac
1806         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
1807         case $machine in
1808         sh64*)
1809                 tmake_file="${tmake_file} sh/t-sh64"
1810                 tm_file="${tm_file} sh/sh64.h"
1811                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1812                 ;;
1813         sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
1814         sh4*) target_cpu_default="SELECT_SH4" ;;
1815         sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
1816         sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
1817         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1818         sh3*) target_cpu_default="SELECT_SH3" ;;
1819         sh2e[lb]e*) target_cpu_default="SELECT_SH2E" ;;
1820         sh2e[lb]*) target_cpu_default="SELECT_SH2" ;;
1821         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1822         sh2*) target_cpu_default="SELECT_SH2" ;;
1823         esac
1824         case $machine in
1825         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1826         esac
1827         ;;
1828 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
1829   sh64-*-netbsd* | sh64l*-*-netbsd*)
1830         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
1831         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
1832         case $machine in
1833         sh*l*-*)
1834                 tm_file="sh/little.h ${tm_file}"
1835                 tmake_file="${tmake_file} sh/t-le"
1836                 ;;
1837         *)
1838                 tmake_file="${tmake_file} sh/t-be"
1839                 ;;
1840         esac
1841         case $machine in
1842         sh5*-*)
1843                 # SHmedia, 32-bit ABI
1844                 target_cpu_default="SH5_BIT|SH4_BIT|SH3_BIT|SH_E_BIT"
1845                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
1846                 ;;
1847         sh64*-*)
1848                 # SHmedia, 64-bit ABI
1849                 target_cpu_default="SH5_BIT|SH4_BIT"
1850                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
1851                 ;;
1852         *)
1853                 # SH3, software floating point
1854                 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
1855                 tmake_file="${tmake_file} sh/t-netbsd"
1856                 ;;
1857         esac
1858         ;;
1859 sh-*-*)
1860         tm_file="${tm_file} sh/coff.h"
1861         ;;
1862 sparc-tti-*)
1863         tm_file="${tm_file} sparc/pbd.h"
1864         ;;
1865 sparc-*-netbsdelf*)
1866         tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
1867         ;;
1868 sparc-*-openbsd*)
1869         tm_file="sparc/sparc.h ${tm_file}"
1870         # needed to unconfuse gdb
1871         tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
1872         # we need collect2 until our bug is fixed...
1873         use_collect2=yes
1874         ;;
1875 sparc64-*-openbsd*)
1876         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"
1877         gas=yes gnu_ld=yes
1878         with_cpu=ultrasparc
1879         ;;
1880 sparc-*-elf*)
1881         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
1882         tmake_file="sparc/t-elf sparc/t-crtfm"
1883         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1884         ;;
1885 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
1886         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
1887         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
1888         ;;
1889 sparc-*-rtems*)
1890         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"
1891         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
1892         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1893         if test x$enable_threads = xyes; then
1894           thread_file='rtems'
1895         fi
1896         ;;
1897 sparc64-*-solaris2* | sparcv9-*-solaris2*)
1898         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"
1899         if test x$gnu_ld = xyes; then
1900                 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
1901         fi
1902         if test x$gas = xyes; then
1903                 tm_file="${tm_file} sparc/sol2-gas-bi.h"
1904         fi
1905         tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
1906         if test x$gnu_ld = xyes; then
1907                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1908         else
1909                 tmake_file="$tmake_file t-slibgcc-sld"
1910         fi
1911         extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
1912         if test x${enable_threads} = x ; then
1913             enable_threads=$have_pthread_h
1914             if test x${enable_threads} = x ; then
1915                 enable_threads=$have_thread_h
1916             fi
1917         fi
1918         if test x${enable_threads} = xyes ; then
1919             if test x${have_pthread_h} = xyes ; then
1920                 thread_file='posix'
1921             else
1922                 thread_file='solaris'
1923             fi
1924         fi
1925         need_64bit_hwint=yes
1926         ;;
1927 sparc-*-solaris2*)
1928         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
1929         if test x$gnu_ld = xyes; then
1930                 tm_file="${tm_file} sparc/sol2-gld.h"
1931         fi
1932         tmake_file="sparc/t-sol2 sparc/t-crtfm"
1933         if test x$gnu_ld = xyes; then
1934                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1935         else
1936                 tmake_file="$tmake_file t-slibgcc-sld"
1937         fi
1938         case $machine in
1939         *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
1940                 if test x$gnu_ld = xno; then
1941                         tm_file="${tm_file} sparc/sol26-sld.h"
1942                 fi
1943                 ;;
1944         *-*-solaris2.[789])
1945                 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
1946                 if test x$gnu_ld = xyes; then
1947                         tm_file="${tm_file} sparc/sol2-gld-bi.h"
1948                 fi
1949                 if test x$gas = xyes; then
1950                         tm_file="${tm_file} sparc/sol2-gas-bi.h"
1951                 fi
1952                 tmake_file="$tmake_file sparc/t-sol2-64"
1953                 need_64bit_hwint=yes
1954                 ;;
1955         esac
1956         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1957         if test x${enable_threads} = x; then
1958             enable_threads=$have_pthread_h
1959             if test x${enable_threads} = x; then
1960                 enable_threads=$have_thread_h
1961             fi
1962         fi
1963         if test x${enable_threads} = xyes; then
1964             if test x${have_pthread_h} = xyes; then
1965                 thread_file='posix'
1966             else
1967                 thread_file='solaris'
1968             fi
1969         fi
1970         ;;
1971 sparc-*-sysv4*)
1972         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sysv4-only.h"
1973         tmake_file=t-svr4
1974         extra_parts="crtbegin.o crtend.o"
1975         ;;
1976 sparclite-*-coff*)
1977         tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
1978         tmake_file=sparc/t-sparclite
1979         ;;
1980 sparclite-*-elf*)
1981         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"
1982         tmake_file="sparc/t-sparclite sparc/t-crtfm"
1983         extra_parts="crtbegin.o crtend.o"
1984         ;;
1985 sparc86x-*-elf*)
1986         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"
1987         tmake_file="sparc/t-sp86x sparc/t-crtfm"
1988         extra_parts="crtbegin.o crtend.o"
1989         ;;
1990 sparc64-*-aout*)
1991         tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
1992         ;;
1993 sparc64-*-elf*)
1994         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
1995         tmake_file="${tmake_file} sparc/t-crtfm"
1996         extra_parts="crtbegin.o crtend.o"
1997         ;;
1998 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
1999         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2000         tmake_file="${tmake_file} sparc/t-crtfm"
2001         xmake_file=none
2002         case "x$with_cpu" in
2003                 xultrasparc) ;;
2004                 x) with_cpu=ultrasparc ;;
2005                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2006         esac
2007         need_64bit_hwint=yes
2008         ;;
2009 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
2010         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
2011         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
2012         ;;
2013 sparc64-*-netbsd*)
2014         tmake_file="${tmake_file} sparc/t-netbsd64"
2015         tm_file="sparc/biarch64.h ${tm_file}"
2016         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2017         ;;
2018 strongarm-*-elf*)
2019         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2020         tmake_file=arm/t-strongarm-elf
2021         out_file=arm/arm.c
2022         md_file=arm/arm.md
2023         extra_modes=arm/arm-modes.def
2024         ;;
2025 strongarm-*-pe)
2026         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"
2027         tmake_file=arm/t-strongarm-pe
2028         out_file=arm/arm.c
2029         md_file=arm/arm.md
2030         extra_modes=arm/arm-modes.def
2031         extra_objs=pe.o
2032         ;;
2033 v850e-*-*)
2034         target_cpu_default="TARGET_CPU_v850e"
2035         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2036         tm_p_file=v850/v850-protos.h
2037         tmake_file=v850/t-v850
2038         md_file=v850/v850.md
2039         out_file=v850/v850.c
2040         if test x$stabs = xyes
2041         then
2042                 tm_file="${tm_file} dbx.h"
2043         fi
2044         use_collect2=no
2045         c_target_objs="v850-c.o"
2046         cxx_target_objs="v850-c.o"
2047         ;;
2048 v850-*-*)
2049         target_cpu_default="TARGET_CPU_generic"
2050         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2051         tmake_file=v850/t-v850
2052         if test x$stabs = xyes
2053         then
2054                 tm_file="${tm_file} dbx.h"
2055         fi
2056         use_collect2=no
2057         c_target_objs="v850-c.o"
2058         cxx_target_objs="v850-c.o"
2059         ;;
2060 vax-*-bsd*)                     # VAXen running BSD
2061         tm_file="${tm_file} vax/bsd.h"
2062         use_collect2=yes
2063         ;;
2064 vax-*-sysv*)                    # VAXen running system V
2065         tm_file="${tm_file} vax/vaxv.h"
2066         ;;
2067 vax-*-netbsdelf*)
2068         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2069         ;;
2070 vax-*-netbsd*)
2071         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2072         tmake_file=t-netbsd
2073         extra_parts=""
2074         use_collect2=yes
2075         ;;
2076 vax-*-openbsd*)
2077         tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
2078         use_collect2=yes
2079         ;;
2080 vax-*-ultrix*)                  # VAXen running ultrix
2081         tm_file="${tm_file} vax/ultrix.h"
2082         ;;
2083 vax-*-vms*)                     # VAXen running VMS
2084         echo "Configuration $machine no longer supported" 1>&2
2085         exit 1
2086         ;;
2087 vax-*-*)                        # VAX default entry
2088         ;;
2089 xscale-*-elf)
2090         tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2091         tmake_file=arm/t-xscale-elf
2092         out_file=arm/arm.c
2093         md_file=arm/arm.md
2094         extra_modes=arm/arm-modes.def
2095         ;;
2096 xscale-*-coff)
2097         tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
2098         tmake_file=arm/t-xscale-coff
2099         out_file=arm/arm.c
2100         md_file=arm/arm.md
2101         extra_modes=arm/arm-modes.def
2102         ;;
2103 xstormy16-*-elf)
2104         # For historical reasons, the target files omit the 'x'.
2105         tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
2106         tm_p_file=stormy16/stormy16-protos.h
2107         md_file=stormy16/stormy16.md
2108         out_file=stormy16/stormy16.c
2109         tmake_file="stormy16/t-stormy16"
2110         extra_parts="crtbegin.o crtend.o"
2111         ;;
2112 xtensa-*-elf*)
2113         tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2114         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2115         ;;
2116 xtensa-*-linux*)
2117         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2118         tmake_file="t-slibgcc-elf-ver t-linux xtensa/t-xtensa xtensa/t-linux"
2119         ;;
2120 *)
2121         echo "*** Configuration $machine not supported" 1>&2
2122         exit 1
2123         ;;
2124 esac
2125
2126 case $machine in
2127 *-*-sysv*)
2128         install_headers_dir=install-headers-cpio
2129         ;;
2130 esac
2131
2132 # Distinguish i[34567]86
2133 # Also, do not run mips-tfile on MIPS if using gas.
2134 # Process --with-cpu= for PowerPC/rs6000
2135 target_cpu_default2=
2136 case $machine in
2137 i486-*-*)
2138         target_cpu_default2=TARGET_CPU_DEFAULT_i486
2139         ;;
2140 i586-*-*)
2141         case $target_alias in
2142                 k6_2-*)
2143                         target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
2144                         ;;
2145                 k6_3-*)
2146                         target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
2147                         ;;
2148                 k6-*)
2149                         target_cpu_default2=TARGET_CPU_DEFAULT_k6
2150                         ;;
2151                 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2152                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
2153                         ;;
2154                 *)
2155                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium
2156                         ;;
2157         esac
2158         ;;
2159 i686-*-* | i786-*-*)
2160         case $target_alias in
2161                 k8-*)
2162                         target_cpu_default2=TARGET_CPU_DEFAULT_k8
2163                         ;;
2164                 athlon_xp-*|athlon_mp-*|athlon_4-*)
2165                         target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
2166                         ;;
2167                 athlon_tbird-*|athlon-*)
2168                         target_cpu_default2=TARGET_CPU_DEFAULT_athlon
2169                         ;;
2170                 pentium2-*)
2171                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
2172                         ;;
2173                 pentium3-*)
2174                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
2175                         ;;
2176                 pentium4-*)
2177                         target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
2178                         ;;
2179                 *)
2180                         target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
2181                         ;;
2182         esac
2183         ;;
2184 x86_64-*-*)
2185         # We should have hammer chip here, but it does not exist yet and
2186         # thus it is not supported.  Athlon_SSE is probably equivalent feature
2187         # wise to hammer from our point of view except for 64bit mode.
2188         target_cpu_default2=TARGET_CPU_DEFAULT_k8
2189         ;;
2190 alpha*-*-*)
2191         case $machine in
2192                 alphaev6[78]*)
2193                         target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
2194                         ;;
2195                 alphaev6*)
2196                         target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
2197                         ;;
2198                 alphapca56*)
2199                         target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
2200                         ;;
2201                 alphaev56*)
2202                         target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
2203                         ;;
2204                 alphaev5*)
2205                         target_cpu_default2="MASK_CPU_EV5"
2206                         ;;
2207         esac
2208
2209         if test x$gas = xyes
2210         then
2211                 if test "$target_cpu_default2" = ""
2212                 then
2213                         target_cpu_default2="MASK_GAS"
2214                 else
2215                         target_cpu_default2="${target_cpu_default2}|MASK_GAS"
2216                 fi
2217         fi
2218         ;;
2219 arm*-*-*)
2220         case "x$with_cpu" in
2221                 x)
2222                         # The most generic
2223                         target_cpu_default2="TARGET_CPU_generic"
2224                         ;;
2225
2226                 # Distinguish cores, and major variants
2227                 # arm7m doesn't exist, but D & I don't affect code
2228                 xarm[236789] | xarm250 | xarm[67][01]0 \
2229                 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
2230                 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
2231                 | xxscale \
2232                 | xep9312 \
2233                 | xstrongarm | xstrongarm110 | xstrongarm1100)
2234                         target_cpu_default2="TARGET_CPU_$with_cpu"
2235                         ;;
2236
2237                 xyes | xno)
2238                         echo "--with-cpu must be passed a value" 1>&2
2239                         exit 1
2240                         ;;
2241
2242                 *)
2243                         if test x$pass2done = xyes
2244                         then
2245                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2246                                 exit 1
2247                         fi
2248                         ;;
2249         esac
2250         case $machine in
2251                 9ep9312-*-*)
2252                         target_cpu_default2="TARGET_CPU_9ep9312"
2253                         ;;
2254         esac
2255         ;;
2256
2257 hppa*-*-* | parisc*-*-*)
2258         if test x$gas = xyes
2259         then
2260                 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2261         fi
2262         case $machine in
2263                 hppa1* | parisc1*)
2264                         tm_defines="TARGET_SCHED_DEFAULT=\\\"7100LC\\\""
2265                         ;;
2266         esac
2267         ;;
2268 mips*-*-*)
2269         case $machine in
2270         mips*-*-ecoff* | mips*-*-elf*)
2271                 if test x$gas = xyes
2272                 then
2273                         if test x$gnu_ld = xyes
2274                         then
2275                                 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2276                         else
2277                                 target_cpu_default2="MASK_GAS"
2278                         fi
2279                 fi
2280                 ;;
2281         mips*-*-*)
2282                 if test x$gas = xyes
2283                 then
2284                         target_cpu_default2="MASK_GAS"
2285                 fi
2286                 ;;
2287         esac
2288         case $machine in
2289                 mips*el-*-*)
2290                         tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2291                         ;;
2292         esac
2293         case $tm_file in
2294                 *mips/elf.h* | *mips/elf64.h*)
2295                         tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2296                         ;;
2297         esac
2298         if test "x$enable_gofast" = xyes
2299         then
2300                 tm_defines="INIT_SUBTARGET_OPTABS=INIT_GOFAST_OPTABS $tm_defines"
2301                 tm_file="gofast.h $tm_file"
2302                 tmake_file="mips/t-gofast $tmake_file"
2303         else
2304                 tmake_file="mips/t-mips $tmake_file"
2305         fi
2306         ;;
2307 powerpc*-*-* | rs6000-*-*)
2308         if test x$enable_altivec = xyes
2309         then
2310                 tm_file="$tm_file rs6000/altivec-defs.h"
2311         fi
2312         case "x$with_cpu" in
2313                 x | xdefault32 | xdefault64)
2314                         ;;
2315
2316                 xcommon | xpowerpc | xpowerpc64 \
2317                   | xpower | xpower2 | xpower3 | xpower4 \
2318                   | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \
2319                   | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \
2320                   | x740 | x750 | x7400 | x7450 | x505)
2321                         target_cpu_default2="\\\"$with_cpu\\\""
2322                         ;;
2323
2324                 x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860)
2325                         target_cpu_default2="\\\"$with_cpu\\\""
2326                         ;;
2327
2328                 xyes | xno)
2329                         echo "--with-cpu must be passed a value" 1>&2
2330                         exit 1
2331                         ;;
2332
2333                 *)
2334                         if test x$pass2done = xyes
2335                         then
2336                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2337                                 exit 1
2338                         fi
2339                         ;;
2340         esac
2341         out_file=rs6000/rs6000.c
2342         c_target_objs="${c_target_objs} rs6000-c.o"
2343         cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2344         tmake_file="rs6000/t-rs6000 ${tmake_file}"
2345         ;;
2346 sparc*-*-*)
2347         case ".$with_cpu" in
2348                 .)
2349                         target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
2350                         ;;
2351                 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
2352                         target_cpu_default2="TARGET_CPU_$with_cpu"
2353                         ;;
2354                 *)
2355                         if test x$pass2done = xyes
2356                         then
2357                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2358                                 exit 1
2359                         fi
2360                         ;;
2361         esac
2362         ;;
2363 v850*-*-*)
2364         case "x$with_cpu" in
2365                 x)
2366                         ;;
2367                 xv850e)
2368                         target_cpu_default2="TARGET_CPU_$with_cpu"
2369                         ;;
2370                 *)
2371                         if test x$pass2done = xyes
2372                         then
2373                                 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2374                                 exit 1
2375                         fi
2376                         ;;
2377         esac
2378         ;;
2379 esac
2380
2381 if test "$target_cpu_default2" != ""
2382 then
2383         if test "$target_cpu_default" != ""
2384         then
2385                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2386         else
2387                 target_cpu_default=$target_cpu_default2
2388         fi
2389 fi
2390
2391 # Save data on machine being used to compile GCC in build_xm_file.
2392 # Save data on host machine in vars host_xm_file and host_xmake_file.
2393 if test x$pass1done = x
2394 then
2395         if test x$xm_file != x
2396         then build_xm_file=$xm_file
2397         fi
2398         build_xm_defines=$xm_defines
2399         build_install_headers_dir=$install_headers_dir
2400         build_exeext=$exeext
2401         pass1done=yes
2402 else
2403         if test x$pass2done = x
2404         then
2405                 if test x$xm_file != x
2406                 then host_xm_file=$xm_file
2407                 fi
2408                 host_xm_defines=$xm_defines
2409                 host_xmake_file="$xmake_file"
2410                 host_truncate_target=$truncate_target
2411                 host_extra_gcc_objs=$extra_gcc_objs
2412                 host_extra_objs=$extra_host_objs
2413                 host_exeext=$exeext
2414                 out_host_hook_obj=$host_hook_obj
2415                 pass2done=yes
2416         fi
2417 fi