OSDN Git Service

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