OSDN Git Service

* target.h (init_libfuncs): New hook.
[pf3gnuchains/gcc-fork.git] / gcc / config.gcc
1 # GCC target-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 # 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 2, 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 COPYING.  If not, write to the Free
19 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 #02111-1307, USA.
21
22 # This is the GCC target-specific configuration file
23 # where a configuration type is mapped to different system-specific
24 # definitions and files.  This is invoked by the autoconf-generated
25 # configure script.  Putting it in a separate shell file lets us skip
26 # running autoconf when modifying target-specific information.
27
28 # This file switches on the shell variable ${target}, and also uses the
29 # following shell variables:
30 #
31 #  with_*               Various variables as set by configure.
32 #
33 #  enable_threads_flag  Either the name, yes or no depending on whether
34 #                       threads support was requested.
35 #
36 #  default_use_cxa_atexit
37 #                       "no" by default, can be set to "yes" if a target
38 #                       wishes to use __cxa_atexit() by default if the
39 #                       $enable___cxa_atexit variable is not set.
40 #
41 #  gas_flag             Either yes or no depending on whether GNU as was
42 #                       requested.
43 #
44 #  gnu_ld_flag          Either yes or no depending on whether GNU ld was
45 #                       requested.
46
47 # This file sets the following shell variables for use by the
48 # autoconf-generated configure script:
49 #
50 #  cpu_type             The name of the cpu, if different from the first
51 #                       chunk of the canonical target name.
52 #
53 #  tm_defines           List of target macros to define for all compilations.
54 #
55 #  tm_file              A list of target macro files, if different from
56 #                       "$cpu_type/$cpu_type.h". Usually it's constructed
57 #                       per target in a way like this:
58 #                       tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
59 #                       Note that the preferred order is:
60 #                       - specific target header "${cpu_type}/${cpu_type.h}"
61 #                       - generic headers like dbxelf.h elfos.h, netware.h, etc.
62 #                       - specializing target headers like ${cpu_type.h}/elf.h
63 #                       This helps to keep OS specific stuff out of the CPU
64 #                       defining header ${cpu_type}/${cpu_type.h}.
65 #
66 #  tm_p_file            Location of file with declarations for functions
67 #                       in $out_file.
68 #
69 #  out_file             The name of the machine description C support
70 #                       file, if different from "$cpu_type/$cpu_type.c".
71 #
72 #  md_file              The name of the machine-description file, if
73 #                       different from "$cpu_type/$cpu_type.md".
74 #
75 #  tmake_file           A list of machine-description-specific
76 #                       makefile-fragments, if different from
77 #                       "$cpu_type/t-$cpu_type".
78 #
79 #  extra_modes          The name of the file containing a list of extra
80 #                       machine modes, if necessary and different from
81 #                       "$cpu_type/$cpu_type-modes.def".
82 #
83 #  extra_objs           List of extra objects that should be linked into
84 #                       the compiler proper (cc1, cc1obj, cc1plus)
85 #                       depending on target.
86 #
87 #  extra_headers        List of used header files from the directory
88 #                       config/${cpu_type}.
89 #
90 #  extra_passes         List of extra executables compiled for this target
91 #                       machine, used for compiling from source to object.
92 #
93 #  extra_parts          List of extra object files that should be compiled
94 #                       for this target machine.
95 #
96 #  extra_programs       Like extra_passes, but these are used when linking.
97 #
98 #  c_target_objs        List of extra target-dependent objects that be
99 #                       linked into the C compiler only.
100 #
101 #  cxx_target_objs      List of extra target-dependent objects that be
102 #                       linked into the C++ compiler only.
103 #
104 #  target_gtfiles       List of extra source files with type information.
105 #
106 #  xm_defines           List of macros to define when compiling for the
107 #                       target machine.
108 #
109 #  xm_file              List of files to include when compiling for the
110 #                       target machine.
111 #
112 #  use_collect2         Set to yes or no, depending on whether collect2
113 #                       will be used.
114 #
115 #  target_cpu_default   Set to override the default target model.
116 #
117 #  gdb_needs_out_file_path
118 #                       Set to yes if gdb needs a dir command with
119 #                       `dirname $out_file`.
120 #
121 #  thread_file          Set to control which thread package to use.
122 #
123 #  gas                  Set to yes or no depending on whether the target
124 #                       system normally uses GNU as.
125 #
126 #  need_64bit_hwint     Set to yes if HOST_WIDE_INT must be 64 bits wide
127 #                       for this target.  This is true iff
128 #                       MAX_LONG_TYPE_SIZE is 64.  (The code which
129 #                       determines the underlying integral type for
130 #                       HOST_WIDE_INT cannot see the definition of
131 #                       MAX_LONG_TYPE_SIZE.)
132 #
133 #  configure_default_options
134 #                       Set to an initializer for configure_default_options
135 #                       in configargs.h, based on --with-cpu et cetera.
136 #
137 #  use_fixproto         Set to "yes" if fixproto should be run normally,
138 #                       "no" if fixproto should never be run.
139
140 # The following variables are used in each case-construct to build up the
141 # outgoing variables:
142 #
143 #  gnu_ld               Set to yes or no depending on whether the target
144 #                       system normally uses GNU ld.
145
146 out_file=
147 tmake_file=
148 extra_headers=
149 extra_passes=
150 extra_parts=
151 extra_programs=
152 extra_objs=
153 extra_gcc_objs=
154 c_target_objs=
155 cxx_target_objs=
156 tm_defines=
157 xm_defines=
158 # Set this to force installation and use of collect2.
159 use_collect2=
160 # Set this to override the default target model.
161 target_cpu_default=
162 # Set this if gdb needs a dir command with `dirname $out_file`
163 gdb_needs_out_file_path=
164 # Set this to control which thread package will be used.
165 thread_file=
166 # Reinitialize these from the flag values every loop pass, since some
167 # configure entries modify them.
168 gas="$gas_flag"
169 gnu_ld="$gnu_ld_flag"
170 enable_threads=$enable_threads_flag
171 default_use_cxa_atexit=no
172 target_gtfiles=
173 need_64bit_hwint=
174
175 # Default to not using fixproto.  Targets which need fixproto should
176 # specifically set this to 'yes'.
177 use_fixproto=no
178
179 # Don't carry these over build->host->target.  Please.
180 xm_file=
181 md_file=
182
183 # Obsolete configurations.
184 case ${target} in
185  dummy)
186     if test "x$enable_obsolete" != xyes; then
187       echo "*** Configuration ${target} is obsolete." >&2
188       echo "*** Specify --enable-obsolete to build it anyway." >&2
189       echo "*** Support will be REMOVED in the next major release of GCC," >&2
190       echo "*** unless a maintainer comes forward." >&2
191       exit 1
192     fi;;
193 esac
194
195 # Unsupported targets list.  Do not put an entry in this list unless
196 # it would otherwise be caught by a more permissive pattern.  The list
197 # should be in alphabetical order.
198 case ${target} in
199    alpha*-*-linux*libc1*                \
200  | i[34567]86-sequent-sysv              \
201  | i[34567]86-sequent-sysv[123]*        \
202  | i[34567]86-go32-*                    \
203  | i[34567]86-*-go32*                   \
204  | m68k-*-linux*aout*                   \
205  | m68k-*-linux*libc1*                  \
206  | mips64orion*-*-rtems*                \
207  | powerpc-*-linux*libc1*               \
208  | sparc-*-linux*aout*                  \
209  | sparc-*-linux*libc1*                 \
210  | sparc-hal-solaris2*                  \
211  | thumb-*-*                            \
212  | *-*-linux*coff*                      \
213  | *-*-linux*oldld*                     \
214  | *-*-rtemsaout*                       \
215  | *-*-rtemscoff*                       \
216  | vax-*-vms*                           \
217  )
218         echo "*** Configuration ${target} not supported" 1>&2
219         exit 1
220         ;;
221 esac
222
223 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
224 # updated in each machine entry.  Also set default extra_headers for some
225 # machines.
226 tm_p_file=
227 cpu_type=`echo ${target} | sed 's/-.*$//'`
228 case ${target} in
229 alpha*-*-*)
230         cpu_type=alpha
231         need_64bit_hwint=yes
232         ;;
233 am33_2.0-*-linux*)
234         cpu_type=mn10300
235         ;;
236 strongarm*-*-*)
237         cpu_type=arm
238         ;;
239 arm*-*-*)
240         cpu_type=arm
241         extra_headers="mmintrin.h"
242         ;;
243 ep9312*-*-*)
244         cpu_type=arm
245         ;;
246 xscale-*-*)
247         cpu_type=arm
248         extra_headers="mmintrin.h"
249         ;;
250 i[34567]86-*-*)
251         cpu_type=i386
252         extra_headers="mmintrin.h xmmintrin.h emmintrin.h pmmintrin.h"
253         ;;
254 x86_64-*-*)
255         cpu_type=i386
256         extra_headers="mmintrin.h xmmintrin.h emmintrin.h pmmintrin.h"
257         need_64bit_hwint=yes
258         ;;
259 ia64-*-*)
260         extra_headers=ia64intrin.h
261         need_64bit_hwint=yes
262         ;;
263 hppa*-*-* | parisc*-*-*)
264         cpu_type=pa
265         ;;
266 m680[012]0-*-*)
267         cpu_type=m68k
268         extra_headers=math-68881.h
269         ;;
270 m68k-*-*)
271         extra_headers=math-68881.h
272         ;;
273 mips*-*-*)
274         cpu_type=mips
275         need_64bit_hwint=yes
276         ;;
277 powerpc*-*-*)
278         cpu_type=rs6000
279         extra_headers="ppc-asm.h altivec.h spe.h"
280         need_64bit_hwint=yes
281         ;;
282 rs6000*-*-*)
283         need_64bit_hwint=yes
284         ;;
285 sparc64*-*-*)
286         cpu_type=sparc
287         need_64bit_hwint=yes
288         ;;
289 sparc*-*-*)
290         cpu_type=sparc
291         ;;
292 s390*-*-*)
293         need_64bit_hwint=yes
294         ;;
295 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
296 sh[123456789l]*-*-*)
297         cpu_type=sh
298         need_64bit_hwint=yes
299         ;;
300 tic4x-*-*)
301         cpu_type=c4x
302         ;;
303 esac
304
305 tm_file=${cpu_type}/${cpu_type}.h
306 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
307 then
308         tm_p_file=${cpu_type}/${cpu_type}-protos.h
309 fi
310 extra_modes=
311 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
312 then
313         extra_modes=${cpu_type}/${cpu_type}-modes.def
314 fi
315
316 case ${target} in
317 x86_64-*-*)
318         tm_file="i386/biarch64.h ${tm_file}"
319         ;;
320 esac
321
322 # On a.out targets, we need to use collect2.
323 case ${target} in
324 *-*-*aout*)
325         use_collect2=yes
326         ;;
327 esac
328
329 # Common parts for widely ported systems.
330 case ${target} in
331 *-*-darwin*)
332   tm_file="${tm_file} darwin.h"
333   tm_p_file="${tm_p_file} darwin-protos.h"
334   tmake_file="t-darwin"
335   target_gtfiles="\$(srcdir)/config/darwin.c"
336   c_target_objs="darwin-c.o"
337   cxx_target_objs="darwin-c.o"
338   extra_parts="crt2.o"
339   extra_objs="darwin.o"
340   case ${enable_threads} in
341     "" | yes | posix) thread_file='posix' ;;
342   esac
343   ;;
344 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
345   # This is the place-holder for the generic a.out configuration
346   # of FreeBSD.  No actual configuration resides here since
347   # there was only ever a bare-bones ix86 configuration for
348   # a.out and it exists solely in the machine-specific section.
349   # This place-holder must exist to avoid dropping into
350   # the generic ELF configuration of FreeBSD (i.e. it must be
351   # ordered before that section).
352   ;;
353 *-*-freebsd*)
354   # This is the generic ELF configuration of FreeBSD.  Later
355   # machine-specific sections may refine and add to this
356   # configuration.
357   #
358   # Due to tm_file entry ordering issues that vary between cpu
359   # architectures, we only define fbsd_tm_file to allow the
360   # machine-specific section to dictate the final order of all
361   # entries of tm_file with the minor exception that components
362   # of the tm_file set here will always be of the form:
363   #
364   # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
365   #
366   # The machine-specific section should not tamper with this
367   # ordering but may order all other entries of tm_file as it
368   # pleases around the provided core setting.
369   gas=yes
370   gnu_ld=yes
371   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
372   case ${target} in
373     *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
374     *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
375     *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
376     *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
377     *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
378   esac
379   tmake_file="t-slibgcc-elf-ver t-freebsd"
380   case ${enable_threads} in
381     no)
382       fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
383       ;;
384     "" | yes | pthreads | posix)
385       thread_file='posix'
386       tmake_file="${tmake_file} t-freebsd-thread"
387       # Before 5.0, FreeBSD can't bind shared libraries to -lc
388       # when "optionally" threaded via weak pthread_* checks.
389       case ${target} in
390         *-*-freebsd[34] | *-*-freebsd[34].*)
391           tmake_file="${tmake_file} t-slibgcc-nolc-override"
392           ;;
393       esac
394       ;;
395     *) 
396       echo 'Unknown thread configuration for FreeBSD'
397       exit 1
398       ;;
399   esac
400   fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
401   ;;
402 *-*-linux*libc1* | *-*-linux*aout*)
403   # Avoid the generic linux case.
404   ;;
405 *-*-linux*)
406   # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
407   extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
408   gas=yes
409   gnu_ld=yes
410   case ${enable_threads} in
411     "" | yes | posix) thread_file='posix' ;;
412   esac
413   ;;
414 *-*-gnu*)
415   # On the Hurd, the setup is just about the same on
416   # each different CPU.  The specific machines that we
417   # support are matched above and just set $cpu_type.
418   tm_file="${cpu_type}/gnu.h"
419   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
420   # GNU tools are the only tools.
421   gas=yes
422   gnu_ld=yes
423   # These details are the same as for Linux.
424   # But here we need a little extra magic.
425   tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
426   case ${target} in
427     alpha*)
428       tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
429       ;;
430     i[34567]86-*-*)
431       tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
432       ;;
433   esac
434   ;;
435 *-*-netbsd*)
436   tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
437   gas=yes
438   gnu_ld=yes
439
440   # NetBSD 2.0 and later get POSIX threads enabled by default.
441   # Allow them to be explicitly enabled on any other version.
442   case ${enable_threads} in
443     "")
444       case ${target} in
445         *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
446           thread_file='posix'
447           tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
448           ;;
449       esac
450       ;;
451     yes | posix)
452       thread_file='posix'
453       tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
454       ;;
455   esac
456
457   # NetBSD 1.7 and later are set up to use GCC's crtstuff for
458   # ELF configurations.  We will clear extra_parts in the
459   # a.out configurations.
460   case ${target} in
461     *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
462       extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
463       ;;
464   esac
465
466   # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
467   # default (unless overridden by --disable-__cxa_atexit).
468   case ${target} in
469     *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
470       default_use_cxa_atexit=yes
471       ;;
472   esac
473   ;;
474 *-*-openbsd*)
475   tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
476   case ${enable_threads} in
477     yes)
478       thread_file='posix'
479       tmake_file="${tmake_file} t-openbsd-thread"
480       ;;
481   esac
482   ;;
483 *-*-rtems*)
484   case ${enable_threads} in
485     yes) thread_file='rtems' ;;
486   esac
487   ;;
488 *-*-vxworks*)
489   tmake_file=t-vxworks
490   tm_file="${tm_file} elfos.h svr4.h vxworks.h"
491   thread_file='vxworks'
492   use_collect2=yes
493   ;;
494 esac
495
496 case ${target} in
497 # Support site-specific machine types.
498 *local*)
499         rest=`echo ${target} | sed -e "s/$cpu_type-//"`
500         tm_file=${cpu_type}/$rest.h
501         if test -f $srcdir/config/${cpu_type}/xm-$rest.h
502         then xm_file=${cpu_type}/xm-$rest.h
503         fi
504         if test -f $srcdir/config/${cpu_type}/t-$rest
505         then tmake_file=${cpu_type}/t-$rest
506         fi
507         ;;
508 alpha*-*-unicosmk*)
509         use_collect2=yes
510         tm_file="${tm_file} alpha/unicosmk.h"
511
512         # Don't include t-ieee for now because we don't support that yet
513         # tmake_file="alpha/t-ieee"
514         tmake_file="alpha/t-unicosmk"
515         use_fixproto=yes
516         ;;
517 alpha*-*-linux*)
518         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
519         target_cpu_default="MASK_GAS"
520         tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
521         ;;
522 alpha*-*-gnu*)
523         target_cpu_default="MASK_GAS"
524         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
525         ;;
526 alpha*-*-freebsd*)
527         tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
528         target_cpu_default="MASK_GAS"
529         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
530         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
531         ;;
532 alpha*-*-netbsd*)
533         tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
534         target_cpu_default="MASK_GAS"
535         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
536         ;;
537 alpha*-*-openbsd*)
538         tm_defines="OBSD_NO_DYNAMIC_LIBRARIES OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
539         tm_file="alpha/alpha.h openbsd.h alpha/openbsd.h"
540         # default x-alpha is only appropriate for dec-osf.
541         target_cpu_default="MASK_GAS"
542         tmake_file="alpha/t-alpha alpha/t-ieee"
543         ;;
544 alpha*-dec-osf[45]*)
545         if test x$stabs = xyes
546         then
547                 tm_file="${tm_file} dbx.h"
548         fi
549         if test x$gas != xyes
550         then
551                 extra_passes="mips-tfile mips-tdump"
552         fi
553         use_collect2=yes
554         tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
555         tm_file="${tm_file} alpha/osf.h"
556         extra_headers=va_list.h
557         case ${target} in
558           *-*-osf4*)
559             # Set target_cpu_default except on 4.0a.
560             case ${target} in
561                 *-*-osf4.0a) ;;
562                 *) target_cpu_default=MASK_SUPPORT_ARCH
563             esac
564             ;;
565           *-*-osf5*)
566             tm_file="${tm_file} alpha/osf5.h"
567             target_cpu_default=MASK_SUPPORT_ARCH
568             ;;
569         esac
570         case x${enable_threads} in
571         x | xyes | xpthreads | xposix)
572             thread_file='posix'
573             tmake_file="${tmake_file} alpha/t-osf-pthread"
574             ;;
575         esac
576         ;;
577 alpha64-dec-*vms*)
578         tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
579         xm_file="alpha/xm-vms.h"
580         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
581         prefix=/gnu
582         local_prefix=/gnu
583         ;;
584 alpha*-dec-*vms*)
585         tm_file="${tm_file} alpha/vms.h"
586         xm_file=alpha/xm-vms.h
587         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
588         prefix=/gnu
589         local_prefix=/gnu
590         ;;
591 arc-*-elf*)
592         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
593         extra_parts="crtinit.o crtfini.o"
594         use_fixproto=yes
595         ;;
596 arm-*-coff* | armel-*-coff*)
597         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h"
598         tmake_file=arm/t-arm-coff
599         ;;
600 arm-semi-aof | armel-semi-aof)
601         tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
602         tmake_file=arm/t-semi
603         ;;
604 arm*-*-freebsd*|strongarm*-*-freebsd*)
605         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
606         tmake_file="${tmake_file} arm/t-strongarm-elf"
607         ;;
608 arm*-*-netbsdelf*)
609         tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
610         tmake_file="${tmake_file} arm/t-netbsd"
611         ;;
612 arm*-*-netbsd*)
613         tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
614         tmake_file="t-netbsd arm/t-netbsd"
615         extra_parts=""
616         use_collect2=yes
617         ;;
618 arm*-*-linux*)                  # ARM GNU/Linux with ELF
619         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h"
620         tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
621         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
622         gnu_ld=yes
623         case x${enable_threads} in
624         x | xyes | xpthreads | xposix)
625                 thread_file='posix'
626                 ;;
627         esac
628         ;;
629 arm*-*-uclinux*)                # ARM ucLinux
630         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h arm/uclinux-elf.h"
631         tmake_file=arm/t-arm-elf
632         ;;
633 arm*-*-ecos-elf)
634         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
635         tmake_file=arm/t-arm-elf
636         ;;
637 arm*-*-rtems*)
638         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"
639         tmake_file="arm/t-arm-elf t-rtems"
640         ;;
641 arm*-*-elf | ep9312-*-elf)
642         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
643         tmake_file=arm/t-arm-elf
644         ;;
645 arm*-wince-pe*)
646         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
647         tmake_file=arm/t-wince-pe
648         extra_objs="pe.o"
649         ;;
650 arm-*-pe*)
651         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h"
652         tmake_file=arm/t-pe
653         extra_objs="pe.o"
654         ;;
655 arm*-*-kaos*)
656         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h kaos.h arm/kaos-arm.h"
657         tmake_file=arm/t-arm-elf
658         ;;
659 avr-*-*)
660         tm_file="avr/avr.h dbxelf.h"
661         use_fixproto=yes
662         ;;
663 c4x-*-rtems* | tic4x-*-rtems*)
664         tmake_file="c4x/t-c4x t-rtems"
665         tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
666         c_target_objs="c4x-c.o"
667         cxx_target_objs="c4x-c.o"
668         ;;
669 c4x-* | tic4x-*)
670         tmake_file=c4x/t-c4x
671         c_target_objs="c4x-c.o"
672         cxx_target_objs="c4x-c.o"
673         ;;
674 cris-*-aout)
675         tm_file="dbxelf.h ${tm_file} cris/aout.h"
676         gas=yes
677         tmake_file="cris/t-cris cris/t-aout"
678         ;;
679 cris-*-elf | cris-*-none)
680         tm_file="dbxelf.h elfos.h ${tm_file}"
681         tmake_file="cris/t-cris cris/t-elfmulti"
682         gas=yes
683         ;;
684 cris-*-linux*)
685         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
686         tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
687         ;;
688 d30v-*)
689         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
690         ;;
691 dsp16xx-*)
692         use_fixproto=yes
693         ;;
694 fr30-*-elf)
695         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
696         tmake_file=fr30/t-fr30
697         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
698         use_fixproto=yes
699         ;;
700 frv-*-elf)
701         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
702         tmake_file=frv/t-frv
703         use_fixproto=yes
704         ;;
705 h8300-*-rtems*)
706         tmake_file="h8300/t-h8300 t-rtems"
707         tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h h8300/rtems.h rtems.h"
708         ;;
709 h8300-*-elf*)
710         tmake_file="h8300/t-h8300 h8300/t-elf"
711         tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h"
712         use_fixproto=yes
713         ;;
714 h8300-*-*)
715         tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h"
716         use_fixproto=yes
717         ;;
718 hppa*64*-*-linux* | parisc*64*-*-linux*)
719         target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
720         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
721                  pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
722         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux64"
723         gas=yes gnu_ld=yes
724         need_64bit_hwint=yes
725         ;;
726 hppa*-*-linux* | parisc*-*-linux*)
727         target_cpu_default="MASK_PA_11 | MASK_NO_SPACE_REGS"
728         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
729                  pa/pa32-regs.h pa/pa32-linux.h"
730         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
731         ;;
732 # port not yet contributed.
733 #hppa*-*-openbsd*)
734 #       target_cpu_default="MASK_PA_11"
735 #       ;;
736 hppa1.1-*-pro*)
737         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
738         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
739         tmake_file="pa/t-pro"
740         ;;
741 hppa1.1-*-osf*)
742         target_cpu_default="MASK_PA_11"
743         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-osf.h"
744         tmake_file="pa/t-pa"
745         use_collect2=yes
746         ;;
747 hppa1.1-*-rtems*)
748         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
749         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
750         tmake_file="pa/t-pro t-rtems"
751         ;;
752 hppa1.1-*-bsd*)
753         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h"
754         target_cpu_default="MASK_PA_11"
755         tmake_file="pa/t-pa"
756         use_collect2=yes
757         ;;
758 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
759         target_cpu_default="MASK_PA_11"
760         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
761         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
762         if test x$enable_threads = x; then
763             enable_threads=$have_pthread_h
764         fi
765         case x${enable_threads} in
766         xyes | xdce)
767                 tmake_file="${tmake_file} pa/t-dce-thr"
768                 ;;
769         esac
770         use_collect2=yes
771         use_fixproto=yes
772         ;;
773 hppa1.0-*-hpux10*)
774         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
775         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
776         if test x$enable_threads = x; then
777             enable_threads=$have_pthread_h
778         fi
779         case x${enable_threads} in
780         xyes | xdce)
781                 tmake_file="${tmake_file} pa/t-dce-thr"
782                 ;;
783         esac
784         use_collect2=yes
785         use_fixproto=yes
786         ;;
787 hppa*64*-*-hpux11*)
788         if test x$gas = xyes
789         then
790                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h  \
791                          pa/pa64-regs.h pa/pa-hpux.h \
792                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
793         else
794                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
795                          pa/pa64-regs.h pa/pa-hpux.h \
796                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
797         fi
798         need_64bit_hwint=yes
799         tmake_file="pa/t-pa64 pa/t-pa-hpux"
800         target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
801         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
802         if test x$gnu_ld = xyes
803         then
804                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
805         fi
806         case x${enable_threads} in
807         xyes | xposix )
808                 thread_file=posix 
809                 ;;
810         esac
811         ;;
812 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
813         target_cpu_default="MASK_PA_11"
814         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
815         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
816         case x${enable_threads} in
817         xyes | xposix )
818                 thread_file=posix 
819                 ;;
820         esac
821         use_collect2=yes
822         ;;
823 hppa1.0-*-hpux11*)
824         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
825         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
826         case x${enable_threads} in
827         xyes | xposix )
828                 thread_file=posix 
829                 ;;
830         esac
831         use_collect2=yes
832         ;;
833 i370-*-opened*)                  # IBM 360/370/390 Architecture
834         xm_defines='FATAL_EXIT_CODE=12'
835         tm_file="i370/oe.h i370/i370.h"
836         tmake_file="i370/t-i370"
837         c_target_objs="i370-c.o"
838         cxx_target_objs="i370-c.o"
839         # Don't bother fixing up header files; they're weird.
840         ;;
841 i370-*-mvs*)
842         xm_defines='FATAL_EXIT_CODE=12'
843         tm_file="i370/mvs.h i370/i370.h"
844         tmake_file="i370/t-i370"
845         c_target_objs="i370-c.o"
846         cxx_target_objs="i370-c.o"
847         use_fixproto=yes
848         ;;
849 i370-*-linux*)
850         tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h i370/i370.h"
851         tmake_file="t-slibgcc-elf-ver t-linux"
852         # broken_install=yes
853         ;;
854 i[34567]86-*-darwin*)
855         tm_file="${tm_file} i386/darwin.h"
856         use_fixproto=yes
857         ;;
858 i[34567]86-*-elf*)
859         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
860         tmake_file="i386/t-i386elf t-svr4"
861         use_fixproto=yes
862         ;;
863 i[34567]86-ncr-sysv4*)          # NCR 3000 - ix86 running system V.4
864         xm_defines="SMALL_ARG_MAX"
865         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
866         extra_parts="crtbegin.o crtend.o"
867         tmake_file=i386/t-crtpic
868         use_fixproto=yes
869         ;;
870 i[34567]86-*-netware)           # Intel 80386's running netware
871         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
872         ;;
873 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
874         if test x$gas = xyes
875         then
876                 tm_file="${tm_file} usegas.h"
877         fi
878         xm_defines="SMALL_ARG_MAX"
879         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
880         tmake_file=t-svr4
881         extra_parts="crtbegin.o crtend.o"
882         use_fixproto=yes
883         ;;
884 i[34567]86-*-aout*)
885         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
886         use_fixproto=yes
887         ;;
888 i[34567]86-*-beoself* | i[34567]86-*-beos*)
889         tmake_file='i386/t-beos i386/t-crtpic'
890         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
891         extra_parts='crtbegin.o crtend.o'
892         ;;
893 i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
894         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
895         tmake_file=t-freebsd
896         ;;
897 i[34567]86-*-freebsd*)
898         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
899         ;;
900 x86_64-*-freebsd*)
901         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"
902         ;;
903 i[34567]86-*-netbsdelf*)
904         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
905         ;;
906 i[34567]86-*-netbsd*)
907         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
908         tmake_file=t-netbsd
909         extra_parts=""
910         use_collect2=yes
911         ;;
912 x86_64-*-netbsd*)
913         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"
914         ;;
915 i[34567]86-*-openbsd*)
916         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"
917         # needed to unconfuse gdb
918         tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
919         # we need collect2 until our bug is fixed...
920         use_collect2=yes
921         ;;
922 i[34567]86-*-coff*)
923         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
924         use_fixproto=yes
925         ;;
926 i[34567]86-*-linux*aout*)       # Intel 80386's running GNU/Linux
927                                 # with a.out format
928         tmake_file="i386/t-crtstuff"
929         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
930         gnu_ld=yes
931         ;;
932 i[34567]86-*-linux*libc1)       # Intel 80386's running GNU/Linux
933                                 # with ELF format using the
934                                 # GNU/Linux C library 5
935         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
936         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
937         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
938         gnu_ld=yes
939         if test x$enable_threads = xyes; then
940                 thread_file='single'
941         fi
942         ;;
943 i[34567]86-*-linux*)    # Intel 80386's running GNU/Linux
944                         # with ELF format using glibc 2
945                         # aka GNU/Linux C library 6
946         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
947         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
948         ;;
949 x86_64-*-linux*)
950         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
951                  i386/x86-64.h i386/linux64.h"
952         tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64"
953         ;;
954 i[34567]86-*-gnu*)
955         ;;
956 i[34567]86-pc-msdosdjgpp*)
957         xm_file=i386/xm-djgpp.h
958         tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
959         tmake_file=i386/t-djgpp
960         gnu_ld=yes
961         gas=yes
962         ;;
963 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
964         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
965         tmake_file=t-libc-ok
966         gnu_ld=yes
967         gas=yes
968         use_fixproto=yes
969         ;;
970 i[34567]86-*-lynxos*)
971         if test x$gas = xyes
972         then
973                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h svr3.h lynx.h i386/lynx.h"
974         else
975                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
976         fi
977         use_fixproto=yes
978         ;;
979 i[34567]86-*-mach*)
980         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
981 #       tmake_file=t-libc-ok
982         use_collect2=yes
983         use_fixproto=yes
984         ;;
985 i[34567]86-*-nto-qnx*)
986         tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
987         tmake_file=i386/t-nto
988         gnu_ld=yes
989         gas=yes
990         ;;
991 i[34567]86-*-rtems*)
992         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
993         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
994         tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
995         ;;
996 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
997         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sco5.h"
998         if test x$gas = xyes
999         then
1000                 tm_file="usegas.h ${tm_file}"
1001         fi
1002         tmake_file=i386/t-sco5
1003         extra_parts="crtbegin.o crtend.o"
1004         use_fixproto=yes
1005         ;;
1006 i[34567]86-*-solaris2*)
1007         xm_defines="SMALL_ARG_MAX"
1008         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
1009         tmake_file="i386/t-sol2 t-svr4"
1010         if test x$gnu_ld = xyes; then
1011                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1012         else
1013                 tmake_file="$tmake_file t-slibgcc-sld"
1014         fi
1015         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1016         if test x${enable_threads} = x; then
1017             enable_threads=$have_pthread_h
1018             if test x${enable_threads} = x; then
1019                 enable_threads=$have_thread_h
1020             fi
1021         fi
1022         if test x${enable_threads} = xyes; then
1023             if test x${have_pthread_h} = xyes; then
1024                 thread_file='posix'
1025             else
1026                 thread_file='solaris'
1027             fi
1028         fi
1029         ;;
1030 i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
1031        tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1032        if test x$stabs = xyes
1033        then
1034                tm_file="${tm_file} dbx.h"
1035        fi
1036        tmake_file="i386/t-crtpic t-svr4"
1037        extra_parts="crtbegin.o crtend.o"
1038        if test x$enable_threads = xyes; then
1039                thread_file='posix'
1040        fi
1041         use_fixproto=yes
1042        ;;
1043 i[34567]86-*-sysv4*)            # Intel 80386's running system V.4
1044         xm_defines="SMALL_ARG_MAX"
1045         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1046         if test x$stabs = xyes
1047         then
1048                 tm_file="${tm_file} dbx.h"
1049         fi
1050         tmake_file="i386/t-crtpic t-svr4"
1051         extra_parts="crtbegin.o crtend.o"
1052         use_fixproto=yes
1053         ;;
1054 i[34567]86-*-udk*)      # Intel x86 on SCO UW/OSR5 Dev Kit
1055         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
1056         tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1057         extra_parts="crtbegin.o crtend.o"
1058         use_fixproto=yes
1059         ;;
1060 i[34567]86-*-sysv*)             # Intel 80386's running system V
1061         if test x$gas = xyes
1062         then
1063                 if test x$stabs = xyes
1064                 then
1065                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
1066                         tmake_file=i386/t-svr3dbx
1067                         extra_parts="svr3.ifile svr3z.ifile"
1068                 else
1069                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
1070                         extra_parts="crtbegin.o crtend.o"
1071                         tmake_file=i386/t-crtstuff
1072                 fi
1073         else
1074                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
1075                 extra_parts="crtbegin.o crtend.o"
1076                 tmake_file=i386/t-crtstuff
1077         fi
1078         tmake_file="$tmake_file i386/t-crtpic"
1079         use_fixproto=yes
1080         ;;
1081 i386-*-vsta)                    # Intel 80386's running VSTa kernel
1082         xm_file="i386/xm-vsta.h"
1083         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/vsta.h"
1084         use_fixproto=yes
1085         ;;
1086 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1087         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
1088         xm_file=i386/xm-cygwin.h
1089         tmake_file="i386/t-cygming i386/t-cygwin"
1090         extra_objs=winnt.o
1091         c_target_objs=cygwin2.o
1092         cxx_target_objs=cygwin2.o
1093         if test x$enable_threads = xyes; then
1094                 thread_file='posix'
1095         fi
1096         ;;
1097 i[34567]86-*-mingw32*)
1098         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
1099         xm_file=i386/xm-mingw32.h
1100         tmake_file="i386/t-cygming i386/t-mingw32"
1101         extra_objs=winnt.o
1102         if test x$enable_threads = xyes; then
1103                 thread_file='win32'
1104         fi
1105         case ${target} in
1106                 *mingw32crt*)
1107                         tm_file="${tm_file} i386/crtdll.h"
1108                         ;;
1109                 *mingw32msv* | *mingw32*)
1110                         ;;
1111         esac
1112         ;;
1113 i[34567]86-*-uwin*)
1114         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h"
1115         tmake_file="i386/t-cygwin i386/t-uwin"
1116         extra_objs=winnt.o
1117         if test x$enable_threads = xyes; then
1118                 thread_file='win32'
1119         fi
1120         use_fixproto=yes
1121         ;;
1122 i[34567]86-*-interix3*)
1123         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"
1124         tmake_file="i386/t-interix"
1125         extra_objs=winnt.o
1126         if test x$enable_threads = xyes ; then
1127                 thread_file='posix'
1128         fi
1129         if test x$stabs = xyes ; then
1130                 tm_file="${tm_file} dbxcoff.h"
1131         fi
1132         ;;
1133 i[34567]86-*-interix*)
1134         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
1135         tmake_file="i386/t-interix"
1136         extra_objs=winnt.o
1137         if test x$enable_threads = xyes ; then
1138                 thread_file='posix'
1139         fi
1140         if test x$stabs = xyes ; then
1141                 tm_file="${tm_file} dbxcoff.h"
1142         fi
1143         ;;
1144 i[34567]86-*-kaos*)
1145         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h kaos.h i386/kaos-i386.h"
1146         tmake_file="i386/t-i386elf t-svr4"
1147         ;;
1148 i860-*-sysv4*)
1149         tm_file="${tm_file} elfos.h svr4.h i860/sysv4.h"
1150         tmake_file="i860/t-i860 i860/t-svr4"
1151         extra_parts="crtbegin.o crtend.o"
1152         use_fixproto=yes
1153         ;;
1154 i960-*-coff*)
1155         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1156         tmake_file=i960/t-960bare
1157         c_target_objs="i960-c.o"
1158         cxx_target_objs="i960-c.o"
1159         ;;
1160 i960-*-rtems)
1161         tmake_file="i960/t-960bare t-rtems"
1162         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
1163         c_target_objs="i960-c.o"
1164         cxx_target_objs="i960-c.o"
1165         ;;
1166 i960-*-*)                       # Default i960 environment.
1167         use_collect2=yes
1168         tmake_file=i960/t-960bare
1169         c_target_objs="i960-c.o"
1170         cxx_target_objs="i960-c.o"
1171         use_fixproto=yes
1172         ;;
1173 ia64*-*-elf*)
1174         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1175         tmake_file="ia64/t-ia64"
1176         target_cpu_default="0"
1177         if test x$gas = xyes
1178         then
1179                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1180         fi
1181         if test x$gnu_ld = xyes
1182         then
1183                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1184         fi
1185         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1186         use_fixproto=yes
1187         ;;
1188 ia64*-*-freebsd*)
1189         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1190         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1191         tmake_file="${tmake_file} ia64/t-ia64"
1192         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1193         ;;
1194 ia64*-*-linux*)
1195         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1196         tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1197         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1198         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1199         if test x"$use_libunwind_exceptions" = xyes; then
1200           tmake_file="$tmake_file t-libunwind"
1201         fi
1202         ;;
1203 ia64*-*-hpux*)
1204         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h"
1205         tmake_file="ia64/t-ia64 ia64/t-hpux"
1206         target_cpu_default="MASK_GNU_AS"
1207         case x$enable_threads in
1208         xyes | xposix )
1209                 thread_file=posix
1210                 ;;
1211         esac
1212         use_collect2=no
1213         c_target_objs="ia64-c.o"
1214         cxx_target_objs="ia64-c.o"
1215         # If we decide to run fixproto we should define FIXPROTO_DEFINES
1216         # in ia64/t-hpux, and also fix the definition of putenv in
1217         # sys-protos.h (const char not char).
1218         ;;
1219 ip2k-*-elf)
1220         tm_file="elfos.h ${tm_file}"
1221         use_fixproto=yes
1222         ;;
1223 iq2000*-*-elf*)
1224         tm_file="svr4.h elfos.h iq2000/iq2000.h"
1225         tmake_file=iq2000/t-iq2000
1226         out_file=iq2000/iq2000.c
1227         md_file=iq2000/iq2000.md
1228         use_fixproto=yes
1229         ;;
1230 m32r-*-elf*)
1231         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1232         extra_parts="crtinit.o crtfini.o"
1233         use_fixproto=yes
1234         ;;
1235 # m68hc11 and m68hc12 share the same machine description.
1236 m68hc11-*-*|m6811-*-*)
1237         tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1238         tm_p_file="m68hc11/m68hc11-protos.h"
1239         md_file="m68hc11/m68hc11.md"
1240         out_file="m68hc11/m68hc11.c"
1241         tmake_file="m68hc11/t-m68hc11-gas"
1242         use_fixproto=yes
1243         ;;
1244 m68hc12-*-*|m6812-*-*)
1245         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1246         tm_p_file="m68hc11/m68hc11-protos.h"
1247         md_file="m68hc11/m68hc11.md"
1248         out_file="m68hc11/m68hc11.c"
1249         tmake_file="m68hc11/t-m68hc11-gas"
1250         use_fixproto=yes
1251         ;;
1252 m68000-hp-hpux*)                # HP 9000 series 300
1253         tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h m68k/hp310.h"
1254         tm_defines="TARGET_DEFAULT=0" # 68000, no 68881, no bitfield ops
1255         if test x$gas = xyes
1256         then
1257                 tm_defines="${tm_defines} DBX_DEBUGGING_INFO=1 USE_GAS"
1258         fi
1259         tmake_file=m68k/t-hp320
1260         use_collect2=yes
1261         use_fixproto=yes
1262         ;;
1263 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1264         tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h"
1265         if test x$gas = xyes
1266         then
1267                 tm_defines="DBX_DEBUGGING_INFO=1 USE_GAS"
1268         else
1269                 tm_defines="NO_DOT_IN_LABEL NO_BUGS"
1270         fi
1271         use_collect2=yes
1272         use_fixproto=yes
1273         ;;
1274 m68k-hp-hpux*)  # HP 9000 series 300
1275         tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h"
1276         if test x$gas = xyes
1277         then
1278                 tm_defines="DBX_DEBUGGING_INFO=1 USE_GAS"
1279         fi
1280         use_collect2=yes
1281         use_fixproto=yes
1282         ;;
1283 m68k-*-aout*)
1284         tmake_file=m68k/t-m68kbare
1285         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h"
1286         ;;
1287 m68k-*-coff*)
1288         tmake_file=m68k/t-m68kbare
1289         tm_defines="MOTOROLA USE_GAS"
1290         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h"
1291         use_fixproto=yes
1292         ;;
1293 m68020-*-elf* | m68k-*-elf*)
1294         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1295         tmake_file=m68k/t-m68kelf
1296         extra_parts="crtbegin.o crtend.o"
1297         use_fixproto=yes
1298         ;;
1299 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1300         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1301         case ${target} in
1302         m68010*)
1303                 target_cpu_default="0"
1304                 ;;
1305         *)
1306                 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1307                 ;;
1308         esac
1309         ;;
1310 m68k*-*-netbsd*)
1311         tm_file="m68k/m68k.h netbsd.h netbsd-aout.h m68k/netbsd.h"
1312         tmake_file=t-netbsd
1313         extra_parts=""
1314         use_collect2=yes
1315         ;;
1316 m68k*-*-openbsd*)
1317         # needed to unconfuse gdb
1318         tm_defines="OBSD_OLD_GAS TARGET_DEFAULT=(MASK_68020|MASK_68881|MASK_BITFIELD)"
1319         tm_file="m68k/m68k.h openbsd.h m68k/openbsd.h"
1320         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1321         # we need collect2 until our bug is fixed...
1322         use_collect2=yes
1323         ;;
1324 m68k-*-sysv4*)                  # Motorola m68k's running system V.4
1325         tm_file="m68k/m68k.h m68k/sgs.h dbxelf.h elfos.h svr4.h m68k/m68kv4.h"
1326         tm_defines="MOTOROLA SGS SGS_CMP_ORDER SGS_SWITCH_TABLES"
1327         tmake_file=t-svr4
1328         extra_parts="crtbegin.o crtend.o"
1329         use_fixproto=yes
1330         ;;
1331 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1332                                 # with ELF format using glibc 2
1333                                 # aka the GNU/Linux C library 6.
1334         tm_file="m68k/m68k.h dbxelf.h elfos.h svr4.h linux.h m68k/linux.h"
1335         tm_defines="MOTOROLA USE_GAS"
1336         tmake_file="t-slibgcc-elf-ver t-linux"
1337         ;;
1338 m68k-*-rtems*)
1339         tmake_file="m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems"
1340         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h"
1341         extra_parts="crtbegin.o crtend.o"
1342         ;;
1343 mcore-*-elf)
1344         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
1345         tmake_file=mcore/t-mcore
1346         use_fixproto=yes
1347         ;;
1348 mcore-*-pe*)
1349         tm_file="svr3.h dbxcoff.h ${tm_file} mcore/mcore-pe.h"
1350         tmake_file=mcore/t-mcore-pe
1351         use_fixproto=yes
1352         ;;
1353 mips-sgi-irix6*o32)             # SGI System V.4., IRIX 6, O32 ABI
1354         tm_file="${tm_file} mips/iris5.h"
1355         if test x$gas = xyes
1356         then
1357                 tm_file="${tm_file} mips/sdb.h mips/iris5gas.h mips/iris6-o32-gas.h"
1358                 if test x$stabs = xyes
1359                 then
1360                         tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
1361                 fi
1362                 tmake_file=mips/t-iris5-gas
1363         else
1364                 tm_file="${tm_file} mips/iris6-o32-as.h"
1365                 tmake_file=mips/t-iris5-as
1366         fi
1367         tm_file="${tm_file} mips/iris6-o32.h"
1368         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1369         target_cpu_default="MASK_ABICALLS"
1370         # mips-tfile doesn't work yet
1371         # See comment in mips/iris5.h file.
1372         use_collect2=yes
1373 #       if test x$enable_threads = xyes; then
1374 #               thread_file='irix'
1375 #       fi
1376         use_fixproto=yes
1377         ;;
1378 mips-sgi-irix6*)                # SGI System V.4., IRIX 6
1379         tm_file="${tm_file} mips/iris5.h mips/iris6.h"
1380         if test "x$gnu_ld" = xyes
1381         then
1382                 tm_file="${tm_file} mips/iris6gld.h"
1383         fi
1384         tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
1385         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1386         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1387 #       if test x$enable_threads = xyes; then
1388 #               thread_file='irix'
1389 #       fi
1390         use_fixproto=yes
1391         ;;
1392 mips-sgi-irix5cross64)          # Irix5 host, Irix 6 target, cross64
1393         tm_file="${tm_file} mips/iris5.h mips/iris6.h mips/cross64.h"
1394         tmake_file="mips/t-iris mips/t-cross64"
1395         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1396         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1397         # See comment in mips/iris[56].h files.
1398         use_collect2=yes
1399 #       if test x$enable_threads = xyes; then
1400 #               thread_file='irix'
1401 #       fi
1402         use_fixproto=yes
1403         ;;
1404 mips-sgi-irix5*)                # SGI System V.4., IRIX 5
1405         tm_file="${tm_file} mips/iris5.h"
1406         if test x$gas = xyes
1407         then
1408                 tm_file="${tm_file} mips/sdb.h mips/iris5gas.h"
1409                 if test x$stabs = xyes
1410                 then
1411                         tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
1412                 fi
1413                 tmake_file=mips/t-iris5-gas
1414         else
1415                 tmake_file=mips/t-iris5-as
1416         fi
1417         tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1418         target_cpu_default="MASK_ABICALLS"
1419         # mips-tfile doesn't work yet
1420         # See comment in mips/iris5.h file.
1421         use_collect2=yes
1422 #       if test x$enable_threads = xyes; then
1423 #               thread_file='irix'
1424 #       fi
1425         use_fixproto=yes
1426         ;;
1427 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1428         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1429         tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
1430         tmake_file="${tmake_file}"
1431         ;;
1432 mips64*-*-linux*)
1433         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
1434         tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux64"
1435
1436         # This default ABI is a partial lie: t-linux64 overrides the
1437         # DRIVER_SELF_SPEC that sets the default abi, in the spec file
1438         # that is installed.  What GCC thinks of as the default must
1439         # remain as ABI_32 such that the SONAMEs of the libgcc shared
1440         # libraries remain compatible with those of mips-linux-gnu.
1441         tm_defines="MIPS_ISA_DEFAULT=1 MIPS_ABI_DEFAULT=ABI_32"
1442         target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1443         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1444         gnu_ld=yes
1445         gas=yes
1446         if test x$enable_threads = xyes; then
1447                 thread_file='posix'
1448         fi
1449         ;;
1450 mips*-*-linux*)                         # Linux MIPS, either endian.
1451         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
1452         case ${target} in
1453         mipsisa32*-*)
1454                 target_cpu_default="MASK_SOFT_FLOAT"
1455                 tm_defines="MIPS_ISA_DEFAULT=32"
1456                 ;;
1457         esac
1458         tmake_file="t-slibgcc-elf-ver t-linux"
1459         ;;
1460 mips*-*-openbsd*)
1461         tm_defines="OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
1462         target_cpu_default="MASK_GAS|MASK_ABICALLS"
1463         tm_file="mips/mips.h openbsd.h mips/openbsd.h mips/sdb.h"
1464         case ${target} in
1465         mips*el-*-openbsd*) 
1466             tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1467         *)  tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1468         esac
1469         ;;
1470 mipsisa32-*-elf* | mipsisa32el-*-elf*)
1471         tm_file="${tm_file} mips/elf.h"
1472         tmake_file=mips/t-isa3264
1473         tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_EABI"
1474         use_fixproto=yes
1475         ;;
1476 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
1477         tm_file="${tm_file} mips/elf.h"
1478         tmake_file=mips/t-isa3264
1479         tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_EABI"
1480         use_fixproto=yes
1481         ;;
1482 mipsisa64-*-elf* | mipsisa64el-*-elf*)
1483         tm_file="${tm_file} mips/elf.h"
1484         tmake_file=mips/t-isa3264
1485         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1486         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_EABI"
1487         use_fixproto=yes
1488         ;;
1489 mipsisa64sr71k-*-elf*)
1490         tm_file="${tm_file} mips/elf.h"
1491         tmake_file=mips/t-sr71k
1492         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1493         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
1494         use_fixproto=yes
1495         ;;
1496 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1497         tm_file="${tm_file} mips/elf.h"
1498         tmake_file=mips/t-elf
1499         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1500         tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1501         use_fixproto=yes
1502         ;;
1503 mips-*-elf* | mipsel-*-elf*)
1504         tm_file="${tm_file} mips/elf.h"
1505         tmake_file=mips/t-elf
1506         use_fixproto=yes
1507         ;;
1508 mips64-*-elf* | mips64el-*-elf*)
1509         tm_file="${tm_file} mips/elf64.h"
1510         tmake_file=mips/t-elf
1511         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1512         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1513         use_fixproto=yes
1514         ;;
1515 mips64vr-*-elf* | mips64vrel-*-elf*)
1516         tm_file="mips/vr.h ${tm_file} mips/elf64.h"
1517         tm_defines="MIPS_ABI_DEFAULT=ABI_O64 MIPS_MARCH_CONTROLS_SOFT_FLOAT=1"
1518         tmake_file=mips/t-vr
1519         use_fixproto=yes
1520         ;;
1521 mips64orion-*-elf* | mips64orionel-*-elf*)
1522         tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1523         tmake_file=mips/t-elf
1524         tmake_file=mips/t-elf
1525         target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1526         tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1527         use_fixproto=yes
1528         ;;
1529 mips*-*-rtems*)
1530         tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
1531         tmake_file="mips/t-elf t-rtems mips/t-rtems"
1532         ;;
1533 mipstx39-*-elf* | mipstx39el-*-elf*)
1534         tm_file="${tm_file} mips/r3900.h mips/elf.h"
1535         tmake_file=mips/t-r3900
1536         use_fixproto=yes
1537         ;;
1538 mmix-knuth-mmixware)
1539         need_64bit_hwint=yes
1540         ;;
1541 mn10300-*-*)
1542         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1543         if test x$stabs = xyes
1544         then
1545                 tm_file="${tm_file} dbx.h"
1546         fi
1547         use_collect2=no
1548         use_fixproto=yes
1549         ;;
1550 ns32k-*-netbsdelf*)
1551         echo "GCC does not yet support the ${target} target"; exit 1
1552         ;;
1553 ns32k-*-netbsd*)
1554         tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1555         # On NetBSD, the headers are already okay, except for math.h.
1556         tmake_file="t-netbsd ns32k/t-ns32k"
1557         extra_parts=""
1558         use_collect2=yes
1559         ;;
1560 pdp11-*-bsd)
1561         tm_file="${tm_file} pdp11/2bsd.h"
1562         use_fixproto=yes
1563         ;;
1564 pdp11-*-*)
1565         use_fixproto=yes
1566         ;;
1567 avr-*-*)
1568         use_fixproto=yes
1569         ;;
1570 # port not yet contributed
1571 #powerpc-*-openbsd*)
1572 #       tmake_file="${tmake_file} rs6000/t-fprules "
1573 #       extra_headers=
1574 #       ;;
1575 powerpc64-*-linux*)
1576         tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1577         case x$with_cpu in
1578         x|xpowerpc64|xdefault64) tm_file="${tm_file} rs6000/default64.h";;
1579         esac
1580         tm_file="${tm_file} rs6000/linux64.h"
1581         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-linux rs6000/t-ppccomm rs6000/t-linux64"
1582         ;;
1583 powerpc64-*-gnu*)
1584         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"
1585         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
1586         ;;
1587 powerpc-*-beos*)
1588         tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
1589         tmake_file="rs6000/t-fprules rs6000/t-beos"
1590         extra_headers=
1591         use_fixproto=yes
1592         ;;
1593 powerpc-*-darwin*)
1594         tm_file="${tm_file} rs6000/darwin.h"
1595         tmake_file="t-darwin rs6000/t-darwin"
1596         extra_headers=altivec.h
1597         # override ppc default
1598         need_64bit_hwint=
1599         use_fixproto=yes
1600         ;;
1601 powerpc*-*-freebsd*)
1602         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1603         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1604         ;;
1605 powerpc-*-netbsd*)
1606         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1607         tmake_file="${tmake_file} rs6000/t-netbsd"
1608         ;;
1609 powerpc-*-chorusos*)
1610         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
1611         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1612         case x${enable_threads} in
1613           xyes | xpthreads | xposix)
1614                 thread_file='posix'
1615                 ;;
1616         esac
1617         use_fixproto=yes
1618         ;;
1619 powerpc-*-eabispe*)
1620         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
1621         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
1622         ;;
1623 powerpc-*-eabisimaltivec*)
1624         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h rs6000/eabialtivec.h"
1625         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1626         ;;
1627 powerpc-*-eabisim*)
1628         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
1629         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1630         ;;
1631 powerpc-*-elf*)
1632         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1633         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1634         use_fixproto=yes
1635         ;;
1636 powerpc-*-eabialtivec*)
1637         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
1638         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1639         ;;
1640 powerpc-*-eabi*)
1641         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
1642         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1643         ;;
1644 powerpc-*-rtems*)
1645         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
1646         tmake_file="rs6000/t-fprules t-rtems rs6000/t-ppccomm"
1647         ;;
1648 powerpc-*-linux*altivec*)
1649         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
1650         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1651         ;;
1652 powerpc-*-linux*spe*)
1653         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h"
1654         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1655         ;;
1656 powerpc-*-linux*)
1657         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
1658         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1659         ;;
1660 powerpc-*-gnu-gnualtivec*)
1661         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"
1662         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1663         if test x$enable_threads = xyes; then
1664                 thread_file='posix'
1665         fi
1666         ;;
1667 powerpc-*-gnu*)
1668         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"
1669         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1670         if test x$enable_threads = xyes; then
1671                 thread_file='posix'
1672         fi
1673         ;;
1674 powerpc-wrs-vxworks*)
1675         # We want vxworks.h after rs6000/sysv4.h, which unfortunately
1676         # means we have to redo the tm_file list from scratch.
1677         tm_file="rs6000/rs6000.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1678         tm_file="${tm_file} vxworks.h rs6000/vxworks.h"
1679         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
1680         extra_headers=ppc-asm.h
1681         ;;
1682 powerpc-wrs-windiss*)
1683         tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
1684         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1685         thread_file=""
1686         use_fixproto=yes
1687         ;;
1688 powerpcle-*-sysv*)
1689         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1690         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1691         use_fixproto=yes
1692         ;;
1693 powerpcle-*-elf*)
1694         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1695         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1696         use_fixproto=yes
1697         ;;
1698 powerpcle-*-eabisim*)
1699         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/eabisim.h"
1700         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1701         ;;
1702 powerpcle-*-eabi*)
1703         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
1704         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1705         ;;
1706 powerpc-*-kaos*)
1707         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h kaos.h rs6000/kaos-ppc.h"
1708         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1709         ;;
1710 powerpcle-*-kaos*)
1711         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h kaos.h rs6000/kaos-ppc.h"
1712         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1713         ;;
1714 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
1715         tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
1716         tmake_file="rs6000/t-fprules rs6000/t-newas"
1717         use_collect2=yes
1718         extra_headers=
1719         use_fixproto=yes
1720         ;;
1721 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
1722         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
1723         tmake_file=rs6000/t-aix43
1724         use_collect2=yes
1725         thread_file='aix'
1726         extra_headers=
1727         ;;
1728 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
1729         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
1730         tmake_file=rs6000/t-aix43
1731         use_collect2=yes
1732         thread_file='aix'
1733         extra_headers=
1734         ;;
1735 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
1736         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
1737         tmake_file=rs6000/t-aix52
1738         use_collect2=yes
1739         thread_file='aix'
1740         extra_headers=
1741         ;;
1742 rs6000-*-lynxos*)
1743         tm_file="svr3.h lynx.h rs6000/lynxbase.h rs6000/rs6000.h rs6000/lynx.h"
1744         tmake_file=rs6000/t-fprules
1745         use_collect2=yes
1746         use_fixproto=yes
1747         ;;
1748 s390-*-linux*)
1749         tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1750         tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff"
1751         ;;
1752 s390x-*-linux*)
1753         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1754         tm_p_file=s390/s390-protos.h
1755         md_file=s390/s390.md
1756         extra_modes=s390/s390-modes.def
1757         out_file=s390/s390.c
1758         tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff s390/t-linux64"
1759         ;;
1760 sh-*-elf* | sh[2346l]*-*-elf* | sh*-*-kaos*)
1761         tmake_file="sh/t-sh sh/t-elf"
1762         case ${target} in
1763         shl* | sh64l*)
1764                 tm_file="sh/little.h ${tm_file}"
1765                 tmake_file="${tmake_file} sh/t-le"
1766                 ;;
1767         esac
1768         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h"
1769         case ${target} in
1770         sh64*)
1771                 tmake_file="${tmake_file} sh/t-sh64"
1772                 tm_file="${tm_file} sh/sh64.h"
1773                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1774                 ;;
1775         sh4_single*)  target_cpu_default="SELECT_SH4_SINGLE" ;;
1776         sh4*)  target_cpu_default="SELECT_SH4" ;;
1777         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1778         sh3*)  target_cpu_default="SELECT_SH3" ;;
1779         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1780         sh2*)  target_cpu_default="SELECT_SH2" ;;
1781         esac
1782         case ${target} in
1783         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1784         esac
1785         case ${target} in
1786         sh*-*-kaos*) tm_file="${tm_file} kaos.h sh/kaos-sh.h" ;;
1787         esac
1788         use_fixproto=yes
1789         ;;
1790 sh-*-rtemself*)
1791         tmake_file="sh/t-sh sh/t-elf t-rtems"
1792         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h"
1793         ;;
1794 sh-*-rtems*)
1795         tmake_file="sh/t-sh t-rtems"
1796         tm_file="${tm_file} dbxcoff.h sh/coff.h sh/rtems.h rtems.h"
1797         ;;
1798 sh-*-linux* | sh[2346lbe]*-*-linux*)
1799         tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux"
1800         case ${target} in
1801         sh*be-*-* | sh*eb-*-*) ;;
1802         *)
1803                 tm_file="sh/little.h ${tm_file}"
1804                 tmake_file="${tmake_file} sh/t-le"
1805                 ;;
1806         esac
1807         tmake_file="${tmake_file} sh/t-linux"
1808         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
1809         case ${target} in
1810         sh64*)
1811                 tmake_file="${tmake_file} sh/t-sh64"
1812                 tm_file="${tm_file} sh/sh64.h"
1813                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1814                 ;;
1815         sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
1816         sh4*) target_cpu_default="SELECT_SH4" ;;
1817         sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
1818         sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
1819         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1820         sh3*) target_cpu_default="SELECT_SH3" ;;
1821         sh2e[lb]e*) target_cpu_default="SELECT_SH2E" ;;
1822         sh2e[lb]*) target_cpu_default="SELECT_SH2" ;;
1823         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1824         sh2*) target_cpu_default="SELECT_SH2" ;;
1825         esac
1826         case ${target} in
1827         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1828         esac
1829         ;;
1830 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
1831   sh64-*-netbsd* | sh64l*-*-netbsd*)
1832         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
1833         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
1834         case ${target} in
1835         sh*l*-*)
1836                 tm_file="sh/little.h ${tm_file}"
1837                 tmake_file="${tmake_file} sh/t-le"
1838                 ;;
1839         *)
1840                 tmake_file="${tmake_file} sh/t-be"
1841                 ;;
1842         esac
1843         case ${target} in
1844         sh5*-*)
1845                 # SHmedia, 32-bit ABI
1846                 target_cpu_default="SH5_BIT|SH4_BIT|SH3_BIT|SH_E_BIT"
1847                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
1848                 ;;
1849         sh64*-*)
1850                 # SHmedia, 64-bit ABI
1851                 target_cpu_default="SH5_BIT|SH4_BIT"
1852                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
1853                 ;;
1854         *)
1855                 # SH3, software floating point
1856                 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
1857                 tmake_file="${tmake_file} sh/t-netbsd"
1858                 ;;
1859         esac
1860         ;;
1861 sh-*-*)
1862         tm_file="${tm_file} dbxcoff.h sh/coff.h"
1863         use_fixproto=yes
1864         ;;
1865 sparc-tti-*)
1866         tm_file="${tm_file} sparc/pbd.h"
1867         use_fixproto=yes
1868         ;;
1869 sparc-*-netbsdelf*)
1870         tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
1871         ;;
1872 sparc-*-openbsd*)
1873         tm_defines=OBSD_OLD_GAS
1874         tm_file="sparc/sparc.h openbsd.h sparc/openbsd.h"
1875         # needed to unconfuse gdb
1876         tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
1877         # we need collect2 until our bug is fixed...
1878         use_collect2=yes
1879         ;;
1880 sparc64-*-openbsd*)
1881         tm_file="sparc/openbsd1-64.h sparc/sparc.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
1882         gas=yes gnu_ld=yes
1883         with_cpu=ultrasparc
1884         ;;
1885 sparc-*-elf*)
1886         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
1887         tmake_file="sparc/t-elf sparc/t-crtfm"
1888         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1889         use_fixproto=yes
1890         ;;
1891 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
1892         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
1893         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
1894         ;;
1895 sparc-*-rtems*)
1896         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
1897         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
1898         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1899         ;;
1900 sparc64-*-solaris2* | sparcv9-*-solaris2*)
1901         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
1902         if test x$gnu_ld = xyes; then
1903                 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
1904         fi
1905         if test x$gas = xyes; then
1906                 tm_file="${tm_file} sparc/sol2-gas-bi.h"
1907         fi
1908         tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
1909         if test x$gnu_ld = xyes; then
1910                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1911         else
1912                 tmake_file="$tmake_file t-slibgcc-sld"
1913         fi
1914         extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
1915         if test x${enable_threads} = x ; then
1916             enable_threads=$have_pthread_h
1917             if test x${enable_threads} = x ; then
1918                 enable_threads=$have_thread_h
1919             fi
1920         fi
1921         if test x${enable_threads} = xyes ; then
1922             if test x${have_pthread_h} = xyes ; then
1923                 thread_file='posix'
1924             else
1925                 thread_file='solaris'
1926             fi
1927         fi
1928         need_64bit_hwint=yes
1929         ;;
1930 sparc-*-solaris2*)
1931         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
1932         if test x$gnu_ld = xyes; then
1933                 tm_file="${tm_file} sparc/sol2-gld.h"
1934         fi
1935         tmake_file="sparc/t-sol2 sparc/t-crtfm"
1936         if test x$gnu_ld = xyes; then
1937                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1938         else
1939                 tmake_file="$tmake_file t-slibgcc-sld"
1940         fi
1941         case ${target} in
1942         *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
1943                 if test x$gnu_ld = xno; then
1944                         tm_file="${tm_file} sparc/sol26-sld.h"
1945                 fi
1946                 ;;
1947         *-*-solaris2.[789] | *-*-solaris2.1[0-9])
1948                 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
1949                 if test x$gnu_ld = xyes; then
1950                         tm_file="${tm_file} sparc/sol2-gld-bi.h"
1951                 fi
1952                 if test x$gas = xyes; then
1953                         tm_file="${tm_file} sparc/sol2-gas-bi.h"
1954                 fi
1955                 tmake_file="$tmake_file sparc/t-sol2-64"
1956                 need_64bit_hwint=yes
1957                 ;;
1958         esac
1959         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1960         if test x${enable_threads} = x; then
1961             enable_threads=$have_pthread_h
1962             if test x${enable_threads} = x; then
1963                 enable_threads=$have_thread_h
1964             fi
1965         fi
1966         if test x${enable_threads} = xyes; then
1967             if test x${have_pthread_h} = xyes; then
1968                 thread_file='posix'
1969             else
1970                 thread_file='solaris'
1971             fi
1972         fi
1973         ;;
1974 sparc-*-sysv4*)
1975         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sysv4-only.h"
1976         tmake_file=t-svr4
1977         extra_parts="crtbegin.o crtend.o"
1978         use_fixproto=yes
1979         ;;
1980 sparclite-*-coff*)
1981         tm_file="${tm_file} sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
1982         tmake_file=sparc/t-sparclite
1983         ;;
1984 sparclite-*-elf*)
1985         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/liteelf.h"
1986         tmake_file="sparc/t-sparclite sparc/t-crtfm"
1987         extra_parts="crtbegin.o crtend.o"
1988         use_fixproto=yes
1989         ;;
1990 sparc86x-*-elf*)
1991         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/sp86x-elf.h"
1992         tmake_file="sparc/t-sp86x sparc/t-crtfm"
1993         extra_parts="crtbegin.o crtend.o"
1994         use_fixproto=yes
1995         ;;
1996 sparc64-*-aout*)
1997         tm_file="sparc/sparc.h sparc/aout.h sparc/sp64-aout.h"
1998         use_fixproto=yes
1999         ;;
2000 sparc64-*-elf*)
2001         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
2002         tmake_file="${tmake_file} sparc/t-crtfm"
2003         extra_parts="crtbegin.o crtend.o"
2004         use_fixproto=yes
2005         ;;
2006 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2007         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2008         tmake_file="${tmake_file} sparc/t-crtfm"
2009         case "x$with_cpu" in
2010                 xultrasparc) ;;
2011                 x) with_cpu=ultrasparc ;;
2012                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2013         esac
2014         need_64bit_hwint=yes
2015         ;;
2016 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
2017         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
2018         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
2019         ;;
2020 sparc64-*-netbsd*)
2021         tmake_file="${tmake_file} sparc/t-netbsd64"
2022         tm_file="sparc/biarch64.h ${tm_file}"
2023         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2024         ;;
2025 strongarm-*-elf*)
2026         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2027         tmake_file=arm/t-strongarm-elf
2028         out_file=arm/arm.c
2029         md_file=arm/arm.md
2030         extra_modes=arm/arm-modes.def
2031         use_fixproto=yes
2032         ;;
2033 strongarm-*-pe)
2034         tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
2035         tmake_file=arm/t-strongarm-pe
2036         out_file=arm/arm.c
2037         md_file=arm/arm.md
2038         extra_modes=arm/arm-modes.def
2039         extra_objs=pe.o
2040         use_fixproto=yes
2041         ;;
2042 strongarm-*-kaos*)
2043         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h kaos.h arm/kaos-strongarm.h"
2044         tmake_file=arm/t-strongarm-elf
2045         out_file=arm/arm.c
2046         md_file=arm/arm.md
2047         extra_modes=arm/arm-modes.def
2048         ;;
2049 v850e1-*-*)
2050         target_cpu_default="TARGET_CPU_v850e1"
2051         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2052         tm_p_file=v850/v850-protos.h
2053         tmake_file=v850/t-v850e
2054         md_file=v850/v850.md
2055         out_file=v850/v850.c
2056         if test x$stabs = xyes
2057         then
2058                 tm_file="${tm_file} dbx.h"
2059         fi
2060         use_collect2=no
2061         c_target_objs="v850-c.o"
2062         cxx_target_objs="v850-c.o"
2063         use_fixproto=yes
2064         ;;
2065 v850e-*-*)
2066         target_cpu_default="TARGET_CPU_v850e"
2067         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2068         tm_p_file=v850/v850-protos.h
2069         tmake_file=v850/t-v850e
2070         md_file=v850/v850.md
2071         out_file=v850/v850.c
2072         if test x$stabs = xyes
2073         then
2074                 tm_file="${tm_file} dbx.h"
2075         fi
2076         use_collect2=no
2077         c_target_objs="v850-c.o"
2078         cxx_target_objs="v850-c.o"
2079         use_fixproto=yes
2080         ;;
2081 v850-*-*)
2082         target_cpu_default="TARGET_CPU_generic"
2083         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2084         tmake_file=v850/t-v850
2085         if test x$stabs = xyes
2086         then
2087                 tm_file="${tm_file} dbx.h"
2088         fi
2089         use_collect2=no
2090         c_target_objs="v850-c.o"
2091         cxx_target_objs="v850-c.o"
2092         use_fixproto=yes
2093         ;;
2094 vax-*-bsd*)                     # VAXen running BSD
2095         tm_file="${tm_file} vax/bsd.h"
2096         use_collect2=yes
2097         use_fixproto=yes
2098         ;;
2099 vax-*-sysv*)                    # VAXen running system V
2100         tm_file="${tm_file} vax/vaxv.h"
2101         use_fixproto=yes
2102         ;;
2103 vax-*-netbsdelf*)
2104         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2105         ;;
2106 vax-*-netbsd*)
2107         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2108         tmake_file=t-netbsd
2109         extra_parts=""
2110         use_collect2=yes
2111         ;;
2112 vax-*-openbsd*)
2113         tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
2114         use_collect2=yes
2115         ;;
2116 vax-*-ultrix*)                  # VAXen running ultrix
2117         tm_file="${tm_file} vax/ultrix.h"
2118         use_fixproto=yes
2119         ;;
2120 vax-*-*)                        # VAX default entry
2121         use_fixproto=yes
2122         ;;
2123 xscale-*-elf)
2124         tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2125         tmake_file=arm/t-xscale-elf
2126         out_file=arm/arm.c
2127         md_file=arm/arm.md
2128         extra_modes=arm/arm-modes.def
2129         use_fixproto=yes
2130         ;;
2131 xscale-*-coff)
2132         tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
2133         tmake_file=arm/t-xscale-coff
2134         out_file=arm/arm.c
2135         md_file=arm/arm.md
2136         extra_modes=arm/arm-modes.def
2137         use_fixproto=yes
2138         ;;
2139 xstormy16-*-elf)
2140         # For historical reasons, the target files omit the 'x'.
2141         tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
2142         tm_p_file=stormy16/stormy16-protos.h
2143         md_file=stormy16/stormy16.md
2144         out_file=stormy16/stormy16.c
2145         tmake_file="stormy16/t-stormy16"
2146         extra_parts="crtbegin.o crtend.o"
2147         use_fixproto=yes
2148         ;;
2149 xtensa-*-elf*)
2150         tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2151         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2152         ;;
2153 xtensa-*-linux*)
2154         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2155         tmake_file="t-slibgcc-elf-ver t-linux xtensa/t-xtensa xtensa/t-linux"
2156         ;;
2157 am33_2.0-*-linux*)
2158         tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h mn10300/linux.h"
2159         tmake_file="t-linux mn10300/t-linux"
2160         gas=yes gnu_ld=yes
2161         if test x$enable_threads = xyes; then
2162                 thread_file='posix'
2163         fi
2164         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2165         use_collect2=no
2166         ;;
2167 *)
2168         echo "*** Configuration ${target} not supported" 1>&2
2169         exit 1
2170         ;;
2171 esac
2172
2173 # Support for --with-cpu and related options (and a few unrelated options,
2174 # too).
2175 case ${with_cpu} in
2176   yes | no)
2177     echo "--with-cpu must be passed a value" 1>&2
2178     exit 1
2179     ;;
2180 esac
2181
2182 # If there is no $with_cpu option, try to infer one from ${target}.
2183 # This block sets nothing except for with_cpu.
2184 if test x$with_cpu = x ; then
2185   case ${target} in
2186     ep9312-*-*)
2187       # A Cirrus ARM variant.
2188       with_cpu="ep9312"
2189       ;;
2190     i486-*-*)
2191       with_cpu=i486
2192       ;;
2193     i586-*-*)
2194       case $target_alias in
2195         k6_2-*)
2196           with_cpu=k6-2
2197           ;;
2198         k6_3-*)
2199           with_cpu=k6-3
2200           ;;
2201         k6-*)
2202           with_cpu=k6
2203           ;;
2204         pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2205           with_cpu=pentium-mmx
2206           ;;
2207         *)
2208           with_cpu=pentium
2209           ;;
2210       esac
2211       ;;
2212     i686-*-* | i786-*-*)
2213       case $target_alias in
2214         k8-*)
2215           with_cpu=k8
2216           ;;
2217         athlon_xp-*|athlon_mp-*|athlon_4-*)
2218           with_cpu=athlon-4
2219           ;;
2220         athlon_tbird-*|athlon-*)
2221           with_cpu=athlon
2222           ;;
2223         pentium2-*)
2224           with_cpu=pentium2
2225           ;;
2226         pentium3-*)
2227           with_cpu=pentium3
2228           ;;
2229         pentium4-*)
2230           with_cpu=pentium4
2231           ;;
2232         *)
2233           with_cpu=pentiumpro
2234           ;;
2235       esac
2236       ;;
2237     x86_64-*-*)
2238       with_cpu=k8
2239       ;;
2240     alphaev6[78]*-*-*)
2241       with_cpu=ev67
2242       ;;
2243     alphaev6*-*-*)
2244       with_cpu=ev6
2245       ;;
2246     alphapca56*-*-*)
2247       with_cpu=pca56
2248       ;;
2249     alphaev56*-*-*)
2250       with_cpu=ev56
2251       ;;
2252     alphaev5*-*-*)
2253       with_cpu=ev5
2254       ;;
2255     sparc*-*-*)
2256       with_cpu="`echo ${target} | sed 's/-.*$//'`"
2257       if [ x$with_cpu = xsparc64 ]; then
2258         with_cpu=v9
2259       fi
2260       ;;
2261   esac
2262 fi
2263
2264         # Similarly for --with-schedule.
2265         if test x$with_schedule = x; then
2266                 case ${target} in
2267                 hppa1* | parisc1*)
2268                         # Override default PA8000 scheduling model.
2269                         with_schedule=7100LC
2270                         ;;
2271                 esac
2272         fi
2273
2274         # Validate and mark as valid any --with options supported
2275         # by this target.  In order to use a particular --with option
2276         # you must list it in supported_defaults; validating the value
2277         # is optional.  This case statement should set nothing besides
2278         # supported_defaults.
2279
2280         supported_defaults=
2281         case "${target}" in
2282         alpha*-*-*)
2283                 supported_defaults="cpu tune"
2284                 for which in cpu tune; do
2285                         eval "val=\$with_$which"
2286                         case "$val" in
2287                         "" \
2288                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
2289                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
2290                         | 21264a)
2291                                 ;;
2292                         *)
2293                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
2294                                 exit 1
2295                                 ;;
2296                         esac
2297                 done
2298                 ;;
2299
2300         arm*-*-*)
2301                 supported_defaults="arch cpu float tune"
2302                 for which in cpu tune; do
2303                         eval "val=\$with_$which"
2304                         case "$val" in
2305                         "" \
2306                         | arm[236789] | arm250 | arm[67][01]0 \
2307                         | arm60 | arm620 | arm7d | arm7di \
2308                         | arm7m | arm7dm | arm7dmi | arm[79]tdmi \
2309                         | arm70 | arm700i | arm710t | arm720 \
2310                         | arm720t | arm740t | arm710c | arm920 \
2311                         | arm920t | arm940t | arm9e | arm10tdmi \
2312                         | arm7100 | arm7500 | arm7500fe | arm810 \
2313                         | arm1020t \
2314                         | xscale | iwmmxt \
2315                         | ep9312 \
2316                         | strongarm | strongarm110 | strongarm11[01]0)
2317                                 # OK
2318                                 ;;
2319                         *)
2320                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
2321                                 exit 1
2322                                 ;;
2323                         esac
2324                 done
2325
2326                 case "$with_arch" in
2327                 "" \
2328                 | armv[2345] | armv2a | armv3m | armv4t | armv5t \
2329                 | armv5te | ep9312)
2330                         # OK
2331                         ;;
2332                 *)
2333                         echo "Unknown arch used in --with-arch=$with_arch" 1>&2
2334                         exit 1
2335                         ;;
2336                 esac
2337
2338                 case "$with_float" in
2339                 "" \
2340                 | soft | hard)
2341                         # OK
2342                         ;;
2343                 *)
2344                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2345                         exit 1
2346                         ;;
2347                 esac
2348
2349                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
2350                         echo "Warning: --with-arch overrides --with-cpu" 1>&2
2351                 fi
2352                 ;;
2353
2354         hppa*-*-* | parisc*-*-*)
2355                 supported_defaults="arch schedule"
2356
2357                 case "$with_arch" in
2358                 "" | 1.0 | 1.1 | 2.0)
2359                         # OK
2360                         ;;
2361                 *)
2362                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
2363                         exit 1
2364                         ;;
2365                 esac
2366
2367                 case "$with_schedule" in
2368                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
2369                         # OK
2370                         ;;
2371                 *)
2372                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
2373                         exit 1
2374                         ;;
2375                 esac
2376                 ;;
2377
2378         i[34567]86-*-* | x86_64-*-*)
2379                 supported_defaults="arch cpu tune"
2380                 for which in arch cpu tune; do
2381                         eval "val=\$with_$which"
2382                         case ${val} in
2383                         "" | i386 | i486 \
2384                         | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
2385                         | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
2386                         | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
2387                         | athlon-4 | athlon-xp | athlon-mp | k8)
2388                                 # OK
2389                                 ;;
2390                         *)
2391                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
2392                                 exit 1
2393                                 ;;
2394                         esac
2395                 done
2396                 ;;
2397
2398         mips*-*-*)
2399                 supported_defaults="abi arch float tune"
2400
2401                 case ${with_float} in
2402                 "" | soft | hard)
2403                         # OK
2404                         ;;
2405                 *)
2406                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2407                         exit 1
2408                         ;;
2409                 esac
2410
2411                 case ${with_abi} in
2412                 "" | 32 | o64 | n32 | 64 | eabi)
2413                         # OK
2414                         ;;
2415                 *)
2416                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
2417                         exit 1
2418                         ;;
2419                 esac
2420                 ;;
2421
2422         powerpc*-*-* | rs6000-*-*)
2423                 supported_defaults="cpu float tune"
2424
2425                 for which in cpu tune; do
2426                         eval "val=\$with_$which"
2427                         case ${val} in
2428                         "" | default32 | default64 | common \
2429                         | power | power2 | power3 | power4 \
2430                         | powerpc | powerpc64 \
2431                         | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
2432                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 505 \
2433                         | 601 | 602 | 603 | 603e | ec603e | 604 \
2434                         | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
2435                         | 8540 | 801 | 821 | 823 | 860 | 970)
2436                                 # OK
2437                                 ;;
2438                         *)
2439                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
2440                                 exit 1
2441                                 ;;
2442                         esac
2443                 done
2444                 ;;
2445
2446         s390*-*-*)
2447                 supported_defaults="arch mode tune"
2448
2449                 for which in arch tune; do
2450                         eval "val=\$with_$which"
2451                         case ${val} in
2452                         "" | g5 | g6 | z900 | z990)
2453                                 # OK
2454                                 ;;
2455                         *)
2456                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
2457                                 exit 1
2458                                 ;;
2459                         esac
2460                 done
2461
2462                 case ${with_mode} in
2463                 "" | esa | zarch)
2464                         # OK
2465                         ;;
2466                 *)
2467                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
2468                         exit 1
2469                         ;;
2470                 esac
2471                 ;;
2472
2473         sparc*-*-*)
2474                 supported_defaults="cpu float tune"
2475
2476                 for which in cpu tune; do
2477                         eval "val=\$with_$which"
2478                         case ${val} in
2479                         "" | sparc | sparcv9 | sparc64 | sparc86x \
2480                         | v7 | cypress | v8 | supersparc | sparclite | f930 \
2481                         | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
2482                         | v9 | ultrasparc | ultrasparc3)
2483                                 # OK
2484                                 ;;
2485                         *)
2486                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
2487                                 exit 1
2488                                 ;;
2489                         esac
2490                 done
2491
2492                 case ${with_float} in
2493                 "" | soft | hard)
2494                         # OK
2495                         ;;
2496                 *)
2497                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2498                         exit 1
2499                         ;;
2500                 esac
2501                 ;;
2502
2503         v850*-*-*)
2504                 supported_defaults=cpu
2505                 case ${with_cpu} in
2506                 "" | v850e | v850e1)
2507                         # OK
2508                         ;;
2509                 *)
2510                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2511                         exit 1
2512                         ;;
2513                 esac
2514                 ;;
2515         esac
2516
2517         # Set some miscellaneous flags for particular targets.
2518         target_cpu_default2=
2519         case ${target} in
2520         alpha*-*-*)
2521                 if test x$gas = xyes
2522                 then
2523                         target_cpu_default2="MASK_GAS"
2524                 fi
2525                 ;;
2526
2527         arm*-*-*)
2528                 case "x$with_cpu" in
2529                 x)
2530                         # The most generic
2531                         target_cpu_default2="TARGET_CPU_generic"
2532                         ;;
2533
2534                 *)
2535                         target_cpu_default2="TARGET_CPU_$with_cpu"
2536                         ;;
2537                 esac
2538                 ;;
2539
2540         hppa*-*-* | parisc*-*-*)
2541                 if test x$gas = xyes
2542                 then
2543                         target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2544                 fi
2545                 ;;
2546
2547         mips*-*-*)
2548                 case ${target} in
2549                 mips*-*-ecoff* | mips*-*-elf*)
2550                         if test x$gas = xyes
2551                         then
2552                                 if test x$gnu_ld = xyes
2553                                 then
2554                                         target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2555                                 else
2556                                         target_cpu_default2="MASK_GAS"
2557                                 fi
2558                         fi
2559                         ;;
2560                 mips*-*-*)
2561                         if test x$gas = xyes
2562                         then
2563                                 target_cpu_default2="MASK_GAS"
2564                         fi
2565                         ;;
2566                 esac
2567                 case ${target} in
2568                         mips*el-*-*)
2569                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2570                                 ;;
2571                 esac
2572                 case $tm_file in
2573                         *mips/elf.h* | *mips/elf64.h*)
2574                                 tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2575                                 ;;
2576                 esac
2577                 if test "x$enable_gofast" = xyes
2578                 then
2579                         tm_defines="US_SOFTWARE_GOFAST $tm_defines"
2580                         tmake_file="mips/t-gofast $tmake_file"
2581                 else
2582                         tmake_file="mips/t-mips $tmake_file"
2583                 fi
2584                 ;;
2585
2586         powerpc*-*-* | rs6000-*-*)
2587                 if test x$enable_altivec = xyes
2588                 then
2589                         tm_file="$tm_file rs6000/altivec-defs.h"
2590                 fi
2591                 # FIXME: The PowerPC port uses the value set at compile time,
2592                 # although it's only cosmetic.
2593                 if test "x$with_cpu" != x
2594                 then
2595                         target_cpu_default2="\\\"$with_cpu\\\""
2596                 fi
2597                 out_file=rs6000/rs6000.c
2598                 c_target_objs="${c_target_objs} rs6000-c.o"
2599                 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2600                 tmake_file="rs6000/t-rs6000 ${tmake_file}"
2601                 ;;
2602
2603         sparc*-*-*)
2604                 # Some standard aliases.
2605                 case x$with_cpu in
2606                 xsparc)
2607                         with_cpu=v7
2608                         ;;
2609                 xsparc86x)
2610                         with_cpu=sparclite86x
2611                         ;;
2612                 xsparcv9 | xsparc64)
2613                         with_cpu=v9
2614                         ;;
2615                 esac
2616
2617                 # The Sparc port checks this value at compile-time.
2618                 target_cpu_default2="TARGET_CPU_$with_cpu"
2619                 ;;
2620         v850*-*-*)
2621                 # FIXME: The v850 is "special" in that it does not support
2622                 # runtime CPU selection, only --with-cpu.
2623                 case "x$with_cpu" in
2624                 x)
2625                         ;;
2626                 xv850e)
2627                         target_cpu_default2="TARGET_CPU_$with_cpu"
2628                         ;;
2629                 esac
2630                 ;;
2631         esac
2632
2633         t=
2634         all_defaults="abi cpu arch tune schedule float mode"
2635         for option in $all_defaults
2636         do
2637                 eval "val=\$with_$option"
2638                 if test -n "$val"; then
2639                         case " $supported_defaults " in
2640                         *" $option "*)
2641                                 ;;
2642                         *)
2643                                 echo "This target does not support --with-$option." 2>&1
2644                                 exit 1
2645                                 ;;
2646                         esac
2647
2648                         if test "x$t" = x
2649                         then
2650                                 t="{ \"$option\", \"$val\" }"
2651                         else
2652                                 t="${t}, { \"$option\", \"$val\" }"
2653                         fi
2654                 fi
2655         done
2656         if test "x$t" = x
2657         then
2658                 configure_default_options="{ { NULL, NULL} }"
2659         else
2660                 configure_default_options="{ ${t} }"
2661         fi
2662
2663         if test "$target_cpu_default2" != ""
2664         then
2665                 if test "$target_cpu_default" != ""
2666                 then
2667                         target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2668                 else
2669                         target_cpu_default=$target_cpu_default2
2670                 fi
2671         fi