OSDN Git Service

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