OSDN Git Service

* config.gcc: Obsolete i[3456x]86-*-netware*.
[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[3456x]86-*-netware*                \
244  | i[34567]86-*-pe                      \
245  | m68hc11-*-*                          \
246  | m6811-*-*                            \
247  | m68hc12-*-*                          \
248  | m6812-*-*                            \
249  | m68k-*-uclinuxoldabi*                \
250  | mcore-*-pe*                          \
251  | powerpc*-*-gnu*                      \
252  | score-*                              \
253  | sh*-*-symbianelf*                    \
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         tmake_file="${tmake_file} i386/t-crtstuff"
1217         ;;
1218 x86_64-*-freebsd*)
1219         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"
1220         tmake_file="${tmake_file} i386/t-crtstuff"
1221         ;;
1222 i[34567]86-*-netbsdelf*)
1223         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
1224         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1225         ;;
1226 i[34567]86-*-netbsd*)
1227         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
1228         extra_options="${extra_options} netbsd.opt"
1229         tmake_file="${tmake_file} t-netbsd"
1230         extra_parts=""
1231         use_collect2=yes
1232         ;;
1233 x86_64-*-netbsd*)
1234         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"
1235         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1236         tmake_file="${tmake_file} i386/t-crtstuff"
1237         ;;
1238 i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
1239         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"
1240         extra_options="${extra_options} openbsd.opt"
1241         # needed to unconfuse gdb
1242         tmake_file="${tmake_file} t-libc-ok t-openbsd i386/t-openbsd"
1243         # we need collect2 until our bug is fixed...
1244         use_collect2=yes
1245         ;;
1246 i[34567]86-*-openbsd*)
1247         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
1248         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h i386/openbsdelf.h"
1249         extra_options="${extra_options} openbsd.opt"
1250         gas=yes
1251         gnu_ld=yes
1252         ;;
1253 i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
1254                         # Intel 80386's running GNU/*
1255                         # with ELF format using glibc 2
1256         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h"
1257         case ${target} in
1258         i[34567]86-*-linux*)
1259                 # Assume modern glibc
1260                 default_gnu_indirect_function=yes
1261                 if test x$enable_targets = xall; then
1262                         tm_file="${tm_file} i386/x86-64.h i386/linux64.h"
1263                         tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1264                         tmake_file="${tmake_file} i386/t-linux64"
1265                         need_64bit_hwint=yes
1266                         need_64bit_isa=yes
1267                         case X"${with_cpu}" in
1268                         Xgeneric|Xatom|Xcore2|Xcorei7|Xcorei7-avx|Xnocona|Xx86-64|Xbdver1|Xbtver1|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx|Xathlon64-sse3|Xk8-sse3|Xopteron-sse3)
1269                                 ;;
1270                         X)
1271                                 if test x$with_cpu_64 = x; then
1272                                         with_cpu_64=generic
1273                                 fi
1274                                 ;;
1275                         *)
1276                                 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1277                                 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
1278                                 exit 1
1279                                 ;;
1280                         esac
1281                 else
1282                         tm_file="${tm_file} i386/linux.h"
1283                 fi
1284                 ;;
1285         i[34567]86-*-knetbsd*-gnu) tm_file="${tm_file} i386/linux.h knetbsd-gnu.h i386/knetbsd-gnu.h" ;;
1286         i[34567]86-*-kfreebsd*-gnu) tm_file="${tm_file} i386/linux.h kfreebsd-gnu.h i386/kfreebsd-gnu.h" ;;
1287         i[34567]86-*-kopensolaris*-gnu) tm_file="${tm_file} i386/linux.h kopensolaris-gnu.h i386/kopensolaris-gnu.h" ;;
1288         i[34567]86-*-gnu*) tm_file="$tm_file i386/linux.h gnu.h i386/gnu.h";;
1289         esac
1290         tmake_file="${tmake_file} i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
1291         ;;
1292 x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
1293         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h \
1294                  i386/x86-64.h i386/linux64.h"
1295         case ${target} in
1296         x86_64-*-linux*)
1297           default_gnu_indirect_function=glibc-2011 ;;
1298         x86_64-*-kfreebsd*-gnu) tm_file="${tm_file} kfreebsd-gnu.h" ;;
1299         x86_64-*-knetbsd*-gnu) tm_file="${tm_file} knetbsd-gnu.h" ;;
1300         esac
1301         tmake_file="${tmake_file} i386/t-linux64 i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
1302         ;;
1303 i[34567]86-pc-msdosdjgpp*)
1304         xm_file=i386/xm-djgpp.h
1305         tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h i386/djgpp-stdint.h"
1306         tmake_file="${tmake_file} i386/t-djgpp"
1307         extra_options="${extra_options} i386/djgpp.opt"
1308         gnu_ld=yes
1309         gas=yes
1310         use_gcc_stdint=wrap
1311         ;;
1312 i[34567]86-*-lynxos*)
1313         xm_defines=POSIX
1314         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
1315         tmake_file="${tmake_file} i386/t-crtstuff t-lynx"
1316         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1317         extra_options="${extra_options} lynx.opt"
1318         thread_file=lynx
1319         gnu_ld=yes
1320         gas=yes
1321         ;;
1322 i[3456x]86-*-netware*)
1323         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h tm-dwarf2.h i386/netware.h"
1324         tmake_file="${tmake_file} i386/t-netware"
1325         extra_objs=netware.o
1326         extra_options="${extra_options} i386/netware.opt"
1327         case /${with_ld} in
1328         */nwld)
1329                 extra_objs="$extra_objs nwld.o"
1330                 tm_file="${tm_file} i386/nwld.h"
1331                 tmake_file="${tmake_file} i386/t-nwld"
1332                 extra_parts="crt0.o libgcc.def libc.def libcpre.def posixpre.def"
1333                 ;;
1334         esac
1335         case x${enable_threads} in
1336         x | xyes | xposix) thread_file='posix';;
1337         xnks) thread_file='nks';;
1338         xno) ;;
1339         *) echo 'Unknown thread configuration for NetWare' >&2; exit 1;;
1340         esac
1341         ;;
1342 i[34567]86-*-nto-qnx*)
1343         tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h i386/unix.h i386/nto.h"
1344         extra_options="${extra_options} i386/nto.opt"
1345         tmake_file="${tmake_file} i386/t-nto"
1346         gnu_ld=yes
1347         gas=yes
1348         ;;
1349 i[34567]86-*-rtems*)
1350         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"
1351         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1352         tmake_file="${tmake_file} i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1353         ;;
1354 i[34567]86-*-solaris2*)
1355         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sysv4.h sol2.h"
1356         # Set default arch_32 to pentium4, tune_32 to generic like the other
1357         # i386 targets, although config.guess defaults to i386-pc-solaris2*.
1358         case ${target} in
1359         *-*-solaris2.[89]*)
1360                 # Solaris 8 and 9/x86 cannot execute SSE/SSE2 instructions by
1361                 # default.
1362                 with_arch_32=${with_arch_32:-pentiumpro}
1363                 ;;
1364         *)
1365                 with_arch_32=${with_arch_32:-pentium4}
1366                 ;;
1367         esac
1368         with_tune_32=${with_tune_32:-generic}
1369         case ${target} in
1370         *-*-solaris2.1[0-9]*)
1371                 tm_file="${tm_file} sol2-10.h"
1372                 ;;
1373         esac
1374         tm_file="${tm_file} i386/sol2.h"
1375         if test x$gnu_ld = xyes; then
1376                 tm_file="${tm_file} sol2-gld.h"
1377         fi
1378         if test x$gas = xyes; then
1379                 tm_file="${tm_file} i386/sol2-gas.h"
1380         fi
1381         tmake_file="${tmake_file} t-sol2 t-svr4"
1382         c_target_objs="${c_target_objs} sol2-c.o"
1383         cxx_target_objs="${cxx_target_objs} sol2-c.o"
1384         extra_objs="sol2.o"
1385         tm_p_file="${tm_p_file} sol2-protos.h"
1386         if test x$gnu_ld = xyes; then
1387                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1388                 tm_defines="${tm_defines} TARGET_GNU_LD=1"
1389         else
1390                 tmake_file="$tmake_file t-slibgcc-sld"
1391         fi
1392         if test x$gas = xyes; then
1393                 tm_file="usegas.h ${tm_file}"
1394         fi
1395         tm_file="$tm_file tm-dwarf2.h"
1396         case ${target} in
1397         *-*-solaris2.1[0-9]*)
1398                 tm_file="${tm_file} i386/x86-64.h i386/sol2-10.h"
1399                 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1400                 tmake_file="$tmake_file i386/t-sol2-10"
1401                 # i386/t-crtstuff only affects libgcc.  Its inclusion
1402                 # depends on a runtime test and is thus performed in
1403                 # libgcc/configure.ac instead.
1404                 need_64bit_hwint=yes
1405                 need_64bit_isa=yes
1406                 use_gcc_stdint=wrap
1407                 case X"${with_cpu}" in
1408                 Xgeneric|Xatom|Xcore2|Xcorei7|Xcorei7-avx|Xnocona|Xx86-64|Xbdver1|Xbtver1|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx|Xathlon64-sse3|Xk8-sse3|Xopteron-sse3)
1409                         ;;
1410                 X)
1411                         if test x$with_cpu_64 = x; then
1412                                 with_cpu_64=generic
1413                         fi
1414                         ;;
1415                 *)
1416                         echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1417                         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
1418                         exit 1
1419                         ;;
1420                 esac
1421                 ;;
1422         *)
1423                 use_gcc_stdint=provide
1424                 ;;
1425         esac
1426         case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
1427           "":yes:* | yes:yes:* )
1428                 thread_file=posix
1429                 ;;
1430           "":*:yes | yes:*:yes )
1431                 thread_file=solaris
1432                 ;;
1433         esac
1434         ;;
1435 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
1436         tm_file="${tm_file} i386/unix.h i386/att.h elfos.h vx-common.h"
1437         case ${target} in
1438           *-vxworksae*)
1439             tm_file="${tm_file} vxworksae.h i386/vx-common.h i386/vxworksae.h"
1440             tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
1441             ;;
1442           *)
1443             tm_file="${tm_file} vxworks.h i386/vx-common.h i386/vxworks.h"
1444             tmake_file="${tmake_file} i386/t-vxworks"
1445             ;;
1446         esac
1447         ;;
1448 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1449         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"
1450         xm_file=i386/xm-cygwin.h
1451         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
1452         if test x$sjlj = x0; then
1453                 tmake_eh_file="i386/t-dw2-eh"
1454         else
1455                 tmake_eh_file="i386/t-sjlj-eh"
1456         fi
1457         # Shared libgcc DLL install dir depends on cross/native build.
1458         if test x${host} = x${target} ; then
1459                 tmake_dlldir_file="i386/t-dlldir"
1460         else
1461                 tmake_dlldir_file="i386/t-dlldir-x"
1462         fi
1463         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-cygming i386/t-cygwin t-dfprules"
1464         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1465         extra_options="${extra_options} i386/cygming.opt"
1466         extra_objs="winnt.o winnt-stubs.o"
1467         c_target_objs="${c_target_objs} msformat-c.o"
1468         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1469         if test x$enable_threads = xyes; then
1470                 thread_file='posix'
1471         fi
1472         use_gcc_stdint=wrap
1473         ;;
1474 i[34567]86-*-mingw* | x86_64-*-mingw*)
1475         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
1476         xm_file=i386/xm-mingw32.h
1477         case ${target} in
1478                 x86_64-*-* | *-w64-*)
1479                         need_64bit_hwint=yes
1480                         need_64bit_isa=yes
1481                         ;;
1482                 *)
1483                         ;;
1484         esac
1485         # This makes the logic if mingw's or the w64 feature set has to be used
1486         case ${target} in
1487                 *-w64-*)
1488                         user_headers_inc_next_post="${user_headers_inc_next_post} float.h"
1489                         user_headers_inc_next_pre="${user_headers_inc_next_pre} stddef.h stdarg.h"
1490                         tm_file="${tm_file} i386/mingw-w64.h"
1491                         if test x$enable_targets = xall; then
1492                                 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1493                                 case X"${with_cpu}" in
1494                                 Xgeneric|Xatom|Xcore2|Xcorei7|Xcorei7-avx|Xnocona|Xx86-64|Xbdver1|Xbtver1|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx|Xathlon64-sse3|Xk8-sse3|Xopteron-sse3)
1495                                         ;;
1496                                 X)
1497                                         if test x$with_cpu_64 = x; then
1498                                                 with_cpu_64=generic
1499                                         fi
1500                                         ;;
1501                                 *)
1502                                         echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1503                                         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
1504                                         exit 1
1505                                         ;;
1506                                 esac
1507                         fi
1508                         ;;
1509                 *)
1510                         ;;
1511         esac
1512         tm_file="${tm_file} i386/mingw-stdint.h"
1513         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
1514         if test x$sjlj = x0; then
1515                 tmake_eh_file="i386/t-dw2-eh"
1516         else
1517                 tmake_eh_file="i386/t-sjlj-eh"
1518         fi
1519         # Shared libgcc DLL install dir depends on cross/native build.
1520         if test x${host} = x${target} ; then
1521                 tmake_dlldir_file="i386/t-dlldir"
1522         else
1523                 tmake_dlldir_file="i386/t-dlldir-x"
1524         fi
1525         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-cygming t-dfprules"
1526         case ${target} in
1527                x86_64-w64-*)
1528                         tmake_file="${tmake_file} i386/t-mingw-w64"
1529                         ;;
1530                i[34567]86-w64-*)
1531                         tmake_file="${tmake_file} i386/t-mingw-w32"
1532                         ;;
1533                *)
1534                         tmake_file="${tmake_file} i386/t-mingw32"
1535                         ;;
1536         esac
1537         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1538         extra_options="${extra_options} i386/cygming.opt i386/mingw.opt"
1539         case ${target} in
1540                 *-w64-*)
1541                         extra_options="${extra_options} i386/mingw-w64.opt"
1542                         ;;
1543                 *)
1544                         ;;
1545         esac
1546         extra_objs="winnt.o winnt-stubs.o"
1547         c_target_objs="${c_target_objs} msformat-c.o"
1548         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1549         default_use_cxa_atexit=yes
1550         use_gcc_stdint=wrap
1551         case ${enable_threads} in
1552           "" | yes | win32)       thread_file='win32'
1553           tmake_file="${tmake_file} i386/t-gthr-win32"
1554           ;;
1555         esac
1556         case ${target} in
1557                 x86_64-*-mingw*)
1558                         tmake_file="${tmake_file} i386/t-crtfm"
1559                         ;;
1560                 *)
1561                         ;;
1562         esac
1563         case ${target} in
1564                 *mingw32crt*)
1565                         tm_file="${tm_file} i386/crtdll.h"
1566                         ;;
1567                 *mingw32msv* | *mingw*)
1568                         ;;
1569         esac
1570         ;;
1571 i[34567]86-*-interix3*)
1572         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"
1573         tmake_file="${tmake_file} i386/t-interix"
1574         extra_options="${extra_options} rpath.opt interix.opt"
1575         extra_objs=winnt.o
1576         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1577         if test x$enable_threads = xyes ; then
1578                 thread_file='posix'
1579         fi
1580         if test x$stabs = xyes ; then
1581                 tm_file="${tm_file} dbxcoff.h"
1582         fi
1583         ;;
1584 ia64*-*-elf*)
1585         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h ia64/sysv4.h ia64/elf.h"
1586         tmake_file="ia64/t-ia64"
1587         target_cpu_default="0"
1588         if test x$gas = xyes
1589         then
1590                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1591         fi
1592         if test x$gnu_ld = xyes
1593         then
1594                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1595         fi
1596         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1597         ;;
1598 ia64*-*-freebsd*)
1599         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1600         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1601         tmake_file="${tmake_file} ia64/t-ia64"
1602         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1603         ;;
1604 ia64*-*-linux*)
1605         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ia64/sysv4.h ia64/linux.h"
1606         tmake_file="${tmake_file} ia64/t-ia64 t-libunwind ia64/t-glibc"
1607         if test x$with_system_libunwind != xyes ; then
1608                 tmake_file="${tmake_file} t-libunwind-elf ia64/t-glibc-libunwind"
1609         fi
1610         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1611         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1612         ;;
1613 ia64*-*-hpux*)
1614         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/hpux.h"
1615         tmake_file="ia64/t-ia64 ia64/t-hpux"
1616         target_cpu_default="MASK_GNU_AS"
1617         case x$enable_threads in
1618         x | xyes | xposix )
1619                 thread_file=posix
1620                 ;;
1621         esac
1622         use_collect2=no
1623         c_target_objs="ia64-c.o"
1624         cxx_target_objs="ia64-c.o"
1625         extra_options="${extra_options} ia64/ilp32.opt hpux11.opt"
1626         use_gcc_stdint=wrap
1627         tm_file="${tm_file} hpux-stdint.h"
1628         ;;
1629 ia64-hp-*vms*)
1630         tm_file="${tm_file} elfos.h ia64/sysv4.h ia64/elf.h ia64/vms.h ia64/vms64.h"
1631         xm_file="vms/xm-vms.h vms/xm-vms64.h"
1632         tmake_file="vms/t-vms ia64/t-ia64 ia64/t-vms"
1633         xmake_file=vms/x-vms
1634         target_cpu_default="0"
1635         if test x$gas = xyes
1636         then
1637                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1638         fi
1639         exeext=.exe
1640         install_headers_dir=install-headers-cp
1641         extra_options="${extra_options} vms/vms.opt ia64/vms.opt"
1642         ;;
1643 iq2000*-*-elf*)
1644         tm_file="elfos.h newlib-stdint.h iq2000/iq2000.h"
1645         tmake_file=iq2000/t-iq2000
1646         out_file=iq2000/iq2000.c
1647         md_file=iq2000/iq2000.md
1648         ;;
1649 lm32-*-elf*)
1650         tm_file="dbxelf.h elfos.h ${tm_file}"
1651         tmake_file="${tmake_file} lm32/t-lm32 lm32/t-fprules-softfp soft-fp/t-softfp"
1652         ;;
1653 lm32-*-rtems*)
1654         tm_file="dbxelf.h elfos.h ${tm_file} lm32/rtems.h rtems.h newlib-stdint.h"
1655         tmake_file="${tmake_file} lm32/t-lm32 lm32/t-fprules-softfp soft-fp/t-softfp"
1656         tmake_file="${tmake_file} t-rtems"
1657          ;;
1658 lm32-*-uclinux*)
1659         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h lm32/uclinux-elf.h"
1660         tmake_file="${tmake_file} lm32/t-lm32 lm32/t-fprules-softfp soft-fp/t-softfp"
1661         ;;
1662 m32r-*-elf*)
1663         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1664         extra_parts="crtinit.o crtfini.o"
1665         ;;
1666 m32rle-*-elf*)
1667         tm_file="dbxelf.h elfos.h newlib-stdint.h m32r/little.h ${tm_file}"
1668         extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
1669         ;;
1670 m32r-*-rtems*)
1671         tm_file="dbxelf.h elfos.h ${tm_file} m32r/rtems.h rtems.h newlib-stdint.h"
1672         tmake_file="m32r/t-m32r t-rtems"
1673         extra_parts="crtinit.o crtfini.o"
1674         ;;
1675 m32r-*-linux*)
1676         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} m32r/linux.h"
1677         # We override the tmake_file for linux -- why?
1678         tmake_file="t-slibgcc-elf-ver m32r/t-linux"
1679         gnu_ld=yes
1680         if test x$enable_threads = xyes; then
1681                 thread_file='posix'
1682         fi
1683         ;;
1684 m32rle-*-linux*)
1685         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m32r/little.h ${tm_file} m32r/linux.h"
1686         # We override the tmake_file for linux -- why?
1687         tmake_file="t-slibgcc-elf-ver m32r/t-linux"
1688         gnu_ld=yes
1689         if test x$enable_threads = xyes; then
1690                 thread_file='posix'
1691         fi
1692         ;;
1693 # m68hc11 and m68hc12 share the same machine description.
1694 m68hc11-*-*|m6811-*-*)
1695         tm_file="dbxelf.h elfos.h usegas.h newlib-stdint.h m68hc11/m68hc11.h"
1696         tm_p_file="m68hc11/m68hc11-protos.h"
1697         md_file="m68hc11/m68hc11.md"
1698         out_file="m68hc11/m68hc11.c"
1699         tmake_file="m68hc11/t-m68hc11"
1700         use_gcc_stdint=wrap
1701         ;;
1702 m68hc12-*-*|m6812-*-*)
1703         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h usegas.h newlib-stdint.h m68hc11/m68hc11.h"
1704         tm_p_file="m68hc11/m68hc11-protos.h"
1705         md_file="m68hc11/m68hc11.md"
1706         out_file="m68hc11/m68hc11.c"
1707         tmake_file="m68hc11/t-m68hc11"
1708         extra_options="${extra_options} m68hc11/m68hc11.opt"
1709         use_gcc_stdint=wrap
1710         ;;
1711 m68k-*-elf* | fido-*-elf*)
1712         case ${target} in
1713         fido-*-elf*)
1714                 # Check that $with_cpu makes sense.
1715                 case $with_cpu in
1716                 "" | "fidoa")
1717                         ;;
1718                 *)
1719                         echo "Cannot accept --with-cpu=$with_cpu"
1720                         exit 1
1721                         ;;
1722                 esac
1723                 with_cpu=fidoa
1724                 ;;
1725         *)
1726                 default_m68k_cpu=68020
1727                 default_cf_cpu=5206
1728                 ;;
1729         esac
1730         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"
1731         tm_defines="${tm_defines} MOTOROLA=1"
1732         tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
1733         # Add multilibs for targets other than fido.
1734         case ${target} in
1735         fido-*-elf*)
1736                 ;;
1737         *)
1738                 tmake_file="$tmake_file m68k/t-mlibs"
1739                 ;;
1740         esac
1741         extra_parts="crtbegin.o crtend.o"
1742         ;;
1743 m68k*-*-netbsdelf*)
1744         default_m68k_cpu=68020
1745         default_cf_cpu=5475
1746         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1747         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1748         tm_defines="${tm_defines} MOTOROLA=1"
1749         ;;
1750 m68k*-*-openbsd*)
1751         default_m68k_cpu=68020
1752         default_cf_cpu=5475
1753         # needed to unconfuse gdb
1754         tm_defines="${tm_defines} OBSD_OLD_GAS"
1755         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h m68k/openbsd.h"
1756         extra_options="${extra_options} openbsd.opt"
1757         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1758         # we need collect2 until our bug is fixed...
1759         use_collect2=yes
1760         ;;
1761 m68k-*-uclinuxoldabi*)          # Motorola m68k/ColdFire running uClinux
1762                                 # with uClibc, using the original
1763                                 # m68k-elf-based ABI
1764         default_m68k_cpu=68020
1765         default_cf_cpu=5206
1766         tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/uclinux-oldabi.h glibc-stdint.h"
1767         tm_defines="${tm_defines} MOTOROLA=1"
1768         tmake_file="m68k/t-floatlib m68k/t-uclinux"
1769         ;;
1770 m68k-*-uclinux*)                # Motorola m68k/ColdFire running uClinux
1771                                 # with uClibc, using the new GNU/Linux-style
1772                                 # ABI.
1773         default_m68k_cpu=68020
1774         default_cf_cpu=5206
1775         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"
1776         extra_options="${extra_options} m68k/uclinux.opt"
1777         tm_defines="${tm_defines} MOTOROLA=1"
1778         tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
1779         ;;
1780 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1781                                 # with ELF format using glibc 2
1782                                 # aka the GNU/Linux C library 6.
1783         default_m68k_cpu=68020
1784         default_cf_cpu=5475
1785         with_arch=${with_arch:-m68k}
1786         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m68k/linux.h ./sysroot-suffix.h"
1787         extra_options="${extra_options} m68k/ieee.opt"
1788         tm_defines="${tm_defines} MOTOROLA=1"
1789         tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs"
1790         # if not configured with --enable-sjlj-exceptions, bump the
1791         # libgcc version number
1792         if test x$sjlj != x1; then
1793             tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
1794         fi
1795         ;;
1796 m68k-*-rtems*)
1797         default_m68k_cpu=68020
1798         default_cf_cpu=5206
1799         tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems m68k/t-mlibs"
1800         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"
1801         tm_defines="${tm_defines} MOTOROLA=1"
1802         extra_parts="crtbegin.o crtend.o"
1803         ;;
1804 mcore-*-elf)
1805         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} mcore/mcore-elf.h"
1806         tmake_file=mcore/t-mcore
1807         inhibit_libc=true
1808         ;;
1809 mcore-*-pe*)
1810         tm_file="svr3.h dbxcoff.h newlib-stdint.h ${tm_file} mcore/mcore-pe.h"
1811         tmake_file=mcore/t-mcore-pe
1812         inhibit_libc=true
1813         use_gcc_stdint=wrap
1814         ;;
1815 mep-*-*)
1816         tm_file="dbxelf.h elfos.h ${tm_file}"
1817         tmake_file=mep/t-mep
1818         extra_parts="crtbegin.o crtend.o"
1819         c_target_objs="mep-pragma.o"
1820         cxx_target_objs="mep-pragma.o"
1821         if test -d "${srcdir}/../newlib/libc/include" &&
1822            test "x$with_headers" = x; then
1823                 with_headers=yes
1824         fi
1825         use_gcc_stdint=wrap
1826         ;;
1827 microblaze*-linux*)
1828         tm_file="${tm_file} dbxelf.h gnu-user.h linux.h microblaze/linux.h"
1829         c_target_objs="${c_target_objs} microblaze-c.o"
1830         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
1831         tmake_file="${tmake_file} t-slibgcc-elf-ver t-slibgcc-nolc-override t-linux microblaze/t-microblaze"
1832         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o crtbeginT.o"
1833         ;;
1834 microblaze*-*-*)
1835         tm_file="${tm_file} dbxelf.h"
1836         c_target_objs="${c_target_objs} microblaze-c.o"
1837         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
1838         tmake_file="${tmake_file} microblaze/t-microblaze"
1839         ;;
1840 mips-sgi-irix6.5*)
1841         tm_file="elfos.h ${tm_file} mips/iris6.h"
1842         tmake_file="mips/t-iris mips/t-iris6 mips/t-slibgcc-irix"
1843         extra_options="${extra_options} rpath.opt mips/iris6.opt"
1844         target_cpu_default="MASK_ABICALLS"
1845         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1846         # Only IRIX Development Foundation 1.3 for IRIX 6.5 provides stdint.h.
1847         use_gcc_stdint=wrap
1848         if test "x$stabs" = xyes
1849         then
1850                 tm_file="${tm_file} dbx.h"
1851         fi
1852         if test "x$gnu_ld" = xyes
1853         then
1854                 tm_defines="${tm_defines} IRIX_USING_GNU_LD"
1855         fi
1856         case ${enable_threads}:${have_pthread_h} in
1857           "":yes | yes:yes ) thread_file=posix ;;
1858         esac
1859         ;;
1860 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1861         target_cpu_default="MASK_ABICALLS"
1862         tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
1863         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1864         ;;
1865 mips64*-*-linux* | mipsisa64*-*-linux*)
1866         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} mips/linux.h mips/linux64.h"
1867         tmake_file="${tmake_file} mips/t-linux64 mips/t-libgcc-mips16"
1868         tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32"
1869         case ${target} in
1870                 mips64el-st-linux-gnu)
1871                         tm_file="${tm_file} mips/st.h"
1872                         tmake_file="${tmake_file} mips/t-st"
1873                         ;;
1874                 mips64octeon*-*-linux*)
1875                         tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
1876                         target_cpu_default=MASK_SOFT_FLOAT_ABI
1877                         ;;
1878                 mipsisa64r2*-*-linux*)
1879                         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
1880                         ;;
1881         esac
1882         extra_parts="$extra_parts crtfastmath.o"
1883         gnu_ld=yes
1884         gas=yes
1885         test x$with_llsc != x || with_llsc=yes
1886         ;;
1887 mips*-*-linux*)                         # Linux MIPS, either endian.
1888         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} mips/linux.h"
1889         tmake_file="${tmake_file} mips/t-libgcc-mips16"
1890         case ${target} in
1891         mipsisa32r2*)
1892                 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1893                 ;;
1894         mipsisa32*)
1895                 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1896         esac
1897         extra_parts="$extra_parts crtfastmath.o"
1898         test x$with_llsc != x || with_llsc=yes
1899         ;;
1900 mips*-*-openbsd*)
1901         tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
1902         target_cpu_default="MASK_ABICALLS"
1903         tm_file="mips/mips.h openbsd.h openbsd-stdint.h openbsd-libpthread.h mips/openbsd.h mips/sdb.h"
1904         extra_options="${extra_options} openbsd.opt"
1905         case ${target} in
1906         mips*el-*-openbsd*)
1907             tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1908         *)  tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1909         esac
1910         ;;
1911 mips*-sde-elf*)
1912         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/sde.h"
1913         tmake_file="mips/t-sde mips/t-libgcc-mips16"
1914         extra_options="${extra_options} mips/sde.opt"
1915         case "${with_newlib}" in
1916           yes)
1917             # newlib / libgloss.
1918             ;;
1919           *)
1920             # MIPS toolkit libraries.
1921             tm_file="$tm_file mips/sdemtk.h"
1922             tmake_file="$tmake_file mips/t-sdemtk"
1923             case ${enable_threads} in
1924               "" | yes | mipssde)
1925                 thread_file='mipssde'
1926                 ;;
1927             esac
1928             ;;
1929         esac
1930         case ${target} in
1931           mipsisa32r2*)
1932             tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
1933             ;;
1934           mipsisa32*)
1935             tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
1936             ;;
1937           mipsisa64r2*)
1938             tm_defines="MIPS_ISA_DEFAULT=65 MIPS_ABI_DEFAULT=ABI_N32"
1939             ;;
1940           mipsisa64*)
1941             tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
1942             ;;
1943         esac
1944         ;;
1945 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
1946 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
1947 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
1948 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
1949         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1950         tmake_file="mips/t-isa3264 mips/t-libgcc-mips16"
1951         case ${target} in
1952           mipsisa32r2*)
1953             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1954             ;;
1955           mipsisa32*)
1956             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1957             ;;
1958           mipsisa64r2*)
1959             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
1960             ;;
1961           mipsisa64*)
1962             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
1963             ;;
1964         esac
1965         case ${target} in
1966           mipsisa32*-*-elfoabi*)
1967             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
1968             tm_file="${tm_file} mips/elfoabi.h"
1969             ;;
1970           mipsisa64*-*-elfoabi*)
1971             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
1972             tm_file="${tm_file} mips/elfoabi.h"
1973             ;;
1974           *-*-elf*)
1975             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
1976             ;;
1977         esac
1978         ;;
1979 mipsisa64sr71k-*-elf*)
1980         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1981         tmake_file=mips/t-sr71k
1982         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1983         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
1984         ;;
1985 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1986         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1987         tmake_file="mips/t-elf mips/t-libgcc-mips16 mips/t-sb1"
1988         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1989         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1990         ;;
1991 mips-*-elf* | mipsel-*-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         ;;
1995 mips64-*-elf* | mips64el-*-elf*)
1996         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1997         tmake_file="mips/t-elf mips/t-libgcc-mips16"
1998         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1999         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
2000         ;;
2001 mips64vr-*-elf* | mips64vrel-*-elf*)
2002         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/vr.h mips/elf.h"
2003         tmake_file=mips/t-vr
2004         tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
2005         ;;
2006 mips64orion-*-elf* | mips64orionel-*-elf*)
2007         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elforion.h mips/elf.h"
2008         tmake_file="mips/t-elf mips/t-libgcc-mips16"
2009         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
2010         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
2011         ;;
2012 mips*-*-rtems*)
2013         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
2014         tmake_file="mips/t-elf mips/t-libgcc-mips16 t-rtems mips/t-rtems"
2015         ;;
2016 mips-wrs-vxworks)
2017         tm_file="elfos.h ${tm_file} mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
2018         tmake_file="${tmake_file} mips/t-vxworks"
2019         ;;
2020 mipstx39-*-elf* | mipstx39el-*-elf*)
2021         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/r3900.h mips/elf.h"
2022         tmake_file="mips/t-r3900 mips/t-libgcc-mips16"
2023         ;;
2024 mmix-knuth-mmixware)
2025         tm_file="${tm_file} newlib-stdint.h"
2026         need_64bit_hwint=yes
2027         use_gcc_stdint=wrap
2028         ;;
2029 mn10300-*-*)
2030         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2031         if test x$stabs = xyes
2032         then
2033                 tm_file="${tm_file} dbx.h"
2034         fi
2035         use_collect2=no
2036         use_gcc_stdint=wrap
2037         ;;
2038 pdp11-*-*)
2039         tm_file="${tm_file} newlib-stdint.h"
2040         use_gcc_stdint=wrap
2041         ;;
2042 picochip-*)
2043         tm_file="${tm_file} newlib-stdint.h"
2044         use_gcc_stdint=wrap
2045         tmake_file="picochip/t-picochip t-pnt16-warn"
2046         ;;
2047 # port not yet contributed
2048 #powerpc-*-openbsd*)
2049 #       tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit "
2050 #       extra_headers=
2051 #       ;;
2052 powerpc-*-darwin*)
2053         extra_options="${extra_options} rs6000/darwin.opt"
2054         extra_parts="crt2.o"
2055         case ${target} in
2056           *-darwin1[0-9]* | *-darwin[8-9]*)
2057             tmake_file="${tmake_file} rs6000/t-darwin8"
2058             tm_file="${tm_file} rs6000/darwin8.h"
2059             ;;
2060           *-darwin7*)
2061             tm_file="${tm_file} rs6000/darwin7.h"
2062             ;;
2063           *-darwin[0-6]*)
2064             ;;
2065         esac
2066         tmake_file="${tmake_file} t-slibgcc-darwin"
2067         extra_headers=altivec.h
2068         ;;
2069 powerpc64-*-darwin*)
2070         extra_options="${extra_options} ${cpu_type}/darwin.opt"
2071         extra_parts="crt2.o"
2072         tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc-darwin"
2073         tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
2074         extra_headers=altivec.h
2075         ;;
2076 powerpc-*-freebsd*)
2077         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
2078         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm rs6000/t-freebsd"
2079         tmake_file="${tmake_file} t-slibgcc-libgcc rs6000/t-fprules-softfp soft-fp/t-softfp"
2080         extra_options="${extra_options} rs6000/sysv4.opt"
2081         ;;
2082 powerpc-*-netbsd*)
2083         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2084         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2085         tmake_file="${tmake_file} rs6000/t-netbsd"
2086         extra_options="${extra_options} rs6000/sysv4.opt"
2087         ;;
2088 powerpc-*-eabispe*)
2089         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"
2090         extra_options="${extra_options} rs6000/sysv4.opt"
2091         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
2092         use_gcc_stdint=wrap
2093         ;;
2094 powerpc-*-eabisimaltivec*)
2095         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"
2096         extra_options="${extra_options} rs6000/sysv4.opt"
2097         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
2098         use_gcc_stdint=wrap
2099         ;;
2100 powerpc-*-eabisim*)
2101         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"
2102         extra_options="${extra_options} rs6000/sysv4.opt"
2103         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2104         use_gcc_stdint=wrap
2105         ;;
2106 powerpc-*-elf*)
2107         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h"
2108         extra_options="${extra_options} rs6000/sysv4.opt"
2109         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2110         ;;
2111 powerpc-*-eabialtivec*)
2112         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"
2113         extra_options="${extra_options} rs6000/sysv4.opt"
2114         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
2115         use_gcc_stdint=wrap
2116         ;;
2117 powerpc-xilinx-eabi*)
2118         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"
2119         extra_options="${extra_options} rs6000/sysv4.opt rs6000/xilinx.opt"
2120         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm rs6000/t-xilinx"
2121         use_gcc_stdint=wrap
2122         ;;
2123 powerpc-*-eabi*)
2124         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"
2125         extra_options="${extra_options} rs6000/sysv4.opt"
2126         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2127         use_gcc_stdint=wrap
2128         ;;
2129 powerpc-*-rtems*)
2130         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"
2131         extra_options="${extra_options} rs6000/sysv4.opt"
2132         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm"
2133         ;;
2134 powerpc-*-linux* | powerpc64-*-linux*)
2135         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h rs6000/sysv4.h"
2136         extra_options="${extra_options} rs6000/sysv4.opt"
2137         tmake_file="t-dfprules rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2138         maybe_biarch=yes
2139         case ${target} in
2140             powerpc64-*-linux*spe* | powerpc64-*-linux*paired*)
2141                 echo "*** Configuration ${target} not supported" 1>&2
2142                 exit 1
2143                 ;;
2144             powerpc-*-linux*spe* | powerpc-*-linux*paired*)
2145                 maybe_biarch=
2146                 ;;
2147             powerpc64-*-linux*)
2148                 test x$with_cpu != x || cpu_is_64bit=yes
2149                 maybe_biarch=always
2150                 ;;
2151         esac
2152         case ${maybe_biarch}:${enable_targets}:${cpu_is_64bit} in
2153             always:* | yes:*powerpc64* | yes:all:* | yes:*:yes)
2154                 if test x$cpu_is_64bit = xyes; then
2155                     tm_file="${tm_file} rs6000/default64.h"
2156                 fi
2157                 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h glibc-stdint.h"
2158                 tmake_file="$tmake_file rs6000/t-linux64"
2159                 extra_options="${extra_options} rs6000/linux64.opt"
2160                 ;;
2161             *)
2162                 tm_file="${tm_file} rs6000/linux.h glibc-stdint.h"
2163                 ;;
2164         esac
2165         tmake_file="${tmake_file} t-slibgcc-libgcc rs6000/t-fprules-softfp soft-fp/t-softfp"
2166         case ${target} in
2167             powerpc*-*-linux*altivec*)
2168                 tm_file="${tm_file} rs6000/linuxaltivec.h" ;;
2169             powerpc*-*-linux*spe*)
2170                 tm_file="${tm_file} rs6000/linuxspe.h rs6000/e500.h" ;;
2171             powerpc*-*-linux*paired*)
2172                 tm_file="${tm_file} rs6000/750cl.h" ;;
2173         esac
2174         if test x${enable_secureplt} = xyes; then
2175                 tm_file="rs6000/secureplt.h ${tm_file}"
2176         fi
2177         ;;
2178 powerpc64-*-gnu*)
2179         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"
2180         extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
2181         tmake_file="t-slibgcc-elf-ver t-slibgcc-libgcc t-gnu"
2182         ;;
2183 powerpc-*-gnu-gnualtivec*)
2184         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"
2185         extra_options="${extra_options} rs6000/sysv4.opt"
2186         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-slibgcc-libgcc t-gnu rs6000/t-ppccomm"
2187         if test x$enable_threads = xyes; then
2188                 thread_file='posix'
2189         fi
2190         ;;
2191 powerpc-*-gnu*)
2192         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"
2193         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-slibgcc-libgcc t-gnu rs6000/t-ppccomm"
2194         extra_options="${extra_options} rs6000/sysv4.opt"
2195         if test x$enable_threads = xyes; then
2196                 thread_file='posix'
2197         fi
2198         ;;
2199 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
2200         tm_file="${tm_file} elfos.h freebsd-spec.h rs6000/sysv4.h"
2201         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppccomm rs6000/t-vxworks"
2202         extra_options="${extra_options} rs6000/sysv4.opt"
2203         extra_headers=ppc-asm.h
2204         case ${target} in
2205           *-vxworksae*)
2206             tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksae.h"
2207             tmake_file="${tmake_file} rs6000/t-vxworksae"
2208             ;;
2209           *-vxworks*)
2210             tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
2211             ;;
2212         esac
2213         ;;
2214 powerpc-*-lynxos*)
2215         xm_defines=POSIX
2216         tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
2217         tmake_file="t-lynx rs6000/t-lynx"
2218         extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
2219         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2220         thread_file=lynx
2221         gnu_ld=yes
2222         gas=yes
2223         ;;
2224 powerpcle-*-elf*)
2225         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h"
2226         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2227         extra_options="${extra_options} rs6000/sysv4.opt"
2228         ;;
2229 powerpcle-*-eabisim*)
2230         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"
2231         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2232         extra_options="${extra_options} rs6000/sysv4.opt"
2233         use_gcc_stdint=wrap
2234         ;;
2235 powerpcle-*-eabi*)
2236         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"
2237         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2238         extra_options="${extra_options} rs6000/sysv4.opt"
2239         use_gcc_stdint=wrap
2240         ;;
2241 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2242         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h rs6000/aix-stdint.h"
2243         tmake_file=rs6000/t-aix43
2244         extra_options="${extra_options} rs6000/aix64.opt"
2245         use_collect2=yes
2246         thread_file='aix'
2247         use_gcc_stdint=provide
2248         extra_headers=
2249         ;;
2250 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
2251         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h rs6000/aix-stdint.h"
2252         extra_options="${extra_options} rs6000/aix64.opt"
2253         tmake_file=rs6000/t-aix43
2254         use_collect2=yes
2255         thread_file='aix'
2256         use_gcc_stdint=wrap
2257         extra_headers=
2258         ;;
2259 rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
2260         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h rs6000/aix-stdint.h"
2261         tmake_file=rs6000/t-aix52
2262         extra_options="${extra_options} rs6000/aix64.opt"
2263         use_collect2=yes
2264         thread_file='aix'
2265         use_gcc_stdint=wrap
2266         extra_headers=
2267         ;;
2268 rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
2269         tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h rs6000/aix-stdint.h"
2270         tmake_file=rs6000/t-aix52
2271         extra_options="${extra_options} rs6000/aix64.opt"
2272         use_collect2=yes
2273         thread_file='aix'
2274         use_gcc_stdint=wrap
2275         extra_headers=altivec.h
2276         ;;
2277 rs6000-ibm-aix[6789].* | powerpc-ibm-aix[6789].*)
2278         tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h rs6000/aix-stdint.h"
2279         tmake_file=rs6000/t-aix52
2280         extra_options="${extra_options} rs6000/aix64.opt"
2281         use_collect2=yes
2282         thread_file='aix'
2283         use_gcc_stdint=wrap
2284         extra_headers=altivec.h
2285         ;;
2286 rx-*-elf*)
2287         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} ../../libgcc/config/rx/rx-abi.h"
2288         tmake_file="${tmake_file} rx/t-rx"
2289         ;;
2290 s390-*-linux*)
2291         tm_file="s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2292         ;;
2293 s390x-*-linux*)
2294         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2295         tm_p_file=s390/s390-protos.h
2296         md_file=s390/s390.md
2297         extra_modes=s390/s390-modes.def
2298         out_file=s390/s390.c
2299         tmake_file="${tmake_file} s390/t-linux64"
2300         ;;
2301 s390x-ibm-tpf*)
2302         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h s390/tpf.h"
2303         tm_p_file=s390/s390-protos.h
2304         md_file=s390/s390.md
2305         extra_modes=s390/s390-modes.def
2306         out_file=s390/s390.c
2307         extra_parts="crtbeginS.o crtendS.o"
2308         thread_file='tpf'
2309         extra_options="${extra_options} s390/tpf.opt"
2310         ;;
2311 score-*-elf)
2312         gas=yes
2313         gnu_ld=yes
2314         tm_file="dbxelf.h elfos.h score/elf.h score/score.h newlib-stdint.h"
2315         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2316         tmake_file="${tmake_file} score/t-score-elf score/t-score-softfp soft-fp/t-softfp"
2317         extra_objs="score7.o"
2318         ;;
2319 sh-*-elf* | sh[12346l]*-*-elf* | \
2320 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
2321   sh-*-linux* | sh[2346lbe]*-*-linux* | \
2322   sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2323    sh64-*-netbsd* | sh64l*-*-netbsd*)
2324         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2325         if test x${with_endian} = x; then
2326                 case ${target} in
2327                 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2328                 shbe-*-* | sheb-*-*)               with_endian=big,little ;;
2329                 sh[1234]l* | sh[34]*-*-linux*)     with_endian=little ;;
2330                 shl* | sh64l* | sh*-*-linux* | \
2331                   sh5l* | sh-superh-elf)           with_endian=little,big ;;
2332                 sh[1234]*-*-*)                     with_endian=big ;;
2333                 *)                                 with_endian=big,little ;;
2334                 esac
2335         fi
2336         # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2337         #  First word : the default endian.
2338         #  Second word: the secondary endian (optional).
2339         case ${with_endian} in
2340         big)            TM_ENDIAN_CONFIG=mb ;;
2341         little)         TM_ENDIAN_CONFIG=ml ;;
2342         big,little)     TM_ENDIAN_CONFIG="mb ml" ;;
2343         little,big)     TM_ENDIAN_CONFIG="ml mb" ;;
2344         *)      echo "with_endian=${with_endian} not supported."; exit 1 ;;
2345         esac
2346         case ${with_endian} in
2347         little*)        tm_file="sh/little.h ${tm_file}" ;;
2348         esac
2349         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h"
2350         case ${target} in
2351         sh*-*-linux*)   tmake_file="${tmake_file} sh/t-linux"
2352                         tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
2353         sh*-*-netbsd*)
2354                         tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2355                         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2356
2357                         ;;
2358         sh*-superh-elf) if test x$with_libgloss != xno; then
2359                                 with_libgloss=yes
2360                                 tm_file="${tm_file} sh/newlib.h"
2361                         fi
2362                         tm_file="${tm_file} sh/embed-elf.h"
2363                         tm_file="${tm_file} sh/superh.h"
2364                         tmake_file="${tmake_file} sh/t-superh"
2365                         extra_options="${extra_options} sh/superh.opt" ;;
2366         *)              if test x$with_newlib = xyes \
2367                            && test x$with_libgloss = xyes; then
2368                                 tm_file="${tm_file} sh/newlib.h"
2369                         fi
2370                         tm_file="${tm_file} sh/embed-elf.h" ;;
2371         esac
2372         case ${target} in
2373         sh5*-*-netbsd*)
2374                 # SHmedia, 32-bit ABI
2375                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
2376                 ;;
2377         sh64*-netbsd*)
2378                 # SHmedia, 64-bit ABI
2379                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
2380                 ;;
2381         *-*-netbsd)
2382                 tmake_file="${tmake_file} sh/t-netbsd"
2383                 ;;
2384         sh64*-*-linux*)
2385                 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
2386                 tm_file="${tm_file} sh/sh64.h"
2387                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2388                 ;;
2389         sh64*)
2390                 tmake_file="${tmake_file} sh/t-sh64"
2391                 tm_file="${tm_file} sh/sh64.h"
2392                 if test x$with_newlib = xyes; then
2393                         tm_file="${tm_file} newlib-stdint.h"
2394                 fi
2395                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2396                 ;;
2397         *-*-symbianelf*)
2398                 tmake_file="sh/t-symbian"
2399                 tm_file="sh/symbian-pre.h sh/little.h ${tm_file} sh/symbian-post.h"
2400                 c_target_objs="symbian-base.o symbian-c.o"
2401                 cxx_target_objs="symbian-base.o symbian-cxx.o"
2402                 extra_parts="crt1.o crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
2403                 ;;
2404         *-*-elf*)
2405                 tm_file="${tm_file} newlib-stdint.h"
2406                 ;;
2407         esac
2408         # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2409         case `echo ${target} | sed 's/e[lb]-/-/'` in
2410         sh64*-*-netbsd*)        sh_cpu_target=sh5-64media ;;
2411         sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
2412         sh4a_single_only*)      sh_cpu_target=sh4a-single-only ;;
2413         sh4a_single*)           sh_cpu_target=sh4a-single ;;
2414         sh4a_nofpu*)            sh_cpu_target=sh4a-nofpu ;;
2415         sh4al)                  sh_cpu_target=sh4al ;;
2416         sh4a*)                  sh_cpu_target=sh4a ;;
2417         sh4_single_only*)       sh_cpu_target=sh4-single-only ;;
2418         sh4_single*)            sh_cpu_target=sh4-single ;;
2419         sh4_nofpu*)             sh_cpu_target=sh4-nofpu ;;
2420         sh4* | sh-superh-*)     sh_cpu_target=sh4 ;;
2421         sh3e*)                  sh_cpu_target=sh3e ;;
2422         sh*-*-netbsd* | sh3*)   sh_cpu_target=sh3 ;;
2423         sh2a_single_only*)      sh_cpu_target=sh2a-single-only ;;
2424         sh2a_single*)           sh_cpu_target=sh2a-single ;;
2425         sh2a_nofpu*)            sh_cpu_target=sh2a-nofpu ;;
2426         sh2a*)                  sh_cpu_target=sh2a ;;
2427         sh2e*)                  sh_cpu_target=sh2e ;;
2428         sh2*)                   sh_cpu_target=sh2 ;;
2429         *)                      sh_cpu_target=sh1 ;;
2430         esac
2431         # did the user say --without-fp ?
2432         if test x$with_fp = xno; then
2433                 case ${sh_cpu_target} in
2434                 sh5-*media)     sh_cpu_target=${sh_cpu_target}-nofpu ;;
2435                 sh4al | sh1)    ;;
2436                 sh4a* )         sh_cpu_target=sh4a-nofpu ;;
2437                 sh4*)           sh_cpu_target=sh4-nofpu ;;
2438                 sh3*)           sh_cpu_target=sh3 ;;
2439                 sh2a*)          sh_cpu_target=sh2a-nofpu ;;
2440                 sh2*)           sh_cpu_target=sh2 ;;
2441                 *)      echo --without-fp not available for $target: ignored
2442                 esac
2443                 tm_defines="$tm_defines STRICT_NOFPU=1"
2444         fi
2445         sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2446         case $sh_cpu_default in
2447         sh5-64media-nofpu | sh5-64media | \
2448           sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
2449           sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
2450           sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
2451           sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
2452           sh3e | sh3 | sh2e | sh2 | sh1) ;;
2453         "")     sh_cpu_default=${sh_cpu_target} ;;
2454         *)      echo "with_cpu=$with_cpu not supported"; exit 1 ;;
2455         esac
2456         sh_multilibs=${with_multilib_list}
2457         if test "$sh_multilibs" = "default" ; then
2458                 case ${target} in
2459                 sh64-superh-linux* | \
2460                 sh[1234]*)      sh_multilibs=${sh_cpu_target} ;;
2461                 sh64* | sh5*)   sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
2462                 sh-superh-*)    sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2463                 sh*-*-linux*)   sh_multilibs=m1,m3e,m4 ;;
2464                 sh*-*-netbsd*)  sh_multilibs=m3,m3e,m4 ;;
2465                 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
2466                 esac
2467                 if test x$with_fp = xno; then
2468                         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`"
2469                 fi
2470         fi
2471         target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
2472         tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
2473         tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2474         sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^[Ss][Hh]/m/' -e 's/ [Ss][Hh]/ m/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
2475         for sh_multilib in ${sh_multilibs}; do
2476                 case ${sh_multilib} in
2477                 m1 | m2 | m2e | m3 | m3e | \
2478                 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2479                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
2480                 m2a | m2a-single | m2a-single-only | m2a-nofpu | \
2481                 m5-64media | m5-64media-nofpu | \
2482                 m5-32media | m5-32media-nofpu | \
2483                 m5-compact | m5-compact-nofpu)
2484                         # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2485                         # It is passed to MULTIILIB_OPTIONS verbatim.
2486                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2487                         tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2488                         ;;
2489                 \!*)    # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2490                         # It is passed the MULTILIB_EXCEPTIONS verbatim.
2491                         TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
2492                 *)
2493                         echo "with_multilib_list=${sh_multilib} not supported."
2494                         exit 1
2495                         ;;
2496                 esac
2497         done
2498         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
2499         if test x${enable_incomplete_targets} = xyes ; then
2500                 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"
2501         fi
2502         tm_file="$tm_file ./sysroot-suffix.h"
2503         tmake_file="$tmake_file t-sysroot-suffix"
2504         ;;
2505 sh-*-rtems*)
2506         tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
2507         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
2508         ;;
2509 sh-wrs-vxworks)
2510         tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
2511         tm_file="${tm_file} elfos.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
2512         ;;
2513 sparc-*-elf*)
2514         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp-elf.h"
2515         case ${target} in
2516             *-leon-*)
2517                 tmake_file="sparc/t-leon"
2518                 ;;
2519             *-leon[3-9]*)
2520                 tmake_file="sparc/t-leon3"
2521                 ;;
2522             *)
2523                 tmake_file="sparc/t-elf"
2524                 ;;
2525         esac
2526         tmake_file="${tmake_file} sparc/t-crtin sparc/t-crtfm"
2527         extra_parts="crtbegin.o crtend.o"
2528         ;;
2529 sparc-*-rtems*)
2530         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
2531         tmake_file="sparc/t-elf sparc/t-crtin sparc/t-crtfm t-rtems"
2532         extra_parts="crtbegin.o crtend.o"
2533         ;;
2534 sparc-*-linux*)
2535         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h"
2536         extra_options="${extra_options} sparc/long-double-switch.opt"
2537         case ${target} in
2538             *-leon-*)
2539                 tmake_file="${tmake_file} sparc/t-leon"
2540                 ;;
2541             *-leon[3-9]*)
2542                 tmake_file="${tmake_file} sparc/t-leon3"
2543                 ;;
2544             *)
2545                 tmake_file="${tmake_file} sparc/t-linux"
2546                 ;;
2547         esac
2548         if test x$enable_targets = xall; then
2549                 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
2550                 tmake_file="${tmake_file} sparc/t-linux64"
2551         else
2552                 tm_file="${tm_file} sparc/linux.h"
2553         fi
2554         tmake_file="${tmake_file} sparc/t-crtfm"
2555         ;;
2556 sparc-*-netbsdelf*)
2557         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2558         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2559         extra_options="${extra_options} sparc/long-double-switch.opt"
2560         ;;
2561 sparc*-*-solaris2*)
2562         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sol2.h"
2563         case ${target} in
2564             *-*-solaris2.1[0-9]*)
2565                 tm_file="${tm_file} sol2-10.h"
2566                 use_gcc_stdint=wrap
2567                 ;;
2568             *)
2569                 use_gcc_stdint=provide
2570                 ;;
2571         esac
2572         tm_file="${tm_file} sparc/sol2.h"
2573         case ${target} in
2574             sparc64-*-* | sparcv9-*-*)
2575                 tm_file="sparc/sol2-64.h ${tm_file}"
2576                 ;;
2577             *)
2578                 test x$with_cpu != x || with_cpu=v9
2579                 ;;
2580         esac
2581         tm_file="${tm_file} sparc/sol2-bi.h"
2582         if test x$gas = xyes; then
2583                 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
2584         fi
2585         if test x$gnu_ld = xyes; then
2586                 tm_file="${tm_file} sol2-gld.h sparc/sol2-gld-bi.h"
2587         fi
2588         tm_file="${tm_file} tm-dwarf2.h"
2589         tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtin sparc/t-crtfm"
2590         if test x$gnu_ld = xyes; then
2591                 tmake_file="$tmake_file t-slibgcc-elf-ver"
2592         else
2593                 tmake_file="$tmake_file t-slibgcc-sld"
2594         fi
2595         if test x$gas = xyes; then
2596                 tm_file="usegas.h ${tm_file}"
2597         fi
2598         c_target_objs="sol2-c.o"
2599         cxx_target_objs="sol2-c.o"
2600         extra_objs="sol2.o"
2601         tm_p_file="${tm_p_file} sol2-protos.h"
2602         extra_parts="crt1.o gcrt1.o gmon.o crtbegin.o crtend.o"
2603         case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
2604           "":yes:* | yes:yes:* )
2605                 thread_file=posix
2606                 ;;
2607           "":*:yes | yes:*:yes )
2608                 thread_file=solaris
2609                 ;;
2610         esac
2611         ;;
2612 sparc-wrs-vxworks)
2613         tm_file="${tm_file} elfos.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
2614         tmake_file="${tmake_file} sparc/t-vxworks"
2615         ;;
2616 sparc64-*-elf*)
2617         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
2618         extra_options="${extra_options} sparc/little-endian.opt"
2619         tmake_file="${tmake_file} sparc/t-crtin sparc/t-crtfm"
2620         extra_parts="crtbegin.o crtend.o"
2621         ;;
2622 sparc64-*-rtems*)
2623         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h sparc/rtemself.h rtems.h"
2624         extra_options="${extra_options} sparc/little-endian.opt"
2625         tmake_file="${tmake_file} sparc/t-crtin sparc/t-crtfm t-rtems"
2626         extra_parts="crtbegin.o crtend.o"
2627         ;;
2628 sparc64-*-linux*)
2629         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"
2630         extra_options="${extra_options} sparc/long-double-switch.opt"
2631         tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
2632         ;;
2633 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2634         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2635         extra_options="${extra_options} sparc/long-double-switch.opt"
2636         tmake_file="${tmake_file} sparc/t-crtfm"
2637         case "x$with_cpu" in
2638                 xultrasparc) ;;
2639                 x) with_cpu=ultrasparc ;;
2640                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2641         esac
2642         ;;
2643 sparc64-*-netbsd*)
2644         tm_file="sparc/biarch64.h ${tm_file}"
2645         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2646         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2647         extra_options="${extra_options} sparc/long-double-switch.opt"
2648         tmake_file="${tmake_file} sparc/t-netbsd64"
2649         ;;
2650 sparc64-*-openbsd*)
2651         tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h"
2652         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h sparc/openbsd64.h"
2653         extra_options="${extra_options} openbsd.opt"
2654         extra_options="${extra_options} sparc/little-endian.opt"
2655         gas=yes gnu_ld=yes
2656         with_cpu=ultrasparc
2657         ;;
2658 spu-*-elf*)
2659         tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
2660         tmake_file="spu/t-spu-elf"
2661         extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h spu_cache.h"
2662         extra_modes=spu/spu-modes.def
2663         c_target_objs="${c_target_objs} spu-c.o"
2664         cxx_target_objs="${cxx_target_objs} spu-c.o"
2665         ;;
2666 v850e1-*-*)
2667         target_cpu_default="TARGET_CPU_v850e1"
2668         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
2669         tm_p_file=v850/v850-protos.h
2670         tmake_file=v850/t-v850e
2671         md_file=v850/v850.md
2672         extra_modes=v850/v850-modes.def
2673         out_file=v850/v850.c
2674         extra_options="${extra_options} v850/v850.opt"
2675         if test x$stabs = xyes
2676         then
2677                 tm_file="${tm_file} dbx.h"
2678         fi
2679         use_collect2=no
2680         c_target_objs="v850-c.o"
2681         cxx_target_objs="v850-c.o"
2682         use_gcc_stdint=wrap
2683         ;;
2684 v850e-*-*)
2685         target_cpu_default="TARGET_CPU_v850e"
2686         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
2687         tm_p_file=v850/v850-protos.h
2688         tmake_file=v850/t-v850e
2689         md_file=v850/v850.md
2690         extra_modes=v850/v850-modes.def
2691         out_file=v850/v850.c
2692         extra_options="${extra_options} v850/v850.opt"
2693         if test x$stabs = xyes
2694         then
2695                 tm_file="${tm_file} dbx.h"
2696         fi
2697         use_collect2=no
2698         c_target_objs="v850-c.o"
2699         cxx_target_objs="v850-c.o"
2700         use_gcc_stdint=wrap
2701         ;;
2702 v850-*-*)
2703         target_cpu_default="TARGET_CPU_generic"
2704         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2705         tmake_file=v850/t-v850
2706         if test x$stabs = xyes
2707         then
2708                 tm_file="${tm_file} dbx.h"
2709         fi
2710         use_collect2=no
2711         c_target_objs="v850-c.o"
2712         cxx_target_objs="v850-c.o"
2713         use_gcc_stdint=wrap
2714         ;;
2715 vax-*-linux*)
2716         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h vax/elf.h vax/linux.h"
2717         extra_options="${extra_options} vax/elf.opt"
2718         tmake_file="${tmake_file} vax/t-linux"
2719         ;;
2720 vax-*-netbsdelf*)
2721         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2722         extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
2723         ;;
2724 vax-*-netbsd*)
2725         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2726         extra_options="${extra_options} netbsd.opt"
2727         tmake_file=t-netbsd
2728         extra_parts=""
2729         use_collect2=yes
2730         ;;
2731 vax-*-openbsd*)
2732         tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-pthread.h vax/openbsd.h"
2733         extra_options="${extra_options} openbsd.opt"
2734         use_collect2=yes
2735         ;;
2736 xstormy16-*-elf)
2737         # For historical reasons, the target files omit the 'x'.
2738         tm_file="dbxelf.h elfos.h newlib-stdint.h stormy16/stormy16.h"
2739         tm_p_file=stormy16/stormy16-protos.h
2740         md_file=stormy16/stormy16.md
2741         out_file=stormy16/stormy16.c
2742         extra_options=stormy16/stormy16.opt
2743         tmake_file="stormy16/t-stormy16"
2744         extra_parts="crtbegin.o crtend.o"
2745         ;;
2746 xtensa*-*-elf*)
2747         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h xtensa/elf.h"
2748         extra_options="${extra_options} xtensa/elf.opt"
2749         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2750         ;;
2751 xtensa*-*-linux*)
2752         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/linux.h"
2753         tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
2754         ;;
2755 am33_2.0-*-linux*)
2756         tm_file="mn10300/mn10300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h mn10300/linux.h"
2757         tmake_file="${tmake_file} mn10300/t-linux"
2758         gas=yes gnu_ld=yes
2759         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2760         use_collect2=no
2761         ;;
2762 m32c-*-rtems*)
2763         tm_file="dbxelf.h elfos.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
2764         tmake_file="${tmake_file} t-rtems"
2765         c_target_objs="m32c-pragma.o"
2766         cxx_target_objs="m32c-pragma.o"
2767         ;;
2768 m32c-*-elf*)
2769         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2770         c_target_objs="m32c-pragma.o"
2771         cxx_target_objs="m32c-pragma.o"
2772         ;;
2773 *)
2774         echo "*** Configuration ${target} not supported" 1>&2
2775         exit 1
2776         ;;
2777 esac
2778
2779 case ${target} in
2780 i[34567]86-*-linux* | x86_64-*-linux*)
2781         tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
2782         ;;
2783 i[34567]86-*-* | x86_64-*-*)
2784         tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
2785         ;;
2786 powerpc*-*-* | rs6000-*-*)
2787         tm_file="${tm_file} rs6000/option-defaults.h"
2788 esac
2789
2790 # Support for --with-cpu and related options (and a few unrelated options,
2791 # too).
2792 case ${with_cpu} in
2793   yes | no)
2794     echo "--with-cpu must be passed a value" 1>&2
2795     exit 1
2796     ;;
2797 esac
2798
2799 # Set arch and cpu from ${target} and ${target_noncanonical}.  Set cpu
2800 # to generic if there is no processor scheduler model for the target.
2801 arch=
2802 cpu=
2803 arch_without_sse2=no
2804 arch_without_64bit=no
2805 case ${target} in
2806   i386-*-freebsd*)
2807     if test $fbsd_major -ge 6; then
2808       arch=i486
2809     else
2810       arch=i386
2811     fi
2812     cpu=generic
2813     arch_without_sse2=yes
2814     arch_without_64bit=yes
2815     ;;
2816   i386-*-*)
2817     arch=i386
2818     cpu=i386
2819     arch_without_sse2=yes
2820     arch_without_64bit=yes
2821     ;;
2822   i486-*-*)
2823     arch=i486
2824     cpu=i486
2825     arch_without_sse2=yes
2826     arch_without_64bit=yes
2827     ;;
2828   i586-*-*)
2829     arch_without_sse2=yes
2830     arch_without_64bit=yes
2831     case ${target_noncanonical} in
2832       k6_2-*)
2833         arch=k6-2
2834         cpu=k6-2
2835         ;;
2836       k6_3-*)
2837         arch=k6-3
2838         cpu=k6-3
2839         ;;
2840       k6-*)
2841         arch=k6
2842         cpu=k6
2843         ;;
2844       pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2845         arch=pentium-mmx
2846         cpu=pentium-mmx
2847         ;;
2848       *)
2849         arch=pentium
2850         cpu=pentium
2851         ;;
2852     esac
2853     ;;
2854   i686-*-* | i786-*-*)
2855     case ${target_noncanonical} in
2856       bdver1-*)
2857         arch=bdver1
2858         cpu=bdver1
2859         ;;
2860       btver1-*)
2861         arch=btver1
2862         cpu=btver1
2863         ;;
2864       amdfam10-*|barcelona-*)
2865         arch=amdfam10
2866         cpu=amdfam10
2867         ;;
2868       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2869         arch=k8-sse3
2870         cpu=k8-sse3
2871         ;;
2872       k8-*|opteron-*|athlon64-*|athlon_fx-*)
2873         arch=k8
2874         cpu=k8
2875         ;;
2876       athlon_xp-*|athlon_mp-*|athlon_4-*)
2877         arch=athlon-4
2878         cpu=athlon-4
2879         arch_without_sse2=yes
2880         arch_without_64bit=yes
2881         ;;
2882       athlon_tbird-*|athlon-*)
2883         arch=athlon
2884         cpu=athlon
2885         arch_without_sse2=yes
2886         ;;
2887       geode-*)
2888         arch=geode
2889         cpu=geode
2890         arch_without_sse2=yes
2891         ;;
2892       pentium2-*)
2893         arch=pentium2
2894         cpu=pentium2
2895         arch_without_sse2=yes
2896         ;;
2897       pentium3-*|pentium3m-*)
2898         arch=pentium3
2899         cpu=pentium3
2900         arch_without_sse2=yes
2901         ;;
2902       pentium4-*|pentium4m-*)
2903         arch=pentium4
2904         cpu=pentium4
2905         ;;
2906       prescott-*)
2907         arch=prescott
2908         cpu=prescott
2909         ;;
2910       nocona-*)
2911         arch=nocona
2912         cpu=nocona
2913         ;;
2914       atom-*)
2915         arch=atom
2916         cpu=atom
2917         ;;
2918       core2-*)
2919         arch=core2
2920         cpu=core2
2921         ;;
2922       corei7-*)
2923         arch=corei7
2924         cpu=corei7
2925         ;;
2926       corei7_avx-*)
2927         arch=corei7-avx
2928         cpu=corei7-avx
2929         ;;
2930       pentium_m-*)
2931         arch=pentium-m
2932         cpu=pentium-m
2933         ;;
2934       pentiumpro-*)
2935         arch=pentiumpro
2936         cpu=pentiumpro
2937         arch_without_sse2=yes
2938         ;;
2939       *)
2940         arch=pentiumpro
2941         cpu=generic
2942         arch_without_sse2=yes
2943         arch_without_64bit=yes
2944         ;;
2945     esac
2946     ;;
2947   x86_64-*-*)
2948     case ${target_noncanonical} in
2949       bdver1-*)
2950         arch=bdver1
2951         cpu=bdver1
2952         ;;
2953       btver1-*)
2954         arch=btver1
2955         cpu=btver1
2956         ;;
2957       amdfam10-*|barcelona-*)
2958         arch=amdfam10
2959         cpu=amdfam10
2960         ;;
2961       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2962         arch=k8-sse3
2963         cpu=k8-sse3
2964         ;;
2965       k8-*|opteron-*|athlon_64-*)
2966         arch=k8
2967         cpu=k8
2968         ;;
2969       nocona-*)
2970         arch=nocona
2971         cpu=nocona
2972         ;;
2973       atom-*)
2974         arch=atom
2975         cpu=atom
2976         ;;
2977       core2-*)
2978         arch=core2
2979         cpu=core2
2980         ;;
2981       corei7-*)
2982         arch=corei7
2983         cpu=corei7
2984         ;;
2985       *)
2986         arch=x86-64
2987         cpu=generic
2988         ;;
2989     esac
2990     ;;
2991 esac
2992
2993 # If there is no $with_cpu option, try to infer one from ${target}.
2994 # This block sets nothing except for with_cpu.
2995 if test x$with_cpu = x ; then
2996   case ${target} in
2997     i[34567]86-*-*|x86_64-*-*)
2998       with_cpu=$cpu
2999       ;;
3000     alphaev6[78]*-*-*)
3001       with_cpu=ev67
3002       ;;
3003     alphaev6*-*-*)
3004       with_cpu=ev6
3005       ;;
3006     alphapca56*-*-*)
3007       with_cpu=pca56
3008       ;;
3009     alphaev56*-*-*)
3010       with_cpu=ev56
3011       ;;
3012     alphaev5*-*-*)
3013       with_cpu=ev5
3014       ;;
3015     frv-*-*linux* | frv400-*-*linux*)
3016       with_cpu=fr400
3017       ;;
3018     frv550-*-*linux*)
3019       with_cpu=fr550
3020       ;;
3021     m68k*-*-*)
3022       case "$with_arch" in
3023         "cf")
3024           with_cpu=${default_cf_cpu}
3025           ;;
3026         "" | "m68k")
3027           with_cpu=m${default_m68k_cpu}
3028           ;;
3029       esac
3030       ;;
3031     mips*-*-vxworks)
3032       with_arch=mips2
3033       ;;
3034     sparc-leon*-*)
3035       with_cpu=v8;
3036       ;;
3037     sparc*-*-*)
3038       with_cpu="`echo ${target} | sed 's/-.*$//'`"
3039       ;;
3040   esac
3041
3042   # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
3043   case ${target} in
3044     i[34567]86-*-*|x86_64-*-*)
3045       if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
3046         if test x$with_cpu_32 = x; then
3047           with_cpu_32=$with_cpu
3048         fi
3049         if test x$with_cpu_64 = x; then
3050           with_cpu_64=$with_cpu
3051         fi
3052         with_cpu=
3053       fi
3054       ;;
3055   esac
3056 fi
3057
3058 # Support for --with-arch and related options (and a few unrelated options,
3059 # too).
3060 case ${with_arch} in
3061   yes | no)
3062     echo "--with-arch must be passed a value" 1>&2
3063     exit 1
3064     ;;
3065 esac
3066
3067 # If there is no $with_arch option, try to infer one from ${target}.
3068 # This block sets nothing except for with_arch.
3069 if test x$with_arch = x ; then
3070   case ${target} in
3071     i[34567]86-*-darwin*|x86_64-*-darwin*)
3072       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3073       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3074       ;;
3075     i[34567]86-*-*)
3076       # --with-fpmath sets the default ISA to SSE2, which is the same
3077       # ISA supported by Pentium 4.
3078       if test x$with_fpmath = x || test $arch_without_sse2 = no; then
3079         with_arch=$arch
3080       else
3081         with_arch=pentium4
3082       fi
3083       ;;
3084     x86_64-*-*)
3085       with_arch=$arch
3086       ;;
3087   esac
3088
3089   # Avoid overriding --with-arch-32 and --with-arch-64 values.
3090   case ${target} in
3091     i[34567]86-*-darwin*|x86_64-*-darwin*)
3092       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3093       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3094       ;;
3095     i[34567]86-*-*|x86_64-*-*)
3096       if test x$with_arch_32 != x || test x$with_arch_64 != x; then
3097         if test x$with_arch_32 = x; then
3098           with_arch_32=$with_arch
3099         fi
3100         if test x$with_arch_64 = x; then
3101           if test $arch_without_64bit = yes; then
3102             # Set the default 64bit arch to x86-64 if the default arch
3103             # doesn't support 64bit.
3104             with_arch_64=x86-64
3105           else
3106             with_arch_64=$with_arch
3107           fi
3108         fi
3109         with_arch=
3110       elif test $arch_without_64bit$need_64bit_isa = yesyes; then
3111         # Set the default 64bit arch to x86-64 if the default arch
3112         # doesn't support 64bit and we need 64bit ISA.
3113         with_arch_32=$with_arch
3114         with_arch_64=x86-64
3115         with_arch=
3116       fi
3117       ;;
3118   esac
3119 fi
3120
3121 # Support --with-fpmath.
3122 if test x$with_fpmath != x; then
3123   case ${target} in
3124     i[34567]86-*-* | x86_64-*-*)
3125       case ${with_fpmath} in
3126       avx)
3127         tm_file="${tm_file} i386/avxmath.h"
3128         ;;
3129       sse)
3130         tm_file="${tm_file} i386/ssemath.h"
3131         ;;
3132       *)
3133         echo "Invalid --with-fpmath=$with_fpmath" 1>&2
3134         exit 1
3135         ;;
3136       esac
3137       ;;
3138     *)
3139       echo "--with-fpmath isn't supported for $target." 1>&2
3140       exit 1
3141       ;;
3142   esac
3143 fi
3144
3145 # Similarly for --with-schedule.
3146 if test x$with_schedule = x; then
3147         case ${target} in
3148         hppa1*)
3149                 # Override default PA8000 scheduling model.
3150                 with_schedule=7100LC
3151                 ;;
3152         esac
3153 fi
3154
3155 # Validate and mark as valid any --with options supported
3156 # by this target.  In order to use a particular --with option
3157 # you must list it in supported_defaults; validating the value
3158 # is optional.  This case statement should set nothing besides
3159 # supported_defaults.
3160
3161 supported_defaults=
3162 case "${target}" in
3163         alpha*-*-*)
3164                 supported_defaults="cpu tune"
3165                 for which in cpu tune; do
3166                         eval "val=\$with_$which"
3167                         case "$val" in
3168                         "" \
3169                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
3170                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
3171                         | 21264a)
3172                                 ;;
3173                         *)
3174                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
3175                                 exit 1
3176                                 ;;
3177                         esac
3178                 done
3179                 ;;
3180
3181         arm*-*-*)
3182                 supported_defaults="arch cpu float tune fpu abi mode"
3183                 for which in cpu tune; do
3184                         # See if it matches any of the entries in arm-cores.def
3185                         eval "val=\$with_$which"
3186                         if [ x"$val" = x ] \
3187                             || grep "^ARM_CORE(\"$val\"," \
3188                                     ${srcdir}/config/arm/arm-cores.def \
3189                                     > /dev/null; then
3190                           # Ok
3191                           new_val=`grep "^ARM_CORE(\"$val\"," \
3192                                 ${srcdir}/config/arm/arm-cores.def | \
3193                                 sed -e 's/^[^,]*,[      ]*//' | \
3194                                 sed -e 's/,.*$//'`
3195                           eval "target_${which}_cname=$new_val"
3196                         echo "For $val real value is $new_val"
3197                           true
3198                         else
3199                           echo "Unknown CPU used in --with-$which=$val" 1>&2
3200                           exit 1
3201                         fi
3202                 done
3203
3204                 case "$with_arch" in
3205                 "" \
3206                 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
3207                 | armv5te | armv6j |armv6k | armv6z | armv6zk | armv6-m \
3208                 | armv7 | armv7-a | armv7-r | armv7-m \
3209                 | iwmmxt | ep9312)
3210                         # OK
3211                         ;;
3212                 *)
3213                         echo "Unknown arch used in --with-arch=$with_arch" 1>&2
3214                         exit 1
3215                         ;;
3216                 esac
3217
3218                 case "$with_float" in
3219                 "" \
3220                 | soft | hard | softfp)
3221                         # OK
3222                         ;;
3223                 *)
3224                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3225                         exit 1
3226                         ;;
3227                 esac
3228
3229                 case "$with_fpu" in
3230                 "" \
3231                 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | vfpv3 \
3232                 | vfpv3-fp16 | vfpv3-d16 | vfpv3-d16-fp16 | vfpv3xd \
3233                 | vfpv3xd-fp16 | neon | neon-fp16 | vfpv4 | vfpv4-d16 \
3234                 | fpv4-sp-d16 | neon-vfpv4)
3235                         # OK
3236                         ;;
3237                 *)
3238                         echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
3239                         exit 1
3240                         ;;
3241                 esac
3242
3243                 case "$with_abi" in
3244                 "" \
3245                 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
3246                         #OK
3247                         ;;
3248                 *)
3249                         echo "Unknown ABI used in --with-abi=$with_abi"
3250                         exit 1
3251                         ;;
3252                 esac
3253
3254                 case "$with_mode" in
3255                 "" \
3256                 | arm | thumb )
3257                         #OK
3258                         ;;
3259                 *)
3260                         echo "Unknown mode used in --with-mode=$with_mode"
3261                         exit 1
3262                         ;;
3263                 esac
3264
3265                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
3266                         echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
3267                 fi
3268                 ;;
3269
3270         fr*-*-*linux*)
3271                 supported_defaults=cpu
3272                 case "$with_cpu" in
3273                 fr400) ;;
3274                 fr550) ;;
3275                 *)
3276                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3277                         exit 1
3278                         ;;
3279                 esac
3280                 ;;
3281
3282         fido-*-* | m68k*-*-*)
3283                 supported_defaults="arch cpu"
3284                 case "$with_arch" in
3285                 "" | "m68k"| "cf")
3286                         m68k_arch_family="$with_arch"
3287                         ;;
3288                 *)
3289                         echo "Invalid --with-arch=$with_arch" 1>&2
3290                         exit 1
3291                         ;;
3292                 esac
3293
3294                 # We always have a $with_cpu setting here.
3295                 case "$with_cpu" in
3296                 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
3297                         m68k_cpu_ident=$with_cpu
3298                         ;;
3299                 "m68020-40")
3300                         m68k_cpu_ident=m68020
3301                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
3302                         ;;
3303                 "m68020-60")
3304                         m68k_cpu_ident=m68020
3305                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
3306                         ;;
3307                 *)
3308                         # We need the C identifier rather than the string.
3309                         m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
3310                            'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
3311                             $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
3312                                  ${srcdir}/config/m68k/m68k-devices.def`
3313                         if [ x"$m68k_cpu_ident" = x ] ; then
3314                                 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
3315                                 exit 1
3316                         fi
3317                         with_cpu="mcpu=$with_cpu"
3318                         ;;
3319                 esac
3320                 ;;
3321
3322         hppa*-*-*)
3323                 supported_defaults="arch schedule"
3324
3325                 case "$with_arch" in
3326                 "" | 1.0 | 1.1 | 2.0)
3327                         # OK
3328                         ;;
3329                 *)
3330                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
3331                         exit 1
3332                         ;;
3333                 esac
3334
3335                 case "$with_schedule" in
3336                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
3337                         # OK
3338                         ;;
3339                 *)
3340                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
3341                         exit 1
3342                         ;;
3343                 esac
3344                 ;;
3345
3346         i[34567]86-*-* | x86_64-*-*)
3347                 supported_defaults="arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
3348                 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
3349                         eval "val=\$with_$which"
3350                         case ${val} in
3351                         i386 | i486 \
3352                         | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
3353                         | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
3354                         | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
3355                         | athlon-4 | athlon-xp | athlon-mp | geode \
3356                         | prescott | pentium-m | pentium4m | pentium3m)
3357                                 case "${target}" in
3358                                   x86_64-*-*)
3359                                       case "x$which" in
3360                                         *_32)
3361                                                 ;;
3362                                         *)
3363                                                 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
3364                                                 exit 1
3365                                                 ;;
3366                                       esac
3367                                       ;;
3368                                 esac
3369                                 # OK
3370                                 ;;
3371                         "" | x86-64 | generic | native \
3372                         | k8 | k8-sse3 | athlon64 | athlon64-sse3 | opteron \
3373                         | opteron-sse3 | athlon-fx | bdver1 | btver1 | amdfam10 \
3374                         | barcelona | nocona | core2 | corei7 | corei7-avx | atom)
3375                                 # OK
3376                                 ;;
3377                         *)
3378                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
3379                                 exit 1
3380                                 ;;
3381                         esac
3382                 done
3383                 ;;
3384
3385         mips*-*-*)
3386                 supported_defaults="abi arch arch_32 arch_64 float tune tune_32 tune_64 divide llsc mips-plt synci"
3387
3388                 case ${with_float} in
3389                 "" | soft | hard)
3390                         # OK
3391                         ;;
3392                 *)
3393                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3394                         exit 1
3395                         ;;
3396                 esac
3397
3398                 case ${with_abi} in
3399                 "" | 32 | o64 | n32 | 64 | eabi)
3400                         # OK
3401                         ;;
3402                 *)
3403                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
3404                         exit 1
3405                         ;;
3406                 esac
3407
3408                 case ${with_divide} in
3409                 "" | breaks | traps)
3410                         # OK
3411                         ;;
3412                 *)
3413                         echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
3414                         exit 1
3415                         ;;
3416                 esac
3417
3418                 case ${with_llsc} in
3419                 yes)
3420                         with_llsc=llsc
3421                         ;;
3422                 no)
3423                         with_llsc="no-llsc"
3424                         ;;
3425                 "")
3426                         # OK
3427                         ;;
3428                 *)
3429                         echo "Unknown llsc type used in --with-llsc" 1>&2
3430                         exit 1
3431                         ;;
3432                 esac
3433
3434                 case ${with_mips_plt} in
3435                 yes)
3436                         with_mips_plt=plt
3437                         ;;
3438                 no)
3439                         with_mips_plt=no-plt
3440                         ;;
3441                 "")
3442                         ;;
3443                 *)
3444                         echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
3445                         exit 1
3446                         ;;
3447                 esac
3448
3449                 case ${with_synci} in
3450                 yes)
3451                         with_synci=synci
3452                         ;;
3453                 "" | no)
3454                         # No is the default.
3455                         with_synci=no-synci
3456                         ;;
3457                 *)
3458                         echo "Unknown synci type used in --with-synci" 1>&2
3459                         exit 1
3460                         ;;
3461                 esac
3462                 ;;
3463
3464         powerpc*-*-* | rs6000-*-*)
3465                 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
3466
3467                 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
3468                         eval "val=\$with_$which"
3469                         case ${val} in
3470                         default32 | default64)
3471                                 case $which in
3472                                 cpu | tune)
3473                                         ;;
3474                                 *)
3475                                         echo "$val only valid for --with-cpu and --with-tune." 1>&2
3476                                         exit 1
3477                                         ;;
3478                                 esac
3479                                 with_which="with_$which"
3480                                 eval $with_which=
3481                                 ;;
3482                         405cr)
3483                                 tm_defines="${tm_defines} CONFIG_PPC405CR"
3484                                 eval "with_$which=405"
3485                                 ;;
3486                         "" | common \
3487                         | power | power[234567] | power6x | powerpc | powerpc64 \
3488                         | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
3489                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
3490                         | 476 | 476fp | 505 | 601 | 602 | 603 | 603e | ec603e \
3491                         | 604 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
3492                         | a2 | e300c[23] | 854[08] | e500mc | e500mc64 | titan\
3493                         | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
3494                                 # OK
3495                                 ;;
3496                         *)
3497                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3498                                 exit 1
3499                                 ;;
3500                         esac
3501                 done
3502                 ;;
3503
3504         s390*-*-*)
3505                 supported_defaults="arch mode tune"
3506
3507                 for which in arch tune; do
3508                         eval "val=\$with_$which"
3509                         case ${val} in
3510                         "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10 | z196)
3511                                 # OK
3512                                 ;;
3513                         *)
3514                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3515                                 exit 1
3516                                 ;;
3517                         esac
3518                 done
3519
3520                 case ${with_mode} in
3521                 "" | esa | zarch)
3522                         # OK
3523                         ;;
3524                 *)
3525                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
3526                         exit 1
3527                         ;;
3528                 esac
3529                 ;;
3530
3531         sh[123456ble]-*-* | sh-*-*)
3532                 supported_defaults="cpu"
3533                 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
3534                 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
3535                         # OK
3536                         ;;
3537                 m2a | m2a-single | m2a-single-only | m2a-nofpu)
3538                         ;;
3539                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
3540                         ;;
3541                 *)
3542                         echo "Unknown CPU used in --with-cpu=$with_cpu, known values:"  1>&2
3543                         echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
3544                         echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
3545                         echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
3546                         exit 1
3547                         ;;
3548                 esac
3549                 ;;
3550         sparc*-*-*)
3551                 supported_defaults="cpu float tune"
3552
3553                 for which in cpu tune; do
3554                         eval "val=\$with_$which"
3555                         case ${val} in
3556                         "" | sparc | sparcv9 | sparc64 \
3557                         | v7 | cypress \
3558                         | v8 | supersparc | hypersparc | leon \
3559                         | sparclite | f930 | f934 | sparclite86x \
3560                         | sparclet | tsc701 \
3561                         | v9 | ultrasparc | ultrasparc3 | niagara | niagara2)
3562                                 # OK
3563                                 ;;
3564                         *)
3565                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
3566                                 exit 1
3567                                 ;;
3568                         esac
3569                 done
3570
3571                 case ${with_float} in
3572                 "" | soft | hard)
3573                         # OK
3574                         ;;
3575                 *)
3576                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3577                         exit 1
3578                         ;;
3579                 esac
3580                 ;;
3581
3582         spu-*-*)
3583                 supported_defaults="arch tune"
3584
3585                 for which in arch tune; do
3586                         eval "val=\$with_$which"
3587                         case ${val} in
3588                         "" | cell | celledp)
3589                                 # OK
3590                                 ;;
3591                         *)
3592                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3593                                 exit 1
3594                                 ;;
3595                         esac
3596                 done
3597                 ;;
3598
3599         v850*-*-*)
3600                 supported_defaults=cpu
3601                 case ${with_cpu} in
3602                 "" | v850e | v850e1)
3603                         # OK
3604                         ;;
3605                 *)
3606                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3607                         exit 1
3608                         ;;
3609                 esac
3610                 ;;
3611 esac
3612
3613 # Set some miscellaneous flags for particular targets.
3614 target_cpu_default2=
3615 case ${target} in
3616         alpha*-*-*)
3617                 if test x$gas = xyes
3618                 then
3619                         target_cpu_default2="MASK_GAS"
3620                 fi
3621                 ;;
3622
3623         arm*-*-*)
3624                 if test x$target_cpu_cname = x
3625                 then
3626                         target_cpu_default2=TARGET_CPU_generic
3627                 else
3628                         target_cpu_default2=TARGET_CPU_$target_cpu_cname
3629                 fi
3630                 ;;
3631
3632         hppa*-*-*)
3633                 target_cpu_default2="MASK_BIG_SWITCH"
3634                 if test x$gas = xyes
3635                 then
3636                         target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
3637                 fi
3638                 ;;
3639
3640         fido*-*-* | m68k*-*-*)
3641                 target_cpu_default2=$m68k_cpu_ident
3642                 if [ x"$m68k_arch_family" != x ]; then
3643                         tmake_file="m68k/t-$m68k_arch_family $tmake_file"
3644                 fi
3645                 ;;
3646
3647         i[34567]86-*-darwin* | x86_64-*-darwin*)
3648                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3649                 ;;
3650         i[34567]86-*-linux* | x86_64-*-linux* | \
3651           i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
3652           i[34567]86-*-gnu*)
3653                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux"
3654                 ;;
3655         i[34567]86-*-solaris2*)
3656                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3657                 ;;
3658         i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw*)
3659                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3660                 ;;
3661         i[34567]86-*-freebsd* | x86_64-*-freebsd*)
3662                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3663                 ;;
3664         ia64*-*-linux*)
3665                 tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp"
3666                 ;;
3667
3668         mips*-*-*)
3669                 if test x$gnu_ld = xyes
3670                 then
3671                         target_cpu_default2="MASK_SPLIT_ADDRESSES"
3672                 fi
3673                 case ${target} in
3674                         mips*el-*-*)
3675                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
3676                                 ;;
3677                 esac
3678                 tmake_file="mips/t-mips $tmake_file"
3679                 ;;
3680
3681         powerpc*-*-* | rs6000-*-*)
3682                 # FIXME: The PowerPC port uses the value set at compile time,
3683                 # although it's only cosmetic.
3684                 if test "x$with_cpu" != x
3685                 then
3686                         target_cpu_default2="\\\"$with_cpu\\\""
3687                 fi
3688                 out_file=rs6000/rs6000.c
3689                 c_target_objs="${c_target_objs} rs6000-c.o"
3690                 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
3691                 tmake_file="rs6000/t-rs6000 ${tmake_file}"
3692
3693                 if test x$enable_e500_double = xyes
3694                 then
3695                         tm_file="$tm_file rs6000/e500-double.h"
3696                 fi
3697                 ;;
3698
3699         sh[123456ble]*-*-* | sh-*-*)
3700                 c_target_objs="${c_target_objs} sh-c.o"
3701                 cxx_target_objs="${cxx_target_objs} sh-c.o"
3702                 ;;
3703
3704         sparc-leon*-*)
3705                 if test x$with_tune = x ; then
3706                   with_tune=leon;
3707                 fi
3708
3709                 # The SPARC port checks this value at compile-time.
3710                 target_cpu_default2="TARGET_CPU_$with_cpu"
3711                 ;;
3712
3713         sparc*-*-*)
3714                 # Some standard aliases.
3715                 case x$with_cpu in
3716                 xsparc)
3717                         with_cpu=v7
3718                         ;;
3719                 xsparcv9 | xsparc64)
3720                         with_cpu=v9
3721                         ;;
3722                 esac
3723
3724                 # The SPARC port checks this value at compile-time.
3725                 target_cpu_default2="TARGET_CPU_$with_cpu"
3726                 ;;
3727
3728         v850*-*-*)
3729                 # FIXME: The v850 is "special" in that it does not support
3730                 # runtime CPU selection, only --with-cpu.
3731                 case "x$with_cpu" in
3732                 x)
3733                         ;;
3734                 xv850e)
3735                         target_cpu_default2="TARGET_CPU_$with_cpu"
3736                         ;;
3737                 esac
3738                 ;;
3739 esac
3740
3741 t=
3742 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"
3743 for option in $all_defaults
3744 do
3745         eval "val=\$with_"`echo $option | sed s/-/_/g`
3746         if test -n "$val"; then
3747                 case " $supported_defaults " in
3748                 *" $option "*)
3749                         ;;
3750                 *)
3751                         echo "This target does not support --with-$option." 2>&1
3752                         echo "Valid --with options are: $supported_defaults" 2>&1
3753                         exit 1
3754                         ;;
3755                 esac
3756
3757                 if test "x$t" = x
3758                 then
3759                         t="{ \"$option\", \"$val\" }"
3760                 else
3761                         t="${t}, { \"$option\", \"$val\" }"
3762                 fi
3763         fi
3764 done
3765
3766 if test "x$t" = x
3767 then
3768         configure_default_options="{ { NULL, NULL} }"
3769 else
3770         configure_default_options="{ ${t} }"
3771 fi
3772
3773 if test "$target_cpu_default2" != ""
3774 then
3775         if test "$target_cpu_default" != ""
3776         then
3777                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3778         else
3779                 target_cpu_default=$target_cpu_default2
3780         fi
3781 fi