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