OSDN Git Service

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