OSDN Git Service

* config.gcc (i[34567]86-*-solaris2*, sparc64-*-solaris2*,
[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 *-*-darwin*)
331   tm_file="${tm_file} darwin.h"
332   tm_p_file="${tm_p_file} darwin-protos.h"
333   tmake_file="t-darwin"
334   target_gtfiles="\$(srcdir)/config/darwin.c"
335   c_target_objs="darwin-c.o"
336   cxx_target_objs="darwin-c.o"
337   extra_parts="crt2.o"
338   extra_objs="darwin.o"
339   case ${enable_threads} in
340     "" | yes | posix) thread_file='posix' ;;
341   esac
342   ;;
343 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
344   # This is the place-holder for the generic a.out configuration
345   # of FreeBSD.  No actual configuration resides here since
346   # there was only ever a bare-bones ix86 configuration for
347   # a.out and it exists solely in the machine-specific section.
348   # This place-holder must exist to avoid dropping into
349   # the generic ELF configuration of FreeBSD (i.e. it must be
350   # ordered before that section).
351   ;;
352 *-*-freebsd*)
353   # This is the generic ELF configuration of FreeBSD.  Later
354   # machine-specific sections may refine and add to this
355   # configuration.
356   #
357   # Due to tm_file entry ordering issues that vary between cpu
358   # architectures, we only define fbsd_tm_file to allow the
359   # machine-specific section to dictate the final order of all
360   # entries of tm_file with the minor exception that components
361   # of the tm_file set here will always be of the form:
362   #
363   # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
364   #
365   # The machine-specific section should not tamper with this
366   # ordering but may order all other entries of tm_file as it
367   # pleases around the provided core setting.
368   gas=yes
369   gnu_ld=yes
370   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
371   case ${target} in
372     *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
373     *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
374     *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
375     *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
376     *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
377   esac
378   tmake_file="t-slibgcc-elf-ver t-freebsd"
379   case ${enable_threads} in
380     no)
381       fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
382       ;;
383     "" | yes | pthreads | posix)
384       thread_file='posix'
385       tmake_file="${tmake_file} t-freebsd-thread"
386       # Before 5.0, FreeBSD can't bind shared libraries to -lc
387       # when "optionally" threaded via weak pthread_* checks.
388       case ${target} in
389         *-*-freebsd[34] | *-*-freebsd[34].*)
390           tmake_file="${tmake_file} t-slibgcc-nolc-override"
391           ;;
392       esac
393       ;;
394     *) 
395       echo 'Unknown thread configuration for FreeBSD'
396       exit 1
397       ;;
398   esac
399   fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
400   ;;
401 *-*-linux*libc1* | *-*-linux*aout*)
402   # Avoid the generic linux case.
403   ;;
404 *-*-linux*)
405   # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
406   extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
407   gas=yes
408   gnu_ld=yes
409   case ${enable_threads} in
410     "" | yes | posix) thread_file='posix' ;;
411   esac
412   ;;
413 *-*-gnu*)
414   # On the Hurd, the setup is just about the same on
415   # each different CPU.  The specific machines that we
416   # support are matched above and just set $cpu_type.
417   tm_file="${cpu_type}/gnu.h"
418   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
419   # GNU tools are the only tools.
420   gas=yes
421   gnu_ld=yes
422   # These details are the same as for Linux.
423   # But here we need a little extra magic.
424   tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
425   case ${target} in
426     alpha*)
427       tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
428       ;;
429     i[34567]86-*-*)
430       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}"
431       ;;
432   esac
433   ;;
434 *-*-netbsd*)
435   tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
436   gas=yes
437   gnu_ld=yes
438
439   # NetBSD 2.0 and later get POSIX threads enabled by default.
440   # Allow them to be explicitly enabled on any other version.
441   case ${enable_threads} in
442     "")
443       case ${target} in
444         *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
445           thread_file='posix'
446           tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
447           ;;
448       esac
449       ;;
450     yes | posix)
451       thread_file='posix'
452       tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
453       ;;
454   esac
455
456   # NetBSD 1.7 and later are set up to use GCC's crtstuff for
457   # ELF configurations.  We will clear extra_parts in the
458   # a.out configurations.
459   case ${target} in
460     *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
461       extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
462       ;;
463   esac
464
465   # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
466   # default (unless overridden by --disable-__cxa_atexit).
467   case ${target} in
468     *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
469       default_use_cxa_atexit=yes
470       ;;
471   esac
472   ;;
473 *-*-openbsd*)
474   tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
475   case ${enable_threads} in
476     yes)
477       thread_file='posix'
478       tmake_file="${tmake_file} t-openbsd-thread"
479       ;;
480   esac
481   ;;
482 *-*-rtems*)
483   case ${enable_threads} in
484     yes) thread_file='rtems' ;;
485   esac
486   ;;
487 *-*-vxworks*)
488   tmake_file=t-vxworks
489   tm_file="${tm_file} elfos.h svr4.h vxworks.h"
490   thread_file='vxworks'
491   use_collect2=yes
492   ;;
493 esac
494
495 case ${target} in
496 # Support site-specific machine types.
497 *local*)
498         rest=`echo ${target} | sed -e "s/$cpu_type-//"`
499         tm_file=${cpu_type}/$rest.h
500         if test -f $srcdir/config/${cpu_type}/xm-$rest.h
501         then xm_file=${cpu_type}/xm-$rest.h
502         fi
503         if test -f $srcdir/config/${cpu_type}/t-$rest
504         then tmake_file=${cpu_type}/t-$rest
505         fi
506         ;;
507 alpha*-*-unicosmk*)
508         use_collect2=yes
509         tm_file="${tm_file} alpha/unicosmk.h"
510
511         # Don't include t-ieee for now because we don't support that yet
512         # tmake_file="alpha/t-ieee"
513         tmake_file="alpha/t-unicosmk"
514         ;;
515 alpha*-*-linux*)
516         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
517         target_cpu_default="MASK_GAS"
518         tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
519         use_fixproto=no
520         ;;
521 alpha*-*-gnu*)
522         target_cpu_default="MASK_GAS"
523         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
524         use_fixproto=no
525         ;;
526 alpha*-*-freebsd*)
527         tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
528         target_cpu_default="MASK_GAS"
529         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
530         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
531         use_fixproto=no
532         ;;
533 alpha*-*-netbsd*)
534         tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
535         target_cpu_default="MASK_GAS"
536         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
537         use_fixproto=no
538         ;;
539 alpha*-*-openbsd*)
540         tm_defines="OBSD_NO_DYNAMIC_LIBRARIES OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
541         tm_file="alpha/alpha.h openbsd.h alpha/openbsd.h"
542         # default x-alpha is only appropriate for dec-osf.
543         target_cpu_default="MASK_GAS"
544         tmake_file="alpha/t-alpha alpha/t-ieee"
545         use_fixproto=no
546         ;;
547 alpha*-dec-osf[45]*)
548         if test x$stabs = xyes
549         then
550                 tm_file="${tm_file} dbx.h"
551         fi
552         if test x$gas != xyes
553         then
554                 extra_passes="mips-tfile mips-tdump"
555         fi
556         use_collect2=yes
557         tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
558         tm_file="${tm_file} alpha/osf.h"
559         extra_headers=va_list.h
560         case ${target} in
561           *-*-osf4*)
562             # Set target_cpu_default except on 4.0a.
563             case ${target} in
564                 *-*-osf4.0a) ;;
565                 *) target_cpu_default=MASK_SUPPORT_ARCH
566             esac
567             ;;
568           *-*-osf5*)
569             tm_file="${tm_file} alpha/osf5.h"
570             target_cpu_default=MASK_SUPPORT_ARCH
571             ;;
572         esac
573         case x${enable_threads} in
574         x | xyes | xpthreads | xposix)
575             thread_file='posix'
576             tmake_file="${tmake_file} alpha/t-osf-pthread"
577             ;;
578         esac
579         ;;
580 alpha64-dec-*vms*)
581         tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
582         xm_file="alpha/xm-vms.h"
583         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
584         prefix=/gnu
585         local_prefix=/gnu
586         use_fixproto=no
587         ;;
588 alpha*-dec-*vms*)
589         tm_file="${tm_file} alpha/vms.h"
590         xm_file=alpha/xm-vms.h
591         tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
592         prefix=/gnu
593         local_prefix=/gnu
594         use_fixproto=no
595         ;;
596 arc-*-elf*)
597         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
598         extra_parts="crtinit.o crtfini.o"
599         ;;
600 arm-*-coff* | armel-*-coff*)
601         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h"
602         tmake_file=arm/t-arm-coff
603         use_fixproto=no
604         ;;
605 arm-semi-aof | armel-semi-aof)
606         tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
607         tmake_file=arm/t-semi
608         use_fixproto=no
609         ;;
610 arm*-*-freebsd*|strongarm*-*-freebsd*)
611         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
612         tmake_file="${tmake_file} arm/t-strongarm-elf"
613         use_fixproto=no
614         ;;
615 arm*-*-netbsdelf*)
616         tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
617         tmake_file="${tmake_file} arm/t-netbsd"
618         use_fixproto=no
619         ;;
620 arm*-*-netbsd*)
621         tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
622         tmake_file="t-netbsd arm/t-netbsd"
623         extra_parts=""
624         use_collect2=yes
625         use_fixproto=no
626         ;;
627 arm*-*-linux*)                  # ARM GNU/Linux with ELF
628         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"
629         tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
630         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
631         gnu_ld=yes
632         case x${enable_threads} in
633         x | xyes | xpthreads | xposix)
634                 thread_file='posix'
635                 ;;
636         esac
637         use_fixproto=no
638         ;;
639 arm*-*-uclinux*)                # ARM ucLinux
640         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"
641         tmake_file=arm/t-arm-elf
642         ;;
643 arm*-*-ecos-elf)
644         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
645         tmake_file=arm/t-arm-elf
646         use_fixproto=no
647         ;;
648 arm*-*-rtems*)
649         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"
650         tmake_file="arm/t-arm-elf t-rtems"
651         use_fixproto=no
652         ;;
653 arm*-*-elf | ep9312-*-elf)
654         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
655         tmake_file=arm/t-arm-elf
656         use_fixproto=no
657         ;;
658 arm*-wince-pe*)
659         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
660         tmake_file=arm/t-wince-pe
661         extra_objs="pe.o"
662         use_fixproto=no
663         ;;
664 arm-*-pe*)
665         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h"
666         tmake_file=arm/t-pe
667         extra_objs="pe.o"
668         use_fixproto=no
669         ;;
670 arm*-*-kaos*)
671         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"
672         tmake_file=arm/t-arm-elf
673         ;;
674 avr-*-*)
675         tm_file="avr/avr.h dbxelf.h"
676         ;;
677 c4x-*-rtems* | tic4x-*-rtems*)
678         tmake_file="c4x/t-c4x t-rtems"
679         tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
680         c_target_objs="c4x-c.o"
681         cxx_target_objs="c4x-c.o"
682         use_fixproto=no
683         ;;
684 c4x-* | tic4x-*)
685         tmake_file=c4x/t-c4x
686         c_target_objs="c4x-c.o"
687         cxx_target_objs="c4x-c.o"
688         use_fixproto=no
689         ;;
690 cris-*-aout)
691         tm_file="dbxelf.h ${tm_file} cris/aout.h"
692         gas=yes
693         tmake_file="cris/t-cris cris/t-aout"
694         use_fixproto=no
695         ;;
696 cris-*-elf | cris-*-none)
697         tm_file="dbxelf.h elfos.h ${tm_file}"
698         tmake_file="cris/t-cris cris/t-elfmulti"
699         gas=yes
700         use_fixproto=no
701         ;;
702 cris-*-linux*)
703         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
704         tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
705         use_fixproto=no
706         ;;
707 d30v-*)
708         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
709         use_fixproto=no
710         ;;
711 dsp16xx-*)
712         ;;
713 fr30-*-elf)
714         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
715         tmake_file=fr30/t-fr30
716         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
717         ;;
718 frv-*-elf)
719         tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
720         tmake_file=frv/t-frv
721         ;;
722 h8300-*-rtems*)
723         tmake_file="h8300/t-h8300 t-rtems"
724         tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h h8300/rtems.h rtems.h"
725         use_fixproto=no
726         ;;
727 h8300-*-elf*)
728         tmake_file="h8300/t-h8300 h8300/t-elf"
729         tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h"
730         ;;
731 h8300-*-*)
732         tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h"
733         ;;
734 hppa*64*-*-linux* | parisc*64*-*-linux*)
735         target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
736         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
737                  pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
738         tmake_file=pa/t-linux64
739         gas=yes gnu_ld=yes
740         need_64bit_hwint=yes
741         ;;
742 hppa*-*-linux* | parisc*-*-linux*)
743         target_cpu_default="MASK_PA_11 | MASK_NO_SPACE_REGS"
744         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
745                  pa/pa32-regs.h pa/pa32-linux.h"
746         tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
747         use_fixproto=no
748         ;;
749 # port not yet contributed.
750 #hppa*-*-openbsd*)
751 #       target_cpu_default="MASK_PA_11"
752 #       use_fixproto=no
753 #       ;;
754 hppa1.1-*-pro*)
755         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
756         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
757         tmake_file="pa/t-pro"
758         use_fixproto=no
759         ;;
760 hppa1.1-*-osf*)
761         target_cpu_default="MASK_PA_11"
762         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-osf.h"
763         tmake_file="pa/t-pa"
764         use_collect2=yes
765         use_fixproto=no
766         ;;
767 hppa1.1-*-rtems*)
768         target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
769         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"
770         tmake_file="pa/t-pro t-rtems"
771         use_fixproto=no
772         ;;
773 hppa1.1-*-bsd*)
774         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h"
775         target_cpu_default="MASK_PA_11"
776         tmake_file="pa/t-pa"
777         use_collect2=yes
778         use_fixproto=no
779         ;;
780 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
781         target_cpu_default="MASK_PA_11"
782         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"
783         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
784         if test x$enable_threads = x; then
785             enable_threads=$have_pthread_h
786         fi
787         case x${enable_threads} in
788         xyes | xdce)
789                 tmake_file="${tmake_file} pa/t-dce-thr"
790                 ;;
791         esac
792         use_collect2=yes
793         ;;
794 hppa1.0-*-hpux10*)
795         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"
796         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
797         if test x$enable_threads = x; then
798             enable_threads=$have_pthread_h
799         fi
800         case x${enable_threads} in
801         xyes | xdce)
802                 tmake_file="${tmake_file} pa/t-dce-thr"
803                 ;;
804         esac
805         use_collect2=yes
806         ;;
807 hppa*64*-*-hpux11*)
808         if test x$gas = xyes
809         then
810                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.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         else
814                 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
815                          pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
816                          pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
817         fi
818         need_64bit_hwint=yes
819         tmake_file="pa/t-pa64 pa/t-pa-hpux"
820         target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
821         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
822         if test x$gnu_ld = xyes
823         then
824                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
825         fi
826         case x${enable_threads} in
827         xyes | xposix )
828                 thread_file=posix 
829                 ;;
830         esac
831         use_fixproto=no
832         ;;
833 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
834         target_cpu_default="MASK_PA_11"
835         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"
836         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
837         case x${enable_threads} in
838         xyes | xposix )
839                 thread_file=posix 
840                 ;;
841         esac
842         use_collect2=yes
843         use_fixproto=no
844         ;;
845 hppa1.0-*-hpux11*)
846         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"
847         tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
848         case x${enable_threads} in
849         xyes | xposix )
850                 thread_file=posix 
851                 ;;
852         esac
853         use_collect2=yes
854         use_fixproto=no
855         ;;
856 i370-*-opened*)                  # IBM 360/370/390 Architecture
857         xm_defines='FATAL_EXIT_CODE=12'
858         tm_file="i370/oe.h i370/i370.h"
859         tmake_file="i370/t-i370"
860         c_target_objs="i370-c.o"
861         cxx_target_objs="i370-c.o"
862         # Don't bother fixing up header files; they're weird.
863         use_fixproto=no
864         ;;
865 i370-*-mvs*)
866         xm_defines='FATAL_EXIT_CODE=12'
867         tm_file="i370/mvs.h i370/i370.h"
868         tmake_file="i370/t-i370"
869         c_target_objs="i370-c.o"
870         cxx_target_objs="i370-c.o"
871         ;;
872 i370-*-linux*)
873         tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h i370/i370.h"
874         tmake_file="t-slibgcc-elf-ver t-linux"
875         # broken_install=yes
876         use_fixproto=no
877         ;;
878 i[34567]86-*-darwin*)
879         tm_file="${tm_file} i386/darwin.h"
880         ;;
881 i[34567]86-*-elf*)
882         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
883         tmake_file="i386/t-i386elf t-svr4"
884         ;;
885 i[34567]86-ncr-sysv4*)          # NCR 3000 - ix86 running system V.4
886         xm_defines="SMALL_ARG_MAX"
887         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
888         extra_parts="crtbegin.o crtend.o"
889         tmake_file=i386/t-crtpic
890         ;;
891 i[34567]86-*-netware)           # Intel 80386's running netware
892         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
893         use_fixproto=no
894         ;;
895 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
896         if test x$gas = xyes
897         then
898                 tm_file="${tm_file} usegas.h"
899         fi
900         xm_defines="SMALL_ARG_MAX"
901         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
902         tmake_file=t-svr4
903         extra_parts="crtbegin.o crtend.o"
904         ;;
905 i[34567]86-*-aout*)
906         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
907         ;;
908 i[34567]86-*-beoself* | i[34567]86-*-beos*)
909         tmake_file='i386/t-beos i386/t-crtpic'
910         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
911         extra_parts='crtbegin.o crtend.o'
912         use_fixproto=no
913         ;;
914 i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
915         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
916         tmake_file=t-freebsd
917         use_fixproto=no
918         ;;
919 i[34567]86-*-freebsd*)
920         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
921         use_fixproto=no
922         ;;
923 x86_64-*-freebsd*)
924         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"
925         use_fixproto=no
926         ;;
927 i[34567]86-*-netbsdelf*)
928         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
929         use_fixproto=no
930         ;;
931 i[34567]86-*-netbsd*)
932         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
933         tmake_file=t-netbsd
934         extra_parts=""
935         use_collect2=yes
936         use_fixproto=no
937         ;;
938 x86_64-*-netbsd*)
939         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"
940         use_fixproto=no
941         ;;
942 i[34567]86-*-openbsd*)
943         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"
944         # needed to unconfuse gdb
945         tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
946         # we need collect2 until our bug is fixed...
947         use_collect2=yes
948         use_fixproto=no
949         ;;
950 i[34567]86-*-coff*)
951         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
952         ;;
953 i[34567]86-*-linux*aout*)       # Intel 80386's running GNU/Linux
954                                 # with a.out format
955         tmake_file="i386/t-crtstuff"
956         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
957         gnu_ld=yes
958         use_fixproto=no
959         ;;
960 i[34567]86-*-linux*libc1)       # Intel 80386's running GNU/Linux
961                                 # with ELF format using the
962                                 # GNU/Linux C library 5
963         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
964         tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
965         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
966         gnu_ld=yes
967         if test x$enable_threads = xyes; then
968                 thread_file='single'
969         fi
970         use_fixproto=no
971         ;;
972 i[34567]86-*-linux*)    # Intel 80386's running GNU/Linux
973                         # with ELF format using glibc 2
974                         # aka GNU/Linux C library 6
975         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
976         tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
977         use_fixproto=no
978         ;;
979 x86_64-*-linux*)
980         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
981                  i386/x86-64.h i386/linux64.h"
982         tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64"
983         use_fixproto=no
984         ;;
985 i[34567]86-*-gnu*)
986         use_fixproto=no
987         ;;
988 i[34567]86-pc-msdosdjgpp*)
989         xm_file=i386/xm-djgpp.h
990         tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
991         tmake_file=i386/t-djgpp
992         gnu_ld=yes
993         gas=yes
994         use_fixproto=no
995         ;;
996 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
997         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
998         tmake_file=t-libc-ok
999         gnu_ld=yes
1000         gas=yes
1001         ;;
1002 i[34567]86-*-lynxos*)
1003         if test x$gas = xyes
1004         then
1005                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h svr3.h lynx.h i386/lynx.h"
1006         else
1007                 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
1008         fi
1009         ;;
1010 i[34567]86-*-mach*)
1011         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
1012 #       tmake_file=t-libc-ok
1013         use_collect2=yes
1014         ;;
1015 i[34567]86-*-nto-qnx*)
1016         tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
1017         tmake_file=i386/t-nto
1018         gnu_ld=yes
1019         gas=yes
1020         use_fixproto=no
1021         ;;
1022 i[34567]86-*-rtems*)
1023         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
1024         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1025         tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1026         use_fixproto=no
1027         ;;
1028 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1029         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sco5.h"
1030         if test x$gas = xyes
1031         then
1032                 tm_file="usegas.h ${tm_file}"
1033         fi
1034         tmake_file=i386/t-sco5
1035         extra_parts="crtbegin.o crtend.o"
1036         ;;
1037 i[34567]86-*-solaris2*)
1038         xm_defines="SMALL_ARG_MAX"
1039         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
1040         tmake_file="i386/t-sol2 t-svr4"
1041         if test x$gnu_ld = xyes; then
1042                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1043         else
1044                 tmake_file="$tmake_file t-slibgcc-sld"
1045         fi
1046         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1047         if test x${enable_threads} = x; then
1048             enable_threads=$have_pthread_h
1049             if test x${enable_threads} = x; then
1050                 enable_threads=$have_thread_h
1051             fi
1052         fi
1053         if test x${enable_threads} = xyes; then
1054             if test x${have_pthread_h} = xyes; then
1055                 thread_file='posix'
1056             else
1057                 thread_file='solaris'
1058             fi
1059         fi
1060         use_fixproto=no
1061         ;;
1062 i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
1063        tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1064        if test x$stabs = xyes
1065        then
1066                tm_file="${tm_file} dbx.h"
1067        fi
1068        tmake_file="i386/t-crtpic t-svr4"
1069        extra_parts="crtbegin.o crtend.o"
1070        if test x$enable_threads = xyes; then
1071                thread_file='posix'
1072        fi
1073        ;;
1074 i[34567]86-*-sysv4*)            # Intel 80386's running system V.4
1075         xm_defines="SMALL_ARG_MAX"
1076         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1077         if test x$stabs = xyes
1078         then
1079                 tm_file="${tm_file} dbx.h"
1080         fi
1081         tmake_file="i386/t-crtpic t-svr4"
1082         extra_parts="crtbegin.o crtend.o"
1083         ;;
1084 i[34567]86-*-udk*)      # Intel x86 on SCO UW/OSR5 Dev Kit
1085         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"
1086         tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1087         extra_parts="crtbegin.o crtend.o"
1088         ;;
1089 i[34567]86-*-sysv*)             # Intel 80386's running system V
1090         if test x$gas = xyes
1091         then
1092                 if test x$stabs = xyes
1093                 then
1094                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
1095                         tmake_file=i386/t-svr3dbx
1096                         extra_parts="svr3.ifile svr3z.ifile"
1097                 else
1098                         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
1099                         extra_parts="crtbegin.o crtend.o"
1100                         tmake_file=i386/t-crtstuff
1101                 fi
1102         else
1103                 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
1104                 extra_parts="crtbegin.o crtend.o"
1105                 tmake_file=i386/t-crtstuff
1106         fi
1107         tmake_file="$tmake_file i386/t-crtpic"
1108         ;;
1109 i386-*-vsta)                    # Intel 80386's running VSTa kernel
1110         xm_file="i386/xm-vsta.h"
1111         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/vsta.h"
1112         ;;
1113 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1114         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
1115         xm_file=i386/xm-cygwin.h
1116         tmake_file="i386/t-cygming i386/t-cygwin"
1117         extra_objs=winnt.o
1118         c_target_objs=cygwin2.o
1119         cxx_target_objs=cygwin2.o
1120         if test x$enable_threads = xyes; then
1121                 thread_file='posix'
1122         fi
1123         use_fixproto=no
1124         ;;
1125 i[34567]86-*-mingw32*)
1126         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
1127         xm_file=i386/xm-mingw32.h
1128         tmake_file="i386/t-cygming i386/t-mingw32"
1129         extra_objs=winnt.o
1130         if test x$enable_threads = xyes; then
1131                 thread_file='win32'
1132         fi
1133         case ${target} in
1134                 *mingw32crt*)
1135                         tm_file="${tm_file} i386/crtdll.h"
1136                         ;;
1137                 *mingw32msv* | *mingw32*)
1138                         ;;
1139         esac
1140         use_fixproto=no
1141         ;;
1142 i[34567]86-*-uwin*)
1143         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h"
1144         tmake_file="i386/t-cygwin i386/t-uwin"
1145         extra_objs=winnt.o
1146         if test x$enable_threads = xyes; then
1147                 thread_file='win32'
1148         fi
1149         ;;
1150 i[34567]86-*-interix3*)
1151         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"
1152         tmake_file="i386/t-interix"
1153         extra_objs=winnt.o
1154         if test x$enable_threads = xyes ; then
1155                 thread_file='posix'
1156         fi
1157         if test x$stabs = xyes ; then
1158                 tm_file="${tm_file} dbxcoff.h"
1159         fi
1160         use_fixproto=no
1161         ;;
1162 i[34567]86-*-interix*)
1163         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
1164         tmake_file="i386/t-interix"
1165         extra_objs=winnt.o
1166         if test x$enable_threads = xyes ; then
1167                 thread_file='posix'
1168         fi
1169         if test x$stabs = xyes ; then
1170                 tm_file="${tm_file} dbxcoff.h"
1171         fi
1172         use_fixproto=no
1173         ;;
1174 i[34567]86-*-kaos*)
1175         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h kaos.h i386/kaos-i386.h"
1176         tmake_file="i386/t-i386elf t-svr4"
1177         ;;
1178 i860-*-sysv4*)
1179         tm_file="${tm_file} elfos.h svr4.h i860/sysv4.h"
1180         tmake_file="i860/t-i860 i860/t-svr4"
1181         extra_parts="crtbegin.o crtend.o"
1182         ;;
1183 i960-*-coff*)
1184         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1185         tmake_file=i960/t-960bare
1186         c_target_objs="i960-c.o"
1187         cxx_target_objs="i960-c.o"
1188         ;;
1189 i960-*-rtems)
1190         tmake_file="i960/t-960bare t-rtems"
1191         tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
1192         c_target_objs="i960-c.o"
1193         cxx_target_objs="i960-c.o"
1194         use_fixproto=no
1195         ;;
1196 i960-*-*)                       # Default i960 environment.
1197         use_collect2=yes
1198         tmake_file=i960/t-960bare
1199         c_target_objs="i960-c.o"
1200         cxx_target_objs="i960-c.o"
1201         ;;
1202 ia64*-*-elf*)
1203         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1204         tmake_file="ia64/t-ia64"
1205         target_cpu_default="0"
1206         if test x$gas = xyes
1207         then
1208                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1209         fi
1210         if test x$gnu_ld = xyes
1211         then
1212                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1213         fi
1214         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1215         ;;
1216 ia64*-*-freebsd*)
1217         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1218         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1219         tmake_file="${tmake_file} ia64/t-ia64"
1220         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1221         use_fixproto=no
1222         ;;
1223 ia64*-*-linux*)
1224         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1225         tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1226         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1227         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1228         if test x"$use_libunwind_exceptions" = xyes; then
1229           tmake_file="$tmake_file t-libunwind"
1230         fi
1231         use_fixproto=no
1232         ;;
1233 ia64*-*-hpux*)
1234         tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1235         tmake_file="ia64/t-ia64 ia64/t-hpux"
1236         target_cpu_default="MASK_GNU_AS"
1237         case x$enable_threads in
1238         xyes | xposix )
1239                 thread_file=posix
1240                 ;;
1241         esac
1242         use_collect2=no
1243         c_target_objs="ia64-c.o"
1244         cxx_target_objs="ia64-c.o"
1245         # If we decide to run fixproto we should define FIXPROTO_DEFINES
1246         # in ia64/t-hpux, and also fix the definition of putenv in
1247         # sys-protos.h (const char not char).
1248         use_fixproto=no
1249         ;;
1250 ip2k-*-elf)
1251         tm_file="elfos.h ${tm_file}"
1252         ;;
1253 iq2000*-*-elf*)
1254         tm_file="svr4.h elfos.h iq2000/iq2000.h"
1255         tmake_file=iq2000/t-iq2000
1256         out_file=iq2000/iq2000.c
1257         md_file=iq2000/iq2000.md
1258         ;;
1259 m32r-*-elf*)
1260         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1261         extra_parts="crtinit.o crtfini.o"
1262         ;;
1263 # m68hc11 and m68hc12 share the same machine description.
1264 m68hc11-*-*|m6811-*-*)
1265         tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1266         tm_p_file="m68hc11/m68hc11-protos.h"
1267         md_file="m68hc11/m68hc11.md"
1268         out_file="m68hc11/m68hc11.c"
1269         tmake_file="m68hc11/t-m68hc11-gas"
1270         ;;
1271 m68hc12-*-*|m6812-*-*)
1272         tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1273         tm_p_file="m68hc11/m68hc11-protos.h"
1274         md_file="m68hc11/m68hc11.md"
1275         out_file="m68hc11/m68hc11.c"
1276         tmake_file="m68hc11/t-m68hc11-gas"
1277         ;;
1278 m68000-hp-hpux*)                # HP 9000 series 300
1279         tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h m68k/hp310.h"
1280         tm_defines="TARGET_DEFAULT=0" # 68000, no 68881, no bitfield ops
1281         if test x$gas = xyes
1282         then
1283                 tm_defines="${tm_defines} DBX_DEBUGGING_INFO=1 USE_GAS"
1284         fi
1285         tmake_file=m68k/t-hp320
1286         use_collect2=yes
1287         ;;
1288 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1289         tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h"
1290         if test x$gas = xyes
1291         then
1292                 tm_defines="DBX_DEBUGGING_INFO=1 USE_GAS"
1293         else
1294                 tm_defines="NO_DOT_IN_LABEL NO_BUGS"
1295         fi
1296         use_collect2=yes
1297         ;;
1298 m68k-hp-hpux*)  # HP 9000 series 300
1299         tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h"
1300         if test x$gas = xyes
1301         then
1302                 tm_defines="DBX_DEBUGGING_INFO=1 USE_GAS"
1303         fi
1304         use_collect2=yes
1305         ;;
1306 m68k-*-aout*)
1307         tmake_file=m68k/t-m68kbare
1308         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h"
1309         ;;
1310 m68k-*-coff*)
1311         tmake_file=m68k/t-m68kbare
1312         tm_defines="MOTOROLA USE_GAS"
1313         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h"
1314         ;;
1315 m68020-*-elf* | m68k-*-elf*)
1316         tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1317         tmake_file=m68k/t-m68kelf
1318         extra_parts="crtbegin.o crtend.o"
1319         ;;
1320 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1321         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1322         case ${target} in
1323         m68010*)
1324                 target_cpu_default="0"
1325                 ;;
1326         *)
1327                 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1328                 ;;
1329         esac
1330         use_fixproto=no
1331         ;;
1332 m68k*-*-netbsd*)
1333         tm_file="m68k/m68k.h netbsd.h netbsd-aout.h m68k/netbsd.h"
1334         tmake_file=t-netbsd
1335         extra_parts=""
1336         use_collect2=yes
1337         use_fixproto=no
1338         ;;
1339 m68k*-*-openbsd*)
1340         # needed to unconfuse gdb
1341         tm_defines="OBSD_OLD_GAS TARGET_DEFAULT=(MASK_68020|MASK_68881|MASK_BITFIELD)"
1342         tm_file="m68k/m68k.h openbsd.h m68k/openbsd.h"
1343         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1344         # we need collect2 until our bug is fixed...
1345         use_collect2=yes
1346         use_fixproto=no
1347         ;;
1348 m68k-*-sysv4*)                  # Motorola m68k's running system V.4
1349         tm_file="m68k/m68k.h m68k/sgs.h dbxelf.h elfos.h svr4.h m68k/m68kv4.h"
1350         tm_defines="MOTOROLA SGS SGS_CMP_ORDER SGS_SWITCH_TABLES"
1351         tmake_file=t-svr4
1352         extra_parts="crtbegin.o crtend.o"
1353         ;;
1354 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1355                                 # with ELF format using glibc 2
1356                                 # aka the GNU/Linux C library 6.
1357         tm_file="m68k/m68k.h dbxelf.h elfos.h svr4.h linux.h m68k/linux.h"
1358         tm_defines="MOTOROLA USE_GAS"
1359         tmake_file="t-slibgcc-elf-ver t-linux"
1360         use_fixproto=no
1361         ;;
1362 m68k-*-rtems*)
1363         tmake_file="m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems"
1364         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"
1365         extra_parts="crtbegin.o crtend.o"
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         use_fixproto=no
1550         ;;
1551 mipstx39-*-elf* | mipstx39el-*-elf*)
1552         tm_file="${tm_file} mips/r3900.h mips/elf.h"
1553         tmake_file=mips/t-r3900
1554         ;;
1555 mmix-knuth-mmixware)
1556         need_64bit_hwint=yes
1557         use_fixproto=no
1558         ;;
1559 mn10300-*-*)
1560         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1561         if test x$stabs = xyes
1562         then
1563                 tm_file="${tm_file} dbx.h"
1564         fi
1565         use_collect2=no
1566         ;;
1567 ns32k-*-netbsdelf*)
1568         echo "GCC does not yet support the ${target} target"; exit 1
1569         use_fixproto=no
1570         ;;
1571 ns32k-*-netbsd*)
1572         tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1573         # On NetBSD, the headers are already okay, except for math.h.
1574         tmake_file="t-netbsd ns32k/t-ns32k"
1575         extra_parts=""
1576         use_collect2=yes
1577         use_fixproto=no
1578         ;;
1579 pdp11-*-bsd)
1580         tm_file="${tm_file} pdp11/2bsd.h"
1581         ;;
1582 pdp11-*-*)
1583         ;;
1584 avr-*-*)
1585         ;;
1586 # port not yet contributed
1587 #powerpc-*-openbsd*)
1588 #       tmake_file="${tmake_file} rs6000/t-fprules "
1589 #       extra_headers=
1590 #       use_fixproto=no
1591 #       ;;
1592 powerpc64-*-linux*)
1593         tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1594         case x$with_cpu in
1595         x|xpowerpc64|xdefault64) tm_file="${tm_file} rs6000/default64.h";;
1596         esac
1597         tm_file="${tm_file} rs6000/linux64.h"
1598         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-linux rs6000/t-ppccomm rs6000/t-linux64"
1599         use_fixproto=no
1600         ;;
1601 powerpc64-*-gnu*)
1602         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"
1603         tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
1604         use_fixproto=no
1605         ;;
1606 powerpc-*-beos*)
1607         tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
1608         tmake_file="rs6000/t-fprules rs6000/t-beos"
1609         extra_headers=
1610         ;;
1611 powerpc-*-darwin*)
1612         tm_file="${tm_file} rs6000/darwin.h"
1613         tmake_file="t-darwin rs6000/t-darwin"
1614         extra_headers=altivec.h
1615         # override ppc default
1616         need_64bit_hwint=
1617         ;;
1618 powerpc*-*-freebsd*)
1619         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1620         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1621         use_fixproto=no
1622         ;;
1623 powerpc-*-netbsd*)
1624         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1625         tmake_file="${tmake_file} rs6000/t-netbsd"
1626         use_fixproto=no
1627         ;;
1628 powerpc-*-chorusos*)
1629         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
1630         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1631         case x${enable_threads} in
1632           xyes | xpthreads | xposix)
1633                 thread_file='posix'
1634                 ;;
1635         esac
1636         ;;
1637 powerpc-*-eabispe*)
1638         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
1639         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
1640         ;;
1641 powerpc-*-eabisimaltivec*)
1642         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"
1643         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1644         ;;
1645 powerpc-*-eabisim*)
1646         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
1647         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1648         use_fixproto=no
1649         ;;
1650 powerpc-*-elf*)
1651         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1652         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1653         ;;
1654 powerpc-*-eabialtivec*)
1655         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
1656         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
1657         ;;
1658 powerpc-*-eabi*)
1659         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
1660         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1661         use_fixproto=no
1662         ;;
1663 powerpc-*-rtems*)
1664         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
1665         tmake_file="rs6000/t-fprules t-rtems rs6000/t-ppccomm"
1666         use_fixproto=no
1667         ;;
1668 powerpc-*-linux*altivec*)
1669         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
1670         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1671         use_fixproto=no
1672         ;;
1673 powerpc-*-linux*spe*)
1674         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.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*)
1679         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.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-*-gnu-gnualtivec*)
1684         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"
1685         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1686         if test x$enable_threads = xyes; then
1687                 thread_file='posix'
1688         fi
1689         use_fixproto=no
1690         ;;
1691 powerpc-*-gnu*)
1692         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"
1693         tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1694         if test x$enable_threads = xyes; then
1695                 thread_file='posix'
1696         fi
1697         use_fixproto=no
1698         ;;
1699 powerpc-wrs-vxworks*)
1700         # We want vxworks.h after rs6000/sysv4.h, which unfortunately
1701         # means we have to redo the tm_file list from scratch.
1702         tm_file="rs6000/rs6000.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1703         tm_file="${tm_file} vxworks.h rs6000/vxworks.h"
1704         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
1705         extra_headers=ppc-asm.h
1706         use_fixproto=no
1707         ;;
1708 powerpc-wrs-windiss*)
1709         tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
1710         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1711         thread_file=""
1712         ;;
1713 powerpcle-*-sysv*)
1714         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1715         tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
1716         ;;
1717 powerpcle-*-elf*)
1718         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1719         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1720         ;;
1721 powerpcle-*-eabisim*)
1722         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"
1723         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1724         use_fixproto=no
1725         ;;
1726 powerpcle-*-eabi*)
1727         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
1728         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1729         use_fixproto=no
1730         ;;
1731 powerpc-*-kaos*)
1732         tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h kaos.h rs6000/kaos-ppc.h"
1733         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1734         ;;
1735 powerpcle-*-kaos*)
1736         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"
1737         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1738         ;;
1739 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
1740         tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
1741         tmake_file="rs6000/t-fprules rs6000/t-newas"
1742         use_collect2=yes
1743         extra_headers=
1744         ;;
1745 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
1746         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
1747         tmake_file=rs6000/t-aix43
1748         use_collect2=yes
1749         thread_file='aix'
1750         extra_headers=
1751         use_fixproto=no
1752         ;;
1753 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
1754         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
1755         tmake_file=rs6000/t-aix43
1756         use_collect2=yes
1757         thread_file='aix'
1758         extra_headers=
1759         use_fixproto=no
1760         ;;
1761 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
1762         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
1763         tmake_file=rs6000/t-aix52
1764         use_collect2=yes
1765         thread_file='aix'
1766         extra_headers=
1767         use_fixproto=no
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         use_fixproto=no
1821         ;;
1822 sh-*-rtems*)
1823         tmake_file="sh/t-sh t-rtems"
1824         tm_file="${tm_file} dbxcoff.h sh/coff.h sh/rtems.h rtems.h"
1825         use_fixproto=no
1826         ;;
1827 sh-*-linux* | sh[2346lbe]*-*-linux*)
1828         tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux"
1829         case ${target} in
1830         sh*be-*-* | sh*eb-*-*) ;;
1831         *)
1832                 tm_file="sh/little.h ${tm_file}"
1833                 tmake_file="${tmake_file} sh/t-le"
1834                 ;;
1835         esac
1836         tmake_file="${tmake_file} sh/t-linux"
1837         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
1838         case ${target} in
1839         sh64*)
1840                 tmake_file="${tmake_file} sh/t-sh64"
1841                 tm_file="${tm_file} sh/sh64.h"
1842                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
1843                 ;;
1844         sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
1845         sh4*) target_cpu_default="SELECT_SH4" ;;
1846         sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
1847         sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
1848         sh3e*) target_cpu_default="SELECT_SH3E" ;;
1849         sh3*) target_cpu_default="SELECT_SH3" ;;
1850         sh2e[lb]e*) target_cpu_default="SELECT_SH2E" ;;
1851         sh2e[lb]*) target_cpu_default="SELECT_SH2" ;;
1852         sh2e*) target_cpu_default="SELECT_SH2E" ;;
1853         sh2*) target_cpu_default="SELECT_SH2" ;;
1854         esac
1855         case ${target} in
1856         sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1857         esac
1858         use_fixproto=no
1859         ;;
1860 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
1861   sh64-*-netbsd* | sh64l*-*-netbsd*)
1862         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
1863         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
1864         case ${target} in
1865         sh*l*-*)
1866                 tm_file="sh/little.h ${tm_file}"
1867                 tmake_file="${tmake_file} sh/t-le"
1868                 ;;
1869         *)
1870                 tmake_file="${tmake_file} sh/t-be"
1871                 ;;
1872         esac
1873         case ${target} in
1874         sh5*-*)
1875                 # SHmedia, 32-bit ABI
1876                 target_cpu_default="SH5_BIT|SH4_BIT|SH3_BIT|SH_E_BIT"
1877                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
1878                 ;;
1879         sh64*-*)
1880                 # SHmedia, 64-bit ABI
1881                 target_cpu_default="SH5_BIT|SH4_BIT"
1882                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
1883                 ;;
1884         *)
1885                 # SH3, software floating point
1886                 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
1887                 tmake_file="${tmake_file} sh/t-netbsd"
1888                 ;;
1889         esac
1890         use_fixproto=no
1891         ;;
1892 sh-*-*)
1893         tm_file="${tm_file} dbxcoff.h sh/coff.h"
1894         ;;
1895 sparc-tti-*)
1896         tm_file="${tm_file} sparc/pbd.h"
1897         ;;
1898 sparc-*-netbsdelf*)
1899         tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
1900         use_fixproto=no
1901         ;;
1902 sparc-*-openbsd*)
1903         tm_defines=OBSD_OLD_GAS
1904         tm_file="sparc/sparc.h openbsd.h sparc/openbsd.h"
1905         # needed to unconfuse gdb
1906         tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
1907         # we need collect2 until our bug is fixed...
1908         use_collect2=yes
1909         use_fixproto=no
1910         ;;
1911 sparc64-*-openbsd*)
1912         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"
1913         gas=yes gnu_ld=yes
1914         with_cpu=ultrasparc
1915         use_fixproto=no
1916         ;;
1917 sparc-*-elf*)
1918         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
1919         tmake_file="sparc/t-elf sparc/t-crtfm"
1920         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1921         ;;
1922 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
1923         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
1924         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
1925         use_fixproto=no
1926         ;;
1927 sparc-*-rtems*)
1928         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"
1929         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
1930         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1931         use_fixproto=no
1932         ;;
1933 sparc64-*-solaris2* | sparcv9-*-solaris2*)
1934         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"
1935         if test x$gnu_ld = xyes; then
1936                 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
1937         fi
1938         if test x$gas = xyes; then
1939                 tm_file="${tm_file} sparc/sol2-gas-bi.h"
1940         fi
1941         tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
1942         if test x$gnu_ld = xyes; then
1943                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1944         else
1945                 tmake_file="$tmake_file t-slibgcc-sld"
1946         fi
1947         extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
1948         if test x${enable_threads} = x ; then
1949             enable_threads=$have_pthread_h
1950             if test x${enable_threads} = x ; then
1951                 enable_threads=$have_thread_h
1952             fi
1953         fi
1954         if test x${enable_threads} = xyes ; then
1955             if test x${have_pthread_h} = xyes ; then
1956                 thread_file='posix'
1957             else
1958                 thread_file='solaris'
1959             fi
1960         fi
1961         need_64bit_hwint=yes
1962         use_fixproto=no
1963         ;;
1964 sparc-*-solaris2*)
1965         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
1966         if test x$gnu_ld = xyes; then
1967                 tm_file="${tm_file} sparc/sol2-gld.h"
1968         fi
1969         tmake_file="sparc/t-sol2 sparc/t-crtfm"
1970         if test x$gnu_ld = xyes; then
1971                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1972         else
1973                 tmake_file="$tmake_file t-slibgcc-sld"
1974         fi
1975         case ${target} in
1976         *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
1977                 if test x$gnu_ld = xno; then
1978                         tm_file="${tm_file} sparc/sol26-sld.h"
1979                 fi
1980                 ;;
1981         *-*-solaris2.[789])
1982                 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
1983                 if test x$gnu_ld = xyes; then
1984                         tm_file="${tm_file} sparc/sol2-gld-bi.h"
1985                 fi
1986                 if test x$gas = xyes; then
1987                         tm_file="${tm_file} sparc/sol2-gas-bi.h"
1988                 fi
1989                 tmake_file="$tmake_file sparc/t-sol2-64"
1990                 need_64bit_hwint=yes
1991                 ;;
1992         esac
1993         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1994         if test x${enable_threads} = x; then
1995             enable_threads=$have_pthread_h
1996             if test x${enable_threads} = x; then
1997                 enable_threads=$have_thread_h
1998             fi
1999         fi
2000         if test x${enable_threads} = xyes; then
2001             if test x${have_pthread_h} = xyes; then
2002                 thread_file='posix'
2003             else
2004                 thread_file='solaris'
2005             fi
2006         fi
2007         use_fixproto=no
2008         ;;
2009 sparc-*-sysv4*)
2010         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sysv4-only.h"
2011         tmake_file=t-svr4
2012         extra_parts="crtbegin.o crtend.o"
2013         ;;
2014 sparclite-*-coff*)
2015         tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
2016         tmake_file=sparc/t-sparclite
2017         ;;
2018 sparclite-*-elf*)
2019         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"
2020         tmake_file="sparc/t-sparclite sparc/t-crtfm"
2021         extra_parts="crtbegin.o crtend.o"
2022         ;;
2023 sparc86x-*-elf*)
2024         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"
2025         tmake_file="sparc/t-sp86x sparc/t-crtfm"
2026         extra_parts="crtbegin.o crtend.o"
2027         ;;
2028 sparc64-*-aout*)
2029         tm_file="sparc/sparc.h sparc/aout.h sparc/sp64-aout.h"
2030         ;;
2031 sparc64-*-elf*)
2032         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
2033         tmake_file="${tmake_file} sparc/t-crtfm"
2034         extra_parts="crtbegin.o crtend.o"
2035         ;;
2036 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2037         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2038         tmake_file="${tmake_file} sparc/t-crtfm"
2039         case "x$with_cpu" in
2040                 xultrasparc) ;;
2041                 x) with_cpu=ultrasparc ;;
2042                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2043         esac
2044         need_64bit_hwint=yes
2045         use_fixproto=no
2046         ;;
2047 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
2048         tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
2049         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
2050         use_fixproto=no
2051         ;;
2052 sparc64-*-netbsd*)
2053         tmake_file="${tmake_file} sparc/t-netbsd64"
2054         tm_file="sparc/biarch64.h ${tm_file}"
2055         tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2056         use_fixproto=no
2057         ;;
2058 strongarm-*-elf*)
2059         tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2060         tmake_file=arm/t-strongarm-elf
2061         out_file=arm/arm.c
2062         md_file=arm/arm.md
2063         extra_modes=arm/arm-modes.def
2064         ;;
2065 strongarm-*-pe)
2066         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"
2067         tmake_file=arm/t-strongarm-pe
2068         out_file=arm/arm.c
2069         md_file=arm/arm.md
2070         extra_modes=arm/arm-modes.def
2071         extra_objs=pe.o
2072         ;;
2073 strongarm-*-kaos*)
2074         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"
2075         tmake_file=arm/t-strongarm-elf
2076         out_file=arm/arm.c
2077         md_file=arm/arm.md
2078         extra_modes=arm/arm-modes.def
2079         ;;
2080 v850e1-*-*)
2081         target_cpu_default="TARGET_CPU_v850e1"
2082         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2083         tm_p_file=v850/v850-protos.h
2084         tmake_file=v850/t-v850e
2085         md_file=v850/v850.md
2086         out_file=v850/v850.c
2087         if test x$stabs = xyes
2088         then
2089                 tm_file="${tm_file} dbx.h"
2090         fi
2091         use_collect2=no
2092         c_target_objs="v850-c.o"
2093         cxx_target_objs="v850-c.o"
2094         ;;
2095 v850e-*-*)
2096         target_cpu_default="TARGET_CPU_v850e"
2097         tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2098         tm_p_file=v850/v850-protos.h
2099         tmake_file=v850/t-v850e
2100         md_file=v850/v850.md
2101         out_file=v850/v850.c
2102         if test x$stabs = xyes
2103         then
2104                 tm_file="${tm_file} dbx.h"
2105         fi
2106         use_collect2=no
2107         c_target_objs="v850-c.o"
2108         cxx_target_objs="v850-c.o"
2109         ;;
2110 v850-*-*)
2111         target_cpu_default="TARGET_CPU_generic"
2112         tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2113         tmake_file=v850/t-v850
2114         if test x$stabs = xyes
2115         then
2116                 tm_file="${tm_file} dbx.h"
2117         fi
2118         use_collect2=no
2119         c_target_objs="v850-c.o"
2120         cxx_target_objs="v850-c.o"
2121         ;;
2122 vax-*-bsd*)                     # VAXen running BSD
2123         tm_file="${tm_file} vax/bsd.h"
2124         use_collect2=yes
2125         ;;
2126 vax-*-sysv*)                    # VAXen running system V
2127         tm_file="${tm_file} vax/vaxv.h"
2128         ;;
2129 vax-*-netbsdelf*)
2130         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2131         use_fixproto=no
2132         ;;
2133 vax-*-netbsd*)
2134         tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2135         tmake_file=t-netbsd
2136         extra_parts=""
2137         use_collect2=yes
2138         use_fixproto=no
2139         ;;
2140 vax-*-openbsd*)
2141         tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
2142         use_collect2=yes
2143         use_fixproto=no
2144         ;;
2145 vax-*-ultrix*)                  # VAXen running ultrix
2146         tm_file="${tm_file} vax/ultrix.h"
2147         ;;
2148 vax-*-*)                        # VAX default entry
2149         ;;
2150 xscale-*-elf)
2151         tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2152         tmake_file=arm/t-xscale-elf
2153         out_file=arm/arm.c
2154         md_file=arm/arm.md
2155         extra_modes=arm/arm-modes.def
2156         ;;
2157 xscale-*-coff)
2158         tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
2159         tmake_file=arm/t-xscale-coff
2160         out_file=arm/arm.c
2161         md_file=arm/arm.md
2162         extra_modes=arm/arm-modes.def
2163         ;;
2164 xstormy16-*-elf)
2165         # For historical reasons, the target files omit the 'x'.
2166         tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
2167         tm_p_file=stormy16/stormy16-protos.h
2168         md_file=stormy16/stormy16.md
2169         out_file=stormy16/stormy16.c
2170         tmake_file="stormy16/t-stormy16"
2171         extra_parts="crtbegin.o crtend.o"
2172         ;;
2173 xtensa-*-elf*)
2174         tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2175         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2176         use_fixproto=no
2177         ;;
2178 xtensa-*-linux*)
2179         tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2180         tmake_file="t-slibgcc-elf-ver t-linux xtensa/t-xtensa xtensa/t-linux"
2181         use_fixproto=no
2182         ;;
2183 am33_2.0-*-linux*)
2184         tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h mn10300/linux.h"
2185         tmake_file="t-linux mn10300/t-linux"
2186         gas=yes gnu_ld=yes
2187         if test x$enable_threads = xyes; then
2188                 thread_file='posix'
2189         fi
2190         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2191         use_collect2=no
2192         use_fixproto=no
2193         ;;
2194 *)
2195         echo "*** Configuration ${target} not supported" 1>&2
2196         exit 1
2197         ;;
2198 esac
2199
2200 # Support for --with-cpu and related options (and a few unrelated options,
2201 # too).
2202 case ${with_cpu} in
2203   yes | no)
2204     echo "--with-cpu must be passed a value" 1>&2
2205     exit 1
2206     ;;
2207 esac
2208
2209 # If there is no $with_cpu option, try to infer one from ${target}.
2210 # This block sets nothing except for with_cpu.
2211 if test x$with_cpu = x ; then
2212   case ${target} in
2213     ep9312-*-*)
2214       # A Cirrus ARM variant.
2215       with_cpu="ep9312"
2216       ;;
2217     i486-*-*)
2218       with_cpu=i486
2219       ;;
2220     i586-*-*)
2221       case $target_alias in
2222         k6_2-*)
2223           with_cpu=k6-2
2224           ;;
2225         k6_3-*)
2226           with_cpu=k6-3
2227           ;;
2228         k6-*)
2229           with_cpu=k6
2230           ;;
2231         pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2232           with_cpu=pentium-mmx
2233           ;;
2234         *)
2235           with_cpu=pentium
2236           ;;
2237       esac
2238       ;;
2239     i686-*-* | i786-*-*)
2240       case $target_alias in
2241         k8-*)
2242           with_cpu=k8
2243           ;;
2244         athlon_xp-*|athlon_mp-*|athlon_4-*)
2245           with_cpu=athlon-4
2246           ;;
2247         athlon_tbird-*|athlon-*)
2248           with_cpu=athlon
2249           ;;
2250         pentium2-*)
2251           with_cpu=pentium2
2252           ;;
2253         pentium3-*)
2254           with_cpu=pentium3
2255           ;;
2256         pentium4-*)
2257           with_cpu=pentium4
2258           ;;
2259         *)
2260           with_cpu=pentiumpro
2261           ;;
2262       esac
2263       ;;
2264     x86_64-*-*)
2265       with_cpu=k8
2266       ;;
2267     alphaev6[78]*-*-*)
2268       with_cpu=ev67
2269       ;;
2270     alphaev6*-*-*)
2271       with_cpu=ev6
2272       ;;
2273     alphapca56*-*-*)
2274       with_cpu=pca56
2275       ;;
2276     alphaev56*-*-*)
2277       with_cpu=ev56
2278       ;;
2279     alphaev5*-*-*)
2280       with_cpu=ev5
2281       ;;
2282     sparc*-*-*)
2283       with_cpu="`echo ${target} | sed 's/-.*$//'`"
2284       if [ x$with_cpu = xsparc64 ]; then
2285         with_cpu=v9
2286       fi
2287       ;;
2288   esac
2289 fi
2290
2291         # Similarly for --with-schedule.
2292         if test x$with_schedule = x; then
2293                 case ${target} in
2294                 hppa1* | parisc1*)
2295                         # Override default PA8000 scheduling model.
2296                         with_schedule=7100LC
2297                         ;;
2298                 esac
2299         fi
2300
2301         # Validate and mark as valid any --with options supported
2302         # by this target.  In order to use a particular --with option
2303         # you must list it in supported_defaults; validating the value
2304         # is optional.  This case statement should set nothing besides
2305         # supported_defaults.
2306
2307         supported_defaults=
2308         case "${target}" in
2309         alpha*-*-*)
2310                 supported_defaults="cpu tune"
2311                 for which in cpu tune; do
2312                         eval "val=\$with_$which"
2313                         case "$val" in
2314                         "" \
2315                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
2316                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
2317                         | 21264a)
2318                                 ;;
2319                         *)
2320                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
2321                                 exit 1
2322                                 ;;
2323                         esac
2324                 done
2325                 ;;
2326
2327         arm*-*-*)
2328                 supported_defaults="arch cpu float tune"
2329                 for which in cpu tune; do
2330                         eval "val=\$with_$which"
2331                         case "$val" in
2332                         "" \
2333                         | arm[236789] | arm250 | arm[67][01]0 \
2334                         | arm60 | arm620 | arm7d | arm7di \
2335                         | arm7m | arm7dm | arm7dmi | arm[79]tdmi \
2336                         | arm70 | arm700i | arm710t | arm720 \
2337                         | arm720t | arm740t | arm710c | arm920 \
2338                         | arm920t | arm940t | arm9e | arm10tdmi \
2339                         | arm7100 | arm7500 | arm7500fe | arm810 \
2340                         | arm1020t \
2341                         | xscale | iwmmxt \
2342                         | ep9312 \
2343                         | strongarm | strongarm110 | strongarm11[01]0)
2344                                 # OK
2345                                 ;;
2346                         *)
2347                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
2348                                 exit 1
2349                                 ;;
2350                         esac
2351                 done
2352
2353                 case "$with_arch" in
2354                 "" \
2355                 | armv[2345] | armv2a | armv3m | armv4t | armv5t \
2356                 | armv5te | ep9312)
2357                         # OK
2358                         ;;
2359                 *)
2360                         echo "Unknown arch used in --with-arch=$with_arch" 1>&2
2361                         exit 1
2362                         ;;
2363                 esac
2364
2365                 case "$with_float" in
2366                 "" \
2367                 | soft | hard)
2368                         # OK
2369                         ;;
2370                 *)
2371                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2372                         exit 1
2373                         ;;
2374                 esac
2375
2376                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
2377                         echo "Warning: --with-arch overrides --with-cpu" 1>&2
2378                 fi
2379                 ;;
2380
2381         hppa*-*-* | parisc*-*-*)
2382                 supported_defaults="arch schedule"
2383
2384                 case "$with_arch" in
2385                 "" | 1.0 | 1.1 | 2.0)
2386                         # OK
2387                         ;;
2388                 *)
2389                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
2390                         exit 1
2391                         ;;
2392                 esac
2393
2394                 case "$with_schedule" in
2395                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
2396                         # OK
2397                         ;;
2398                 *)
2399                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
2400                         exit 1
2401                         ;;
2402                 esac
2403                 ;;
2404
2405         i[34567]86-*-* | x86_64-*-*)
2406                 supported_defaults="arch cpu tune"
2407                 for which in arch cpu tune; do
2408                         eval "val=\$with_$which"
2409                         case ${val} in
2410                         "" | i386 | i486 \
2411                         | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
2412                         | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
2413                         | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
2414                         | athlon-4 | athlon-xp | athlon-mp | k8)
2415                                 # OK
2416                                 ;;
2417                         *)
2418                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
2419                                 exit 1
2420                                 ;;
2421                         esac
2422                 done
2423                 ;;
2424
2425         mips*-*-*)
2426                 supported_defaults="abi arch float tune"
2427
2428                 case ${with_float} in
2429                 "" | soft | hard)
2430                         # OK
2431                         ;;
2432                 *)
2433                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2434                         exit 1
2435                         ;;
2436                 esac
2437
2438                 case ${with_abi} in
2439                 "" | 32 | o64 | n32 | 64 | eabi)
2440                         # OK
2441                         ;;
2442                 *)
2443                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
2444                         exit 1
2445                         ;;
2446                 esac
2447                 ;;
2448
2449         powerpc*-*-* | rs6000-*-*)
2450                 supported_defaults="cpu float tune"
2451
2452                 for which in cpu tune; do
2453                         eval "val=\$with_$which"
2454                         case ${val} in
2455                         "" | default32 | default64 | common \
2456                         | power | power2 | power3 | power4 \
2457                         | powerpc | powerpc64 \
2458                         | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
2459                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 505 \
2460                         | 601 | 602 | 603 | 603e | ec603e | 604 \
2461                         | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
2462                         | 8540 | 801 | 821 | 823 | 860 | 970)
2463                                 # OK
2464                                 ;;
2465                         *)
2466                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
2467                                 exit 1
2468                                 ;;
2469                         esac
2470                 done
2471                 ;;
2472
2473         s390*-*-*)
2474                 supported_defaults="arch mode tune"
2475
2476                 for which in arch tune; do
2477                         eval "val=\$with_$which"
2478                         case ${val} in
2479                         "" | g5 | g6 | z900 | z990)
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                 case ${with_mode} in
2490                 "" | esa | zarch)
2491                         # OK
2492                         ;;
2493                 *)
2494                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
2495                         exit 1
2496                         ;;
2497                 esac
2498                 ;;
2499
2500         sparc*-*-*)
2501                 supported_defaults="cpu float tune"
2502
2503                 for which in cpu tune; do
2504                         eval "val=\$with_$which"
2505                         case ${val} in
2506                         "" | sparc | sparcv9 | sparc64 | sparc86x \
2507                         | v7 | cypress | v8 | supersparc | sparclite | f930 \
2508                         | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
2509                         | v9 | ultrasparc | ultrasparc3)
2510                                 # OK
2511                                 ;;
2512                         *)
2513                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
2514                                 exit 1
2515                                 ;;
2516                         esac
2517                 done
2518
2519                 case ${with_float} in
2520                 "" | soft | hard)
2521                         # OK
2522                         ;;
2523                 *)
2524                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2525                         exit 1
2526                         ;;
2527                 esac
2528                 ;;
2529
2530         v850*-*-*)
2531                 supported_defaults=cpu
2532                 case ${with_cpu} in
2533                 "" | v850e | v850e1)
2534                         # OK
2535                         ;;
2536                 *)
2537                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2538                         exit 1
2539                         ;;
2540                 esac
2541                 ;;
2542         esac
2543
2544         # Set some miscellaneous flags for particular targets.
2545         target_cpu_default2=
2546         case ${target} in
2547         alpha*-*-*)
2548                 if test x$gas = xyes
2549                 then
2550                         target_cpu_default2="MASK_GAS"
2551                 fi
2552                 ;;
2553
2554         arm*-*-*)
2555                 case "x$with_cpu" in
2556                 x)
2557                         # The most generic
2558                         target_cpu_default2="TARGET_CPU_generic"
2559                         ;;
2560
2561                 *)
2562                         target_cpu_default2="TARGET_CPU_$with_cpu"
2563                         ;;
2564                 esac
2565                 ;;
2566
2567         hppa*-*-* | parisc*-*-*)
2568                 if test x$gas = xyes
2569                 then
2570                         target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2571                 fi
2572                 ;;
2573
2574         mips*-*-*)
2575                 case ${target} in
2576                 mips*-*-ecoff* | mips*-*-elf*)
2577                         if test x$gas = xyes
2578                         then
2579                                 if test x$gnu_ld = xyes
2580                                 then
2581                                         target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2582                                 else
2583                                         target_cpu_default2="MASK_GAS"
2584                                 fi
2585                         fi
2586                         ;;
2587                 mips*-*-*)
2588                         if test x$gas = xyes
2589                         then
2590                                 target_cpu_default2="MASK_GAS"
2591                         fi
2592                         ;;
2593                 esac
2594                 case ${target} in
2595                         mips*el-*-*)
2596                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2597                                 ;;
2598                 esac
2599                 case $tm_file in
2600                         *mips/elf.h* | *mips/elf64.h*)
2601                                 tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2602                                 ;;
2603                 esac
2604                 if test "x$enable_gofast" = xyes
2605                 then
2606                         tm_defines="INIT_SUBTARGET_OPTABS=INIT_GOFAST_OPTABS $tm_defines"
2607                         tm_file="gofast.h $tm_file"
2608                         tmake_file="mips/t-gofast $tmake_file"
2609                 else
2610                         tmake_file="mips/t-mips $tmake_file"
2611                 fi
2612                 ;;
2613
2614         powerpc*-*-* | rs6000-*-*)
2615                 if test x$enable_altivec = xyes
2616                 then
2617                         tm_file="$tm_file rs6000/altivec-defs.h"
2618                 fi
2619                 # FIXME: The PowerPC port uses the value set at compile time,
2620                 # although it's only cosmetic.
2621                 if test "x$with_cpu" != x
2622                 then
2623                         target_cpu_default2="\\\"$with_cpu\\\""
2624                 fi
2625                 out_file=rs6000/rs6000.c
2626                 c_target_objs="${c_target_objs} rs6000-c.o"
2627                 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2628                 tmake_file="rs6000/t-rs6000 ${tmake_file}"
2629                 ;;
2630
2631         sparc*-*-*)
2632                 # Some standard aliases.
2633                 case x$with_cpu in
2634                 xsparc)
2635                         with_cpu=v7
2636                         ;;
2637                 xsparc86x)
2638                         with_cpu=sparclite86x
2639                         ;;
2640                 xsparcv9 | xsparc64)
2641                         with_cpu=v9
2642                         ;;
2643                 esac
2644
2645                 # The Sparc port checks this value at compile-time.
2646                 target_cpu_default2="TARGET_CPU_$with_cpu"
2647                 ;;
2648         v850*-*-*)
2649                 # FIXME: The v850 is "special" in that it does not support
2650                 # runtime CPU selection, only --with-cpu.
2651                 case "x$with_cpu" in
2652                 x)
2653                         ;;
2654                 xv850e)
2655                         target_cpu_default2="TARGET_CPU_$with_cpu"
2656                         ;;
2657                 esac
2658                 ;;
2659         esac
2660
2661         t=
2662         all_defaults="abi cpu arch tune schedule float mode"
2663         for option in $all_defaults
2664         do
2665                 eval "val=\$with_$option"
2666                 if test -n "$val"; then
2667                         case " $supported_defaults " in
2668                         *" $option "*)
2669                                 ;;
2670                         *)
2671                                 echo "This target does not support --with-$option." 2>&1
2672                                 exit 1
2673                                 ;;
2674                         esac
2675
2676                         if test "x$t" = x
2677                         then
2678                                 t="{ \"$option\", \"$val\" }"
2679                         else
2680                                 t="${t}, { \"$option\", \"$val\" }"
2681                         fi
2682                 fi
2683         done
2684         if test "x$t" = x
2685         then
2686                 configure_default_options="{ { NULL, NULL} }"
2687         else
2688                 configure_default_options="{ ${t} }"
2689         fi
2690
2691         if test "$target_cpu_default2" != ""
2692         then
2693                 if test "$target_cpu_default" != ""
2694                 then
2695                         target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2696                 else
2697                         target_cpu_default=$target_cpu_default2
2698                 fi
2699         fi