OSDN Git Service

Implement FR-V FDPIC ABI support for frv-uclinux and frv-linux.
[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* | frv-*-*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 frv-*-*linux*)
722         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} \
723                  linux.h frv/linux.h frv/frv-abi.h"
724         tmake_file="t-slibgcc-elf-ver t-linux frv/t-frv frv/t-linux"
725         ;;
726 h8300-*-rtems*)
727         tmake_file="h8300/t-h8300 t-rtems"
728         tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h h8300/rtems.h rtems.h"
729         ;;
730 h8300-*-elf*)
731         tmake_file="h8300/t-h8300 h8300/t-elf"
732         tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h"
733         use_fixproto=yes
734         ;;
735 h8300-*-*)
736         tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h"
737         use_fixproto=yes
738         ;;
739 hppa*64*-*-linux* | parisc*64*-*-linux*)
740         target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
741         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
742                  pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
743         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux64"
744         gas=yes gnu_ld=yes
745         need_64bit_hwint=yes
746         ;;
747 hppa*-*-linux* | parisc*-*-linux*)
748         target_cpu_default="MASK_PA_11 | MASK_NO_SPACE_REGS"
749         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
750                  pa/pa32-regs.h pa/pa32-linux.h"
751         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
752         # if not configured with --enable-sjlj-exceptions, bump the
753         # libgcc version number
754         if test x$sjlj != x1; then
755             tmake_file="$tmake_file pa/t-slibgcc-elf-ver"
756         fi
757         ;;
758 # port not yet contributed.
759 #hppa*-*-openbsd*)
760 #       target_cpu_default="MASK_PA_11"
761 #       ;;
762 hppa1.1-*-pro*)
763         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
764         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
765         tmake_file="pa/t-pro"
766         ;;
767 hppa1.1-*-osf*)
768         target_cpu_default="MASK_PA_11"
769         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-osf.h"
770         tmake_file="pa/t-pa"
771         use_collect2=yes
772         ;;
773 hppa1.1-*-rtems*)
774         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
775         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"
776         tmake_file="pa/t-pro t-rtems"
777         ;;
778 hppa1.1-*-bsd*)
779         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h"
780         target_cpu_default="MASK_PA_11"
781         tmake_file="pa/t-pa"
782         use_collect2=yes
783         ;;
784 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
785         target_cpu_default="MASK_PA_11"
786         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
787         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
788         if test x$enable_threads = x; then
789             enable_threads=$have_pthread_h
790         fi
791         case x${enable_threads} in
792         xyes | xdce)
793                 tmake_file="${tmake_file} pa/t-dce-thr"
794                 ;;
795         esac
796         use_collect2=yes
797         use_fixproto=yes
798         ;;
799 hppa1.0-*-hpux10*)
800         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
801         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
802         if test x$enable_threads = x; then
803             enable_threads=$have_pthread_h
804         fi
805         case x${enable_threads} in
806         xyes | xdce)
807                 tmake_file="${tmake_file} pa/t-dce-thr"
808                 ;;
809         esac
810         use_collect2=yes
811         use_fixproto=yes
812         ;;
813 hppa*64*-*-hpux11*)
814         if test x$gas = xyes
815         then
816                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h  \
817                          pa/pa64-regs.h pa/pa-hpux.h \
818                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
819         else
820                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
821                          pa/pa64-regs.h pa/pa-hpux.h \
822                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
823         fi
824         need_64bit_hwint=yes
825         tmake_file="pa/t-pa64 pa/t-pa-hpux"
826         target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
827         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
828         if test x$gnu_ld = xyes
829         then
830                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
831         fi
832         case x${enable_threads} in
833         xyes | xposix )
834                 thread_file=posix 
835                 ;;
836         esac
837         ;;
838 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
839         target_cpu_default="MASK_PA_11"
840         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
841         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
842         case x${enable_threads} in
843         xyes | xposix )
844                 thread_file=posix 
845                 ;;
846         esac
847         use_collect2=yes
848         ;;
849 hppa1.0-*-hpux11*)
850         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
851         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
852         case x${enable_threads} in
853         xyes | xposix )
854                 thread_file=posix 
855                 ;;
856         esac
857         use_collect2=yes
858         ;;
859 i[34567]86-*-darwin*)
860         tm_file="${tm_file} i386/darwin.h"
861         ;;
862 i[34567]86-*-elf*)
863         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
864         tmake_file="i386/t-i386elf t-svr4"
865         use_fixproto=yes
866         ;;
867 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
868         if test x$gas = xyes
869         then
870                 tm_file="${tm_file} usegas.h"
871         fi
872         xm_defines="SMALL_ARG_MAX"
873         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
874         tmake_file=t-svr4
875         extra_parts="crtbegin.o crtend.o"
876         use_fixproto=yes
877         ;;
878 i[34567]86-*-aout*)
879         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
880         use_fixproto=yes
881         ;;
882 i[34567]86-*-beoself* | i[34567]86-*-beos*)
883         tmake_file='i386/t-beos i386/t-crtpic'
884         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
885         extra_parts='crtbegin.o crtend.o'
886         ;;
887 i[34567]86-*-freebsd*)
888         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
889         ;;
890 x86_64-*-freebsd*)
891         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"
892         ;;
893 i[34567]86-*-netbsdelf*)
894         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
895         ;;
896 i[34567]86-*-netbsd*)
897         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
898         tmake_file=t-netbsd
899         extra_parts=""
900         use_collect2=yes
901         ;;
902 x86_64-*-netbsd*)
903         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"
904         ;;
905 i[34567]86-*-openbsd*)
906         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"
907         # needed to unconfuse gdb
908         tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
909         # we need collect2 until our bug is fixed...
910         use_collect2=yes
911         ;;
912 i[34567]86-*-coff*)
913         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
914         use_fixproto=yes
915         ;;
916 i[34567]86-*-linux*)    # Intel 80386's running GNU/Linux
917                         # with ELF format using glibc 2
918                         # aka GNU/Linux C library 6
919         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
920         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
921         ;;
922 x86_64-*-linux*)
923         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
924                  i386/x86-64.h i386/linux64.h"
925         tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64"
926         ;;
927 i[34567]86-*-kfreebsd*-gnu) # must be before i[34567]86-*-gnu*
928         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"
929         tmake_file="t-slibgcc-elf-ver t-kfreebsd-gnu i386/t-crtstuff"
930         float_format=i386
931         use_fixproto=no
932         ;;
933 i[34567]86-*-gnu*)
934         ;;
935 i[34567]86-pc-msdosdjgpp*)
936         xm_file=i386/xm-djgpp.h
937         tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
938         tmake_file=i386/t-djgpp
939         gnu_ld=yes
940         gas=yes
941         ;;
942 i[34567]86-*-lynxos*)
943         if test x$gas = xyes
944         then
945                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h svr3.h lynx.h i386/lynx.h"
946         else
947                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
948         fi
949         use_fixproto=yes
950         ;;
951 i[34567]86-*-nto-qnx*)
952         tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
953         tmake_file=i386/t-nto
954         gnu_ld=yes
955         gas=yes
956         ;;
957 i[34567]86-*-rtems*)
958         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
959         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
960         tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
961         ;;
962 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
963         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sco5.h"
964         if test x$gas = xyes
965         then
966                 tm_file="usegas.h ${tm_file}"
967         fi
968         tmake_file=i386/t-sco5
969         extra_parts="crtbegin.o crtend.o"
970         use_fixproto=yes
971         ;;
972 i[34567]86-*-solaris2*)
973         xm_defines="SMALL_ARG_MAX"
974         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
975         tmake_file="i386/t-sol2 t-svr4"
976         if test x$gnu_ld = xyes; then
977                 tmake_file="$tmake_file t-slibgcc-elf-ver"
978         else
979                 tmake_file="$tmake_file t-slibgcc-sld"
980         fi
981         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
982         if test x${enable_threads} = x; then
983             enable_threads=$have_pthread_h
984             if test x${enable_threads} = x; then
985                 enable_threads=$have_thread_h
986             fi
987         fi
988         if test x${enable_threads} = xyes; then
989             if test x${have_pthread_h} = xyes; then
990                 thread_file='posix'
991             else
992                 thread_file='solaris'
993             fi
994         fi
995         ;;
996 i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
997        tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
998        if test x$stabs = xyes
999        then
1000                tm_file="${tm_file} dbx.h"
1001        fi
1002        tmake_file="i386/t-crtpic t-svr4"
1003        extra_parts="crtbegin.o crtend.o"
1004        if test x$enable_threads = xyes; then
1005                thread_file='posix'
1006        fi
1007         use_fixproto=yes
1008        ;;
1009 i[34567]86-*-sysv4*)            # Intel 80386's running system V.4
1010         xm_defines="SMALL_ARG_MAX"
1011         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1012         if test x$stabs = xyes
1013         then
1014                 tm_file="${tm_file} dbx.h"
1015         fi
1016         tmake_file="i386/t-crtpic t-svr4"
1017         extra_parts="crtbegin.o crtend.o"
1018         use_fixproto=yes
1019         ;;
1020 i[4567]86-wrs-vxworks)
1021         tm_file="${tm_file} i386/sysv4.h i386/unix.h i386/vxworks.h"
1022         tmake_file="${tmake_file} i386/t-vxworks"
1023         ;;
1024 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1025         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
1026         xm_file=i386/xm-cygwin.h
1027         tmake_file="i386/t-cygwin i386/t-cygming"
1028         extra_objs=winnt.o
1029         c_target_objs=cygwin2.o
1030         cxx_target_objs=cygwin2.o
1031         host_extra_gcc_objs=cygwin1.o
1032         if test x$enable_threads = xyes; then
1033                 thread_file='posix'
1034         fi
1035         ;;
1036 i[34567]86-*-mingw32*)
1037         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
1038         xm_file=i386/xm-mingw32.h
1039         tmake_file="i386/t-cygming i386/t-mingw32"
1040         extra_objs=winnt.o
1041         if test x$enable_threads = xyes; then
1042                 thread_file='win32'
1043         fi
1044         case ${target} in
1045                 *mingw32crt*)
1046                         tm_file="${tm_file} i386/crtdll.h"
1047                         ;;
1048                 *mingw32msv* | *mingw32*)
1049                         ;;
1050         esac
1051         ;;
1052 i[34567]86-*-uwin*)
1053         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h"
1054         tmake_file="i386/t-cygwin i386/t-uwin"
1055         extra_objs=winnt.o
1056         if test x$enable_threads = xyes; then
1057                 thread_file='win32'
1058         fi
1059         use_fixproto=yes
1060         ;;
1061 i[34567]86-*-interix3*)
1062         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"
1063         tmake_file="i386/t-interix"
1064         extra_objs=winnt.o
1065         if test x$enable_threads = xyes ; then
1066                 thread_file='posix'
1067         fi
1068         if test x$stabs = xyes ; then
1069                 tm_file="${tm_file} dbxcoff.h"
1070         fi
1071         ;;
1072 i[34567]86-*-kaos*)
1073         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h kaos.h i386/kaos-i386.h"
1074         tmake_file="i386/t-i386elf t-svr4"
1075         ;;
1076 i860-*-sysv4*)
1077         tm_file="${tm_file} elfos.h svr4.h i860/sysv4.h"
1078         tmake_file="i860/t-i860 i860/t-svr4"
1079         extra_parts="crtbegin.o crtend.o"
1080         use_fixproto=yes
1081         ;;
1082 ia64*-*-elf*)
1083         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1084         tmake_file="ia64/t-ia64"
1085         target_cpu_default="0"
1086         if test x$gas = xyes
1087         then
1088                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1089         fi
1090         if test x$gnu_ld = xyes
1091         then
1092                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1093         fi
1094         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1095         use_fixproto=yes
1096         ;;
1097 ia64*-*-freebsd*)
1098         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1099         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1100         tmake_file="${tmake_file} ia64/t-ia64"
1101         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1102         ;;
1103 ia64*-*-linux*)
1104         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1105         tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1106         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1107         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1108         if test x"$use_libunwind_exceptions" = xyes; then
1109           tmake_file="$tmake_file t-libunwind"
1110         fi
1111         ;;
1112 ia64*-*-hpux*)
1113         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h"
1114         tmake_file="ia64/t-ia64 ia64/t-hpux"
1115         target_cpu_default="MASK_GNU_AS"
1116         case x$enable_threads in
1117         xyes | xposix )
1118                 thread_file=posix
1119                 ;;
1120         esac
1121         use_collect2=no
1122         c_target_objs="ia64-c.o"
1123         cxx_target_objs="ia64-c.o"
1124         # If we decide to run fixproto we should define FIXPROTO_DEFINES
1125         # in ia64/t-hpux, and also fix the definition of putenv in
1126         # sys-protos.h (const char not char).
1127         ;;
1128 ip2k-*-elf)
1129         tm_file="elfos.h ${tm_file}"
1130         use_fixproto=yes
1131         ;;
1132 iq2000*-*-elf*)
1133         tm_file="svr4.h elfos.h iq2000/iq2000.h"
1134         tmake_file=iq2000/t-iq2000
1135         out_file=iq2000/iq2000.c
1136         md_file=iq2000/iq2000.md
1137         use_fixproto=yes
1138         ;;
1139 m32r-*-elf*)
1140         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1141         extra_parts="crtinit.o crtfini.o"
1142         use_fixproto=yes
1143         ;;
1144 m32rle-*-elf*)
1145         tm_file="dbxelf.h elfos.h svr4.h m32r/little.h ${tm_file}"
1146         extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
1147         use_fixproto=yes
1148         ;;
1149 m32r-*-linux*)
1150         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} m32r/linux.h"
1151         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1152         tmake_file="m32r/t-linux"
1153         gnu_ld=yes
1154         use_fixproto=yes
1155         if test x$enable_threads = xyes; then
1156                 thread_file='posix'
1157         fi
1158         ;;
1159 m32rle-*-linux*)
1160         tm_file="dbxelf.h elfos.h svr4.h linux.h m32r/little.h ${tm_file} m32r/linux.h"
1161         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1162         tmake_file="m32r/t-linux"
1163         gnu_ld=yes
1164         use_fixproto=yes
1165         if test x$enable_threads = xyes; then
1166                 thread_file='posix'
1167         fi
1168         ;;
1169 # m68hc11 and m68hc12 share the same machine description.
1170 m68hc11-*-*|m6811-*-*)
1171         tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1172         tm_p_file="m68hc11/m68hc11-protos.h"
1173         md_file="m68hc11/m68hc11.md"
1174         out_file="m68hc11/m68hc11.c"
1175         tmake_file="m68hc11/t-m68hc11-gas"
1176         use_fixproto=yes
1177         ;;
1178 m68hc12-*-*|m6812-*-*)
1179         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1180         tm_p_file="m68hc11/m68hc11-protos.h"
1181         md_file="m68hc11/m68hc11.md"
1182         out_file="m68hc11/m68hc11.c"
1183         tmake_file="m68hc11/t-m68hc11-gas"
1184         use_fixproto=yes
1185         ;;
1186 m68k-*-aout*)
1187         tmake_file=m68k/t-m68kbare
1188         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h"
1189         ;;
1190 m68k-*-coff*)
1191         tmake_file=m68k/t-m68kbare
1192         tm_defines="MOTOROLA USE_GAS"
1193         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h"
1194         use_fixproto=yes
1195         ;;
1196 m68020-*-elf* | m68k-*-elf*)
1197         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1198         tm_defines="MOTOROLA USE_GAS"
1199         tmake_file=m68k/t-m68kelf
1200         extra_parts="crtbegin.o crtend.o"
1201         use_fixproto=yes
1202         ;;
1203 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1204         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1205         tm_defines="MOTOROLA USE_GAS"
1206         case ${target} in
1207         m68010*)
1208                 target_cpu_default="0"
1209                 ;;
1210         *)
1211                 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1212                 ;;
1213         esac
1214         ;;
1215 m68k*-*-openbsd*)
1216         # needed to unconfuse gdb
1217         tm_defines="OBSD_OLD_GAS TARGET_DEFAULT=(MASK_68020|MASK_68881|MASK_BITFIELD)"
1218         tm_file="m68k/m68k.h openbsd.h m68k/openbsd.h"
1219         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1220         # we need collect2 until our bug is fixed...
1221         use_collect2=yes
1222         ;;
1223 m68k-*-uclinux*)                # Motorola m68k/ColdFire running uClinux with uClibc
1224         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/uclinux.h"
1225         tm_defines="MOTOROLA USE_GAS"
1226         tmake_file=m68k/t-uclinux
1227         use_fixproto=no
1228         ;;
1229 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1230                                 # with ELF format using glibc 2
1231                                 # aka the GNU/Linux C library 6.
1232         tm_file="m68k/m68k.h dbxelf.h elfos.h svr4.h linux.h m68k/linux.h"
1233         tm_defines="MOTOROLA USE_GAS"
1234         tmake_file="t-slibgcc-elf-ver t-linux"
1235         # if not configured with --enable-sjlj-exceptions, bump the
1236         # libgcc version number
1237         if test x$sjlj != x1; then
1238             tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
1239         fi
1240         ;;
1241 m68k-*-rtems*)
1242         tmake_file="m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems"
1243         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"
1244         tm_defines="MOTOROLA USE_GAS"
1245         extra_parts="crtbegin.o crtend.o"
1246         ;;
1247 mcore-*-elf)
1248         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
1249         tmake_file=mcore/t-mcore
1250         use_fixproto=yes
1251         ;;
1252 mcore-*-pe*)
1253         tm_file="svr3.h dbxcoff.h ${tm_file} mcore/mcore-pe.h"
1254         tmake_file=mcore/t-mcore-pe
1255         use_fixproto=yes
1256         ;;
1257 mips-sgi-irix6*)                # SGI System V.4., IRIX 6
1258         tm_file="${tm_file} mips/iris5.h mips/iris6.h"
1259         tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
1260         if test x$gas = xyes
1261         then
1262                 tm_file="${tm_file} mips/iris6gas.h"
1263         fi
1264         if test "x$gnu_ld" = xyes
1265         then
1266                 tm_file="${tm_file} mips/iris6gld.h"
1267                 tmake_file="$tmake_file mips/t-irix-gld"
1268         fi
1269         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1270         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1271         # See comment in mips/iris5.h file.  Only enabled for O32 ABI
1272         # without GNU as.
1273         if test x$gas = xno
1274         then
1275                 use_collect2=yes
1276         fi
1277 #       if test x$enable_threads = xyes; then
1278 #               thread_file='irix'
1279 #       fi
1280         use_fixproto=yes
1281         ;;
1282 mips-sgi-irix5cross64)          # Irix5 host, Irix 6 target, cross64
1283         tm_file="${tm_file} mips/iris5.h mips/iris6.h mips/cross64.h"
1284         tmake_file="mips/t-iris mips/t-cross64"
1285         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1286         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1287         # See comment in mips/iris[56].h files.
1288         use_collect2=yes
1289 #       if test x$enable_threads = xyes; then
1290 #               thread_file='irix'
1291 #       fi
1292         use_fixproto=yes
1293         ;;
1294 mips-sgi-irix5*)                # SGI System V.4., IRIX 5
1295         tm_file="${tm_file} mips/iris5.h"
1296         if test x$gas = xyes
1297         then
1298                 tm_file="${tm_file} mips/sdb.h mips/iris5gas.h"
1299                 if test x$stabs = xyes
1300                 then
1301                         tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
1302                 fi
1303                 tmake_file=mips/t-iris5-gas
1304         else
1305                 tmake_file=mips/t-iris5-as
1306         fi
1307         if test "x$gnu_ld" = xyes
1308         then
1309                 tm_file="${tm_file} mips/iris5gld.h"
1310                 tmake_file="$tmake_file mips/t-irix-gld"
1311         fi
1312         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1313         target_cpu_default="MASK_ABICALLS"
1314         # mips-tfile doesn't work yet
1315         # See comment in mips/iris5.h file.
1316         if test x$gas = xno
1317         then
1318                 use_collect2=yes
1319         fi
1320 #       if test x$enable_threads = xyes; then
1321 #               thread_file='irix'
1322 #       fi
1323         use_fixproto=yes
1324         ;;
1325 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1326         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1327         tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
1328         ;;
1329 mips64*-*-linux*)
1330         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
1331         tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux64"
1332
1333         # This default ABI is a partial lie: t-linux64 overrides the
1334         # DRIVER_SELF_SPEC that sets the default abi, in the spec file
1335         # that is installed.  What GCC thinks of as the default must
1336         # remain as ABI_32 such that the SONAMEs of the libgcc shared
1337         # libraries remain compatible with those of mips-linux-gnu.
1338         tm_defines="MIPS_ISA_DEFAULT=1 MIPS_ABI_DEFAULT=ABI_32"
1339         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1340         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1341         gnu_ld=yes
1342         gas=yes
1343         ;;
1344 mips*-*-linux*)                         # Linux MIPS, either endian.
1345         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
1346         case ${target} in
1347         mipsisa32*-*)
1348                 target_cpu_default="MASK_SOFT_FLOAT"
1349                 tm_defines="MIPS_ISA_DEFAULT=32"
1350                 ;;
1351         esac
1352         tmake_file="t-slibgcc-elf-ver t-linux"
1353         ;;
1354 mips*-*-openbsd*)
1355         tm_defines="OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
1356         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1357         tm_file="mips/mips.h openbsd.h mips/openbsd.h mips/sdb.h"
1358         case ${target} in
1359         mips*el-*-openbsd*) 
1360             tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1361         *)  tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1362         esac
1363         ;;
1364 mipsisa32-*-elf* | mipsisa32el-*-elf*)
1365         tm_file="${tm_file} mips/elf.h"
1366         tmake_file=mips/t-isa3264
1367         tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_EABI"
1368         use_fixproto=yes
1369         ;;
1370 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
1371         tm_file="${tm_file} mips/elf.h"
1372         tmake_file=mips/t-isa3264
1373         tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_EABI"
1374         use_fixproto=yes
1375         ;;
1376 mipsisa64-*-elf* | mipsisa64el-*-elf*)
1377         tm_file="${tm_file} mips/elf.h"
1378         tmake_file=mips/t-isa3264
1379         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1380         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_EABI"
1381         use_fixproto=yes
1382         ;;
1383 mipsisa64sr71k-*-elf*)
1384         tm_file="${tm_file} mips/elf.h"
1385         tmake_file=mips/t-sr71k
1386         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1387         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
1388         use_fixproto=yes
1389         ;;
1390 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1391         tm_file="${tm_file} mips/elf.h"
1392         tmake_file=mips/t-elf
1393         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1394         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1395         use_fixproto=yes
1396         ;;
1397 mips-*-elf* | mipsel-*-elf*)
1398         tm_file="${tm_file} mips/elf.h"
1399         tmake_file=mips/t-elf
1400         use_fixproto=yes
1401         ;;
1402 mips64-*-elf* | mips64el-*-elf*)
1403         tm_file="${tm_file} mips/elf64.h"
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 mips64vr-*-elf* | mips64vrel-*-elf*)
1410         tm_file="mips/vr.h ${tm_file} mips/elf64.h"
1411         tm_defines="MIPS_ABI_DEFAULT=ABI_O64 MIPS_MARCH_CONTROLS_SOFT_FLOAT=1"
1412         tmake_file=mips/t-vr
1413         use_fixproto=yes
1414         ;;
1415 mips64orion-*-elf* | mips64orionel-*-elf*)
1416         tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1417         tmake_file=mips/t-elf
1418         tmake_file=mips/t-elf
1419         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1420         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1421         use_fixproto=yes
1422         ;;
1423 mips*-*-rtems*)
1424         tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
1425         tmake_file="mips/t-elf t-rtems mips/t-rtems"
1426         ;;
1427 mips-wrs-vxworks)
1428         # We want vxworks.h after mips/elf.h, which unfortunately means we
1429         # have to redo the tm_file list from scratch.
1430         tm_file="elfos.h mips/mips.h svr4.h mips/elf.h vxworks.h mips/vxworks.h"
1431         tmake_file="${tmake_file} mips/t-vxworks"
1432         target_cpu_default="MASK_GAS"
1433         ;;
1434 mips-wrs-windiss)       # Instruction-level simulator for VxWorks.
1435         xm_defines=POSIX
1436         tm_file="elfos.h mips/mips.h svr4.h mips/elf.h windiss.h mips/windiss.h"
1437         tmake_file="${tmake_file} mips/t-elf"
1438         target_cpu_default="MASK_GAS"
1439         thread_file=
1440         ;;
1441 mipstx39-*-elf* | mipstx39el-*-elf*)
1442         tm_file="${tm_file} mips/r3900.h mips/elf.h"
1443         tmake_file=mips/t-r3900
1444         use_fixproto=yes
1445         ;;
1446 mmix-knuth-mmixware)
1447         need_64bit_hwint=yes
1448         ;;
1449 mn10300-*-*)
1450         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1451         if test x$stabs = xyes
1452         then
1453                 tm_file="${tm_file} dbx.h"
1454         fi
1455         use_collect2=no
1456         use_fixproto=yes
1457         ;;
1458 ns32k-*-netbsdelf*)
1459         echo "GCC does not yet support the ${target} target"; exit 1
1460         ;;
1461 ns32k-*-netbsd*)
1462         tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1463         # On NetBSD, the headers are already okay, except for math.h.
1464         tmake_file="t-netbsd ns32k/t-ns32k"
1465         extra_parts=""
1466         use_collect2=yes
1467         ;;
1468 pdp11-*-bsd)
1469         tm_file="${tm_file} pdp11/2bsd.h"
1470         use_fixproto=yes
1471         ;;
1472 pdp11-*-*)
1473         use_fixproto=yes
1474         ;;
1475 avr-*-*)
1476         use_fixproto=yes
1477         ;;
1478 # port not yet contributed
1479 #powerpc-*-openbsd*)
1480 #       tmake_file="${tmake_file} rs6000/t-fprules "
1481 #       extra_headers=
1482 #       ;;
1483 powerpc64-*-linux*)
1484         tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1485         case x$with_cpu in
1486         x|xpowerpc64|xdefault64) tm_file="${tm_file} rs6000/default64.h";;
1487         esac
1488         tm_file="${tm_file} rs6000/linux64.h"
1489         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-linux rs6000/t-ppccomm rs6000/t-linux64"
1490         ;;
1491 powerpc64-*-gnu*)
1492         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"
1493         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
1494         ;;
1495 powerpc-*-beos*)
1496         tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
1497         tmake_file="rs6000/t-fprules rs6000/t-beos"
1498         extra_headers=
1499         use_fixproto=yes
1500         ;;
1501 powerpc-*-darwin*)
1502         tm_file="${tm_file} rs6000/darwin.h"
1503         tmake_file="t-darwin t-slibgcc-darwin rs6000/t-darwin"
1504         extra_headers=altivec.h
1505         ;;
1506 powerpc*-*-freebsd*)
1507         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1508         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1509         ;;
1510 powerpc-*-netbsd*)
1511         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1512         tmake_file="${tmake_file} rs6000/t-netbsd"
1513         ;;
1514 powerpc-*-chorusos*)
1515         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
1516         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1517         case ${enable_threads} in
1518           yes | posix)
1519             thread_file='posix'
1520             ;;
1521         esac
1522         use_fixproto=yes
1523         ;;
1524 powerpc-*-eabispe*)
1525         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
1526         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
1527         ;;
1528 powerpc-*-eabisimaltivec*)
1529         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"
1530         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1531         ;;
1532 powerpc-*-eabisim*)
1533         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
1534         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1535         ;;
1536 powerpc-*-elf*)
1537         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1538         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1539         use_fixproto=yes
1540         ;;
1541 powerpc-*-eabialtivec*)
1542         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
1543         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1544         ;;
1545 powerpc-*-eabi*)
1546         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
1547         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1548         ;;
1549 powerpc-*-rtems*)
1550         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
1551         tmake_file="rs6000/t-fprules t-rtems rs6000/t-ppccomm"
1552         ;;
1553 powerpc-*-linux*altivec*)
1554         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
1555         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1556         ;;
1557 powerpc-*-linux*spe*)
1558         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h"
1559         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1560         ;;
1561 powerpc-*-linux*)
1562         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
1563         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1564         ;;
1565 powerpc-*-gnu-gnualtivec*)
1566         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"
1567         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1568         if test x$enable_threads = xyes; then
1569                 thread_file='posix'
1570         fi
1571         ;;
1572 powerpc-*-gnu*)
1573         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"
1574         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1575         if test x$enable_threads = xyes; then
1576                 thread_file='posix'
1577         fi
1578         ;;
1579 powerpc-wrs-vxworks*)
1580         # We want vxworks.h after rs6000/sysv4.h, which unfortunately
1581         # means we have to redo the tm_file list from scratch.
1582         tm_file="rs6000/rs6000.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1583         tm_file="${tm_file} vxworks.h rs6000/vxworks.h"
1584         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
1585         extra_headers=ppc-asm.h
1586         ;;
1587 powerpc-wrs-windiss*)   # Instruction-level simulator for VxWorks.
1588         tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
1589         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1590         thread_file=""
1591         use_fixproto=yes
1592         ;;
1593 powerpcle-*-sysv*)
1594         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1595         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1596         use_fixproto=yes
1597         ;;
1598 powerpcle-*-elf*)
1599         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1600         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1601         use_fixproto=yes
1602         ;;
1603 powerpcle-*-eabisim*)
1604         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"
1605         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1606         ;;
1607 powerpcle-*-eabi*)
1608         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
1609         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1610         ;;
1611 powerpc-*-kaos*)
1612         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h kaos.h rs6000/kaos-ppc.h"
1613         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1614         ;;
1615 powerpcle-*-kaos*)
1616         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"
1617         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1618         ;;
1619 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
1620         tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
1621         tmake_file="rs6000/t-fprules rs6000/t-newas"
1622         use_collect2=yes
1623         extra_headers=
1624         use_fixproto=yes
1625         ;;
1626 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
1627         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
1628         tmake_file=rs6000/t-aix43
1629         use_collect2=yes
1630         thread_file='aix'
1631         extra_headers=
1632         ;;
1633 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
1634         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
1635         tmake_file=rs6000/t-aix43
1636         use_collect2=yes
1637         thread_file='aix'
1638         extra_headers=
1639         ;;
1640 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
1641         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
1642         tmake_file=rs6000/t-aix52
1643         use_collect2=yes
1644         thread_file='aix'
1645         extra_headers=
1646         ;;
1647 rs6000-*-lynxos*)
1648         tm_file="svr3.h lynx.h rs6000/lynxbase.h rs6000/rs6000.h rs6000/lynx.h"
1649         tmake_file=rs6000/t-fprules
1650         use_collect2=yes
1651         use_fixproto=yes
1652         ;;
1653 s390-*-linux*)
1654         tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1655         tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff"
1656         ;;
1657 s390x-*-linux*)
1658         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1659         tm_p_file=s390/s390-protos.h
1660         md_file=s390/s390.md
1661         extra_modes=s390/s390-modes.def
1662         out_file=s390/s390.c
1663         tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff s390/t-linux64"
1664         ;;
1665 s390x-ibm-tpf*)
1666         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h s390/tpf.h"
1667         tm_p_file=s390/s390-protos.h
1668         md_file=s390/s390.md
1669         extra_modes=s390/s390-modes.def
1670         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1671         out_file=s390/s390.c
1672         tmake_file="t-slibgcc-elf-ver s390/t-crtstuff s390/t-tpf"
1673         ;;
1674 sh-*-elf* | sh[2346l]*-*-elf* | sh*-*-kaos*)
1675         tmake_file="sh/t-sh sh/t-elf"
1676         case ${target} in
1677         shl* | sh[234]l* | sh64l*)
1678                 tm_file="sh/little.h ${tm_file}"
1679                 tmake_file="${tmake_file} sh/t-le"
1680                 ;;
1681         esac
1682         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h"
1683         case ${target} in
1684         sh64*)
1685                 tmake_file="${tmake_file} sh/t-sh64"
1686                 tm_file="${tm_file} sh/sh64.h"
1687                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1688                 ;;
1689         sh4_single*)  target_cpu_default="SELECT_SH4_SINGLE" ;;
1690         sh4*)  target_cpu_default="SELECT_SH4" ;;
1691         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1692         sh3*)  target_cpu_default="SELECT_SH3" ;;
1693         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1694         sh2*)  target_cpu_default="SELECT_SH2" ;;
1695         esac
1696         case ${target} in
1697         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1698         esac
1699         case ${target} in
1700         sh*-*-kaos*) tm_file="${tm_file} kaos.h sh/kaos-sh.h" ;;
1701         esac
1702         use_fixproto=yes
1703         ;;
1704 sh-*-rtemself*)
1705         tmake_file="sh/t-sh sh/t-elf t-rtems"
1706         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h"
1707         ;;
1708 sh-*-rtems*)
1709         tmake_file="sh/t-sh t-rtems"
1710         tm_file="${tm_file} dbxcoff.h sh/coff.h sh/rtems.h rtems.h"
1711         ;;
1712 sh-*-linux* | sh[2346lbe]*-*-linux*)
1713         tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux"
1714         case ${target} in
1715         sh*be-*-* | sh*eb-*-*) ;;
1716         *)
1717                 tm_file="sh/little.h ${tm_file}"
1718                 tmake_file="${tmake_file} sh/t-le"
1719                 ;;
1720         esac
1721         tmake_file="${tmake_file} sh/t-linux"
1722         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
1723         case ${target} in
1724         sh64*)
1725                 tmake_file="${tmake_file} sh/t-sh64"
1726                 tm_file="${tm_file} sh/sh64.h"
1727                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1728                 ;;
1729         sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
1730         sh4*) target_cpu_default="SELECT_SH4" ;;
1731         sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
1732         sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
1733         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1734         sh3*) target_cpu_default="SELECT_SH3" ;;
1735         sh2e[lb]e*) target_cpu_default="SELECT_SH2E" ;;
1736         sh2e[lb]*) target_cpu_default="SELECT_SH2" ;;
1737         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1738         sh2*) target_cpu_default="SELECT_SH2" ;;
1739         esac
1740         case ${target} in
1741         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1742         esac
1743         ;;
1744 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
1745   sh64-*-netbsd* | sh64l*-*-netbsd*)
1746         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
1747         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
1748         case ${target} in
1749         sh*l*-*)
1750                 tm_file="sh/little.h ${tm_file}"
1751                 tmake_file="${tmake_file} sh/t-le"
1752                 ;;
1753         *)
1754                 tmake_file="${tmake_file} sh/t-be"
1755                 ;;
1756         esac
1757         case ${target} in
1758         sh5*-*)
1759                 # SHmedia, 32-bit ABI
1760                 target_cpu_default="SH5_BIT|SH4_BIT|SH3_BIT|SH_E_BIT"
1761                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
1762                 ;;
1763         sh64*-*)
1764                 # SHmedia, 64-bit ABI
1765                 target_cpu_default="SH5_BIT|SH4_BIT"
1766                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
1767                 ;;
1768         *)
1769                 # SH3, software floating point
1770                 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
1771                 tmake_file="${tmake_file} sh/t-netbsd"
1772                 ;;
1773         esac
1774         ;;
1775 sh-wrs-vxworks)
1776         tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
1777         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h sh/vxworks.h"
1778         ;;
1779 sh-*-*)
1780         tm_file="${tm_file} dbxcoff.h sh/coff.h"
1781         use_fixproto=yes
1782         ;;
1783 sparc-tti-*)
1784         tm_file="${tm_file} sparc/pbd.h"
1785         use_fixproto=yes
1786         ;;
1787 sparc-*-netbsdelf*)
1788         tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
1789         ;;
1790 sparc-*-openbsd*)
1791         tm_defines=OBSD_OLD_GAS
1792         tm_file="sparc/sparc.h openbsd.h sparc/openbsd.h"
1793         # needed to unconfuse gdb
1794         tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
1795         # we need collect2 until our bug is fixed...
1796         use_collect2=yes
1797         ;;
1798 sparc64-*-openbsd*)
1799         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"
1800         gas=yes gnu_ld=yes
1801         with_cpu=ultrasparc
1802         ;;
1803 sparc-*-elf*)
1804         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
1805         tmake_file="sparc/t-elf sparc/t-crtfm"
1806         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1807         use_fixproto=yes
1808         ;;
1809 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
1810         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
1811         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
1812         ;;
1813 sparc-*-rtems*)
1814         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"
1815         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
1816         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1817         ;;
1818 sparc64-*-solaris2* | sparcv9-*-solaris2*)
1819         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"
1820         if test x$gnu_ld = xyes; then
1821                 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
1822         fi
1823         if test x$gas = xyes; then
1824                 tm_file="${tm_file} sparc/sol2-gas-bi.h"
1825         fi
1826         tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
1827         if test x$gnu_ld = xyes; then
1828                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1829         else
1830                 tmake_file="$tmake_file t-slibgcc-sld"
1831         fi
1832         extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
1833         if test x${enable_threads} = x ; then
1834             enable_threads=$have_pthread_h
1835             if test x${enable_threads} = x ; then
1836                 enable_threads=$have_thread_h
1837             fi
1838         fi
1839         if test x${enable_threads} = xyes ; then
1840             if test x${have_pthread_h} = xyes ; then
1841                 thread_file='posix'
1842             else
1843                 thread_file='solaris'
1844             fi
1845         fi
1846         need_64bit_hwint=yes
1847         ;;
1848 sparc-*-solaris2*)
1849         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
1850         if test x$gnu_ld = xyes; then
1851                 tm_file="${tm_file} sparc/sol2-gld.h"
1852         fi
1853         tmake_file="sparc/t-sol2 sparc/t-crtfm"
1854         if test x$gnu_ld = xyes; then
1855                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1856         else
1857                 tmake_file="$tmake_file t-slibgcc-sld"
1858         fi
1859         case ${target} in
1860         *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
1861                 if test x$gnu_ld = xno; then
1862                         tm_file="${tm_file} sparc/sol26-sld.h"
1863                 fi
1864                 ;;
1865         *-*-solaris2.[789] | *-*-solaris2.1[0-9])
1866                 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
1867                 if test x$gnu_ld = xyes; then
1868                         tm_file="${tm_file} sparc/sol2-gld-bi.h"
1869                 fi
1870                 if test x$gas = xyes; then
1871                         tm_file="${tm_file} sparc/sol2-gas-bi.h"
1872                 fi
1873                 tmake_file="$tmake_file sparc/t-sol2-64"
1874                 need_64bit_hwint=yes
1875                 ;;
1876         esac
1877         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1878         if test x${enable_threads} = x; then
1879             enable_threads=$have_pthread_h
1880             if test x${enable_threads} = x; then
1881                 enable_threads=$have_thread_h
1882             fi
1883         fi
1884         if test x${enable_threads} = xyes; then
1885             if test x${have_pthread_h} = xyes; then
1886                 thread_file='posix'
1887             else
1888                 thread_file='solaris'
1889             fi
1890         fi
1891         ;;
1892 sparc-*-sysv4*)
1893         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sysv4-only.h"
1894         tmake_file=t-svr4
1895         extra_parts="crtbegin.o crtend.o"
1896         use_fixproto=yes
1897         ;;
1898 sparclite-*-coff*)
1899         tm_file="${tm_file} sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
1900         tmake_file=sparc/t-sparclite
1901         ;;
1902 sparclite-*-elf*)
1903         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/liteelf.h"
1904         tmake_file="sparc/t-sparclite sparc/t-crtfm"
1905         extra_parts="crtbegin.o crtend.o"
1906         use_fixproto=yes
1907         ;;
1908 sparc86x-*-elf*)
1909         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"
1910         tmake_file="sparc/t-sp86x sparc/t-crtfm"
1911         extra_parts="crtbegin.o crtend.o"
1912         use_fixproto=yes
1913         ;;
1914 sparc64-*-aout*)
1915         tm_file="sparc/sparc.h sparc/aout.h sparc/sp64-aout.h"
1916         use_fixproto=yes
1917         ;;
1918 sparc64-*-elf*)
1919         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
1920         tmake_file="${tmake_file} sparc/t-crtfm"
1921         extra_parts="crtbegin.o crtend.o"
1922         use_fixproto=yes
1923         ;;
1924 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
1925         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
1926         tmake_file="${tmake_file} sparc/t-crtfm"
1927         case "x$with_cpu" in
1928                 xultrasparc) ;;
1929                 x) with_cpu=ultrasparc ;;
1930                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
1931         esac
1932         need_64bit_hwint=yes
1933         ;;
1934 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
1935         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
1936         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
1937         ;;
1938 sparc64-*-netbsd*)
1939         tmake_file="${tmake_file} sparc/t-netbsd64"
1940         tm_file="sparc/biarch64.h ${tm_file}"
1941         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
1942         ;;
1943 strongarm-*-elf*)
1944         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
1945         tmake_file=arm/t-strongarm-elf
1946         out_file=arm/arm.c
1947         md_file=arm/arm.md
1948         extra_modes=arm/arm-modes.def
1949         use_fixproto=yes
1950         ;;
1951 strongarm-*-pe)
1952         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"
1953         tmake_file=arm/t-strongarm-pe
1954         out_file=arm/arm.c
1955         md_file=arm/arm.md
1956         extra_modes=arm/arm-modes.def
1957         extra_objs=pe.o
1958         use_fixproto=yes
1959         ;;
1960 strongarm-*-kaos*)
1961         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"
1962         tmake_file=arm/t-strongarm-elf
1963         out_file=arm/arm.c
1964         md_file=arm/arm.md
1965         extra_modes=arm/arm-modes.def
1966         ;;
1967 v850e1-*-*)
1968         target_cpu_default="TARGET_CPU_v850e1"
1969         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
1970         tm_p_file=v850/v850-protos.h
1971         tmake_file=v850/t-v850e
1972         md_file=v850/v850.md
1973         out_file=v850/v850.c
1974         if test x$stabs = xyes
1975         then
1976                 tm_file="${tm_file} dbx.h"
1977         fi
1978         use_collect2=no
1979         c_target_objs="v850-c.o"
1980         cxx_target_objs="v850-c.o"
1981         use_fixproto=yes
1982         ;;
1983 v850e-*-*)
1984         target_cpu_default="TARGET_CPU_v850e"
1985         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
1986         tm_p_file=v850/v850-protos.h
1987         tmake_file=v850/t-v850e
1988         md_file=v850/v850.md
1989         out_file=v850/v850.c
1990         if test x$stabs = xyes
1991         then
1992                 tm_file="${tm_file} dbx.h"
1993         fi
1994         use_collect2=no
1995         c_target_objs="v850-c.o"
1996         cxx_target_objs="v850-c.o"
1997         use_fixproto=yes
1998         ;;
1999 v850-*-*)
2000         target_cpu_default="TARGET_CPU_generic"
2001         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2002         tmake_file=v850/t-v850
2003         if test x$stabs = xyes
2004         then
2005                 tm_file="${tm_file} dbx.h"
2006         fi
2007         use_collect2=no
2008         c_target_objs="v850-c.o"
2009         cxx_target_objs="v850-c.o"
2010         use_fixproto=yes
2011         ;;
2012 vax-*-bsd*)                     # VAXen running BSD
2013         tm_file="${tm_file} vax/bsd.h"
2014         use_collect2=yes
2015         use_fixproto=yes
2016         ;;
2017 vax-*-sysv*)                    # VAXen running system V
2018         tm_file="${tm_file} vax/vaxv.h"
2019         use_fixproto=yes
2020         ;;
2021 vax-*-netbsdelf*)
2022         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2023         ;;
2024 vax-*-netbsd*)
2025         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2026         tmake_file=t-netbsd
2027         extra_parts=""
2028         use_collect2=yes
2029         ;;
2030 vax-*-openbsd*)
2031         tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
2032         use_collect2=yes
2033         ;;
2034 vax-*-ultrix*)                  # VAXen running ultrix
2035         tm_file="${tm_file} vax/ultrix.h"
2036         use_fixproto=yes
2037         ;;
2038 xscale-*-elf)
2039         tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2040         tmake_file=arm/t-xscale-elf
2041         out_file=arm/arm.c
2042         md_file=arm/arm.md
2043         extra_modes=arm/arm-modes.def
2044         use_fixproto=yes
2045         ;;
2046 xscale-*-coff)
2047         tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
2048         tmake_file=arm/t-xscale-coff
2049         out_file=arm/arm.c
2050         md_file=arm/arm.md
2051         extra_modes=arm/arm-modes.def
2052         use_fixproto=yes
2053         ;;
2054 xstormy16-*-elf)
2055         # For historical reasons, the target files omit the 'x'.
2056         tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
2057         tm_p_file=stormy16/stormy16-protos.h
2058         md_file=stormy16/stormy16.md
2059         out_file=stormy16/stormy16.c
2060         tmake_file="stormy16/t-stormy16"
2061         extra_parts="crtbegin.o crtend.o"
2062         use_fixproto=yes
2063         ;;
2064 xtensa-*-elf*)
2065         tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2066         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2067         ;;
2068 xtensa-*-linux*)
2069         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2070         tmake_file="t-slibgcc-elf-ver t-linux xtensa/t-xtensa xtensa/t-linux"
2071         ;;
2072 am33_2.0-*-linux*)
2073         tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h mn10300/linux.h"
2074         tmake_file="t-slibgcc-elf-ver t-linux mn10300/t-linux"
2075         gas=yes gnu_ld=yes
2076         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2077         use_collect2=no
2078         ;;
2079 *)
2080         echo "*** Configuration ${target} not supported" 1>&2
2081         exit 1
2082         ;;
2083 esac
2084
2085 # Support for --with-cpu and related options (and a few unrelated options,
2086 # too).
2087 case ${with_cpu} in
2088   yes | no)
2089     echo "--with-cpu must be passed a value" 1>&2
2090     exit 1
2091     ;;
2092 esac
2093
2094 # If there is no $with_cpu option, try to infer one from ${target}.
2095 # This block sets nothing except for with_cpu.
2096 if test x$with_cpu = x ; then
2097   case ${target} in
2098     ep9312-*-*)
2099       # A Cirrus ARM variant.
2100       with_cpu="ep9312"
2101       ;;
2102     i486-*-*)
2103       with_cpu=i486
2104       ;;
2105     i586-*-*)
2106       case ${target_noncanonical} in
2107         k6_2-*)
2108           with_cpu=k6-2
2109           ;;
2110         k6_3-*)
2111           with_cpu=k6-3
2112           ;;
2113         k6-*)
2114           with_cpu=k6
2115           ;;
2116         pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2117           with_cpu=pentium-mmx
2118           ;;
2119         *)
2120           with_cpu=pentium
2121           ;;
2122       esac
2123       ;;
2124     i686-*-* | i786-*-*)
2125       case ${target_noncanonical} in
2126         k8-*|opteron-*|athlon_64-*)
2127           with_cpu=k8
2128           ;;
2129         athlon_xp-*|athlon_mp-*|athlon_4-*)
2130           with_cpu=athlon-4
2131           ;;
2132         athlon_tbird-*|athlon-*)
2133           with_cpu=athlon
2134           ;;
2135         pentium2-*)
2136           with_cpu=pentium2
2137           ;;
2138         pentium3-*)
2139           with_cpu=pentium3
2140           ;;
2141         pentium4-*)
2142           with_cpu=pentium4
2143           ;;
2144         *)
2145           with_cpu=pentiumpro
2146           ;;
2147       esac
2148       ;;
2149     x86_64-*-*)
2150       with_cpu=k8
2151       ;;
2152     alphaev6[78]*-*-*)
2153       with_cpu=ev67
2154       ;;
2155     alphaev6*-*-*)
2156       with_cpu=ev6
2157       ;;
2158     alphapca56*-*-*)
2159       with_cpu=pca56
2160       ;;
2161     alphaev56*-*-*)
2162       with_cpu=ev56
2163       ;;
2164     alphaev5*-*-*)
2165       with_cpu=ev5
2166       ;;
2167     frv-*-*linux*)
2168       with_cpu=fr400
2169       ;;
2170     sparc*-*-*)
2171       with_cpu="`echo ${target} | sed 's/-.*$//'`"
2172       if [ x$with_cpu = xsparc64 ]; then
2173         with_cpu=v9
2174       fi
2175       ;;
2176   esac
2177 fi
2178
2179         # Similarly for --with-schedule.
2180         if test x$with_schedule = x; then
2181                 case ${target} in
2182                 hppa1* | parisc1*)
2183                         # Override default PA8000 scheduling model.
2184                         with_schedule=7100LC
2185                         ;;
2186                 esac
2187         fi
2188
2189         # Validate and mark as valid any --with options supported
2190         # by this target.  In order to use a particular --with option
2191         # you must list it in supported_defaults; validating the value
2192         # is optional.  This case statement should set nothing besides
2193         # supported_defaults.
2194
2195         supported_defaults=
2196         case "${target}" in
2197         alpha*-*-*)
2198                 supported_defaults="cpu tune"
2199                 for which in cpu tune; do
2200                         eval "val=\$with_$which"
2201                         case "$val" in
2202                         "" \
2203                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
2204                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
2205                         | 21264a)
2206                                 ;;
2207                         *)
2208                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
2209                                 exit 1
2210                                 ;;
2211                         esac
2212                 done
2213                 ;;
2214
2215         arm*-*-*)
2216                 supported_defaults="arch cpu float tune fpu"
2217                 for which in cpu tune; do
2218                         eval "val=\$with_$which"
2219                         case "$val" in
2220                         "" \
2221                         | arm[236789] | arm250 | arm[67][01]0 \
2222                         | arm60 | arm620 | arm7d | arm7di \
2223                         | arm7m | arm7dm | arm7dmi | arm[79]tdmi \
2224                         | arm70 | arm700i | arm710t | arm720 \
2225                         | arm720t | arm740t | arm710c | arm920 \
2226                         | arm920t | arm926ejs | arm940t | arm9e | arm10tdmi \
2227                         | arm7100 | arm7500 | arm7500fe | arm810 \
2228                         | arm1026ejs | arm1020t | arm1136js | arm1136jfs \
2229                         | xscale | iwmmxt \
2230                         | ep9312 \
2231                         | strongarm | strongarm110 | strongarm11[01]0)
2232                                 # OK
2233                                 ;;
2234                         *)
2235                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
2236                                 exit 1
2237                                 ;;
2238                         esac
2239                 done
2240
2241                 case "$with_arch" in
2242                 "" \
2243                 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
2244                 | armv5te | armv6j | ep9312)
2245                         # OK
2246                         ;;
2247                 *)
2248                         echo "Unknown arch used in --with-arch=$with_arch" 1>&2
2249                         exit 1
2250                         ;;
2251                 esac
2252
2253                 case "$with_float" in
2254                 "" \
2255                 | soft | hard | softfp)
2256                         # OK
2257                         ;;
2258                 *)
2259                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2260                         exit 1
2261                         ;;
2262                 esac
2263
2264                 case "$with_fpu" in
2265                 "" \
2266                 | fpa | fpe2 | fpe3 | maverick | vfp )
2267                         # OK
2268                         ;;
2269                 *)
2270                         echo "Unknown fpu used in --with-fpu=$fpu" 2>&1
2271                         exit 1
2272                         ;;
2273                 esac
2274
2275                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
2276                         echo "Warning: --with-arch overrides --with-cpu" 1>&2
2277                 fi
2278                 ;;
2279
2280         fr*-*-*linux*)
2281                 supported_defaults=cpu
2282                 case "$with_cpu" in
2283                 fr400) ;;
2284                 *)
2285                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2286                         exit 1
2287                         ;;
2288                 esac
2289                 ;;
2290
2291         hppa*-*-* | parisc*-*-*)
2292                 supported_defaults="arch schedule"
2293
2294                 case "$with_arch" in
2295                 "" | 1.0 | 1.1 | 2.0)
2296                         # OK
2297                         ;;
2298                 *)
2299                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
2300                         exit 1
2301                         ;;
2302                 esac
2303
2304                 case "$with_schedule" in
2305                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
2306                         # OK
2307                         ;;
2308                 *)
2309                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
2310                         exit 1
2311                         ;;
2312                 esac
2313                 ;;
2314
2315         i[34567]86-*-* | x86_64-*-*)
2316                 supported_defaults="arch cpu tune"
2317                 for which in arch cpu tune; do
2318                         eval "val=\$with_$which"
2319                         case ${val} in
2320                         "" | i386 | i486 \
2321                         | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
2322                         | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
2323                         | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
2324                         | athlon-4 | athlon-xp | athlon-mp | k8 | opteron \
2325                         | athlon64 | athlon-fx)
2326                                 # OK
2327                                 ;;
2328                         *)
2329                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
2330                                 exit 1
2331                                 ;;
2332                         esac
2333                 done
2334                 ;;
2335
2336         mips*-*-*)
2337                 supported_defaults="abi arch float tune"
2338
2339                 case ${with_float} in
2340                 "" | soft | hard)
2341                         # OK
2342                         ;;
2343                 *)
2344                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2345                         exit 1
2346                         ;;
2347                 esac
2348
2349                 case ${with_abi} in
2350                 "" | 32 | o64 | n32 | 64 | eabi)
2351                         # OK
2352                         ;;
2353                 *)
2354                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
2355                         exit 1
2356                         ;;
2357                 esac
2358                 ;;
2359
2360         powerpc*-*-* | rs6000-*-*)
2361                 supported_defaults="cpu float tune"
2362
2363                 for which in cpu tune; do
2364                         eval "val=\$with_$which"
2365                         case ${val} in
2366                         default32 | default64)
2367                                 with_which="with_$which"
2368                                 eval $with_which=
2369                                 ;;
2370                         "" | common \
2371                         | power | power2 | power3 | power4 \
2372                         | powerpc | powerpc64 \
2373                         | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
2374                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 505 \
2375                         | 601 | 602 | 603 | 603e | ec603e | 604 \
2376                         | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
2377                         | 8540 | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5)
2378                                 # OK
2379                                 ;;
2380                         *)
2381                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
2382                                 exit 1
2383                                 ;;
2384                         esac
2385                 done
2386                 ;;
2387
2388         s390*-*-*)
2389                 supported_defaults="arch mode tune"
2390
2391                 for which in arch tune; do
2392                         eval "val=\$with_$which"
2393                         case ${val} in
2394                         "" | g5 | g6 | z900 | z990)
2395                                 # OK
2396                                 ;;
2397                         *)
2398                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
2399                                 exit 1
2400                                 ;;
2401                         esac
2402                 done
2403
2404                 case ${with_mode} in
2405                 "" | esa | zarch)
2406                         # OK
2407                         ;;
2408                 *)
2409                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
2410                         exit 1
2411                         ;;
2412                 esac
2413                 ;;
2414
2415         sparc*-*-*)
2416                 supported_defaults="cpu float tune"
2417
2418                 for which in cpu tune; do
2419                         eval "val=\$with_$which"
2420                         case ${val} in
2421                         "" | sparc | sparcv9 | sparc64 | sparc86x \
2422                         | v7 | cypress | v8 | supersparc | sparclite | f930 \
2423                         | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
2424                         | v9 | ultrasparc | ultrasparc3)
2425                                 # OK
2426                                 ;;
2427                         *)
2428                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
2429                                 exit 1
2430                                 ;;
2431                         esac
2432                 done
2433
2434                 case ${with_float} in
2435                 "" | soft | hard)
2436                         # OK
2437                         ;;
2438                 *)
2439                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2440                         exit 1
2441                         ;;
2442                 esac
2443                 ;;
2444
2445         v850*-*-*)
2446                 supported_defaults=cpu
2447                 case ${with_cpu} in
2448                 "" | v850e | v850e1)
2449                         # OK
2450                         ;;
2451                 *)
2452                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2453                         exit 1
2454                         ;;
2455                 esac
2456                 ;;
2457         esac
2458
2459         # Set some miscellaneous flags for particular targets.
2460         target_cpu_default2=
2461         case ${target} in
2462         alpha*-*-*)
2463                 if test x$gas = xyes
2464                 then
2465                         target_cpu_default2="MASK_GAS"
2466                 fi
2467                 ;;
2468
2469         arm*-*-*)
2470                 case "x$with_cpu" in
2471                 x)
2472                         # The most generic
2473                         target_cpu_default2="TARGET_CPU_generic"
2474                         ;;
2475
2476                 *)
2477                         target_cpu_default2="TARGET_CPU_$with_cpu"
2478                         ;;
2479                 esac
2480                 ;;
2481
2482         hppa*-*-* | parisc*-*-*)
2483                 if test x$gas = xyes
2484                 then
2485                         target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2486                 fi
2487                 ;;
2488
2489         mips*-*-*)
2490                 case ${target} in
2491                 mips*-*-ecoff* | mips*-*-elf*)
2492                         if test x$gas = xyes
2493                         then
2494                                 if test x$gnu_ld = xyes
2495                                 then
2496                                         target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2497                                 else
2498                                         target_cpu_default2="MASK_GAS"
2499                                 fi
2500                         fi
2501                         ;;
2502                 mips*-*-*)
2503                         if test x$gas = xyes
2504                         then
2505                                 target_cpu_default2="MASK_GAS"
2506                         fi
2507                         ;;
2508                 esac
2509                 case ${target} in
2510                         mips*el-*-*)
2511                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2512                                 ;;
2513                 esac
2514                 case $tm_file in
2515                         *mips/elf.h* | *mips/elf64.h*)
2516                                 tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2517                                 ;;
2518                 esac
2519                 if test "x$enable_gofast" = xyes
2520                 then
2521                         tm_defines="US_SOFTWARE_GOFAST $tm_defines"
2522                         tmake_file="mips/t-gofast $tmake_file"
2523                 else
2524                         tmake_file="mips/t-mips $tmake_file"
2525                 fi
2526                 ;;
2527
2528         powerpc*-*-* | rs6000-*-*)
2529                 if test x$enable_altivec = xyes
2530                 then
2531                         tm_file="$tm_file rs6000/altivec-defs.h"
2532                 fi
2533                 # FIXME: The PowerPC port uses the value set at compile time,
2534                 # although it's only cosmetic.
2535                 if test "x$with_cpu" != x
2536                 then
2537                         target_cpu_default2="\\\"$with_cpu\\\""
2538                 fi
2539                 out_file=rs6000/rs6000.c
2540                 c_target_objs="${c_target_objs} rs6000-c.o"
2541                 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2542                 tmake_file="rs6000/t-rs6000 ${tmake_file}"
2543                 ;;
2544
2545         sparc*-*-*)
2546                 # Some standard aliases.
2547                 case x$with_cpu in
2548                 xsparc)
2549                         with_cpu=v7
2550                         ;;
2551                 xsparc86x)
2552                         with_cpu=sparclite86x
2553                         ;;
2554                 xsparcv9 | xsparc64)
2555                         with_cpu=v9
2556                         ;;
2557                 esac
2558
2559                 # The Sparc port checks this value at compile-time.
2560                 target_cpu_default2="TARGET_CPU_$with_cpu"
2561                 ;;
2562         v850*-*-*)
2563                 # FIXME: The v850 is "special" in that it does not support
2564                 # runtime CPU selection, only --with-cpu.
2565                 case "x$with_cpu" in
2566                 x)
2567                         ;;
2568                 xv850e)
2569                         target_cpu_default2="TARGET_CPU_$with_cpu"
2570                         ;;
2571                 esac
2572                 ;;
2573         esac
2574
2575         t=
2576         all_defaults="abi cpu arch tune schedule float mode fpu"
2577         for option in $all_defaults
2578         do
2579                 eval "val=\$with_$option"
2580                 if test -n "$val"; then
2581                         case " $supported_defaults " in
2582                         *" $option "*)
2583                                 ;;
2584                         *)
2585                                 echo "This target does not support --with-$option." 2>&1
2586                                 exit 1
2587                                 ;;
2588                         esac
2589
2590                         if test "x$t" = x
2591                         then
2592                                 t="{ \"$option\", \"$val\" }"
2593                         else
2594                                 t="${t}, { \"$option\", \"$val\" }"
2595                         fi
2596                 fi
2597         done
2598         if test "x$t" = x
2599         then
2600                 configure_default_options="{ { NULL, NULL} }"
2601         else
2602                 configure_default_options="{ ${t} }"
2603         fi
2604
2605         if test "$target_cpu_default2" != ""
2606         then
2607                 if test "$target_cpu_default" != ""
2608                 then
2609                         target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2610                 else
2611                         target_cpu_default=$target_cpu_default2
2612                 fi
2613         fi