OSDN Git Service

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