OSDN Git Service

* config.gcc: Declare score-* and crx-* obsolete.
[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 ${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-fprules-fpbit rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2077         extra_options="${extra_options} rs6000/sysv4.opt"
2078         ;;
2079 powerpc-*-netbsd*)
2080         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2081         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2082         tmake_file="${tmake_file} rs6000/t-netbsd"
2083         extra_options="${extra_options} rs6000/sysv4.opt"
2084         ;;
2085 powerpc-*-eabispe*)
2086         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"
2087         extra_options="${extra_options} rs6000/sysv4.opt"
2088         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
2089         use_gcc_stdint=wrap
2090         ;;
2091 powerpc-*-eabisimaltivec*)
2092         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"
2093         extra_options="${extra_options} rs6000/sysv4.opt"
2094         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
2095         use_gcc_stdint=wrap
2096         ;;
2097 powerpc-*-eabisim*)
2098         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"
2099         extra_options="${extra_options} rs6000/sysv4.opt"
2100         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2101         use_gcc_stdint=wrap
2102         ;;
2103 powerpc-*-elf*)
2104         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h"
2105         extra_options="${extra_options} rs6000/sysv4.opt"
2106         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2107         ;;
2108 powerpc-*-eabialtivec*)
2109         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"
2110         extra_options="${extra_options} rs6000/sysv4.opt"
2111         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
2112         use_gcc_stdint=wrap
2113         ;;
2114 powerpc-xilinx-eabi*)
2115         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"
2116         extra_options="${extra_options} rs6000/sysv4.opt rs6000/xilinx.opt"
2117         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm rs6000/t-xilinx"
2118         use_gcc_stdint=wrap
2119         ;;
2120 powerpc-*-eabi*)
2121         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"
2122         extra_options="${extra_options} rs6000/sysv4.opt"
2123         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2124         use_gcc_stdint=wrap
2125         ;;
2126 powerpc-*-rtems*)
2127         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"
2128         extra_options="${extra_options} rs6000/sysv4.opt"
2129         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm"
2130         ;;
2131 powerpc-*-linux* | powerpc64-*-linux*)
2132         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h rs6000/sysv4.h"
2133         extra_options="${extra_options} rs6000/sysv4.opt"
2134         tmake_file="t-dfprules rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2135         maybe_biarch=yes
2136         case ${target} in
2137             powerpc64-*-linux*spe* | powerpc64-*-linux*paired*)
2138                 echo "*** Configuration ${target} not supported" 1>&2
2139                 exit 1
2140                 ;;
2141             powerpc-*-linux*spe* | powerpc-*-linux*paired*)
2142                 maybe_biarch=
2143                 ;;
2144             powerpc64-*-linux*)
2145                 test x$with_cpu != x || cpu_is_64bit=yes
2146                 maybe_biarch=always
2147                 ;;
2148         esac
2149         case ${maybe_biarch}:${enable_targets}:${cpu_is_64bit} in
2150             always:* | yes:*powerpc64* | yes:all:* | yes:*:yes)
2151                 if test x$cpu_is_64bit = xyes; then
2152                     tm_file="${tm_file} rs6000/default64.h"
2153                 fi
2154                 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h glibc-stdint.h"
2155                 tmake_file="$tmake_file rs6000/t-linux64"
2156                 extra_options="${extra_options} rs6000/linux64.opt"
2157                 ;;
2158             *)
2159                 tm_file="${tm_file} rs6000/linux.h glibc-stdint.h"
2160                 ;;
2161         esac
2162         tmake_file="${tmake_file} t-slibgcc-libgcc rs6000/t-fprules-softfp soft-fp/t-softfp"
2163         case ${target} in
2164             powerpc*-*-linux*altivec*)
2165                 tm_file="${tm_file} rs6000/linuxaltivec.h" ;;
2166             powerpc*-*-linux*spe*)
2167                 tm_file="${tm_file} rs6000/linuxspe.h rs6000/e500.h" ;;
2168             powerpc*-*-linux*paired*)
2169                 tm_file="${tm_file} rs6000/750cl.h" ;;
2170         esac
2171         if test x${enable_secureplt} = xyes; then
2172                 tm_file="rs6000/secureplt.h ${tm_file}"
2173         fi
2174         ;;
2175 powerpc64-*-gnu*)
2176         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"
2177         extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
2178         tmake_file="t-slibgcc-elf-ver t-slibgcc-libgcc t-gnu"
2179         ;;
2180 powerpc-*-gnu-gnualtivec*)
2181         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"
2182         extra_options="${extra_options} rs6000/sysv4.opt"
2183         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-slibgcc-libgcc t-gnu rs6000/t-ppccomm"
2184         if test x$enable_threads = xyes; then
2185                 thread_file='posix'
2186         fi
2187         ;;
2188 powerpc-*-gnu*)
2189         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"
2190         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-slibgcc-libgcc t-gnu rs6000/t-ppccomm"
2191         extra_options="${extra_options} rs6000/sysv4.opt"
2192         if test x$enable_threads = xyes; then
2193                 thread_file='posix'
2194         fi
2195         ;;
2196 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
2197         tm_file="${tm_file} elfos.h freebsd-spec.h rs6000/sysv4.h"
2198         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppccomm rs6000/t-vxworks"
2199         extra_options="${extra_options} rs6000/sysv4.opt"
2200         extra_headers=ppc-asm.h
2201         case ${target} in
2202           *-vxworksae*)
2203             tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksae.h"
2204             tmake_file="${tmake_file} rs6000/t-vxworksae"
2205             ;;
2206           *-vxworks*)
2207             tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
2208             ;;
2209         esac
2210         ;;
2211 powerpc-*-lynxos*)
2212         xm_defines=POSIX
2213         tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
2214         tmake_file="t-lynx rs6000/t-lynx"
2215         extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
2216         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2217         thread_file=lynx
2218         gnu_ld=yes
2219         gas=yes
2220         ;;
2221 powerpcle-*-elf*)
2222         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h"
2223         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2224         extra_options="${extra_options} rs6000/sysv4.opt"
2225         ;;
2226 powerpcle-*-eabisim*)
2227         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"
2228         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2229         extra_options="${extra_options} rs6000/sysv4.opt"
2230         use_gcc_stdint=wrap
2231         ;;
2232 powerpcle-*-eabi*)
2233         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"
2234         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2235         extra_options="${extra_options} rs6000/sysv4.opt"
2236         use_gcc_stdint=wrap
2237         ;;
2238 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2239         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h rs6000/aix-stdint.h"
2240         tmake_file=rs6000/t-aix43
2241         extra_options="${extra_options} rs6000/aix64.opt"
2242         use_collect2=yes
2243         thread_file='aix'
2244         use_gcc_stdint=provide
2245         extra_headers=
2246         ;;
2247 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
2248         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h rs6000/aix-stdint.h"
2249         extra_options="${extra_options} rs6000/aix64.opt"
2250         tmake_file=rs6000/t-aix43
2251         use_collect2=yes
2252         thread_file='aix'
2253         use_gcc_stdint=wrap
2254         extra_headers=
2255         ;;
2256 rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
2257         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h rs6000/aix-stdint.h"
2258         tmake_file=rs6000/t-aix52
2259         extra_options="${extra_options} rs6000/aix64.opt"
2260         use_collect2=yes
2261         thread_file='aix'
2262         use_gcc_stdint=wrap
2263         extra_headers=
2264         ;;
2265 rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
2266         tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h rs6000/aix-stdint.h"
2267         tmake_file=rs6000/t-aix52
2268         extra_options="${extra_options} rs6000/aix64.opt"
2269         use_collect2=yes
2270         thread_file='aix'
2271         use_gcc_stdint=wrap
2272         extra_headers=altivec.h
2273         ;;
2274 rs6000-ibm-aix[6789].* | powerpc-ibm-aix[6789].*)
2275         tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h rs6000/aix-stdint.h"
2276         tmake_file=rs6000/t-aix52
2277         extra_options="${extra_options} rs6000/aix64.opt"
2278         use_collect2=yes
2279         thread_file='aix'
2280         use_gcc_stdint=wrap
2281         extra_headers=altivec.h
2282         ;;
2283 rx-*-elf*)
2284         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} ../../libgcc/config/rx/rx-abi.h"
2285         tmake_file="${tmake_file} rx/t-rx"
2286         ;;
2287 s390-*-linux*)
2288         tm_file="s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2289         ;;
2290 s390x-*-linux*)
2291         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2292         tm_p_file=s390/s390-protos.h
2293         md_file=s390/s390.md
2294         extra_modes=s390/s390-modes.def
2295         out_file=s390/s390.c
2296         tmake_file="${tmake_file} s390/t-linux64"
2297         ;;
2298 s390x-ibm-tpf*)
2299         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h s390/tpf.h"
2300         tm_p_file=s390/s390-protos.h
2301         md_file=s390/s390.md
2302         extra_modes=s390/s390-modes.def
2303         out_file=s390/s390.c
2304         extra_parts="crtbeginS.o crtendS.o"
2305         thread_file='tpf'
2306         extra_options="${extra_options} s390/tpf.opt"
2307         ;;
2308 score-*-elf)
2309         tm_file="dbxelf.h elfos.h score/elf.h score/score.h newlib-stdint.h"
2310         tmake_file=score/t-score-elf
2311         extra_objs="score7.o score3.o"
2312         ;;
2313 sh-*-elf* | sh[12346l]*-*-elf* | \
2314 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
2315   sh-*-linux* | sh[2346lbe]*-*-linux* | \
2316   sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2317    sh64-*-netbsd* | sh64l*-*-netbsd*)
2318         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2319         if test x${with_endian} = x; then
2320                 case ${target} in
2321                 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2322                 shbe-*-* | sheb-*-*)               with_endian=big,little ;;
2323                 sh[1234]l* | sh[34]*-*-linux*)     with_endian=little ;;
2324                 shl* | sh64l* | sh*-*-linux* | \
2325                   sh5l* | sh-superh-elf)           with_endian=little,big ;;
2326                 sh[1234]*-*-*)                     with_endian=big ;;
2327                 *)                                 with_endian=big,little ;;
2328                 esac
2329         fi
2330         # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2331         #  First word : the default endian.
2332         #  Second word: the secondary endian (optional).
2333         case ${with_endian} in
2334         big)            TM_ENDIAN_CONFIG=mb ;;
2335         little)         TM_ENDIAN_CONFIG=ml ;;
2336         big,little)     TM_ENDIAN_CONFIG="mb ml" ;;
2337         little,big)     TM_ENDIAN_CONFIG="ml mb" ;;
2338         *)      echo "with_endian=${with_endian} not supported."; exit 1 ;;
2339         esac
2340         case ${with_endian} in
2341         little*)        tm_file="sh/little.h ${tm_file}" ;;
2342         esac
2343         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h"
2344         case ${target} in
2345         sh*-*-linux*)   tmake_file="${tmake_file} sh/t-linux"
2346                         tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
2347         sh*-*-netbsd*)
2348                         tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2349                         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2350
2351                         ;;
2352         sh*-superh-elf) if test x$with_libgloss != xno; then
2353                                 with_libgloss=yes
2354                                 tm_file="${tm_file} sh/newlib.h"
2355                         fi
2356                         tm_file="${tm_file} sh/embed-elf.h"
2357                         tm_file="${tm_file} sh/superh.h"
2358                         tmake_file="${tmake_file} sh/t-superh"
2359                         extra_options="${extra_options} sh/superh.opt" ;;
2360         *)              if test x$with_newlib = xyes \
2361                            && test x$with_libgloss = xyes; then
2362                                 tm_file="${tm_file} sh/newlib.h"
2363                         fi
2364                         tm_file="${tm_file} sh/embed-elf.h" ;;
2365         esac
2366         case ${target} in
2367         sh5*-*-netbsd*)
2368                 # SHmedia, 32-bit ABI
2369                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
2370                 ;;
2371         sh64*-netbsd*)
2372                 # SHmedia, 64-bit ABI
2373                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
2374                 ;;
2375         *-*-netbsd)
2376                 tmake_file="${tmake_file} sh/t-netbsd"
2377                 ;;
2378         sh64*-*-linux*)
2379                 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
2380                 tm_file="${tm_file} sh/sh64.h"
2381                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2382                 ;;
2383         sh64*)
2384                 tmake_file="${tmake_file} sh/t-sh64"
2385                 tm_file="${tm_file} sh/sh64.h"
2386                 if test x$with_newlib = xyes; then
2387                         tm_file="${tm_file} newlib-stdint.h"
2388                 fi
2389                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2390                 ;;
2391         *-*-symbianelf*)
2392                 tmake_file="sh/t-symbian"
2393                 tm_file="sh/symbian-pre.h sh/little.h ${tm_file} sh/symbian-post.h"
2394                 c_target_objs="symbian-base.o symbian-c.o"
2395                 cxx_target_objs="symbian-base.o symbian-cxx.o"
2396                 extra_parts="crt1.o crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
2397                 ;;
2398         *-*-elf*)
2399                 tm_file="${tm_file} newlib-stdint.h"
2400                 ;;
2401         esac
2402         # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2403         case `echo ${target} | sed 's/e[lb]-/-/'` in
2404         sh64*-*-netbsd*)        sh_cpu_target=sh5-64media ;;
2405         sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
2406         sh4a_single_only*)      sh_cpu_target=sh4a-single-only ;;
2407         sh4a_single*)           sh_cpu_target=sh4a-single ;;
2408         sh4a_nofpu*)            sh_cpu_target=sh4a-nofpu ;;
2409         sh4al)                  sh_cpu_target=sh4al ;;
2410         sh4a*)                  sh_cpu_target=sh4a ;;
2411         sh4_single_only*)       sh_cpu_target=sh4-single-only ;;
2412         sh4_single*)            sh_cpu_target=sh4-single ;;
2413         sh4_nofpu*)             sh_cpu_target=sh4-nofpu ;;
2414         sh4* | sh-superh-*)     sh_cpu_target=sh4 ;;
2415         sh3e*)                  sh_cpu_target=sh3e ;;
2416         sh*-*-netbsd* | sh3*)   sh_cpu_target=sh3 ;;
2417         sh2a_single_only*)      sh_cpu_target=sh2a-single-only ;;
2418         sh2a_single*)           sh_cpu_target=sh2a-single ;;
2419         sh2a_nofpu*)            sh_cpu_target=sh2a-nofpu ;;
2420         sh2a*)                  sh_cpu_target=sh2a ;;
2421         sh2e*)                  sh_cpu_target=sh2e ;;
2422         sh2*)                   sh_cpu_target=sh2 ;;
2423         *)                      sh_cpu_target=sh1 ;;
2424         esac
2425         # did the user say --without-fp ?
2426         if test x$with_fp = xno; then
2427                 case ${sh_cpu_target} in
2428                 sh5-*media)     sh_cpu_target=${sh_cpu_target}-nofpu ;;
2429                 sh4al | sh1)    ;;
2430                 sh4a* )         sh_cpu_target=sh4a-nofpu ;;
2431                 sh4*)           sh_cpu_target=sh4-nofpu ;;
2432                 sh3*)           sh_cpu_target=sh3 ;;
2433                 sh2a*)          sh_cpu_target=sh2a-nofpu ;;
2434                 sh2*)           sh_cpu_target=sh2 ;;
2435                 *)      echo --without-fp not available for $target: ignored
2436                 esac
2437                 tm_defines="$tm_defines STRICT_NOFPU=1"
2438         fi
2439         sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2440         case $sh_cpu_default in
2441         sh5-64media-nofpu | sh5-64media | \
2442           sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
2443           sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
2444           sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
2445           sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
2446           sh3e | sh3 | sh2e | sh2 | sh1) ;;
2447         "")     sh_cpu_default=${sh_cpu_target} ;;
2448         *)      echo "with_cpu=$with_cpu not supported"; exit 1 ;;
2449         esac
2450         sh_multilibs=${with_multilib_list}
2451         if test "$sh_multilibs" = "default" ; then
2452                 case ${target} in
2453                 sh64-superh-linux* | \
2454                 sh[1234]*)      sh_multilibs=${sh_cpu_target} ;;
2455                 sh64* | sh5*)   sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
2456                 sh-superh-*)    sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2457                 sh*-*-linux*)   sh_multilibs=m1,m3e,m4 ;;
2458                 sh*-*-netbsd*)  sh_multilibs=m3,m3e,m4 ;;
2459                 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
2460                 esac
2461                 if test x$with_fp = xno; then
2462                         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`"
2463                 fi
2464         fi
2465         target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
2466         tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
2467         tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2468         sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^[Ss][Hh]/m/' -e 's/ [Ss][Hh]/ m/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
2469         for sh_multilib in ${sh_multilibs}; do
2470                 case ${sh_multilib} in
2471                 m1 | m2 | m2e | m3 | m3e | \
2472                 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2473                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
2474                 m2a | m2a-single | m2a-single-only | m2a-nofpu | \
2475                 m5-64media | m5-64media-nofpu | \
2476                 m5-32media | m5-32media-nofpu | \
2477                 m5-compact | m5-compact-nofpu)
2478                         # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2479                         # It is passed to MULTIILIB_OPTIONS verbatim.
2480                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2481                         tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2482                         ;;
2483                 \!*)    # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2484                         # It is passed the MULTILIB_EXCEPTIONS verbatim.
2485                         TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
2486                 *)
2487                         echo "with_multilib_list=${sh_multilib} not supported."
2488                         exit 1
2489                         ;;
2490                 esac
2491         done
2492         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
2493         if test x${enable_incomplete_targets} = xyes ; then
2494                 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"
2495         fi
2496         tm_file="$tm_file ./sysroot-suffix.h"
2497         tmake_file="$tmake_file t-sysroot-suffix"
2498         ;;
2499 sh-*-rtems*)
2500         tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
2501         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
2502         ;;
2503 sh-wrs-vxworks)
2504         tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
2505         tm_file="${tm_file} elfos.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
2506         ;;
2507 sparc-*-elf*)
2508         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp-elf.h"
2509         case ${target} in
2510             *-leon-*)
2511                 tmake_file="sparc/t-leon"
2512                 ;;
2513             *-leon[3-9]*)
2514                 tmake_file="sparc/t-leon3"
2515                 ;;
2516             *)
2517                 tmake_file="sparc/t-elf"
2518                 ;;
2519         esac
2520         tmake_file="${tmake_file} sparc/t-crtfm"
2521         extra_parts="crtbegin.o crtend.o"
2522         ;;
2523 sparc-*-rtems*)
2524         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
2525         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
2526         extra_parts="crtbegin.o crtend.o"
2527         ;;
2528 sparc-*-linux*)
2529         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h"
2530         extra_options="${extra_options} sparc/long-double-switch.opt"
2531         case ${target} in
2532             *-leon-*)
2533                 tmake_file="${tmake_file} sparc/t-leon"
2534                 ;;
2535             *-leon[3-9]*)
2536                 tmake_file="${tmake_file} sparc/t-leon3"
2537                 ;;
2538             *)
2539                 tmake_file="${tmake_file} sparc/t-linux"
2540                 ;;
2541         esac
2542         if test x$enable_targets = xall; then
2543                 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
2544                 tmake_file="${tmake_file} sparc/t-linux64"
2545         else
2546                 tm_file="${tm_file} sparc/linux.h"
2547         fi
2548         tmake_file="${tmake_file} sparc/t-crtfm"
2549         ;;
2550 sparc-*-netbsdelf*)
2551         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2552         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2553         extra_options="${extra_options} sparc/long-double-switch.opt"
2554         ;;
2555 sparc*-*-solaris2*)
2556         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sol2.h"
2557         case ${target} in
2558             *-*-solaris2.1[0-9]*)
2559                 tm_file="${tm_file} sol2-10.h"
2560                 use_gcc_stdint=wrap
2561                 ;;
2562             *)
2563                 use_gcc_stdint=provide
2564                 ;;
2565         esac
2566         tm_file="${tm_file} sparc/sol2.h"
2567         case ${target} in
2568             sparc64-*-* | sparcv9-*-*)
2569                 tm_file="${tm_file} sparc/sol2-64.h"
2570                 ;;
2571             *)
2572                 test x$with_cpu != x || with_cpu=v9
2573                 ;;
2574         esac
2575         tm_file="${tm_file} sparc/sol2-bi.h"
2576         if test x$gas = xyes; then
2577                 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
2578         fi
2579         if test x$gnu_ld = xyes; then
2580                 tm_file="${tm_file} sol2-gld.h sparc/sol2-gld-bi.h"
2581         fi
2582         tm_file="${tm_file} tm-dwarf2.h"
2583         tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
2584         if test x$gnu_ld = xyes; then
2585                 tmake_file="$tmake_file t-slibgcc-elf-ver"
2586         else
2587                 tmake_file="$tmake_file t-slibgcc-sld"
2588         fi
2589         if test x$gas = xyes; then
2590                 tm_file="usegas.h ${tm_file}"
2591         fi
2592         c_target_objs="sol2-c.o"
2593         cxx_target_objs="sol2-c.o"
2594         extra_objs="sol2.o"
2595         tm_p_file="${tm_p_file} sol2-protos.h"
2596         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
2597         case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
2598           "":yes:* | yes:yes:* )
2599                 thread_file=posix
2600                 ;;
2601           "":*:yes | yes:*:yes )
2602                 thread_file=solaris
2603                 ;;
2604         esac
2605         ;;
2606 sparc-wrs-vxworks)
2607         tm_file="${tm_file} elfos.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
2608         tmake_file="${tmake_file} sparc/t-vxworks"
2609         ;;
2610 sparc64-*-elf*)
2611         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
2612         extra_options="${extra_options} sparc/little-endian.opt"
2613         tmake_file="${tmake_file} sparc/t-crtfm"
2614         extra_parts="crtbegin.o crtend.o"
2615         ;;
2616 sparc64-*-rtems*)
2617         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h sparc/rtemself.h rtems.h"
2618         extra_options="${extra_options} sparc/little-endian.opt"
2619         tmake_file="${tmake_file} sparc/t-crtfm t-rtems"
2620         extra_parts="crtbegin.o crtend.o"
2621         ;;
2622 sparc64-*-linux*)
2623         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"
2624         extra_options="${extra_options} sparc/long-double-switch.opt"
2625         tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
2626         ;;
2627 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2628         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2629         extra_options="${extra_options} sparc/long-double-switch.opt"
2630         tmake_file="${tmake_file} sparc/t-crtfm"
2631         case "x$with_cpu" in
2632                 xultrasparc) ;;
2633                 x) with_cpu=ultrasparc ;;
2634                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2635         esac
2636         ;;
2637 sparc64-*-netbsd*)
2638         tm_file="sparc/biarch64.h ${tm_file}"
2639         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2640         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2641         extra_options="${extra_options} sparc/long-double-switch.opt"
2642         tmake_file="${tmake_file} sparc/t-netbsd64"
2643         ;;
2644 sparc64-*-openbsd*)
2645         tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h"
2646         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h sparc/openbsd64.h"
2647         extra_options="${extra_options} openbsd.opt"
2648         extra_options="${extra_options} sparc/little-endian.opt"
2649         gas=yes gnu_ld=yes
2650         with_cpu=ultrasparc
2651         ;;
2652 spu-*-elf*)
2653         tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
2654         tmake_file="spu/t-spu-elf"
2655         extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h spu_cache.h"
2656         extra_modes=spu/spu-modes.def
2657         c_target_objs="${c_target_objs} spu-c.o"
2658         cxx_target_objs="${cxx_target_objs} spu-c.o"
2659         ;;
2660 v850e1-*-*)
2661         target_cpu_default="TARGET_CPU_v850e1"
2662         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
2663         tm_p_file=v850/v850-protos.h
2664         tmake_file=v850/t-v850e
2665         md_file=v850/v850.md
2666         extra_modes=v850/v850-modes.def
2667         out_file=v850/v850.c
2668         extra_options="${extra_options} v850/v850.opt"
2669         if test x$stabs = xyes
2670         then
2671                 tm_file="${tm_file} dbx.h"
2672         fi
2673         use_collect2=no
2674         c_target_objs="v850-c.o"
2675         cxx_target_objs="v850-c.o"
2676         use_gcc_stdint=wrap
2677         ;;
2678 v850e-*-*)
2679         target_cpu_default="TARGET_CPU_v850e"
2680         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
2681         tm_p_file=v850/v850-protos.h
2682         tmake_file=v850/t-v850e
2683         md_file=v850/v850.md
2684         extra_modes=v850/v850-modes.def
2685         out_file=v850/v850.c
2686         extra_options="${extra_options} v850/v850.opt"
2687         if test x$stabs = xyes
2688         then
2689                 tm_file="${tm_file} dbx.h"
2690         fi
2691         use_collect2=no
2692         c_target_objs="v850-c.o"
2693         cxx_target_objs="v850-c.o"
2694         use_gcc_stdint=wrap
2695         ;;
2696 v850-*-*)
2697         target_cpu_default="TARGET_CPU_generic"
2698         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2699         tmake_file=v850/t-v850
2700         if test x$stabs = xyes
2701         then
2702                 tm_file="${tm_file} dbx.h"
2703         fi
2704         use_collect2=no
2705         c_target_objs="v850-c.o"
2706         cxx_target_objs="v850-c.o"
2707         use_gcc_stdint=wrap
2708         ;;
2709 vax-*-linux*)
2710         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h vax/elf.h vax/linux.h"
2711         extra_options="${extra_options} vax/elf.opt"
2712         tmake_file="${tmake_file} vax/t-linux"
2713         ;;
2714 vax-*-netbsdelf*)
2715         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2716         extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
2717         ;;
2718 vax-*-netbsd*)
2719         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2720         extra_options="${extra_options} netbsd.opt"
2721         tmake_file=t-netbsd
2722         extra_parts=""
2723         use_collect2=yes
2724         ;;
2725 vax-*-openbsd*)
2726         tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-pthread.h vax/openbsd.h"
2727         extra_options="${extra_options} openbsd.opt"
2728         use_collect2=yes
2729         ;;
2730 xstormy16-*-elf)
2731         # For historical reasons, the target files omit the 'x'.
2732         tm_file="dbxelf.h elfos.h newlib-stdint.h stormy16/stormy16.h"
2733         tm_p_file=stormy16/stormy16-protos.h
2734         md_file=stormy16/stormy16.md
2735         out_file=stormy16/stormy16.c
2736         extra_options=stormy16/stormy16.opt
2737         tmake_file="stormy16/t-stormy16"
2738         extra_parts="crtbegin.o crtend.o"
2739         ;;
2740 xtensa*-*-elf*)
2741         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h xtensa/elf.h"
2742         extra_options="${extra_options} xtensa/elf.opt"
2743         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2744         ;;
2745 xtensa*-*-linux*)
2746         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/linux.h"
2747         tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
2748         ;;
2749 am33_2.0-*-linux*)
2750         tm_file="mn10300/mn10300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h mn10300/linux.h"
2751         tmake_file="${tmake_file} mn10300/t-linux"
2752         gas=yes gnu_ld=yes
2753         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2754         use_collect2=no
2755         ;;
2756 m32c-*-rtems*)
2757         tm_file="dbxelf.h elfos.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
2758         tmake_file="${tmake_file} t-rtems"
2759         c_target_objs="m32c-pragma.o"
2760         cxx_target_objs="m32c-pragma.o"
2761         ;;
2762 m32c-*-elf*)
2763         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2764         c_target_objs="m32c-pragma.o"
2765         cxx_target_objs="m32c-pragma.o"
2766         ;;
2767 *)
2768         echo "*** Configuration ${target} not supported" 1>&2
2769         exit 1
2770         ;;
2771 esac
2772
2773 case ${target} in
2774 i[34567]86-*-linux* | x86_64-*-linux*)
2775         tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
2776         ;;
2777 i[34567]86-*-* | x86_64-*-*)
2778         tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
2779         ;;
2780 powerpc*-*-* | rs6000-*-*)
2781         tm_file="${tm_file} rs6000/option-defaults.h"
2782 esac
2783
2784 # Support for --with-cpu and related options (and a few unrelated options,
2785 # too).
2786 case ${with_cpu} in
2787   yes | no)
2788     echo "--with-cpu must be passed a value" 1>&2
2789     exit 1
2790     ;;
2791 esac
2792
2793 # Set arch and cpu from ${target} and ${target_noncanonical}.  Set cpu
2794 # to generic if there is no processor scheduler model for the target.
2795 arch=
2796 cpu=
2797 arch_without_sse2=no
2798 arch_without_64bit=no
2799 case ${target} in
2800   i386-*-*)
2801     arch=i386
2802     cpu=i386
2803     arch_without_sse2=yes
2804     arch_without_64bit=yes
2805     ;;
2806   i486-*-*)
2807     arch=i486
2808     cpu=i486
2809     arch_without_sse2=yes
2810     arch_without_64bit=yes
2811     ;;
2812   i586-*-*)
2813     arch_without_sse2=yes
2814     arch_without_64bit=yes
2815     case ${target_noncanonical} in
2816       k6_2-*)
2817         arch=k6-2
2818         cpu=k6-2
2819         ;;
2820       k6_3-*)
2821         arch=k6-3
2822         cpu=k6-3
2823         ;;
2824       k6-*)
2825         arch=k6
2826         cpu=k6
2827         ;;
2828       pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2829         arch=pentium-mmx
2830         cpu=pentium-mmx
2831         ;;
2832       *)
2833         arch=pentium
2834         cpu=pentium
2835         ;;
2836     esac
2837     ;;
2838   i686-*-* | i786-*-*)
2839     case ${target_noncanonical} in
2840       bdver1-*)
2841         arch=bdver1
2842         cpu=bdver1
2843         ;;
2844       btver1-*)
2845         arch=btver1
2846         cpu=btver1
2847         ;;
2848       amdfam10-*|barcelona-*)
2849         arch=amdfam10
2850         cpu=amdfam10
2851         ;;
2852       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2853         arch=k8-sse3
2854         cpu=k8-sse3
2855         ;;
2856       k8-*|opteron-*|athlon64-*|athlon_fx-*)
2857         arch=k8
2858         cpu=k8
2859         ;;
2860       athlon_xp-*|athlon_mp-*|athlon_4-*)
2861         arch=athlon-4
2862         cpu=athlon-4
2863         arch_without_sse2=yes
2864         arch_without_64bit=yes
2865         ;;
2866       athlon_tbird-*|athlon-*)
2867         arch=athlon
2868         cpu=athlon
2869         arch_without_sse2=yes
2870         ;;
2871       geode-*)
2872         arch=geode
2873         cpu=geode
2874         arch_without_sse2=yes
2875         ;;
2876       pentium2-*)
2877         arch=pentium2
2878         cpu=pentium2
2879         arch_without_sse2=yes
2880         ;;
2881       pentium3-*|pentium3m-*)
2882         arch=pentium3
2883         cpu=pentium3
2884         arch_without_sse2=yes
2885         ;;
2886       pentium4-*|pentium4m-*)
2887         arch=pentium4
2888         cpu=pentium4
2889         ;;
2890       prescott-*)
2891         arch=prescott
2892         cpu=prescott
2893         ;;
2894       nocona-*)
2895         arch=nocona
2896         cpu=nocona
2897         ;;
2898       atom-*)
2899         arch=atom
2900         cpu=atom
2901         ;;
2902       core2-*)
2903         arch=core2
2904         cpu=core2
2905         ;;
2906       corei7-*)
2907         arch=corei7
2908         cpu=corei7
2909         ;;
2910       corei7_avx-*)
2911         arch=corei7-avx
2912         cpu=corei7-avx
2913         ;;
2914       pentium_m-*)
2915         arch=pentium-m
2916         cpu=pentium-m
2917         ;;
2918       pentiumpro-*)
2919         arch=pentiumpro
2920         cpu=pentiumpro
2921         arch_without_sse2=yes
2922         ;;
2923       *)
2924         arch=pentiumpro
2925         cpu=generic
2926         arch_without_sse2=yes
2927         arch_without_64bit=yes
2928         ;;
2929     esac
2930     ;;
2931   x86_64-*-*)
2932     case ${target_noncanonical} in
2933       bdver1-*)
2934         arch=bdver1
2935         cpu=bdver1
2936         ;;
2937       btver1-*)
2938         arch=btver1
2939         cpu=btver1
2940         ;;
2941       amdfam10-*|barcelona-*)
2942         arch=amdfam10
2943         cpu=amdfam10
2944         ;;
2945       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2946         arch=k8-sse3
2947         cpu=k8-sse3
2948         ;;
2949       k8-*|opteron-*|athlon_64-*)
2950         arch=k8
2951         cpu=k8
2952         ;;
2953       nocona-*)
2954         arch=nocona
2955         cpu=nocona
2956         ;;
2957       atom-*)
2958         arch=atom
2959         cpu=atom
2960         ;;
2961       core2-*)
2962         arch=core2
2963         cpu=core2
2964         ;;
2965       corei7-*)
2966         arch=corei7
2967         cpu=corei7
2968         ;;
2969       *)
2970         arch=x86-64
2971         cpu=generic
2972         ;;
2973     esac
2974     ;;
2975 esac
2976
2977 # If there is no $with_cpu option, try to infer one from ${target}.
2978 # This block sets nothing except for with_cpu.
2979 if test x$with_cpu = x ; then
2980   case ${target} in
2981     i[34567]86-*-*|x86_64-*-*)
2982       with_cpu=$cpu
2983       ;;
2984     alphaev6[78]*-*-*)
2985       with_cpu=ev67
2986       ;;
2987     alphaev6*-*-*)
2988       with_cpu=ev6
2989       ;;
2990     alphapca56*-*-*)
2991       with_cpu=pca56
2992       ;;
2993     alphaev56*-*-*)
2994       with_cpu=ev56
2995       ;;
2996     alphaev5*-*-*)
2997       with_cpu=ev5
2998       ;;
2999     frv-*-*linux* | frv400-*-*linux*)
3000       with_cpu=fr400
3001       ;;
3002     frv550-*-*linux*)
3003       with_cpu=fr550
3004       ;;
3005     m68k*-*-*)
3006       case "$with_arch" in
3007         "cf")
3008           with_cpu=${default_cf_cpu}
3009           ;;
3010         "" | "m68k")
3011           with_cpu=m${default_m68k_cpu}
3012           ;;
3013       esac
3014       ;;
3015     mips*-*-vxworks)
3016       with_arch=mips2
3017       ;;
3018     sparc-leon*-*)
3019       with_cpu=v8;
3020       ;;
3021     sparc*-*-*)
3022       with_cpu="`echo ${target} | sed 's/-.*$//'`"
3023       ;;
3024   esac
3025
3026   # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
3027   case ${target} in
3028     i[34567]86-*-*|x86_64-*-*)
3029       if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
3030         if test x$with_cpu_32 = x; then
3031           with_cpu_32=$with_cpu
3032         fi
3033         if test x$with_cpu_64 = x; then
3034           with_cpu_64=$with_cpu
3035         fi
3036         with_cpu=
3037       fi
3038       ;;
3039   esac
3040 fi
3041
3042 # Support for --with-arch and related options (and a few unrelated options,
3043 # too).
3044 case ${with_arch} in
3045   yes | no)
3046     echo "--with-arch must be passed a value" 1>&2
3047     exit 1
3048     ;;
3049 esac
3050
3051 # If there is no $with_arch option, try to infer one from ${target}.
3052 # This block sets nothing except for with_arch.
3053 if test x$with_arch = x ; then
3054   case ${target} in
3055     i[34567]86-*-darwin*|x86_64-*-darwin*)
3056       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3057       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3058       ;;
3059     i[34567]86-*-*)
3060       # --with-fpmath sets the default ISA to SSE2, which is the same
3061       # ISA supported by Pentium 4.
3062       if test x$with_fpmath = x || test $arch_without_sse2 = no; then
3063         with_arch=$arch
3064       else
3065         with_arch=pentium4
3066       fi
3067       ;;
3068     x86_64-*-*)
3069       with_arch=$arch
3070       ;;
3071   esac
3072
3073   # Avoid overriding --with-arch-32 and --with-arch-64 values.
3074   case ${target} in
3075     i[34567]86-*-darwin*|x86_64-*-darwin*)
3076       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3077       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3078       ;;
3079     i[34567]86-*-*|x86_64-*-*)
3080       if test x$with_arch_32 != x || test x$with_arch_64 != x; then
3081         if test x$with_arch_32 = x; then
3082           with_arch_32=$with_arch
3083         fi
3084         if test x$with_arch_64 = x; then
3085           if test $arch_without_64bit = yes; then
3086             # Set the default 64bit arch to x86-64 if the default arch
3087             # doesn't support 64bit.
3088             with_arch_64=x86-64
3089           else
3090             with_arch_64=$with_arch
3091           fi
3092         fi
3093         with_arch=
3094       elif test $arch_without_64bit$need_64bit_isa = yesyes; then
3095         # Set the default 64bit arch to x86-64 if the default arch
3096         # doesn't support 64bit and we need 64bit ISA.
3097         with_arch_32=$with_arch
3098         with_arch_64=x86-64
3099         with_arch=
3100       fi
3101       ;;
3102   esac
3103 fi
3104
3105 # Support --with-fpmath.
3106 if test x$with_fpmath != x; then
3107   case ${target} in
3108     i[34567]86-*-* | x86_64-*-*)
3109       case ${with_fpmath} in
3110       avx)
3111         tm_file="${tm_file} i386/avxmath.h"
3112         ;;
3113       sse)
3114         tm_file="${tm_file} i386/ssemath.h"
3115         ;;
3116       *)
3117         echo "Invalid --with-fpmath=$with_fpmath" 1>&2
3118         exit 1
3119         ;;
3120       esac
3121       ;;
3122     *)
3123       echo "--with-fpmath isn't supported for $target." 1>&2
3124       exit 1
3125       ;;
3126   esac
3127 fi
3128
3129 # Similarly for --with-schedule.
3130 if test x$with_schedule = x; then
3131         case ${target} in
3132         hppa1*)
3133                 # Override default PA8000 scheduling model.
3134                 with_schedule=7100LC
3135                 ;;
3136         esac
3137 fi
3138
3139 # Validate and mark as valid any --with options supported
3140 # by this target.  In order to use a particular --with option
3141 # you must list it in supported_defaults; validating the value
3142 # is optional.  This case statement should set nothing besides
3143 # supported_defaults.
3144
3145 supported_defaults=
3146 case "${target}" in
3147         alpha*-*-*)
3148                 supported_defaults="cpu tune"
3149                 for which in cpu tune; do
3150                         eval "val=\$with_$which"
3151                         case "$val" in
3152                         "" \
3153                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
3154                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
3155                         | 21264a)
3156                                 ;;
3157                         *)
3158                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
3159                                 exit 1
3160                                 ;;
3161                         esac
3162                 done
3163                 ;;
3164
3165         arm*-*-*)
3166                 supported_defaults="arch cpu float tune fpu abi mode"
3167                 for which in cpu tune; do
3168                         # See if it matches any of the entries in arm-cores.def
3169                         eval "val=\$with_$which"
3170                         if [ x"$val" = x ] \
3171                             || grep "^ARM_CORE(\"$val\"," \
3172                                     ${srcdir}/config/arm/arm-cores.def \
3173                                     > /dev/null; then
3174                           # Ok
3175                           new_val=`grep "^ARM_CORE(\"$val\"," \
3176                                 ${srcdir}/config/arm/arm-cores.def | \
3177                                 sed -e 's/^[^,]*,[      ]*//' | \
3178                                 sed -e 's/,.*$//'`
3179                           eval "target_${which}_cname=$new_val"
3180                         echo "For $val real value is $new_val"
3181                           true
3182                         else
3183                           echo "Unknown CPU used in --with-$which=$val" 1>&2
3184                           exit 1
3185                         fi
3186                 done
3187
3188                 case "$with_arch" in
3189                 "" \
3190                 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
3191                 | armv5te | armv6j |armv6k | armv6z | armv6zk | armv6-m \
3192                 | armv7 | armv7-a | armv7-r | armv7-m \
3193                 | iwmmxt | ep9312)
3194                         # OK
3195                         ;;
3196                 *)
3197                         echo "Unknown arch used in --with-arch=$with_arch" 1>&2
3198                         exit 1
3199                         ;;
3200                 esac
3201
3202                 case "$with_float" in
3203                 "" \
3204                 | soft | hard | softfp)
3205                         # OK
3206                         ;;
3207                 *)
3208                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3209                         exit 1
3210                         ;;
3211                 esac
3212
3213                 case "$with_fpu" in
3214                 "" \
3215                 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | vfpv3 \
3216                 | vfpv3-fp16 | vfpv3-d16 | vfpv3-d16-fp16 | vfpv3xd \
3217                 | vfpv3xd-fp16 | neon | neon-fp16 | vfpv4 | vfpv4-d16 \
3218                 | fpv4-sp-d16 | neon-vfpv4)
3219                         # OK
3220                         ;;
3221                 *)
3222                         echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
3223                         exit 1
3224                         ;;
3225                 esac
3226
3227                 case "$with_abi" in
3228                 "" \
3229                 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
3230                         #OK
3231                         ;;
3232                 *)
3233                         echo "Unknown ABI used in --with-abi=$with_abi"
3234                         exit 1
3235                         ;;
3236                 esac
3237
3238                 case "$with_mode" in
3239                 "" \
3240                 | arm | thumb )
3241                         #OK
3242                         ;;
3243                 *)
3244                         echo "Unknown mode used in --with-mode=$with_mode"
3245                         exit 1
3246                         ;;
3247                 esac
3248
3249                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
3250                         echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
3251                 fi
3252                 ;;
3253
3254         fr*-*-*linux*)
3255                 supported_defaults=cpu
3256                 case "$with_cpu" in
3257                 fr400) ;;
3258                 fr550) ;;
3259                 *)
3260                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3261                         exit 1
3262                         ;;
3263                 esac
3264                 ;;
3265
3266         fido-*-* | m68k*-*-*)
3267                 supported_defaults="arch cpu"
3268                 case "$with_arch" in
3269                 "" | "m68k"| "cf")
3270                         m68k_arch_family="$with_arch"
3271                         ;;
3272                 *)
3273                         echo "Invalid --with-arch=$with_arch" 1>&2
3274                         exit 1
3275                         ;;
3276                 esac
3277
3278                 # We always have a $with_cpu setting here.
3279                 case "$with_cpu" in
3280                 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
3281                         m68k_cpu_ident=$with_cpu
3282                         ;;
3283                 "m68020-40")
3284                         m68k_cpu_ident=m68020
3285                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
3286                         ;;
3287                 "m68020-60")
3288                         m68k_cpu_ident=m68020
3289                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
3290                         ;;
3291                 *)
3292                         # We need the C identifier rather than the string.
3293                         m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
3294                            'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
3295                             $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
3296                                  ${srcdir}/config/m68k/m68k-devices.def`
3297                         if [ x"$m68k_cpu_ident" = x ] ; then
3298                                 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
3299                                 exit 1
3300                         fi
3301                         with_cpu="mcpu=$with_cpu"
3302                         ;;
3303                 esac
3304                 ;;
3305
3306         hppa*-*-*)
3307                 supported_defaults="arch schedule"
3308
3309                 case "$with_arch" in
3310                 "" | 1.0 | 1.1 | 2.0)
3311                         # OK
3312                         ;;
3313                 *)
3314                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
3315                         exit 1
3316                         ;;
3317                 esac
3318
3319                 case "$with_schedule" in
3320                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
3321                         # OK
3322                         ;;
3323                 *)
3324                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
3325                         exit 1
3326                         ;;
3327                 esac
3328                 ;;
3329
3330         i[34567]86-*-* | x86_64-*-*)
3331                 supported_defaults="arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
3332                 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
3333                         eval "val=\$with_$which"
3334                         case ${val} in
3335                         i386 | i486 \
3336                         | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
3337                         | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
3338                         | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
3339                         | athlon-4 | athlon-xp | athlon-mp | geode \
3340                         | prescott | pentium-m | pentium4m | pentium3m)
3341                                 case "${target}" in
3342                                   x86_64-*-*)
3343                                       case "x$which" in
3344                                         *_32)
3345                                                 ;;
3346                                         *)
3347                                                 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
3348                                                 exit 1
3349                                                 ;;
3350                                       esac
3351                                       ;;
3352                                 esac
3353                                 # OK
3354                                 ;;
3355                         "" | x86-64 | generic | native \
3356                         | k8 | k8-sse3 | athlon64 | athlon64-sse3 | opteron \
3357                         | opteron-sse3 | athlon-fx | bdver1 | btver1 | amdfam10 \
3358                         | barcelona | nocona | core2 | corei7 | corei7-avx | atom)
3359                                 # OK
3360                                 ;;
3361                         *)
3362                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
3363                                 exit 1
3364                                 ;;
3365                         esac
3366                 done
3367                 ;;
3368
3369         mips*-*-*)
3370                 supported_defaults="abi arch arch_32 arch_64 float tune tune_32 tune_64 divide llsc mips-plt synci"
3371
3372                 case ${with_float} in
3373                 "" | soft | hard)
3374                         # OK
3375                         ;;
3376                 *)
3377                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3378                         exit 1
3379                         ;;
3380                 esac
3381
3382                 case ${with_abi} in
3383                 "" | 32 | o64 | n32 | 64 | eabi)
3384                         # OK
3385                         ;;
3386                 *)
3387                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
3388                         exit 1
3389                         ;;
3390                 esac
3391
3392                 case ${with_divide} in
3393                 "" | breaks | traps)
3394                         # OK
3395                         ;;
3396                 *)
3397                         echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
3398                         exit 1
3399                         ;;
3400                 esac
3401
3402                 case ${with_llsc} in
3403                 yes)
3404                         with_llsc=llsc
3405                         ;;
3406                 no)
3407                         with_llsc="no-llsc"
3408                         ;;
3409                 "")
3410                         # OK
3411                         ;;
3412                 *)
3413                         echo "Unknown llsc type used in --with-llsc" 1>&2
3414                         exit 1
3415                         ;;
3416                 esac
3417
3418                 case ${with_mips_plt} in
3419                 yes)
3420                         with_mips_plt=plt
3421                         ;;
3422                 no)
3423                         with_mips_plt=no-plt
3424                         ;;
3425                 "")
3426                         ;;
3427                 *)
3428                         echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
3429                         exit 1
3430                         ;;
3431                 esac
3432
3433                 case ${with_synci} in
3434                 yes)
3435                         with_synci=synci
3436                         ;;
3437                 "" | no)
3438                         # No is the default.
3439                         with_synci=no-synci
3440                         ;;
3441                 *)
3442                         echo "Unknown synci type used in --with-synci" 1>&2
3443                         exit 1
3444                         ;;
3445                 esac
3446                 ;;
3447
3448         powerpc*-*-* | rs6000-*-*)
3449                 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
3450
3451                 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
3452                         eval "val=\$with_$which"
3453                         case ${val} in
3454                         default32 | default64)
3455                                 case $which in
3456                                 cpu | tune)
3457                                         ;;
3458                                 *)
3459                                         echo "$val only valid for --with-cpu and --with-tune." 1>&2
3460                                         exit 1
3461                                         ;;
3462                                 esac
3463                                 with_which="with_$which"
3464                                 eval $with_which=
3465                                 ;;
3466                         405cr)
3467                                 tm_defines="${tm_defines} CONFIG_PPC405CR"
3468                                 eval "with_$which=405"
3469                                 ;;
3470                         "" | common \
3471                         | power | power[234567] | power6x | powerpc | powerpc64 \
3472                         | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
3473                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
3474                         | 476 | 476fp | 505 | 601 | 602 | 603 | 603e | ec603e \
3475                         | 604 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
3476                         | a2 | e300c[23] | 854[08] | e500mc | e500mc64 | titan\
3477                         | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
3478                                 # OK
3479                                 ;;
3480                         *)
3481                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3482                                 exit 1
3483                                 ;;
3484                         esac
3485                 done
3486                 ;;
3487
3488         s390*-*-*)
3489                 supported_defaults="arch mode tune"
3490
3491                 for which in arch tune; do
3492                         eval "val=\$with_$which"
3493                         case ${val} in
3494                         "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10 | z196)
3495                                 # OK
3496                                 ;;
3497                         *)
3498                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3499                                 exit 1
3500                                 ;;
3501                         esac
3502                 done
3503
3504                 case ${with_mode} in
3505                 "" | esa | zarch)
3506                         # OK
3507                         ;;
3508                 *)
3509                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
3510                         exit 1
3511                         ;;
3512                 esac
3513                 ;;
3514
3515         sh[123456ble]-*-* | sh-*-*)
3516                 supported_defaults="cpu"
3517                 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
3518                 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
3519                         # OK
3520                         ;;
3521                 m2a | m2a-single | m2a-single-only | m2a-nofpu)
3522                         ;;
3523                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
3524                         ;;
3525                 *)
3526                         echo "Unknown CPU used in --with-cpu=$with_cpu, known values:"  1>&2
3527                         echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
3528                         echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
3529                         echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
3530                         exit 1
3531                         ;;
3532                 esac
3533                 ;;
3534         sparc*-*-*)
3535                 supported_defaults="cpu float tune"
3536
3537                 for which in cpu tune; do
3538                         eval "val=\$with_$which"
3539                         case ${val} in
3540                         "" | sparc | sparcv9 | sparc64 \
3541                         | v7 | cypress \
3542                         | v8 | supersparc | hypersparc | leon \
3543                         | sparclite | f930 | f934 | sparclite86x \
3544                         | sparclet | tsc701 \
3545                         | v9 | ultrasparc | ultrasparc3 | niagara | niagara2)
3546                                 # OK
3547                                 ;;
3548                         *)
3549                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
3550                                 exit 1
3551                                 ;;
3552                         esac
3553                 done
3554
3555                 case ${with_float} in
3556                 "" | soft | hard)
3557                         # OK
3558                         ;;
3559                 *)
3560                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3561                         exit 1
3562                         ;;
3563                 esac
3564                 ;;
3565
3566         spu-*-*)
3567                 supported_defaults="arch tune"
3568
3569                 for which in arch tune; do
3570                         eval "val=\$with_$which"
3571                         case ${val} in
3572                         "" | cell | celledp)
3573                                 # OK
3574                                 ;;
3575                         *)
3576                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3577                                 exit 1
3578                                 ;;
3579                         esac
3580                 done
3581                 ;;
3582
3583         v850*-*-*)
3584                 supported_defaults=cpu
3585                 case ${with_cpu} in
3586                 "" | v850e | v850e1)
3587                         # OK
3588                         ;;
3589                 *)
3590                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3591                         exit 1
3592                         ;;
3593                 esac
3594                 ;;
3595 esac
3596
3597 # Set some miscellaneous flags for particular targets.
3598 target_cpu_default2=
3599 case ${target} in
3600         alpha*-*-*)
3601                 if test x$gas = xyes
3602                 then
3603                         target_cpu_default2="MASK_GAS"
3604                 fi
3605                 ;;
3606
3607         arm*-*-*)
3608                 if test x$target_cpu_cname = x
3609                 then
3610                         target_cpu_default2=TARGET_CPU_generic
3611                 else
3612                         target_cpu_default2=TARGET_CPU_$target_cpu_cname
3613                 fi
3614                 ;;
3615
3616         hppa*-*-*)
3617                 target_cpu_default2="MASK_BIG_SWITCH"
3618                 if test x$gas = xyes
3619                 then
3620                         target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
3621                 fi
3622                 ;;
3623
3624         fido*-*-* | m68k*-*-*)
3625                 target_cpu_default2=$m68k_cpu_ident
3626                 if [ x"$m68k_arch_family" != x ]; then
3627                         tmake_file="m68k/t-$m68k_arch_family $tmake_file"
3628                 fi
3629                 ;;
3630
3631         i[34567]86-*-darwin* | x86_64-*-darwin*)
3632                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3633                 ;;
3634         i[34567]86-*-linux* | x86_64-*-linux* | \
3635           i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
3636           i[34567]86-*-gnu*)
3637                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux"
3638                 ;;
3639         i[34567]86-*-solaris2*)
3640                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3641                 ;;
3642         i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw*)
3643                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3644                 ;;
3645         i[34567]86-*-freebsd* | x86_64-*-freebsd*)
3646                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3647                 ;;
3648         ia64*-*-linux*)
3649                 tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp"
3650                 ;;
3651
3652         mips*-*-*)
3653                 if test x$gnu_ld = xyes
3654                 then
3655                         target_cpu_default2="MASK_SPLIT_ADDRESSES"
3656                 fi
3657                 case ${target} in
3658                         mips*el-*-*)
3659                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
3660                                 ;;
3661                 esac
3662                 tmake_file="mips/t-mips $tmake_file"
3663                 ;;
3664
3665         powerpc*-*-* | rs6000-*-*)
3666                 # FIXME: The PowerPC port uses the value set at compile time,
3667                 # although it's only cosmetic.
3668                 if test "x$with_cpu" != x
3669                 then
3670                         target_cpu_default2="\\\"$with_cpu\\\""
3671                 fi
3672                 out_file=rs6000/rs6000.c
3673                 c_target_objs="${c_target_objs} rs6000-c.o"
3674                 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
3675                 tmake_file="rs6000/t-rs6000 ${tmake_file}"
3676
3677                 if test x$enable_e500_double = xyes
3678                 then
3679                         tm_file="$tm_file rs6000/e500-double.h"
3680                 fi
3681                 ;;
3682
3683         sh[123456ble]*-*-* | sh-*-*)
3684                 c_target_objs="${c_target_objs} sh-c.o"
3685                 cxx_target_objs="${cxx_target_objs} sh-c.o"
3686                 ;;
3687
3688         sparc-leon*-*)
3689                 if test x$with_tune = x ; then
3690                   with_tune=leon;
3691                 fi
3692
3693                 # The SPARC port checks this value at compile-time.
3694                 target_cpu_default2="TARGET_CPU_$with_cpu"
3695                 ;;
3696
3697         sparc*-*-*)
3698                 # Some standard aliases.
3699                 case x$with_cpu in
3700                 xsparc)
3701                         with_cpu=v7
3702                         ;;
3703                 xsparcv9 | xsparc64)
3704                         with_cpu=v9
3705                         ;;
3706                 esac
3707
3708                 # The SPARC port checks this value at compile-time.
3709                 target_cpu_default2="TARGET_CPU_$with_cpu"
3710                 ;;
3711
3712         v850*-*-*)
3713                 # FIXME: The v850 is "special" in that it does not support
3714                 # runtime CPU selection, only --with-cpu.
3715                 case "x$with_cpu" in
3716                 x)
3717                         ;;
3718                 xv850e)
3719                         target_cpu_default2="TARGET_CPU_$with_cpu"
3720                         ;;
3721                 esac
3722                 ;;
3723 esac
3724
3725 t=
3726 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"
3727 for option in $all_defaults
3728 do
3729         eval "val=\$with_"`echo $option | sed s/-/_/g`
3730         if test -n "$val"; then
3731                 case " $supported_defaults " in
3732                 *" $option "*)
3733                         ;;
3734                 *)
3735                         echo "This target does not support --with-$option." 2>&1
3736                         echo "Valid --with options are: $supported_defaults" 2>&1
3737                         exit 1
3738                         ;;
3739                 esac
3740
3741                 if test "x$t" = x
3742                 then
3743                         t="{ \"$option\", \"$val\" }"
3744                 else
3745                         t="${t}, { \"$option\", \"$val\" }"
3746                 fi
3747         fi
3748 done
3749
3750 if test "x$t" = x
3751 then
3752         configure_default_options="{ { NULL, NULL} }"
3753 else
3754         configure_default_options="{ ${t} }"
3755 fi
3756
3757 if test "$target_cpu_default2" != ""
3758 then
3759         if test "$target_cpu_default" != ""
3760         then
3761                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3762         else
3763                 target_cpu_default=$target_cpu_default2
3764         fi
3765 fi