OSDN Git Service

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