OSDN Git Service

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