OSDN Git Service

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