OSDN Git Service

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