OSDN Git Service

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