OSDN Git Service

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