OSDN Git Service

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