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