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