OSDN Git Service

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