OSDN Git Service

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