OSDN Git Service

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