OSDN Git Service

* tree-eh.c (lower_try_finally_switch): Create the label along with
[pf3gnuchains/gcc-fork.git] / gcc / config.gcc
1 # GCC target-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4
5 #This file is part of GCC.
6
7 #GCC is free software; you can redistribute it and/or modify it under
8 #the terms of the GNU General Public License as published by the Free
9 #Software Foundation; either version 3, or (at your option) any later
10 #version.
11
12 #GCC is distributed in the hope that it will be useful, but WITHOUT
13 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 #for more details.
16
17 #You should have received a copy of the GNU General Public License
18 #along with GCC; see the file COPYING3.  If not see
19 #<http://www.gnu.org/licenses/>.
20
21 # This is the GCC target-specific configuration file
22 # where a configuration type is mapped to different system-specific
23 # definitions and files.  This is invoked by the autoconf-generated
24 # configure script.  Putting it in a separate shell file lets us skip
25 # running autoconf when modifying target-specific information.
26
27 # When you change the cases in the OS or target switches, consider
28 # updating ../libgcc/config.host also.
29
30 # This file switches on the shell variable ${target}, and also uses the
31 # following shell variables:
32 #
33 #  with_*               Various variables as set by configure.
34 #
35 #  enable_threads       Either the name, yes or no depending on whether
36 #                       threads support was requested.
37 #
38 #  default_use_cxa_atexit
39 #                         The default value for the $enable___cxa_atexit
40 #                       variable.  enable___cxa_atexit needs to be set to
41 #                       "yes" for the correct operation of C++ destructors
42 #                       but it relies upon the presence of a non-standard C
43 #                       library function called __cxa_atexit.
44 #                         Since not all C libraries provide __cxa_atexit the
45 #                       default value of $default_use_cxa_atexit is set to
46 #                       "no" except for targets which are known to be OK.
47 #
48 #  default_gnu_indirect_function
49 #                       The default value for the $enable_gnu_indirect_function
50 #                       variable.  enable_gnu_indirect_function relies
51 #                       upon the presence of a non-standard gnu ifunc support
52 #                       in the assembler, linker and dynamic linker.
53 #                       Since not all libraries provide the dynamic linking
54 #                       support, the default value of
55 #                       $default_gnu_indirect_function is set to
56 #                       "no" except for targets which are known to be OK.
57 #
58 #  gas_flag             Either yes or no depending on whether GNU as was
59 #                       requested.
60 #
61 #  gnu_ld_flag          Either yes or no depending on whether GNU ld was
62 #                       requested.
63
64 # This file sets the following shell variables for use by the
65 # autoconf-generated configure script:
66 #
67 #  cpu_type             The name of the cpu, if different from the first
68 #                       chunk of the canonical target name.
69 #
70 #  tm_defines           List of target macros to define for all compilations.
71 #
72 #  tm_file              A list of target macro files, if different from
73 #                       "$cpu_type/$cpu_type.h". Usually it's constructed
74 #                       per target in a way like this:
75 #                       tm_file="${tm_file} dbxelf.h elfos.h ${cpu_type.h}/elf.h"
76 #                       Note that the preferred order is:
77 #                       - specific target header "${cpu_type}/${cpu_type.h}"
78 #                       - generic headers like dbxelf.h elfos.h, etc.
79 #                       - specializing target headers like ${cpu_type.h}/elf.h
80 #                       This helps to keep OS specific stuff out of the CPU
81 #                       defining header ${cpu_type}/${cpu_type.h}.
82 #
83 #                       It is possible to include automatically-generated
84 #                       build-directory files by prefixing them with "./".
85 #                       All other files should relative to $srcdir/config.
86 #
87 #  tm_p_file            Location of file with declarations for functions
88 #                       in $out_file.
89 #
90 #  out_file             The name of the machine description C support
91 #                       file, if different from "$cpu_type/$cpu_type.c".
92 #
93 #  md_file              The name of the machine-description file, if
94 #                       different from "$cpu_type/$cpu_type.md".
95 #
96 #  tmake_file           A list of machine-description-specific
97 #                       makefile-fragments, if different from
98 #                       "$cpu_type/t-$cpu_type".
99 #
100 #  extra_modes          The name of the file containing a list of extra
101 #                       machine modes, if necessary and different from
102 #                       "$cpu_type/$cpu_type-modes.def".
103 #
104 #  extra_objs           List of extra objects that should be linked into
105 #                       the compiler proper (cc1, cc1obj, cc1plus)
106 #                       depending on target.
107 #
108 #  extra_gcc_objs       List of extra objects that should be linked into
109 #                       the compiler driver (gcc) depending on target.
110 #
111 #  extra_headers        List of used header files from the directory
112 #                       config/${cpu_type}.
113 #
114 #  user_headers_inc_next_pre
115 #                       List of header file names of internal gcc header
116 #                       files, which should be prefixed by an include_next.
117 #  user_headers_inc_next_post
118 #                       List of header file names of internal gcc header
119 #                       files, which should be postfixed by an include_next.
120 #  use_gcc_tgmath       If set, add tgmath.h to the list of used header
121 #                       files.
122 #
123 #  use_gcc_stdint       If "wrap", install a version of stdint.h that
124 #                       wraps the system's copy for hosted compilations;
125 #                       if "provide", provide a version of systems without
126 #                       such a system header; otherwise "none", do not
127 #                       provide such a header at all.
128 #
129 #  extra_passes         List of extra executables compiled for this target
130 #                       machine, used for compiling from source to object.
131 #
132 #  extra_parts          List of extra object files that should be compiled
133 #                       for this target machine.
134 #
135 #  extra_programs       Like extra_passes, but these are used when linking.
136 #
137 #  extra_options        List of target-dependent .opt files.
138 #
139 #  c_target_objs        List of extra target-dependent objects that be
140 #                       linked into the C compiler only.
141 #
142 #  cxx_target_objs      List of extra target-dependent objects that be
143 #                       linked into the C++ compiler only.
144 #
145 #  fortran_target_objs  List of extra target-dependent objects that be
146 #                       linked into the fortran compiler only.
147 #
148 #  target_gtfiles       List of extra source files with type information.
149 #
150 #  xm_defines           List of macros to define when compiling for the
151 #                       target machine.
152 #
153 #  xm_file              List of files to include when compiling for the
154 #                       target machine.
155 #
156 #  use_collect2         Set to yes or no, depending on whether collect2
157 #                       will be used.
158 #
159 #  target_cpu_default   Set to override the default target model.
160 #
161 #  gdb_needs_out_file_path
162 #                       Set to yes if gdb needs a dir command with
163 #                       `dirname $out_file`.
164 #
165 #  thread_file          Set to control which thread package to use.
166 #
167 #  gas                  Set to yes or no depending on whether the target
168 #                       system normally uses GNU as.
169 #
170 #  need_64bit_hwint     Set to yes if HOST_WIDE_INT must be 64 bits wide
171 #                       for this target.  This is true if this target
172 #                       supports "long" or "wchar_t" wider than 32 bits,
173 #                       or BITS_PER_WORD is wider than 32 bits.
174 #                       The setting made here must match the one made in
175 #                       other locations such as libcpp/configure.ac
176 #
177 #  configure_default_options
178 #                       Set to an initializer for configure_default_options
179 #                       in configargs.h, based on --with-cpu et cetera.
180
181 # The following variables are used in each case-construct to build up the
182 # outgoing variables:
183 #
184 #  gnu_ld               Set to yes or no depending on whether the target
185 #                       system normally uses GNU ld.
186 #
187 #  target_has_targetcm  Set to yes or no depending on whether the target
188 #                       has its own definition of targetcm.
189
190 out_file=
191 tmake_file=
192 extra_headers=
193 user_headers_inc_next_pre=
194 user_headers_inc_next_post=
195 use_gcc_tgmath=yes
196 use_gcc_stdint=none
197 extra_passes=
198 extra_parts=
199 extra_programs=
200 extra_objs=
201 extra_gcc_objs=
202 extra_options=
203 c_target_objs=
204 cxx_target_objs=
205 fortran_target_objs=
206 target_has_targetcm=no
207 tm_defines=
208 xm_defines=
209 # Set this to force installation and use of collect2.
210 use_collect2=
211 # Set this to override the default target model.
212 target_cpu_default=
213 # Set this if gdb needs a dir command with `dirname $out_file`
214 gdb_needs_out_file_path=
215 # Set this to control which thread package will be used.
216 thread_file=
217 # Reinitialize these from the flag values every loop pass, since some
218 # configure entries modify them.
219 gas="$gas_flag"
220 gnu_ld="$gnu_ld_flag"
221 default_use_cxa_atexit=no
222 default_gnu_indirect_function=no
223 target_gtfiles=
224 need_64bit_hwint=
225 need_64bit_isa=
226
227 # Don't carry these over build->host->target.  Please.
228 xm_file=
229 md_file=
230
231 # Obsolete configurations.
232 case ${target} in
233    i[34567]86-*-interix3*               \
234  | score-*                              \
235  | *-*-solaris2.8*                      \
236  )
237     if test "x$enable_obsolete" != xyes; then
238       echo "*** Configuration ${target} is obsolete." >&2
239       echo "*** Specify --enable-obsolete to build it anyway." >&2
240       echo "*** Support will be REMOVED in the next major release of GCC," >&2
241       echo "*** unless a maintainer comes forward." >&2
242       exit 1
243     fi;;
244 esac
245
246 # Unsupported targets list.  Do not put an entry in this list unless
247 # it would otherwise be caught by a more permissive pattern.  The list
248 # should be in alphabetical order.
249 case ${target} in
250    i[34567]86-go32-*                    \
251  | i[34567]86-*-go32*                   \
252  | m68k-*-uclinuxoldabi*                \
253  | mips64orion*-*-rtems*                \
254  | pdp11-*-bsd                          \
255  | sparc-hal-solaris2*                  \
256  | thumb-*-*                            \
257  | *-*-freebsd[12] | *-*-freebsd[12].*  \
258  | *-*-freebsd*aout*                    \
259  | *-*-linux*aout*                      \
260  | *-*-linux*coff*                      \
261  | *-*-linux*libc1*                     \
262  | *-*-linux*oldld*                     \
263  | *-*-rtemsaout*                       \
264  | *-*-rtemscoff*                       \
265  | *-*-solaris2.[0-7]                   \
266  | *-*-solaris2.[0-7].*                 \
267  | *-*-sysv*            \
268  | vax-*-vms*                           \
269  )
270         echo "*** Configuration ${target} not supported" 1>&2
271         exit 1
272         ;;
273 esac
274
275 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
276 # updated in each machine entry.  Also set default extra_headers for some
277 # machines.
278 tm_p_file=
279 cpu_type=`echo ${target} | sed 's/-.*$//'`
280 cpu_is_64bit=
281 case ${target} in
282 m32c*-*-*)
283         cpu_type=m32c
284         tmake_file=m32c/t-m32c
285         ;;
286 alpha*-*-*)
287         cpu_type=alpha
288         need_64bit_hwint=yes
289         extra_options="${extra_options} g.opt"
290         ;;
291 am33_2.0-*-linux*)
292         cpu_type=mn10300
293         ;;
294 arm*-*-*)
295         cpu_type=arm
296         extra_headers="mmintrin.h arm_neon.h"
297         c_target_objs="arm-c.o"
298         cxx_target_objs="arm-c.o"
299         extra_options="${extra_options} arm/arm-tables.opt"
300         ;;
301 avr-*-*)
302         cpu_type=avr
303         c_target_objs="avr-c.o"
304         cxx_target_objs="avr-c.o"
305         ;;
306 bfin*-*)
307         cpu_type=bfin
308         ;;
309 crisv32-*)
310         cpu_type=cris
311         ;;
312 frv*)   cpu_type=frv
313         extra_options="${extra_options} g.opt"
314         ;;
315 moxie*) cpu_type=moxie
316         ;;
317 fido-*-*)
318         cpu_type=m68k
319         extra_headers=math-68881.h
320         ;;
321 i[34567]86-*-*)
322         cpu_type=i386
323         c_target_objs="i386-c.o"
324         cxx_target_objs="i386-c.o"
325         extra_options="${extra_options} fused-madd.opt"
326         extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
327                        pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
328                        nmmintrin.h bmmintrin.h fma4intrin.h wmmintrin.h
329                        immintrin.h x86intrin.h avxintrin.h xopintrin.h
330                        ia32intrin.h cross-stdarg.h lwpintrin.h popcntintrin.h
331                        abmintrin.h bmiintrin.h tbmintrin.h"
332         ;;
333 x86_64-*-*)
334         cpu_type=i386
335         c_target_objs="i386-c.o"
336         cxx_target_objs="i386-c.o"
337         extra_options="${extra_options} fused-madd.opt"
338         extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
339                        pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
340                        nmmintrin.h bmmintrin.h fma4intrin.h wmmintrin.h
341                        immintrin.h x86intrin.h avxintrin.h xopintrin.h
342                        ia32intrin.h cross-stdarg.h lwpintrin.h popcntintrin.h
343                        abmintrin.h bmiintrin.h tbmintrin.h"
344         need_64bit_hwint=yes
345         ;;
346 ia64-*-*)
347         extra_headers=ia64intrin.h
348         need_64bit_hwint=yes
349         extra_options="${extra_options} g.opt fused-madd.opt"
350         ;;
351 hppa*-*-*)
352         cpu_type=pa
353         ;;
354 lm32*)
355         extra_options="${extra_options} g.opt"
356         ;;
357 m32r*-*-*)
358         cpu_type=m32r
359         extra_options="${extra_options} g.opt"
360         ;;
361 m68k-*-*)
362         extra_headers=math-68881.h
363         ;;
364 microblaze*-*-*)
365         cpu_type=microblaze
366         extra_options="${extra_options} g.opt"
367         ;;
368 mips*-*-*)
369         cpu_type=mips
370         need_64bit_hwint=yes
371         extra_headers="loongson.h"
372         extra_options="${extra_options} g.opt"
373         ;;
374 picochip-*-*)
375         cpu_type=picochip
376         ;;
377 powerpc*-*-*)
378         cpu_type=rs6000
379         extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h spu2vmx.h vec_types.h si2vmx.h"
380         need_64bit_hwint=yes
381         case x$with_cpu in
382             xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[34567]|xpower6x|xrs64a|xcell|xa2|xe500mc64)
383                 cpu_is_64bit=yes
384                 ;;
385         esac
386         extra_options="${extra_options} g.opt fused-madd.opt"
387         ;;
388 rs6000*-*-*)
389         need_64bit_hwint=yes
390         extra_options="${extra_options} g.opt fused-madd.opt"
391         ;;
392 score*-*-*)
393         cpu_type=score
394         extra_options="${extra_options} g.opt"
395         ;;
396 sparc*-*-*)
397         cpu_type=sparc
398         need_64bit_hwint=yes
399         ;;
400 spu*-*-*)
401         cpu_type=spu
402         need_64bit_hwint=yes
403         ;;
404 s390*-*-*)
405         cpu_type=s390
406         need_64bit_hwint=yes
407         extra_options="${extra_options} fused-madd.opt"
408         ;;
409 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
410 sh[123456789lbe]*-*-* | sh-*-*)
411         cpu_type=sh
412         need_64bit_hwint=yes
413         ;;
414 xtensa*-*-*)
415         extra_options="${extra_options} fused-madd.opt"
416         ;;
417 esac
418
419 tm_file=${cpu_type}/${cpu_type}.h
420 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
421 then
422         tm_p_file=${cpu_type}/${cpu_type}-protos.h
423 fi
424 extra_modes=
425 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
426 then
427         extra_modes=${cpu_type}/${cpu_type}-modes.def
428 fi
429 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}.opt
430 then
431         extra_options="${extra_options} ${cpu_type}/${cpu_type}.opt"
432 fi
433
434 case ${target} in
435 i[34567]86-*-*)
436         if test "x$enable_cld" = xyes; then
437                 tm_defines="${tm_defines} USE_IX86_CLD=1"
438         fi
439         if test "x$enable_frame_pointer" = xyes; then
440                 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
441         fi
442         tm_file="vxworks-dummy.h ${tm_file}"
443         ;;
444 x86_64-*-*)
445         tm_file="i386/biarch64.h ${tm_file}"
446         if test "x$enable_cld" = xyes; then
447                 tm_defines="${tm_defines} USE_IX86_CLD=1"
448         fi
449         if test "x$enable_frame_pointer" = xyes; then
450                 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
451         fi
452         tm_file="vxworks-dummy.h ${tm_file}"
453         ;;
454 esac
455
456 # On a.out targets, we need to use collect2.
457 case ${target} in
458 *-*-*aout*)
459         use_collect2=yes
460         ;;
461 esac
462
463 # Common C libraries.
464 tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3"
465
466 # Common parts for widely ported systems.
467 case ${target} in
468 *-*-darwin*)
469   tmake_file="t-darwin ${cpu_type}/t-darwin"
470   tm_file="${tm_file} darwin.h"
471   case ${target} in
472   *-*-darwin9*)
473     tm_file="${tm_file} darwin9.h"
474     ;;
475   *-*-darwin[12][0-9]*)
476     tm_file="${tm_file} darwin9.h darwin10.h"
477     ;;
478   esac
479   tm_file="${tm_file} ${cpu_type}/darwin.h"
480   tm_p_file="${tm_p_file} darwin-protos.h"
481   target_gtfiles="\$(srcdir)/config/darwin.c"
482   extra_options="${extra_options} darwin.opt"
483   c_target_objs="${c_target_objs} darwin-c.o"
484   cxx_target_objs="${cxx_target_objs} darwin-c.o"
485   fortran_target_objs="darwin-f.o"
486   target_has_targetcm=yes
487   extra_objs="darwin.o"
488   extra_gcc_objs="darwin-driver.o"
489   default_use_cxa_atexit=yes
490   use_gcc_stdint=wrap
491   case ${enable_threads} in
492     "" | yes | posix) thread_file='posix' ;;
493   esac
494   ;;
495 *-*-freebsd*)
496   # This is the generic ELF configuration of FreeBSD.  Later
497   # machine-specific sections may refine and add to this
498   # configuration.
499   #
500   # Due to tm_file entry ordering issues that vary between cpu
501   # architectures, we only define fbsd_tm_file to allow the
502   # machine-specific section to dictate the final order of all
503   # entries of tm_file with the minor exception that components
504   # of the tm_file set here will always be of the form:
505   #
506   # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
507   #
508   # The machine-specific section should not tamper with this
509   # ordering but may order all other entries of tm_file as it
510   # pleases around the provided core setting.
511   gas=yes
512   gnu_ld=yes
513   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
514   fbsd_major=`echo ${target} | sed -e 's/.*freebsd//g' | sed -e 's/\..*//g'`
515   tm_defines="${tm_defines} FBSD_MAJOR=${fbsd_major}"
516   tmake_file="t-slibgcc-elf-ver t-freebsd"
517   case ${enable_threads} in
518     no)
519       fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
520       ;;
521     "" | yes | posix)
522       thread_file='posix'
523       tmake_file="${tmake_file} t-freebsd-thread"
524       # Before 5.0, FreeBSD can't bind shared libraries to -lc
525       # when "optionally" threaded via weak pthread_* checks.
526       case ${target} in
527         *-*-freebsd[34] | *-*-freebsd[34].*)
528           tmake_file="${tmake_file} t-slibgcc-nolc-override"
529           ;;
530       esac
531       ;;
532     *)
533       echo 'Unknown thread configuration for FreeBSD'
534       exit 1
535       ;;
536   esac
537   fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h freebsd-stdint.h"
538   extra_options="$extra_options rpath.opt freebsd.opt"
539   case ${target} in
540     *-*-freebsd[345].*)
541       :;;
542     *)
543       default_use_cxa_atexit=yes;;
544   esac
545   # need_64bit_hwint=yes # system compiler has this for all arch!
546   use_gcc_stdint=wrap
547   ;;
548 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
549   extra_options="$extra_options gnu-user.opt"
550   extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
551   gas=yes
552   gnu_ld=yes
553   case ${enable_threads} in
554     "" | yes | posix) thread_file='posix' ;;
555   esac
556   tmake_file="t-slibgcc-elf-ver t-linux"
557   case $target in
558     *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-kopensolaris*-gnu)
559       :;;
560     *-*-gnu*)
561       tmake_file="$tmake_file t-gnu";;
562   esac
563   # glibc / uclibc / bionic switch.
564   # uclibc and bionic aren't usable for GNU/Hurd and neither for GNU/k*BSD.
565   case $target in
566     *linux*)
567       extra_options="$extra_options linux.opt";;
568     *)
569       tm_defines="$tm_defines SINGLE_LIBC";;
570   esac
571   case $target in
572     *-*-*android*)
573       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_BIONIC"
574       ;;
575     *-*-*uclibc*)
576       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC"
577       ;;
578     *)
579       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC"
580       ;;
581   esac
582   # Assume that glibc or uClibc or Bionic are being used and so __cxa_atexit
583   # is provided.
584   default_use_cxa_atexit=yes
585   use_gcc_tgmath=no
586   use_gcc_stdint=wrap
587   # Add Android userspace support to Linux targets.
588   case $target in
589     *linux*)
590       tm_file="$tm_file linux-android.h"
591       extra_options="$extra_options linux-android.opt"
592       ;;
593   esac
594   # Enable compilation for Android by default for *android* targets.
595   case $target in
596     *-*-*android*)
597       tm_defines="$tm_defines ANDROID_DEFAULT=1"
598       ;;
599     *)
600       tm_defines="$tm_defines ANDROID_DEFAULT=0"
601       ;;
602   esac
603   ;;
604 *-*-netbsd*)
605   tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
606   gas=yes
607   gnu_ld=yes
608
609   # NetBSD 2.0 and later get POSIX threads enabled by default.
610   # Allow them to be explicitly enabled on any other version.
611   case ${enable_threads} in
612     "")
613       case ${target} in
614         *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
615           thread_file='posix'
616           tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
617           ;;
618       esac
619       ;;
620     yes | posix)
621       thread_file='posix'
622       tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
623       ;;
624   esac
625
626   # NetBSD 1.7 and later are set up to use GCC's crtstuff for
627   # ELF configurations.  We will clear extra_parts in the
628   # a.out configurations.
629   case ${target} in
630     *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
631       extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
632       ;;
633   esac
634
635   # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
636   # default (unless overridden by --disable-__cxa_atexit).
637   case ${target} in
638     *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
639       default_use_cxa_atexit=yes
640       ;;
641   esac
642   ;;
643 *-*-openbsd*)
644   tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
645   case ${enable_threads} in
646     yes)
647       thread_file='posix'
648       tmake_file="${tmake_file} t-openbsd-thread"
649       ;;
650   esac
651   case ${target} in
652     *-*-openbsd2.*|*-*-openbsd3.[012])
653       tm_defines="${tm_defines} HAS_LIBC_R=1" ;;
654   esac
655   ;;
656 *-*-rtems*)
657   case ${enable_threads} in
658     yes) thread_file='rtems' ;;
659   esac
660   extra_options="${extra_options} rtems.opt"
661   use_gcc_stdint=wrap
662   ;;
663 *-*-uclinux*)
664   extra_options="$extra_options gnu-user.opt"
665   use_gcc_stdint=wrap
666   tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC SINGLE_LIBC"
667   ;;
668 *-*-solaris2*)
669   extra_options="${extra_options} sol2.opt"
670   ;;
671 *-*-*vms*)
672   extra_options="${extra_options} vms/vms.opt"
673   xmake_file=vms/x-vms
674   tmake_file="vms/t-vms"
675   if test x$gnu_ld != xyes; then
676     # Build wrappers for native case.
677     extra_programs="ld\$(exeext) ar\$(exeext)"
678     tmake_file="$tmake_file vms/t-vmsnative"
679   fi
680   ;;
681 *-*-vxworks*)
682   tmake_file=t-vxworks
683   xm_defines=POSIX
684   extra_options="${extra_options} vxworks.opt"
685   extra_objs=vxworks.o
686   case ${enable_threads} in
687     no) ;;
688     "" | yes | vxworks) thread_file='vxworks' ;;
689     *) echo 'Unknown thread configuration for VxWorks'; exit 1 ;;
690   esac
691   ;;
692 *-*-elf)
693   # Assume that newlib is being used and so __cxa_atexit is provided.
694   default_use_cxa_atexit=yes
695   use_gcc_stdint=wrap
696   ;;
697 esac
698
699 case ${target} in
700 # Support site-specific machine types.
701 *local*)
702         rest=`echo ${target} | sed -e "s/$cpu_type-//"`
703         tm_file=${cpu_type}/$rest.h
704         if test -f $srcdir/config/${cpu_type}/xm-$rest.h
705         then xm_file=${cpu_type}/xm-$rest.h
706         fi
707         if test -f $srcdir/config/${cpu_type}/t-$rest
708         then tmake_file=${cpu_type}/t-$rest
709         fi
710         ;;
711 alpha*-*-linux*)
712         tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h glibc-stdint.h"
713         extra_options="${extra_options} alpha/elf.opt"
714         target_cpu_default="MASK_GAS"
715         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee alpha/t-linux"
716         ;;
717 alpha*-*-freebsd*)
718         tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
719         extra_options="${extra_options} alpha/elf.opt"
720         target_cpu_default="MASK_GAS"
721         tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
722         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
723         ;;
724 alpha*-*-netbsd*)
725         tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
726         extra_options="${extra_options} netbsd.opt netbsd-elf.opt \
727                        alpha/elf.opt"
728         target_cpu_default="MASK_GAS"
729         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
730         ;;
731 alpha*-*-openbsd*)
732         tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
733         tm_file="alpha/alpha.h alpha/elf.h openbsd.h openbsd-stdint.h alpha/openbsd.h openbsd-libpthread.h"
734         extra_options="${extra_options} openbsd.opt alpha/elf.opt"
735         # default x-alpha is only appropriate for dec-osf.
736         target_cpu_default="MASK_GAS"
737         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
738         ;;
739 alpha*-dec-osf5.1*)
740         if test x$stabs = xyes
741         then
742                 tm_file="${tm_file} dbx.h"
743         fi
744         if test x$gas != xyes
745         then
746                 extra_passes="mips-tfile mips-tdump"
747         fi
748         use_collect2=yes
749         tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf5"
750         tm_file="${tm_file} alpha/osf5.h"
751         tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
752         extra_options="${extra_options} rpath.opt alpha/osf5.opt"
753         extra_headers=va_list.h
754         use_gcc_stdint=provide
755         case ${enable_threads} in
756           "" | yes | posix)
757             thread_file='posix'
758             tmake_file="${tmake_file} alpha/t-osf-pthread"
759             ;;
760         esac
761         ;;
762 alpha64-dec-*vms*)
763         tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
764         xm_file="alpha/xm-vms.h vms/xm-vms64.h"
765         tmake_file="${tmake_file} alpha/t-alpha vms/t-vms64 alpha/t-vms alpha/t-ieee"
766         ;;
767 alpha*-dec-*vms*)
768         tm_file="${tm_file} alpha/vms.h"
769         xm_file="alpha/xm-vms.h"
770         tmake_file="${tmake_file} alpha/t-alpha alpha/t-vms alpha/t-ieee"
771         ;;
772 arm-wrs-vxworks)
773         tm_file="elfos.h arm/elf.h arm/aout.h ${tm_file} vx-common.h vxworks.h arm/vxworks.h"
774         extra_options="${extra_options} arm/vxworks.opt"
775         tmake_file="${tmake_file} arm/t-arm arm/t-vxworks"
776         ;;
777 arm*-*-freebsd*)
778         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
779         tmake_file="${tmake_file} arm/t-arm arm/t-strongarm-elf"
780         ;;
781 arm*-*-netbsdelf*)
782         tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
783         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
784         tmake_file="${tmake_file} arm/t-arm arm/t-netbsd"
785         ;;
786 arm*-*-linux*)                  # ARM GNU/Linux with ELF
787         tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
788         case $target in
789         arm*b-*)
790                 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
791                 ;;
792         esac
793         tmake_file="${tmake_file} t-linux arm/t-arm"
794         case ${target} in
795         arm*-*-linux-*eabi)
796             tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h"
797             tm_file="$tm_file ../../libgcc/config/arm/bpabi-lib.h"
798             tmake_file="$tmake_file arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc"
799             # Define multilib configuration for arm-linux-androideabi.
800             case ${target} in
801             *-androideabi)
802                 tmake_file="$tmake_file arm/t-linux-androideabi"
803                 ;;
804             esac
805             # The BPABI long long divmod functions return a 128-bit value in
806             # registers r0-r3.  Correctly modeling that requires the use of
807             # TImode.
808             need_64bit_hwint=yes
809             # The EABI requires the use of __cxa_atexit.
810             default_use_cxa_atexit=yes
811             ;;
812         *)
813             tmake_file="$tmake_file arm/t-linux"
814             ;;
815         esac
816         tm_file="$tm_file arm/aout.h arm/arm.h"
817         tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
818         ;;
819 arm*-*-uclinux*)                # ARM ucLinux
820         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h glibc-stdint.h"
821         tmake_file="arm/t-arm arm/t-arm-elf"
822         case ${target} in
823         arm*-*-uclinux*eabi)
824             tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h"
825             tm_file="$tm_file ../../libgcc/config/arm/bpabi-lib.h"
826             tmake_file="$tmake_file arm/t-bpabi"
827             # The BPABI long long divmod functions return a 128-bit value in
828             # registers r0-r3.  Correctly modeling that requires the use of
829             # TImode.
830             need_64bit_hwint=yes
831             # The EABI requires the use of __cxa_atexit.
832             default_use_cxa_atexit=yes
833         esac
834         tm_file="$tm_file arm/aout.h arm/arm.h"
835         tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
836         ;;
837 arm*-*-ecos-elf)
838         tm_file="dbxelf.h elfos.h newlib-stdint.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
839         tmake_file="arm/t-arm arm/t-arm-elf"
840         tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
841         ;;
842 arm*-*-eabi* | arm*-*-symbianelf* )
843         # The BPABI long long divmod functions return a 128-bit value in
844         # registers r0-r3.  Correctly modeling that requires the use of
845         # TImode.
846         need_64bit_hwint=yes
847         default_use_cxa_atexit=yes
848         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
849         tm_file="$tm_file ../../libgcc/config/arm/bpabi-lib.h"
850         tmake_file="arm/t-arm arm/t-arm-elf"
851         case ${target} in
852         arm*-*-eabi*)
853           tm_file="$tm_file newlib-stdint.h"
854           tmake_file="${tmake_file} arm/t-bpabi"
855           use_gcc_stdint=wrap
856           ;;
857         arm*-*-symbianelf*)
858           tm_file="${tm_file} arm/symbian.h"
859           # We do not include t-bpabi for Symbian OS because the system
860           # provides its own implementation of the BPABI functions.
861           tmake_file="${tmake_file} arm/t-symbian"
862           ;;
863         esac
864         tm_file="${tm_file} arm/aout.h arm/arm.h"
865         tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
866         ;;
867 arm*-*-rtems*)
868         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 newlib-stdint.h"
869         tmake_file="arm/t-arm arm/t-arm-elf t-rtems arm/t-rtems"
870         tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
871         ;;
872 arm*-*-elf)
873         tm_file="dbxelf.h elfos.h newlib-stdint.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
874         tmake_file="arm/t-arm arm/t-arm-elf"
875         tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
876         ;;
877 arm*-wince-pe*)
878         tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
879         tmake_file="arm/t-arm arm/t-wince-pe"
880         extra_options="${extra_options} arm/pe.opt"
881         extra_objs="pe.o"
882         ;;
883 avr-*-rtems*)
884         tm_file="avr/avr.h dbxelf.h avr/rtems.h rtems.h newlib-stdint.h"
885         tmake_file="avr/t-avr t-rtems avr/t-rtems"
886         extra_gcc_objs="driver-avr.o avr-devices.o"
887         extra_objs="avr-devices.o"
888         ;;
889 avr-*-*)
890         tm_file="avr/avr.h dbxelf.h newlib-stdint.h"
891         use_gcc_stdint=wrap
892         extra_gcc_objs="driver-avr.o avr-devices.o"
893         extra_objs="avr-devices.o"
894         ;;
895 bfin*-elf*)
896         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
897         tmake_file=bfin/t-bfin-elf
898         use_collect2=no
899         ;;
900 bfin*-uclinux*)
901         tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h glibc-stdint.h bfin/uclinux.h"
902         tmake_file=bfin/t-bfin-uclinux
903         use_collect2=no
904         ;;
905 bfin*-linux-uclibc*)
906         tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h glibc-stdint.h bfin/linux.h ./linux-sysroot-suffix.h"
907         tmake_file="t-slibgcc-elf-ver bfin/t-bfin-linux"
908         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
909         use_collect2=no
910         ;;
911 bfin*-rtems*)
912         tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h newlib-stdint.h"
913         tmake_file="bfin/t-bfin t-rtems bfin/t-rtems"
914         ;;
915 bfin*-*)
916         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
917         tmake_file=bfin/t-bfin
918         use_collect2=no
919         use_gcc_stdint=wrap
920         ;;
921 crisv32-*-elf | crisv32-*-none)
922         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
923         tmake_file="cris/t-cris"
924         target_cpu_default=32
925         gas=yes
926         extra_options="${extra_options} cris/elf.opt"
927         use_gcc_stdint=wrap
928         ;;
929 cris-*-elf | cris-*-none)
930         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
931         tmake_file="cris/t-cris cris/t-elfmulti"
932         gas=yes
933         extra_options="${extra_options} cris/elf.opt"
934         use_gcc_stdint=wrap
935         ;;
936 crisv32-*-linux* | cris-*-linux*)
937         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h glibc-stdint.h cris/linux.h"
938         # We need to avoid using t-linux, so override default tmake_file
939         tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
940         extra_options="${extra_options} cris/linux.opt"
941         case $target in
942           cris-*-*)
943                 target_cpu_default=10
944                 ;;
945           crisv32-*-*)
946                 target_cpu_default=32
947                 ;;
948         esac
949         ;;
950 fr30-*-elf)
951         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
952         tmake_file=fr30/t-fr30
953         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
954         ;;
955 frv-*-elf)
956         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
957         tm_file="${tm_file} ../../libgcc/config/frv/frv-abi.h"
958         tmake_file=frv/t-frv
959         ;;
960 frv-*-*linux*)
961         tm_file="dbxelf.h elfos.h ${tm_file} \
962                  gnu-user.h linux.h glibc-stdint.h frv/linux.h"
963         tm_file="${tm_file} ../../libgcc/config/frv/frv-abi.h"
964         tmake_file="${tmake_file} frv/t-frv frv/t-linux"
965         ;;
966 moxie-*-elf)
967         gas=yes
968         gnu_ld=yes
969         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
970         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
971         tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp"
972         ;;
973 moxie-*-uclinux*)
974         gas=yes
975         gnu_ld=yes
976         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h glibc-stdint.h moxie/uclinux.h"
977         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
978         tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp"
979         ;;
980 moxie-*-rtems*)
981         tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp t-rtems"
982         tm_file="moxie/moxie.h dbxelf.h elfos.h moxie/rtems.h rtems.h newlib-stdint.h"
983         ;;
984 h8300-*-rtems*)
985         tmake_file="h8300/t-h8300 h8300/t-elf t-rtems h8300/t-rtems"
986         tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h h8300/rtems.h rtems.h newlib-stdint.h"
987         ;;
988 h8300-*-elf*)
989         tmake_file="h8300/t-h8300 h8300/t-elf"
990         tm_file="h8300/h8300.h dbxelf.h elfos.h newlib-stdint.h h8300/elf.h"
991         ;;
992 hppa*64*-*-linux*)
993         target_cpu_default="MASK_PA_11|MASK_PA_20"
994         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h gnu-user.h linux.h \
995                  glibc-stdint.h pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h \
996                  pa/pa64-linux.h"
997         tmake_file="${tmake_file} pa/t-linux64"
998         gas=yes gnu_ld=yes
999         need_64bit_hwint=yes
1000         ;;
1001 hppa*-*-linux*)
1002         target_cpu_default="MASK_PA_11|MASK_NO_SPACE_REGS"
1003         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h pa/pa-linux.h \
1004                  pa/pa32-regs.h pa/pa32-linux.h"
1005         tmake_file="${tmake_file} pa/t-linux t-slibgcc-libgcc"
1006         # Set the libgcc version number
1007         if test x$sjlj = x1; then
1008             tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1009         else
1010             tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
1011         fi
1012         ;;
1013 # port not yet contributed.
1014 #hppa*-*-openbsd*)
1015 #       target_cpu_default="MASK_PA_11"
1016 #       ;;
1017 hppa[12]*-*-hpux10*)
1018         case ${target} in
1019         hppa1.1-*-* | hppa2*-*-*)
1020                 target_cpu_default="MASK_PA_11"
1021                 ;;
1022         esac
1023         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
1024                  pa/pa-hpux.h pa/pa-hpux10.h"
1025         extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux10.opt"
1026         case ${target} in
1027         *-*-hpux10.[1-9]*)
1028                 tm_file="${tm_file} pa/pa-hpux1010.h"
1029                 extra_options="${extra_options} pa/pa-hpux1010.opt"
1030                 ;;
1031         esac
1032         use_gcc_stdint=provide
1033         tm_file="${tm_file} hpux-stdint.h"
1034         tmake_file="pa/t-pa-hpux10 pa/t-pa-hpux pa/t-hpux-shlib"
1035         case ${enable_threads} in
1036           "")
1037             if test x$have_pthread_h = xyes ; then
1038               tmake_file="${tmake_file} pa/t-dce-thr"
1039             fi
1040             ;;
1041           yes | dce)
1042             tmake_file="${tmake_file} pa/t-dce-thr"
1043             ;;
1044         esac
1045         # Set the libgcc version number
1046         if test x$sjlj = x1; then
1047             tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1048         else
1049             tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
1050         fi
1051         use_collect2=yes
1052         gas=yes
1053         if test "x$with_dwarf2" != x; then
1054                 echo "Warning: dwarf2 debug format is not supported for this target, --with-dwarf2 ignored" 1>&2
1055                 dwarf2=no
1056         fi
1057         ;;
1058 hppa*64*-*-hpux11*)
1059         target_cpu_default="MASK_PA_11|MASK_PA_20"
1060         if test x$gnu_ld = xyes
1061         then
1062                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1063         fi
1064         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
1065                  pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \
1066                  pa/pa-hpux11.h"
1067         case ${target} in
1068         *-*-hpux11.[1-9]*)
1069                 tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h"
1070                 extra_options="${extra_options} pa/pa-hpux1111.opt"
1071                 ;;
1072         *)
1073                 tm_file="${tm_file} pa/pa-64.h pa/pa64-hpux.h"
1074                 ;;
1075         esac
1076         extra_options="${extra_options} pa/pa-hpux.opt \
1077                        pa/pa-hpux1010.opt pa/pa64-hpux.opt hpux11.opt"
1078         need_64bit_hwint=yes
1079         tmake_file="pa/t-pa64 pa/t-pa-hpux pa/t-hpux-shlib"
1080         # Set the libgcc version number
1081         if test x$sjlj = x1; then
1082             tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1083         else
1084             tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
1085         fi
1086         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
1087                      libgcc_stub.a"
1088         case x${enable_threads} in
1089         x | xyes | xposix )
1090                 thread_file=posix
1091                 ;;
1092         esac
1093         gas=yes
1094         case ${target} in
1095           *-*-hpux11.[01]*)
1096                 use_gcc_stdint=provide
1097                 tm_file="${tm_file} hpux-stdint.h"
1098                 ;;
1099           *-*-hpux11.[23]*)
1100                 use_gcc_stdint=wrap
1101                 tm_file="${tm_file} hpux-stdint.h"
1102                 ;;
1103         esac
1104         ;;
1105 hppa[12]*-*-hpux11*)
1106         case ${target} in
1107         hppa1.1-*-* | hppa2*-*-*)
1108                 target_cpu_default="MASK_PA_11"
1109                 ;;
1110         esac
1111         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
1112                  pa/pa-hpux.h pa/pa-hpux1010.h pa/pa-hpux11.h"
1113         extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux1010.opt \
1114                        hpux11.opt"
1115         case ${target} in
1116         *-*-hpux11.[1-9]*)
1117                 tm_file="${tm_file} pa/pa-hpux1111.h"
1118                 extra_options="${extra_options} pa/pa-hpux1111.opt"
1119                 ;;
1120         esac
1121         tmake_file="pa/t-pa-hpux11 pa/t-pa-hpux pa/t-hpux-shlib"
1122         # Set the libgcc version number
1123         if test x$sjlj = x1; then
1124             tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1125         else
1126             tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
1127         fi
1128         extra_parts="libgcc_stub.a"
1129         case x${enable_threads} in
1130         x | xyes | xposix )
1131                 thread_file=posix
1132                 ;;
1133         esac
1134         use_collect2=yes
1135         gas=yes
1136         case ${target} in
1137           *-*-hpux11.[01]*)
1138                 use_gcc_stdint=provide
1139                 tm_file="${tm_file} hpux-stdint.h"
1140                 ;;
1141           *-*-hpux11.[23]*)
1142                 use_gcc_stdint=wrap
1143                 tm_file="${tm_file} hpux-stdint.h"
1144                 ;;
1145         esac
1146         if test "x$with_dwarf2" != x; then
1147                 echo "Warning: dwarf2 debug format is not supported for this target, --with-dwarf2 ignored" 1>&2
1148                 dwarf2=no
1149         fi
1150         ;;
1151 i[34567]86-*-darwin*)
1152         need_64bit_hwint=yes
1153         need_64bit_isa=yes
1154         # Baseline choice for a machine that allows m64 support.
1155         with_cpu=${with_cpu:-core2}
1156         tmake_file="${tmake_file} t-slibgcc-darwin i386/t-crtpc i386/t-crtfm"
1157         ;;
1158 x86_64-*-darwin*)
1159         with_cpu=${with_cpu:-core2}
1160         tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc-darwin i386/t-crtpc i386/t-crtfm"
1161         tm_file="${tm_file} ${cpu_type}/darwin64.h"
1162         ;;
1163 i[34567]86-*-elf*)
1164         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h"
1165         tmake_file="${tmake_file} i386/t-i386elf t-svr4"
1166         ;;
1167 x86_64-*-elf*)
1168         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h"
1169         tmake_file="${tmake_file} i386/t-i386elf t-svr4"
1170         ;;
1171 i[34567]86-*-freebsd*)
1172         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
1173         tmake_file="${tmake_file} i386/t-crtstuff"
1174         ;;
1175 x86_64-*-freebsd*)
1176         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"
1177         tmake_file="${tmake_file} i386/t-crtstuff"
1178         ;;
1179 i[34567]86-*-netbsdelf*)
1180         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
1181         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1182         ;;
1183 x86_64-*-netbsd*)
1184         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"
1185         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1186         tmake_file="${tmake_file} i386/t-crtstuff"
1187         ;;
1188 i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
1189         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"
1190         extra_options="${extra_options} openbsd.opt"
1191         # needed to unconfuse gdb
1192         tmake_file="${tmake_file} t-libc-ok t-openbsd i386/t-openbsd"
1193         # we need collect2 until our bug is fixed...
1194         use_collect2=yes
1195         ;;
1196 i[34567]86-*-openbsd*)
1197         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
1198         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h i386/openbsdelf.h"
1199         extra_options="${extra_options} openbsd.opt"
1200         gas=yes
1201         gnu_ld=yes
1202         ;;
1203 i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
1204                         # Intel 80386's running GNU/*
1205                         # with ELF format using glibc 2
1206         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h"
1207         case ${target} in
1208         i[34567]86-*-linux*)
1209                 # Assume modern glibc
1210                 default_gnu_indirect_function=yes
1211                 if test x$enable_targets = xall; then
1212                         tm_file="${tm_file} i386/x86-64.h i386/gnu-user64.h i386/linux64.h"
1213                         tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1214                         tmake_file="${tmake_file} i386/t-linux64"
1215                         need_64bit_hwint=yes
1216                         need_64bit_isa=yes
1217                         case X"${with_cpu}" in
1218                         Xgeneric|Xatom|Xcore2|Xcorei7|Xcorei7-avx|Xnocona|Xx86-64|Xbdver1|Xbtver1|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx|Xathlon64-sse3|Xk8-sse3|Xopteron-sse3)
1219                                 ;;
1220                         X)
1221                                 if test x$with_cpu_64 = x; then
1222                                         with_cpu_64=generic
1223                                 fi
1224                                 ;;
1225                         *)
1226                                 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1227                                 echo "generic atom core2 corei7 corei7-avx nocona x86-64 bdver1 btver1 amdfam10 barcelona k8 opteron athlon64 athlon-fx athlon64-sse3 k8-sse3 opteron-sse3" 1>&2
1228                                 exit 1
1229                                 ;;
1230                         esac
1231                 else
1232                         tm_file="${tm_file} i386/gnu-user.h i386/linux.h"
1233                 fi
1234                 ;;
1235         i[34567]86-*-knetbsd*-gnu) tm_file="${tm_file} i386/gnu-user.h i386/linux.h knetbsd-gnu.h i386/knetbsd-gnu.h" ;;
1236         i[34567]86-*-kfreebsd*-gnu) tm_file="${tm_file} i386/gnu-user.h i386/linux.h kfreebsd-gnu.h i386/kfreebsd-gnu.h" ;;
1237         i[34567]86-*-kopensolaris*-gnu) tm_file="${tm_file} i386/gnu-user.h i386/linux.h kopensolaris-gnu.h i386/kopensolaris-gnu.h" ;;
1238         i[34567]86-*-gnu*) tm_file="$tm_file i386/gnu-user.h i386/linux.h gnu.h i386/gnu.h";;
1239         esac
1240         tmake_file="${tmake_file} i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
1241         ;;
1242 x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
1243         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h \
1244                  i386/x86-64.h i386/gnu-user64.h i386/linux64.h"
1245         case ${target} in
1246         x86_64-*-linux*)
1247           default_gnu_indirect_function=glibc-2011 ;;
1248         x86_64-*-kfreebsd*-gnu) tm_file="${tm_file} kfreebsd-gnu.h i386/kfreebsd-gnu.h" ;;
1249         x86_64-*-knetbsd*-gnu) tm_file="${tm_file} knetbsd-gnu.h" ;;
1250         esac
1251         tmake_file="${tmake_file} i386/t-linux64 i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
1252         ;;
1253 i[34567]86-pc-msdosdjgpp*)
1254         xm_file=i386/xm-djgpp.h
1255         tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h i386/djgpp-stdint.h"
1256         tmake_file="${tmake_file} i386/t-djgpp"
1257         extra_options="${extra_options} i386/djgpp.opt"
1258         gnu_ld=yes
1259         gas=yes
1260         use_gcc_stdint=wrap
1261         ;;
1262 i[34567]86-*-lynxos*)
1263         xm_defines=POSIX
1264         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
1265         tmake_file="${tmake_file} i386/t-crtstuff t-lynx"
1266         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1267         extra_options="${extra_options} lynx.opt"
1268         thread_file=lynx
1269         gnu_ld=yes
1270         gas=yes
1271         ;;
1272 i[3456x]86-*-netware*)
1273         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h tm-dwarf2.h i386/netware.h"
1274         tmake_file="${tmake_file} i386/t-netware"
1275         extra_objs=netware.o
1276         extra_options="${extra_options} i386/netware.opt"
1277         case /${with_ld} in
1278         */nwld)
1279                 extra_objs="$extra_objs nwld.o"
1280                 tm_file="${tm_file} i386/nwld.h"
1281                 tmake_file="${tmake_file} i386/t-nwld"
1282                 extra_parts="crt0.o libgcc.def libc.def libcpre.def posixpre.def"
1283                 ;;
1284         esac
1285         case x${enable_threads} in
1286         x | xyes | xposix) thread_file='posix';;
1287         xnks) thread_file='nks';;
1288         xno) ;;
1289         *) echo 'Unknown thread configuration for NetWare' >&2; exit 1;;
1290         esac
1291         ;;
1292 i[34567]86-*-nto-qnx*)
1293         tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h i386/unix.h i386/nto.h"
1294         extra_options="${extra_options} i386/nto.opt"
1295         tmake_file="${tmake_file} i386/t-nto"
1296         gnu_ld=yes
1297         gas=yes
1298         ;;
1299 i[34567]86-*-rtems*)
1300         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h newlib-stdint.h"
1301         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1302         tmake_file="${tmake_file} i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1303         ;;
1304 i[34567]86-*-solaris2*)
1305         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sysv4.h sol2.h"
1306         # Set default arch_32 to pentium4, tune_32 to generic like the other
1307         # i386 targets, although config.guess defaults to i386-pc-solaris2*.
1308         case ${target} in
1309         *-*-solaris2.[89]*)
1310                 # Solaris 8 and 9/x86 cannot execute SSE/SSE2 instructions by
1311                 # default.
1312                 with_arch_32=${with_arch_32:-pentiumpro}
1313                 ;;
1314         *)
1315                 with_arch_32=${with_arch_32:-pentium4}
1316                 ;;
1317         esac
1318         with_tune_32=${with_tune_32:-generic}
1319         case ${target} in
1320         *-*-solaris2.1[0-9]*)
1321                 tm_file="${tm_file} sol2-10.h"
1322                 ;;
1323         esac
1324         tm_file="${tm_file} i386/sol2.h"
1325         if test x$gnu_ld = xyes; then
1326                 tm_file="${tm_file} sol2-gld.h"
1327         fi
1328         if test x$gas = xyes; then
1329                 tm_file="${tm_file} i386/sol2-gas.h"
1330         fi
1331         tmake_file="${tmake_file} t-sol2 t-svr4"
1332         c_target_objs="${c_target_objs} sol2-c.o"
1333         cxx_target_objs="${cxx_target_objs} sol2-c.o"
1334         extra_objs="sol2.o"
1335         tm_p_file="${tm_p_file} sol2-protos.h"
1336         if test x$gnu_ld = xyes; then
1337                 tmake_file="$tmake_file t-slibgcc-elf-ver"
1338                 tm_defines="${tm_defines} TARGET_GNU_LD=1"
1339         else
1340                 tmake_file="$tmake_file t-slibgcc-sld"
1341         fi
1342         if test x$gas = xyes; then
1343                 tm_file="usegas.h ${tm_file}"
1344         fi
1345         tm_file="$tm_file tm-dwarf2.h"
1346         case ${target} in
1347         *-*-solaris2.1[0-9]*)
1348                 tm_file="${tm_file} i386/x86-64.h i386/sol2-10.h"
1349                 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1350                 tmake_file="$tmake_file i386/t-sol2-10"
1351                 # i386/t-crtstuff only affects libgcc.  Its inclusion
1352                 # depends on a runtime test and is thus performed in
1353                 # libgcc/configure.ac instead.
1354                 need_64bit_hwint=yes
1355                 need_64bit_isa=yes
1356                 use_gcc_stdint=wrap
1357                 case X"${with_cpu}" in
1358                 Xgeneric|Xatom|Xcore2|Xcorei7|Xcorei7-avx|Xnocona|Xx86-64|Xbdver1|Xbtver1|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx|Xathlon64-sse3|Xk8-sse3|Xopteron-sse3)
1359                         ;;
1360                 X)
1361                         if test x$with_cpu_64 = x; then
1362                                 with_cpu_64=generic
1363                         fi
1364                         ;;
1365                 *)
1366                         echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1367                         echo "generic atom core2 corei7 corei7-avx nocona x86-64 bdver1 btver1 amdfam10 barcelona k8 opteron athlon64 athlon-fx athlon64-sse3 k8-sse3 opteron-sse3" 1>&2
1368                         exit 1
1369                         ;;
1370                 esac
1371                 ;;
1372         *)
1373                 use_gcc_stdint=provide
1374                 ;;
1375         esac
1376         case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
1377           "":yes:* | yes:yes:* )
1378                 thread_file=posix
1379                 ;;
1380         esac
1381         ;;
1382 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
1383         tm_file="${tm_file} i386/unix.h i386/att.h elfos.h vx-common.h"
1384         case ${target} in
1385           *-vxworksae*)
1386             tm_file="${tm_file} vxworksae.h i386/vx-common.h i386/vxworksae.h"
1387             tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
1388             ;;
1389           *)
1390             tm_file="${tm_file} vxworks.h i386/vx-common.h i386/vxworks.h"
1391             tmake_file="${tmake_file} i386/t-vxworks"
1392             ;;
1393         esac
1394         ;;
1395 i[34567]86-*-cygwin*)
1396         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h i386/cygwin-stdint.h"
1397         xm_file=i386/xm-cygwin.h
1398         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
1399         if test x$sjlj = x0; then
1400                 tmake_eh_file="i386/t-dw2-eh"
1401         else
1402                 tmake_eh_file="i386/t-sjlj-eh"
1403         fi
1404         # Shared libgcc DLL install dir depends on cross/native build.
1405         if test x${host} = x${target} ; then
1406                 tmake_dlldir_file="i386/t-dlldir"
1407         else
1408                 tmake_dlldir_file="i386/t-dlldir-x"
1409         fi
1410         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-cygming i386/t-cygwin t-dfprules"
1411         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1412         extra_options="${extra_options} i386/cygming.opt"
1413         extra_objs="winnt.o winnt-stubs.o"
1414         c_target_objs="${c_target_objs} msformat-c.o"
1415         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1416         if test x$enable_threads = xyes; then
1417                 thread_file='posix'
1418         fi
1419         use_gcc_stdint=wrap
1420         ;;
1421 i[34567]86-*-mingw* | x86_64-*-mingw*)
1422         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h"
1423         xm_file=i386/xm-mingw32.h
1424         case ${target} in
1425                 x86_64-*-* | *-w64-*)
1426                         need_64bit_hwint=yes
1427                         need_64bit_isa=yes
1428                         ;;
1429                 *)
1430                         ;;
1431         esac
1432         if test x$enable_threads = xposix ; then
1433                 tm_file="${tm_file} i386/mingw-pthread.h"
1434         fi
1435         tm_file="${tm_file} i386/mingw32.h"
1436         # This makes the logic if mingw's or the w64 feature set has to be used
1437         case ${target} in
1438                 *-w64-*)
1439                         user_headers_inc_next_post="${user_headers_inc_next_post} float.h"
1440                         user_headers_inc_next_pre="${user_headers_inc_next_pre} stddef.h stdarg.h"
1441                         tm_file="${tm_file} i386/mingw-w64.h"
1442                         if test x$enable_targets = xall; then
1443                                 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1444                                 case X"${with_cpu}" in
1445                                 Xgeneric|Xatom|Xcore2|Xcorei7|Xcorei7-avx|Xnocona|Xx86-64|Xbdver1|Xbtver1|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx|Xathlon64-sse3|Xk8-sse3|Xopteron-sse3)
1446                                         ;;
1447                                 X)
1448                                         if test x$with_cpu_64 = x; then
1449                                                 with_cpu_64=generic
1450                                         fi
1451                                         ;;
1452                                 *)
1453                                         echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1454                                         echo "generic atom core2 corei7 Xcorei7-avx nocona x86-64 bdver1 btver1 amdfam10 barcelona k8 opteron athlon64 athlon-fx athlon64-sse3 k8-sse3 opteron-sse3" 1>&2
1455                                         exit 1
1456                                         ;;
1457                                 esac
1458                         fi
1459                         ;;
1460                 *)
1461                         ;;
1462         esac
1463         tm_file="${tm_file} i386/mingw-stdint.h"
1464         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
1465         if test x$sjlj = x0; then
1466                 tmake_eh_file="i386/t-dw2-eh"
1467         else
1468                 tmake_eh_file="i386/t-sjlj-eh"
1469         fi
1470         # Shared libgcc DLL install dir depends on cross/native build.
1471         if test x${host} = x${target} ; then
1472                 tmake_dlldir_file="i386/t-dlldir"
1473         else
1474                 tmake_dlldir_file="i386/t-dlldir-x"
1475         fi
1476         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-cygming t-dfprules"
1477         case ${target} in
1478                x86_64-w64-*)
1479                         tmake_file="${tmake_file} i386/t-mingw-w64"
1480                         ;;
1481                i[34567]86-w64-*)
1482                         tmake_file="${tmake_file} i386/t-mingw-w32"
1483                         ;;
1484                *)
1485                         tmake_file="${tmake_file} i386/t-mingw32"
1486                         ;;
1487         esac
1488         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1489         extra_options="${extra_options} i386/cygming.opt i386/mingw.opt"
1490         case ${target} in
1491                 *-w64-*)
1492                         extra_options="${extra_options} i386/mingw-w64.opt"
1493                         ;;
1494                 *)
1495                         ;;
1496         esac
1497         extra_objs="winnt.o winnt-stubs.o"
1498         c_target_objs="${c_target_objs} msformat-c.o"
1499         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1500         default_use_cxa_atexit=yes
1501         use_gcc_stdint=wrap
1502         case ${enable_threads} in
1503           "" | yes | win32)       thread_file='win32'
1504             tmake_file="${tmake_file} i386/t-gthr-win32"
1505             ;;
1506           posix)
1507             thread_file='posix'
1508             tmake_file="i386/t-mingw-pthread ${tmake_file}"
1509             ;;
1510         esac
1511         case ${target} in
1512                 x86_64-*-mingw*)
1513                         tmake_file="${tmake_file} i386/t-crtfm"
1514                         ;;
1515                 *)
1516                         ;;
1517         esac
1518         case ${target} in
1519                 *mingw32crt*)
1520                         tm_file="${tm_file} i386/crtdll.h"
1521                         ;;
1522                 *mingw32msv* | *mingw*)
1523                         ;;
1524         esac
1525         ;;
1526 i[34567]86-*-interix3*)
1527         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"
1528         tmake_file="${tmake_file} i386/t-interix"
1529         extra_options="${extra_options} rpath.opt interix.opt"
1530         extra_objs=winnt.o
1531         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1532         if test x$enable_threads = xyes ; then
1533                 thread_file='posix'
1534         fi
1535         if test x$stabs = xyes ; then
1536                 tm_file="${tm_file} dbxcoff.h"
1537         fi
1538         ;;
1539 ia64*-*-elf*)
1540         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h ia64/sysv4.h ia64/elf.h"
1541         tmake_file="ia64/t-ia64"
1542         target_cpu_default="0"
1543         if test x$gas = xyes
1544         then
1545                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1546         fi
1547         if test x$gnu_ld = xyes
1548         then
1549                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1550         fi
1551         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1552         ;;
1553 ia64*-*-freebsd*)
1554         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1555         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1556         tmake_file="${tmake_file} ia64/t-ia64"
1557         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1558         ;;
1559 ia64*-*-linux*)
1560         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ia64/sysv4.h ia64/linux.h"
1561         tmake_file="${tmake_file} ia64/t-ia64 t-libunwind ia64/t-glibc"
1562         if test x$with_system_libunwind != xyes ; then
1563                 tmake_file="${tmake_file} t-libunwind-elf ia64/t-glibc-libunwind"
1564         fi
1565         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1566         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1567         ;;
1568 ia64*-*-hpux*)
1569         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/hpux.h"
1570         tmake_file="ia64/t-ia64 ia64/t-hpux"
1571         target_cpu_default="MASK_GNU_AS"
1572         case x$enable_threads in
1573         x | xyes | xposix )
1574                 thread_file=posix
1575                 ;;
1576         esac
1577         use_collect2=no
1578         c_target_objs="ia64-c.o"
1579         cxx_target_objs="ia64-c.o"
1580         extra_options="${extra_options} ia64/ilp32.opt hpux11.opt"
1581         use_gcc_stdint=wrap
1582         tm_file="${tm_file} hpux-stdint.h"
1583         ;;
1584 ia64-hp-*vms*)
1585         tm_file="${tm_file} elfos.h ia64/sysv4.h ia64/elf.h ia64/vms.h ia64/vms64.h"
1586         xm_file="vms/xm-vms.h vms/xm-vms64.h"
1587         tmake_file="${tmake_file} vms/t-vms64 ia64/t-ia64 ia64/t-vms"
1588         target_cpu_default="0"
1589         if test x$gas = xyes
1590         then
1591                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1592         fi
1593         extra_options="${extra_options} ia64/vms.opt"
1594         ;;
1595 iq2000*-*-elf*)
1596         tm_file="elfos.h newlib-stdint.h iq2000/iq2000.h"
1597         tmake_file=iq2000/t-iq2000
1598         out_file=iq2000/iq2000.c
1599         md_file=iq2000/iq2000.md
1600         ;;
1601 lm32-*-elf*)
1602         tm_file="dbxelf.h elfos.h ${tm_file}"
1603         tmake_file="${tmake_file} lm32/t-lm32 lm32/t-fprules-softfp soft-fp/t-softfp"
1604         ;;
1605 lm32-*-rtems*)
1606         tm_file="dbxelf.h elfos.h ${tm_file} lm32/rtems.h rtems.h newlib-stdint.h"
1607         tmake_file="${tmake_file} lm32/t-lm32 lm32/t-fprules-softfp soft-fp/t-softfp"
1608         tmake_file="${tmake_file} t-rtems"
1609          ;;
1610 lm32-*-uclinux*)
1611         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h lm32/uclinux-elf.h"
1612         tmake_file="${tmake_file} lm32/t-lm32 lm32/t-fprules-softfp soft-fp/t-softfp"
1613         ;;
1614 m32r-*-elf*)
1615         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1616         extra_parts="crtinit.o crtfini.o"
1617         ;;
1618 m32rle-*-elf*)
1619         tm_file="dbxelf.h elfos.h newlib-stdint.h m32r/little.h ${tm_file}"
1620         extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
1621         ;;
1622 m32r-*-rtems*)
1623         tm_file="dbxelf.h elfos.h ${tm_file} m32r/rtems.h rtems.h newlib-stdint.h"
1624         tmake_file="m32r/t-m32r t-rtems"
1625         extra_parts="crtinit.o crtfini.o"
1626         ;;
1627 m32r-*-linux*)
1628         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} m32r/linux.h"
1629         # We override the tmake_file for linux -- why?
1630         tmake_file="t-slibgcc-elf-ver m32r/t-linux"
1631         gnu_ld=yes
1632         if test x$enable_threads = xyes; then
1633                 thread_file='posix'
1634         fi
1635         ;;
1636 m32rle-*-linux*)
1637         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m32r/little.h ${tm_file} m32r/linux.h"
1638         # We override the tmake_file for linux -- why?
1639         tmake_file="t-slibgcc-elf-ver m32r/t-linux"
1640         gnu_ld=yes
1641         if test x$enable_threads = xyes; then
1642                 thread_file='posix'
1643         fi
1644         ;;
1645 m68k-*-elf* | fido-*-elf*)
1646         case ${target} in
1647         fido-*-elf*)
1648                 # Check that $with_cpu makes sense.
1649                 case $with_cpu in
1650                 "" | "fidoa")
1651                         ;;
1652                 *)
1653                         echo "Cannot accept --with-cpu=$with_cpu"
1654                         exit 1
1655                         ;;
1656                 esac
1657                 with_cpu=fidoa
1658                 ;;
1659         *)
1660                 default_m68k_cpu=68020
1661                 default_cf_cpu=5206
1662                 ;;
1663         esac
1664         tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h newlib-stdint.h m68k/m68kemb.h m68k/m68020-elf.h"
1665         tm_defines="${tm_defines} MOTOROLA=1"
1666         tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
1667         # Add multilibs for targets other than fido.
1668         case ${target} in
1669         fido-*-elf*)
1670                 ;;
1671         *)
1672                 tmake_file="$tmake_file m68k/t-mlibs"
1673                 ;;
1674         esac
1675         extra_parts="crtbegin.o crtend.o"
1676         ;;
1677 m68k*-*-netbsdelf*)
1678         default_m68k_cpu=68020
1679         default_cf_cpu=5475
1680         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1681         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1682         tm_defines="${tm_defines} MOTOROLA=1"
1683         ;;
1684 m68k*-*-openbsd*)
1685         default_m68k_cpu=68020
1686         default_cf_cpu=5475
1687         # needed to unconfuse gdb
1688         tm_defines="${tm_defines} OBSD_OLD_GAS"
1689         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h m68k/openbsd.h"
1690         extra_options="${extra_options} openbsd.opt"
1691         tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1692         # we need collect2 until our bug is fixed...
1693         use_collect2=yes
1694         ;;
1695 m68k-*-uclinux*)                # Motorola m68k/ColdFire running uClinux
1696                                 # with uClibc, using the new GNU/Linux-style
1697                                 # ABI.
1698         default_m68k_cpu=68020
1699         default_cf_cpu=5206
1700         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h flat.h m68k/linux.h m68k/uclinux.h ./sysroot-suffix.h"
1701         extra_options="${extra_options} m68k/uclinux.opt"
1702         tm_defines="${tm_defines} MOTOROLA=1"
1703         tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
1704         ;;
1705 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
1706                                 # with ELF format using glibc 2
1707                                 # aka the GNU/Linux C library 6.
1708         default_m68k_cpu=68020
1709         default_cf_cpu=5475
1710         with_arch=${with_arch:-m68k}
1711         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m68k/linux.h ./sysroot-suffix.h"
1712         extra_options="${extra_options} m68k/ieee.opt"
1713         tm_defines="${tm_defines} MOTOROLA=1"
1714         tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs"
1715         # if not configured with --enable-sjlj-exceptions, bump the
1716         # libgcc version number
1717         if test x$sjlj != x1; then
1718             tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
1719         fi
1720         ;;
1721 m68k-*-rtems*)
1722         default_m68k_cpu=68020
1723         default_cf_cpu=5206
1724         tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems m68k/t-mlibs"
1725         tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h newlib-stdint.h"
1726         tm_defines="${tm_defines} MOTOROLA=1"
1727         extra_parts="crtbegin.o crtend.o"
1728         ;;
1729 mcore-*-elf)
1730         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} mcore/mcore-elf.h"
1731         tmake_file=mcore/t-mcore
1732         inhibit_libc=true
1733         ;;
1734 mep-*-*)
1735         tm_file="dbxelf.h elfos.h ${tm_file}"
1736         tmake_file=mep/t-mep
1737         extra_parts="crtbegin.o crtend.o"
1738         c_target_objs="mep-pragma.o"
1739         cxx_target_objs="mep-pragma.o"
1740         if test -d "${srcdir}/../newlib/libc/include" &&
1741            test "x$with_headers" = x; then
1742                 with_headers=yes
1743         fi
1744         use_gcc_stdint=wrap
1745         ;;
1746 microblaze*-linux*)
1747         tm_file="${tm_file} dbxelf.h gnu-user.h linux.h microblaze/linux.h"
1748         c_target_objs="${c_target_objs} microblaze-c.o"
1749         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
1750         tmake_file="${tmake_file} t-slibgcc-elf-ver t-slibgcc-nolc-override t-linux microblaze/t-microblaze"
1751         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o crtbeginT.o"
1752         ;;
1753 microblaze*-*-*)
1754         tm_file="${tm_file} dbxelf.h"
1755         c_target_objs="${c_target_objs} microblaze-c.o"
1756         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
1757         tmake_file="${tmake_file} microblaze/t-microblaze"
1758         ;;
1759 mips-sgi-irix6.5*)
1760         tm_file="elfos.h ${tm_file} mips/iris6.h"
1761         tmake_file="mips/t-iris mips/t-iris6 mips/t-slibgcc-irix"
1762         extra_options="${extra_options} rpath.opt mips/iris6.opt"
1763         target_cpu_default="MASK_ABICALLS"
1764         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1765         # Only IRIX Development Foundation 1.3 for IRIX 6.5 provides stdint.h.
1766         use_gcc_stdint=wrap
1767         if test "x$stabs" = xyes
1768         then
1769                 tm_file="${tm_file} dbx.h"
1770         fi
1771         if test "x$gnu_ld" = xyes
1772         then
1773                 tm_defines="${tm_defines} IRIX_USING_GNU_LD"
1774         fi
1775         case ${enable_threads}:${have_pthread_h} in
1776           "":yes | yes:yes ) thread_file=posix ;;
1777         esac
1778         ;;
1779 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1780         target_cpu_default="MASK_ABICALLS"
1781         tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
1782         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1783         ;;
1784 mips64*-*-linux* | mipsisa64*-*-linux*)
1785         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} mips/linux.h mips/linux64.h"
1786         tmake_file="${tmake_file} mips/t-linux64 mips/t-libgcc-mips16"
1787         tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32"
1788         case ${target} in
1789                 mips64el-st-linux-gnu)
1790                         tm_file="${tm_file} mips/st.h"
1791                         tmake_file="${tmake_file} mips/t-st"
1792                         ;;
1793                 mips64octeon*-*-linux*)
1794                         tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
1795                         target_cpu_default=MASK_SOFT_FLOAT_ABI
1796                         ;;
1797                 mipsisa64r2*-*-linux*)
1798                         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
1799                         ;;
1800         esac
1801         extra_parts="$extra_parts crtfastmath.o"
1802         gnu_ld=yes
1803         gas=yes
1804         test x$with_llsc != x || with_llsc=yes
1805         ;;
1806 mips*-*-linux*)                         # Linux MIPS, either endian.
1807         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} mips/linux.h"
1808         tmake_file="${tmake_file} mips/t-libgcc-mips16"
1809         case ${target} in
1810         mipsisa32r2*)
1811                 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1812                 ;;
1813         mipsisa32*)
1814                 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1815         esac
1816         extra_parts="$extra_parts crtfastmath.o"
1817         test x$with_llsc != x || with_llsc=yes
1818         ;;
1819 mips*-*-openbsd*)
1820         tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
1821         target_cpu_default="MASK_ABICALLS"
1822         tm_file="mips/mips.h openbsd.h openbsd-stdint.h openbsd-libpthread.h mips/openbsd.h mips/sdb.h"
1823         extra_options="${extra_options} openbsd.opt"
1824         case ${target} in
1825         mips*el-*-openbsd*)
1826             tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1827         *)  tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1828         esac
1829         ;;
1830 mips*-sde-elf*)
1831         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/sde.h"
1832         tmake_file="mips/t-sde mips/t-libgcc-mips16"
1833         extra_options="${extra_options} mips/sde.opt"
1834         case "${with_newlib}" in
1835           yes)
1836             # newlib / libgloss.
1837             ;;
1838           *)
1839             # MIPS toolkit libraries.
1840             tm_file="$tm_file mips/sdemtk.h"
1841             tmake_file="$tmake_file mips/t-sdemtk"
1842             case ${enable_threads} in
1843               "" | yes | mipssde)
1844                 thread_file='mipssde'
1845                 ;;
1846             esac
1847             ;;
1848         esac
1849         case ${target} in
1850           mipsisa32r2*)
1851             tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
1852             ;;
1853           mipsisa32*)
1854             tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
1855             ;;
1856           mipsisa64r2*)
1857             tm_defines="MIPS_ISA_DEFAULT=65 MIPS_ABI_DEFAULT=ABI_N32"
1858             ;;
1859           mipsisa64*)
1860             tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
1861             ;;
1862         esac
1863         ;;
1864 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
1865 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
1866 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
1867 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
1868         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1869         tmake_file="mips/t-isa3264 mips/t-libgcc-mips16"
1870         case ${target} in
1871           mipsisa32r2*)
1872             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1873             ;;
1874           mipsisa32*)
1875             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1876             ;;
1877           mipsisa64r2*)
1878             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
1879             ;;
1880           mipsisa64*)
1881             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
1882             ;;
1883         esac
1884         case ${target} in
1885           mipsisa32*-*-elfoabi*)
1886             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
1887             tm_file="${tm_file} mips/elfoabi.h"
1888             ;;
1889           mipsisa64*-*-elfoabi*)
1890             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
1891             tm_file="${tm_file} mips/elfoabi.h"
1892             ;;
1893           *-*-elf*)
1894             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
1895             ;;
1896         esac
1897         ;;
1898 mipsisa64sr71k-*-elf*)
1899         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1900         tmake_file=mips/t-sr71k
1901         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1902         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
1903         ;;
1904 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1905         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1906         tmake_file="mips/t-elf mips/t-libgcc-mips16 mips/t-sb1"
1907         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1908         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1909         ;;
1910 mips-*-elf* | mipsel-*-elf*)
1911         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1912         tmake_file="mips/t-elf mips/t-libgcc-mips16"
1913         ;;
1914 mips64-*-elf* | mips64el-*-elf*)
1915         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1916         tmake_file="mips/t-elf mips/t-libgcc-mips16"
1917         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1918         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1919         ;;
1920 mips64vr-*-elf* | mips64vrel-*-elf*)
1921         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/vr.h mips/elf.h"
1922         tmake_file=mips/t-vr
1923         tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
1924         ;;
1925 mips64orion-*-elf* | mips64orionel-*-elf*)
1926         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elforion.h mips/elf.h"
1927         tmake_file="mips/t-elf mips/t-libgcc-mips16"
1928         target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1929         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1930         ;;
1931 mips*-*-rtems*)
1932         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
1933         tmake_file="mips/t-elf mips/t-libgcc-mips16 t-rtems mips/t-rtems"
1934         ;;
1935 mips-wrs-vxworks)
1936         tm_file="elfos.h ${tm_file} mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
1937         tmake_file="${tmake_file} mips/t-vxworks"
1938         ;;
1939 mipstx39-*-elf* | mipstx39el-*-elf*)
1940         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/r3900.h mips/elf.h"
1941         tmake_file="mips/t-r3900 mips/t-libgcc-mips16"
1942         ;;
1943 mmix-knuth-mmixware)
1944         tm_file="${tm_file} newlib-stdint.h"
1945         need_64bit_hwint=yes
1946         use_gcc_stdint=wrap
1947         ;;
1948 mn10300-*-*)
1949         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1950         if test x$stabs = xyes
1951         then
1952                 tm_file="${tm_file} dbx.h"
1953         fi
1954         use_collect2=no
1955         use_gcc_stdint=wrap
1956         ;;
1957 pdp11-*-*)
1958         tm_file="${tm_file} newlib-stdint.h"
1959         use_gcc_stdint=wrap
1960         ;;
1961 picochip-*)
1962         tm_file="${tm_file} newlib-stdint.h"
1963         use_gcc_stdint=wrap
1964         tmake_file="picochip/t-picochip t-pnt16-warn"
1965         ;;
1966 # port not yet contributed
1967 #powerpc-*-openbsd*)
1968 #       tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit "
1969 #       extra_headers=
1970 #       ;;
1971 powerpc-*-darwin*)
1972         extra_options="${extra_options} rs6000/darwin.opt"
1973         extra_parts="crt2.o"
1974         case ${target} in
1975           *-darwin1[0-9]* | *-darwin[8-9]*)
1976             tmake_file="${tmake_file} rs6000/t-darwin8"
1977             tm_file="${tm_file} rs6000/darwin8.h"
1978             ;;
1979           *-darwin7*)
1980             tm_file="${tm_file} rs6000/darwin7.h"
1981             ;;
1982           *-darwin[0-6]*)
1983             ;;
1984         esac
1985         tmake_file="${tmake_file} t-slibgcc-darwin"
1986         extra_headers=altivec.h
1987         ;;
1988 powerpc64-*-darwin*)
1989         extra_options="${extra_options} ${cpu_type}/darwin.opt"
1990         extra_parts="crt2.o"
1991         tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc-darwin"
1992         tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
1993         extra_headers=altivec.h
1994         ;;
1995 powerpc-*-freebsd*)
1996         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1997         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm rs6000/t-freebsd"
1998         tmake_file="${tmake_file} t-slibgcc-libgcc rs6000/t-fprules-softfp soft-fp/t-softfp"
1999         extra_options="${extra_options} rs6000/sysv4.opt"
2000         ;;
2001 powerpc-*-netbsd*)
2002         tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2003         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2004         tmake_file="${tmake_file} rs6000/t-netbsd"
2005         extra_options="${extra_options} rs6000/sysv4.opt"
2006         ;;
2007 powerpc-*-eabispe*)
2008         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabispe.h"
2009         extra_options="${extra_options} rs6000/sysv4.opt"
2010         tmake_file="rs6000/t-spe rs6000/t-ppccomm"
2011         use_gcc_stdint=wrap
2012         ;;
2013 powerpc-*-eabisimaltivec*)
2014         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h rs6000/eabialtivec.h"
2015         extra_options="${extra_options} rs6000/sysv4.opt"
2016         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
2017         use_gcc_stdint=wrap
2018         ;;
2019 powerpc-*-eabisim*)
2020         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
2021         extra_options="${extra_options} rs6000/sysv4.opt"
2022         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2023         use_gcc_stdint=wrap
2024         ;;
2025 powerpc-*-elf*)
2026         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h"
2027         extra_options="${extra_options} rs6000/sysv4.opt"
2028         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2029         ;;
2030 powerpc-*-eabialtivec*)
2031         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabialtivec.h"
2032         extra_options="${extra_options} rs6000/sysv4.opt"
2033         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
2034         use_gcc_stdint=wrap
2035         ;;
2036 powerpc-xilinx-eabi*)
2037         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/singlefp.h rs6000/xfpu.h rs6000/xilinx.h"
2038         extra_options="${extra_options} rs6000/sysv4.opt rs6000/xilinx.opt"
2039         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm rs6000/t-xilinx"
2040         use_gcc_stdint=wrap
2041         ;;
2042 powerpc-*-eabi*)
2043         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h"
2044         extra_options="${extra_options} rs6000/sysv4.opt"
2045         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2046         use_gcc_stdint=wrap
2047         ;;
2048 powerpc-*-rtems*)
2049         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/rtems.h rtems.h"
2050         extra_options="${extra_options} rs6000/sysv4.opt"
2051         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm"
2052         ;;
2053 powerpc-*-linux* | powerpc64-*-linux*)
2054         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h rs6000/sysv4.h"
2055         extra_options="${extra_options} rs6000/sysv4.opt"
2056         tmake_file="t-dfprules rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2057         maybe_biarch=yes
2058         case ${target} in
2059             powerpc64-*-linux*spe* | powerpc64-*-linux*paired*)
2060                 echo "*** Configuration ${target} not supported" 1>&2
2061                 exit 1
2062                 ;;
2063             powerpc-*-linux*spe* | powerpc-*-linux*paired*)
2064                 maybe_biarch=
2065                 ;;
2066             powerpc64-*-linux*)
2067                 test x$with_cpu != x || cpu_is_64bit=yes
2068                 maybe_biarch=always
2069                 ;;
2070         esac
2071         case ${maybe_biarch}:${enable_targets}:${cpu_is_64bit} in
2072             always:* | yes:*powerpc64* | yes:all:* | yes:*:yes)
2073                 if test x$cpu_is_64bit = xyes; then
2074                     tm_file="${tm_file} rs6000/default64.h"
2075                 fi
2076                 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h glibc-stdint.h"
2077                 tmake_file="$tmake_file rs6000/t-linux64"
2078                 extra_options="${extra_options} rs6000/linux64.opt"
2079                 ;;
2080             *)
2081                 tm_file="${tm_file} rs6000/linux.h glibc-stdint.h"
2082                 ;;
2083         esac
2084         tmake_file="${tmake_file} t-slibgcc-libgcc rs6000/t-fprules-softfp soft-fp/t-softfp"
2085         case ${target} in
2086             powerpc*-*-linux*altivec*)
2087                 tm_file="${tm_file} rs6000/linuxaltivec.h" ;;
2088             powerpc*-*-linux*spe*)
2089                 tm_file="${tm_file} rs6000/linuxspe.h rs6000/e500.h" ;;
2090             powerpc*-*-linux*paired*)
2091                 tm_file="${tm_file} rs6000/750cl.h" ;;
2092         esac
2093         if test x${enable_secureplt} = xyes; then
2094                 tm_file="rs6000/secureplt.h ${tm_file}"
2095         fi
2096         ;;
2097 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
2098         tm_file="${tm_file} elfos.h freebsd-spec.h rs6000/sysv4.h"
2099         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppccomm rs6000/t-vxworks"
2100         extra_options="${extra_options} rs6000/sysv4.opt"
2101         extra_headers=ppc-asm.h
2102         case ${target} in
2103           *-vxworksae*)
2104             tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h"
2105             tmake_file="${tmake_file} rs6000/t-vxworksae"
2106             ;;
2107           *-vxworks*)
2108             tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
2109             ;;
2110         esac
2111         ;;
2112 powerpc-*-lynxos*)
2113         xm_defines=POSIX
2114         tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
2115         tmake_file="t-lynx rs6000/t-lynx"
2116         extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
2117         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2118         thread_file=lynx
2119         gnu_ld=yes
2120         gas=yes
2121         ;;
2122 powerpcle-*-elf*)
2123         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h"
2124         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2125         extra_options="${extra_options} rs6000/sysv4.opt"
2126         ;;
2127 powerpcle-*-eabisim*)
2128         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
2129         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2130         extra_options="${extra_options} rs6000/sysv4.opt"
2131         use_gcc_stdint=wrap
2132         ;;
2133 powerpcle-*-eabi*)
2134         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h"
2135         tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
2136         extra_options="${extra_options} rs6000/sysv4.opt"
2137         use_gcc_stdint=wrap
2138         ;;
2139 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2140         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h rs6000/aix-stdint.h"
2141         tmake_file=rs6000/t-aix43
2142         extra_options="${extra_options} rs6000/aix64.opt"
2143         use_collect2=yes
2144         thread_file='aix'
2145         use_gcc_stdint=provide
2146         extra_headers=
2147         ;;
2148 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
2149         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h rs6000/aix-stdint.h"
2150         extra_options="${extra_options} rs6000/aix64.opt"
2151         tmake_file=rs6000/t-aix43
2152         use_collect2=yes
2153         thread_file='aix'
2154         use_gcc_stdint=wrap
2155         extra_headers=
2156         ;;
2157 rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
2158         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h rs6000/aix-stdint.h"
2159         tmake_file=rs6000/t-aix52
2160         extra_options="${extra_options} rs6000/aix64.opt"
2161         use_collect2=yes
2162         thread_file='aix'
2163         use_gcc_stdint=wrap
2164         extra_headers=
2165         ;;
2166 rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
2167         tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h rs6000/aix-stdint.h"
2168         tmake_file=rs6000/t-aix52
2169         extra_options="${extra_options} rs6000/aix64.opt"
2170         use_collect2=yes
2171         thread_file='aix'
2172         use_gcc_stdint=wrap
2173         extra_headers=altivec.h
2174         ;;
2175 rs6000-ibm-aix[6789].* | powerpc-ibm-aix[6789].*)
2176         tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h rs6000/aix-stdint.h"
2177         tmake_file=rs6000/t-aix52
2178         extra_options="${extra_options} rs6000/aix64.opt"
2179         use_collect2=yes
2180         thread_file='aix'
2181         use_gcc_stdint=wrap
2182         extra_headers=altivec.h
2183         ;;
2184 rx-*-elf*)
2185         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} ../../libgcc/config/rx/rx-abi.h"
2186         tmake_file="${tmake_file} rx/t-rx"
2187         ;;
2188 s390-*-linux*)
2189         tm_file="s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2190         ;;
2191 s390x-*-linux*)
2192         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2193         tm_p_file=s390/s390-protos.h
2194         md_file=s390/s390.md
2195         extra_modes=s390/s390-modes.def
2196         out_file=s390/s390.c
2197         tmake_file="${tmake_file} s390/t-linux64"
2198         ;;
2199 s390x-ibm-tpf*)
2200         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h s390/tpf.h"
2201         tm_p_file=s390/s390-protos.h
2202         md_file=s390/s390.md
2203         extra_modes=s390/s390-modes.def
2204         out_file=s390/s390.c
2205         extra_parts="crtbeginS.o crtendS.o"
2206         thread_file='tpf'
2207         extra_options="${extra_options} s390/tpf.opt"
2208         ;;
2209 score-*-elf)
2210         gas=yes
2211         gnu_ld=yes
2212         tm_file="dbxelf.h elfos.h score/elf.h score/score.h newlib-stdint.h"
2213         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2214         tmake_file="${tmake_file} score/t-score-elf score/t-score-softfp soft-fp/t-softfp"
2215         extra_objs="score7.o"
2216         ;;
2217 sh-*-elf* | sh[12346l]*-*-elf* | \
2218   sh-*-linux* | sh[2346lbe]*-*-linux* | \
2219   sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2220    sh64-*-netbsd* | sh64l*-*-netbsd*)
2221         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2222         if test x${with_endian} = x; then
2223                 case ${target} in
2224                 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2225                 shbe-*-* | sheb-*-*)               with_endian=big,little ;;
2226                 sh[1234]l* | sh[34]*-*-linux*)     with_endian=little ;;
2227                 shl* | sh64l* | sh*-*-linux* | \
2228                   sh5l* | sh-superh-elf)           with_endian=little,big ;;
2229                 sh[1234]*-*-*)                     with_endian=big ;;
2230                 *)                                 with_endian=big,little ;;
2231                 esac
2232         fi
2233         # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2234         #  First word : the default endian.
2235         #  Second word: the secondary endian (optional).
2236         case ${with_endian} in
2237         big)            TM_ENDIAN_CONFIG=mb ;;
2238         little)         TM_ENDIAN_CONFIG=ml ;;
2239         big,little)     TM_ENDIAN_CONFIG="mb ml" ;;
2240         little,big)     TM_ENDIAN_CONFIG="ml mb" ;;
2241         *)      echo "with_endian=${with_endian} not supported."; exit 1 ;;
2242         esac
2243         case ${with_endian} in
2244         little*)        tm_file="sh/little.h ${tm_file}" ;;
2245         esac
2246         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h"
2247         case ${target} in
2248         sh*-*-linux*)   tmake_file="${tmake_file} sh/t-linux"
2249                         tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
2250         sh*-*-netbsd*)
2251                         tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2252                         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2253
2254                         ;;
2255         sh*-superh-elf) if test x$with_libgloss != xno; then
2256                                 with_libgloss=yes
2257                                 tm_file="${tm_file} sh/newlib.h"
2258                         fi
2259                         tm_file="${tm_file} sh/embed-elf.h"
2260                         tm_file="${tm_file} sh/superh.h"
2261                         tmake_file="${tmake_file} sh/t-superh"
2262                         extra_options="${extra_options} sh/superh.opt" ;;
2263         *)              if test x$with_newlib = xyes \
2264                            && test x$with_libgloss = xyes; then
2265                                 tm_file="${tm_file} sh/newlib.h"
2266                         fi
2267                         tm_file="${tm_file} sh/embed-elf.h" ;;
2268         esac
2269         case ${target} in
2270         sh5*-*-netbsd*)
2271                 # SHmedia, 32-bit ABI
2272                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
2273                 ;;
2274         sh64*-netbsd*)
2275                 # SHmedia, 64-bit ABI
2276                 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
2277                 ;;
2278         *-*-netbsd)
2279                 tmake_file="${tmake_file} sh/t-netbsd"
2280                 ;;
2281         sh64*-*-linux*)
2282                 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
2283                 tm_file="${tm_file} sh/sh64.h"
2284                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2285                 ;;
2286         sh64*)
2287                 tmake_file="${tmake_file} sh/t-sh64"
2288                 tm_file="${tm_file} sh/sh64.h"
2289                 if test x$with_newlib = xyes; then
2290                         tm_file="${tm_file} newlib-stdint.h"
2291                 fi
2292                 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2293                 ;;
2294         *-*-elf*)
2295                 tm_file="${tm_file} newlib-stdint.h"
2296                 ;;
2297         esac
2298         # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2299         case `echo ${target} | sed 's/e[lb]-/-/'` in
2300         sh64*-*-netbsd*)        sh_cpu_target=sh5-64media ;;
2301         sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
2302         sh4a_single_only*)      sh_cpu_target=sh4a-single-only ;;
2303         sh4a_single*)           sh_cpu_target=sh4a-single ;;
2304         sh4a_nofpu*)            sh_cpu_target=sh4a-nofpu ;;
2305         sh4al)                  sh_cpu_target=sh4al ;;
2306         sh4a*)                  sh_cpu_target=sh4a ;;
2307         sh4_single_only*)       sh_cpu_target=sh4-single-only ;;
2308         sh4_single*)            sh_cpu_target=sh4-single ;;
2309         sh4_nofpu*)             sh_cpu_target=sh4-nofpu ;;
2310         sh4* | sh-superh-*)     sh_cpu_target=sh4 ;;
2311         sh3e*)                  sh_cpu_target=sh3e ;;
2312         sh*-*-netbsd* | sh3*)   sh_cpu_target=sh3 ;;
2313         sh2a_single_only*)      sh_cpu_target=sh2a-single-only ;;
2314         sh2a_single*)           sh_cpu_target=sh2a-single ;;
2315         sh2a_nofpu*)            sh_cpu_target=sh2a-nofpu ;;
2316         sh2a*)                  sh_cpu_target=sh2a ;;
2317         sh2e*)                  sh_cpu_target=sh2e ;;
2318         sh2*)                   sh_cpu_target=sh2 ;;
2319         *)                      sh_cpu_target=sh1 ;;
2320         esac
2321         # did the user say --without-fp ?
2322         if test x$with_fp = xno; then
2323                 case ${sh_cpu_target} in
2324                 sh5-*media)     sh_cpu_target=${sh_cpu_target}-nofpu ;;
2325                 sh4al | sh1)    ;;
2326                 sh4a* )         sh_cpu_target=sh4a-nofpu ;;
2327                 sh4*)           sh_cpu_target=sh4-nofpu ;;
2328                 sh3*)           sh_cpu_target=sh3 ;;
2329                 sh2a*)          sh_cpu_target=sh2a-nofpu ;;
2330                 sh2*)           sh_cpu_target=sh2 ;;
2331                 *)      echo --without-fp not available for $target: ignored
2332                 esac
2333                 tm_defines="$tm_defines STRICT_NOFPU=1"
2334         fi
2335         sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2336         case $sh_cpu_default in
2337         sh5-64media-nofpu | sh5-64media | \
2338           sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
2339           sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
2340           sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
2341           sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
2342           sh3e | sh3 | sh2e | sh2 | sh1) ;;
2343         "")     sh_cpu_default=${sh_cpu_target} ;;
2344         *)      echo "with_cpu=$with_cpu not supported"; exit 1 ;;
2345         esac
2346         sh_multilibs=${with_multilib_list}
2347         if test "$sh_multilibs" = "default" ; then
2348                 case ${target} in
2349                 sh64-superh-linux* | \
2350                 sh[1234]*)      sh_multilibs=${sh_cpu_target} ;;
2351                 sh64* | sh5*)   sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
2352                 sh-superh-*)    sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2353                 sh*-*-linux*)   sh_multilibs=m1,m3e,m4 ;;
2354                 sh*-*-netbsd*)  sh_multilibs=m3,m3e,m4 ;;
2355                 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
2356                 esac
2357                 if test x$with_fp = xno; then
2358                         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`"
2359                 fi
2360         fi
2361         target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
2362         tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
2363         tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2364         sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^[Ss][Hh]/m/' -e 's/ [Ss][Hh]/ m/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
2365         for sh_multilib in ${sh_multilibs}; do
2366                 case ${sh_multilib} in
2367                 m1 | m2 | m2e | m3 | m3e | \
2368                 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2369                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
2370                 m2a | m2a-single | m2a-single-only | m2a-nofpu | \
2371                 m5-64media | m5-64media-nofpu | \
2372                 m5-32media | m5-32media-nofpu | \
2373                 m5-compact | m5-compact-nofpu)
2374                         # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2375                         # It is passed to MULTIILIB_OPTIONS verbatim.
2376                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2377                         tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2378                         ;;
2379                 \!*)    # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2380                         # It is passed the MULTILIB_EXCEPTIONS verbatim.
2381                         TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
2382                 *)
2383                         echo "with_multilib_list=${sh_multilib} not supported."
2384                         exit 1
2385                         ;;
2386                 esac
2387         done
2388         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
2389         if test x${enable_incomplete_targets} = xyes ; then
2390                 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"
2391         fi
2392         tm_file="$tm_file ./sysroot-suffix.h"
2393         tmake_file="$tmake_file t-sysroot-suffix"
2394         ;;
2395 sh-*-rtems*)
2396         tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
2397         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
2398         ;;
2399 sh-wrs-vxworks)
2400         tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
2401         tm_file="${tm_file} elfos.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
2402         ;;
2403 sparc-*-elf*)
2404         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp-elf.h"
2405         case ${target} in
2406             *-leon-*)
2407                 tmake_file="sparc/t-leon"
2408                 ;;
2409             *-leon[3-9]*)
2410                 tmake_file="sparc/t-leon3"
2411                 ;;
2412             *)
2413                 tmake_file="sparc/t-elf"
2414                 ;;
2415         esac
2416         tmake_file="${tmake_file} sparc/t-crtfm"
2417         extra_parts="crtbegin.o crtend.o"
2418         ;;
2419 sparc-*-rtems*)
2420         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
2421         tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
2422         extra_parts="crtbegin.o crtend.o"
2423         ;;
2424 sparc-*-linux*)
2425         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h"
2426         extra_options="${extra_options} sparc/long-double-switch.opt"
2427         case ${target} in
2428             *-leon-*)
2429                 tmake_file="${tmake_file} sparc/t-leon"
2430                 ;;
2431             *-leon[3-9]*)
2432                 tmake_file="${tmake_file} sparc/t-leon3"
2433                 ;;
2434             *)
2435                 tmake_file="${tmake_file} sparc/t-linux"
2436                 ;;
2437         esac
2438         if test x$enable_targets = xall; then
2439                 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
2440                 tmake_file="${tmake_file} sparc/t-linux64"
2441         else
2442                 tm_file="${tm_file} sparc/linux.h"
2443         fi
2444         tmake_file="${tmake_file} sparc/t-crtfm"
2445         ;;
2446 sparc-*-netbsdelf*)
2447         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2448         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2449         extra_options="${extra_options} sparc/long-double-switch.opt"
2450         ;;
2451 sparc*-*-solaris2*)
2452         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sol2.h"
2453         case ${target} in
2454             *-*-solaris2.1[0-9]*)
2455                 tm_file="${tm_file} sol2-10.h"
2456                 use_gcc_stdint=wrap
2457                 ;;
2458             *)
2459                 use_gcc_stdint=provide
2460                 ;;
2461         esac
2462         tm_file="${tm_file} sparc/sol2.h"
2463         case ${target} in
2464             sparc64-*-* | sparcv9-*-*)
2465                 tm_file="${tm_file} sparc/sol2-64.h"
2466                 ;;
2467             *)
2468                 test x$with_cpu != x || with_cpu=v9
2469                 ;;
2470         esac
2471         tm_file="${tm_file} sparc/sol2-bi.h"
2472         if test x$gas = xyes; then
2473                 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
2474         fi
2475         if test x$gnu_ld = xyes; then
2476                 tm_file="${tm_file} sol2-gld.h sparc/sol2-gld-bi.h"
2477         fi
2478         tm_file="${tm_file} tm-dwarf2.h"
2479         tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
2480         if test x$gnu_ld = xyes; then
2481                 tmake_file="$tmake_file t-slibgcc-elf-ver"
2482         else
2483                 tmake_file="$tmake_file t-slibgcc-sld"
2484         fi
2485         if test x$gas = xyes; then
2486                 tm_file="usegas.h ${tm_file}"
2487         fi
2488         c_target_objs="sol2-c.o"
2489         cxx_target_objs="sol2-c.o"
2490         extra_objs="sol2.o"
2491         tm_p_file="${tm_p_file} sol2-protos.h"
2492         extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
2493         case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
2494           "":yes:* | yes:yes:* )
2495                 thread_file=posix
2496                 ;;
2497         esac
2498         ;;
2499 sparc-wrs-vxworks)
2500         tm_file="${tm_file} elfos.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
2501         tmake_file="${tmake_file} sparc/t-vxworks"
2502         ;;
2503 sparc64-*-elf*)
2504         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
2505         extra_options="${extra_options} sparc/little-endian.opt"
2506         tmake_file="${tmake_file} sparc/t-crtfm"
2507         extra_parts="crtbegin.o crtend.o"
2508         ;;
2509 sparc64-*-rtems*)
2510         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h sparc/rtemself.h rtems.h"
2511         extra_options="${extra_options} sparc/little-endian.opt"
2512         tmake_file="${tmake_file} sparc/t-crtfm t-rtems"
2513         extra_parts="crtbegin.o crtend.o"
2514         ;;
2515 sparc64-*-linux*)
2516         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h sparc/linux64.h"
2517         extra_options="${extra_options} sparc/long-double-switch.opt"
2518         tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
2519         ;;
2520 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2521         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2522         extra_options="${extra_options} sparc/long-double-switch.opt"
2523         tmake_file="${tmake_file} sparc/t-crtfm"
2524         case "x$with_cpu" in
2525                 xultrasparc) ;;
2526                 x) with_cpu=ultrasparc ;;
2527                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2528         esac
2529         ;;
2530 sparc64-*-netbsd*)
2531         tm_file="sparc/biarch64.h ${tm_file}"
2532         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2533         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2534         extra_options="${extra_options} sparc/long-double-switch.opt"
2535         tmake_file="${tmake_file} sparc/t-netbsd64"
2536         ;;
2537 sparc64-*-openbsd*)
2538         tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h"
2539         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h sparc/openbsd64.h"
2540         extra_options="${extra_options} openbsd.opt"
2541         extra_options="${extra_options} sparc/little-endian.opt"
2542         gas=yes gnu_ld=yes
2543         with_cpu=ultrasparc
2544         ;;
2545 spu-*-elf*)
2546         tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
2547         tmake_file="spu/t-spu-elf"
2548         extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h spu_cache.h"
2549         extra_modes=spu/spu-modes.def
2550         c_target_objs="${c_target_objs} spu-c.o"
2551         cxx_target_objs="${cxx_target_objs} spu-c.o"
2552         ;;
2553 v850e1-*-*)
2554         target_cpu_default="TARGET_CPU_v850e1"
2555         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
2556         tm_p_file=v850/v850-protos.h
2557         tmake_file=v850/t-v850e
2558         md_file=v850/v850.md
2559         extra_modes=v850/v850-modes.def
2560         out_file=v850/v850.c
2561         extra_options="${extra_options} v850/v850.opt"
2562         if test x$stabs = xyes
2563         then
2564                 tm_file="${tm_file} dbx.h"
2565         fi
2566         use_collect2=no
2567         c_target_objs="v850-c.o"
2568         cxx_target_objs="v850-c.o"
2569         use_gcc_stdint=wrap
2570         ;;
2571 v850e-*-*)
2572         target_cpu_default="TARGET_CPU_v850e"
2573         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
2574         tm_p_file=v850/v850-protos.h
2575         tmake_file=v850/t-v850e
2576         md_file=v850/v850.md
2577         extra_modes=v850/v850-modes.def
2578         out_file=v850/v850.c
2579         extra_options="${extra_options} v850/v850.opt"
2580         if test x$stabs = xyes
2581         then
2582                 tm_file="${tm_file} dbx.h"
2583         fi
2584         use_collect2=no
2585         c_target_objs="v850-c.o"
2586         cxx_target_objs="v850-c.o"
2587         use_gcc_stdint=wrap
2588         ;;
2589 v850-*-*)
2590         target_cpu_default="TARGET_CPU_generic"
2591         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2592         tmake_file=v850/t-v850
2593         if test x$stabs = xyes
2594         then
2595                 tm_file="${tm_file} dbx.h"
2596         fi
2597         use_collect2=no
2598         c_target_objs="v850-c.o"
2599         cxx_target_objs="v850-c.o"
2600         use_gcc_stdint=wrap
2601         ;;
2602 vax-*-linux*)
2603         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h vax/elf.h vax/linux.h"
2604         extra_options="${extra_options} vax/elf.opt"
2605         tmake_file="${tmake_file} vax/t-linux"
2606         ;;
2607 vax-*-netbsdelf*)
2608         tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2609         extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
2610         ;;
2611 vax-*-openbsd*)
2612         tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-pthread.h vax/openbsd.h"
2613         extra_options="${extra_options} openbsd.opt"
2614         use_collect2=yes
2615         ;;
2616 xstormy16-*-elf)
2617         # For historical reasons, the target files omit the 'x'.
2618         tm_file="dbxelf.h elfos.h newlib-stdint.h stormy16/stormy16.h"
2619         tm_p_file=stormy16/stormy16-protos.h
2620         md_file=stormy16/stormy16.md
2621         out_file=stormy16/stormy16.c
2622         extra_options=stormy16/stormy16.opt
2623         tmake_file="stormy16/t-stormy16"
2624         extra_parts="crtbegin.o crtend.o"
2625         ;;
2626 xtensa*-*-elf*)
2627         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h xtensa/elf.h"
2628         extra_options="${extra_options} xtensa/elf.opt"
2629         tmake_file="xtensa/t-xtensa xtensa/t-elf"
2630         ;;
2631 xtensa*-*-linux*)
2632         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/linux.h"
2633         tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
2634         ;;
2635 am33_2.0-*-linux*)
2636         tm_file="mn10300/mn10300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h mn10300/linux.h"
2637         tmake_file="${tmake_file} mn10300/t-linux"
2638         gas=yes gnu_ld=yes
2639         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2640         use_collect2=no
2641         ;;
2642 m32c-*-rtems*)
2643         tm_file="dbxelf.h elfos.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
2644         tmake_file="${tmake_file} t-rtems"
2645         c_target_objs="m32c-pragma.o"
2646         cxx_target_objs="m32c-pragma.o"
2647         ;;
2648 m32c-*-elf*)
2649         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2650         c_target_objs="m32c-pragma.o"
2651         cxx_target_objs="m32c-pragma.o"
2652         ;;
2653 *)
2654         echo "*** Configuration ${target} not supported" 1>&2
2655         exit 1
2656         ;;
2657 esac
2658
2659 case ${target} in
2660 i[34567]86-*-linux* | x86_64-*-linux*)
2661         tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
2662         ;;
2663 i[34567]86-*-* | x86_64-*-*)
2664         tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
2665         ;;
2666 powerpc*-*-* | rs6000-*-*)
2667         tm_file="${tm_file} rs6000/option-defaults.h"
2668 esac
2669
2670 if [ "$target_has_targetcm" = "no" ]; then
2671   c_target_objs="$c_target_objs default-c.o"
2672   cxx_target_objs="$cxx_target_objs default-c.o"
2673 fi
2674
2675 # Support for --with-cpu and related options (and a few unrelated options,
2676 # too).
2677 case ${with_cpu} in
2678   yes | no)
2679     echo "--with-cpu must be passed a value" 1>&2
2680     exit 1
2681     ;;
2682 esac
2683
2684 # Set arch and cpu from ${target} and ${target_noncanonical}.  Set cpu
2685 # to generic if there is no processor scheduler model for the target.
2686 arch=
2687 cpu=
2688 arch_without_sse2=no
2689 arch_without_64bit=no
2690 case ${target} in
2691   i386-*-freebsd*)
2692     if test $fbsd_major -ge 6; then
2693       arch=i486
2694     else
2695       arch=i386
2696     fi
2697     cpu=generic
2698     arch_without_sse2=yes
2699     arch_without_64bit=yes
2700     ;;
2701   i386-*-*)
2702     arch=i386
2703     cpu=i386
2704     arch_without_sse2=yes
2705     arch_without_64bit=yes
2706     ;;
2707   i486-*-*)
2708     arch=i486
2709     cpu=i486
2710     arch_without_sse2=yes
2711     arch_without_64bit=yes
2712     ;;
2713   i586-*-*)
2714     arch_without_sse2=yes
2715     arch_without_64bit=yes
2716     case ${target_noncanonical} in
2717       k6_2-*)
2718         arch=k6-2
2719         cpu=k6-2
2720         ;;
2721       k6_3-*)
2722         arch=k6-3
2723         cpu=k6-3
2724         ;;
2725       k6-*)
2726         arch=k6
2727         cpu=k6
2728         ;;
2729       pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2730         arch=pentium-mmx
2731         cpu=pentium-mmx
2732         ;;
2733       *)
2734         arch=pentium
2735         cpu=pentium
2736         ;;
2737     esac
2738     ;;
2739   i686-*-* | i786-*-*)
2740     case ${target_noncanonical} in
2741       bdver1-*)
2742         arch=bdver1
2743         cpu=bdver1
2744         ;;
2745       btver1-*)
2746         arch=btver1
2747         cpu=btver1
2748         ;;
2749       amdfam10-*|barcelona-*)
2750         arch=amdfam10
2751         cpu=amdfam10
2752         ;;
2753       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2754         arch=k8-sse3
2755         cpu=k8-sse3
2756         ;;
2757       k8-*|opteron-*|athlon64-*|athlon_fx-*)
2758         arch=k8
2759         cpu=k8
2760         ;;
2761       athlon_xp-*|athlon_mp-*|athlon_4-*)
2762         arch=athlon-4
2763         cpu=athlon-4
2764         arch_without_sse2=yes
2765         arch_without_64bit=yes
2766         ;;
2767       athlon_tbird-*|athlon-*)
2768         arch=athlon
2769         cpu=athlon
2770         arch_without_sse2=yes
2771         ;;
2772       geode-*)
2773         arch=geode
2774         cpu=geode
2775         arch_without_sse2=yes
2776         ;;
2777       pentium2-*)
2778         arch=pentium2
2779         cpu=pentium2
2780         arch_without_sse2=yes
2781         ;;
2782       pentium3-*|pentium3m-*)
2783         arch=pentium3
2784         cpu=pentium3
2785         arch_without_sse2=yes
2786         ;;
2787       pentium4-*|pentium4m-*)
2788         arch=pentium4
2789         cpu=pentium4
2790         ;;
2791       prescott-*)
2792         arch=prescott
2793         cpu=prescott
2794         ;;
2795       nocona-*)
2796         arch=nocona
2797         cpu=nocona
2798         ;;
2799       atom-*)
2800         arch=atom
2801         cpu=atom
2802         ;;
2803       core2-*)
2804         arch=core2
2805         cpu=core2
2806         ;;
2807       corei7-*)
2808         arch=corei7
2809         cpu=corei7
2810         ;;
2811       corei7_avx-*)
2812         arch=corei7-avx
2813         cpu=corei7-avx
2814         ;;
2815       pentium_m-*)
2816         arch=pentium-m
2817         cpu=pentium-m
2818         ;;
2819       pentiumpro-*)
2820         arch=pentiumpro
2821         cpu=pentiumpro
2822         arch_without_sse2=yes
2823         ;;
2824       *)
2825         arch=pentiumpro
2826         cpu=generic
2827         arch_without_sse2=yes
2828         arch_without_64bit=yes
2829         ;;
2830     esac
2831     ;;
2832   x86_64-*-*)
2833     case ${target_noncanonical} in
2834       bdver1-*)
2835         arch=bdver1
2836         cpu=bdver1
2837         ;;
2838       btver1-*)
2839         arch=btver1
2840         cpu=btver1
2841         ;;
2842       amdfam10-*|barcelona-*)
2843         arch=amdfam10
2844         cpu=amdfam10
2845         ;;
2846       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2847         arch=k8-sse3
2848         cpu=k8-sse3
2849         ;;
2850       k8-*|opteron-*|athlon_64-*)
2851         arch=k8
2852         cpu=k8
2853         ;;
2854       nocona-*)
2855         arch=nocona
2856         cpu=nocona
2857         ;;
2858       atom-*)
2859         arch=atom
2860         cpu=atom
2861         ;;
2862       core2-*)
2863         arch=core2
2864         cpu=core2
2865         ;;
2866       corei7-*)
2867         arch=corei7
2868         cpu=corei7
2869         ;;
2870       *)
2871         arch=x86-64
2872         cpu=generic
2873         ;;
2874     esac
2875     ;;
2876 esac
2877
2878 # If there is no $with_cpu option, try to infer one from ${target}.
2879 # This block sets nothing except for with_cpu.
2880 if test x$with_cpu = x ; then
2881   case ${target} in
2882     i[34567]86-*-*|x86_64-*-*)
2883       with_cpu=$cpu
2884       ;;
2885     alphaev6[78]*-*-*)
2886       with_cpu=ev67
2887       ;;
2888     alphaev6*-*-*)
2889       with_cpu=ev6
2890       ;;
2891     alphapca56*-*-*)
2892       with_cpu=pca56
2893       ;;
2894     alphaev56*-*-*)
2895       with_cpu=ev56
2896       ;;
2897     alphaev5*-*-*)
2898       with_cpu=ev5
2899       ;;
2900     frv-*-*linux* | frv400-*-*linux*)
2901       with_cpu=fr400
2902       ;;
2903     frv550-*-*linux*)
2904       with_cpu=fr550
2905       ;;
2906     m68k*-*-*)
2907       case "$with_arch" in
2908         "cf")
2909           with_cpu=${default_cf_cpu}
2910           ;;
2911         "" | "m68k")
2912           with_cpu=m${default_m68k_cpu}
2913           ;;
2914       esac
2915       ;;
2916     mips*-*-vxworks)
2917       with_arch=mips2
2918       ;;
2919     sparc-leon*-*)
2920       with_cpu=v8;
2921       ;;
2922     sparc*-*-*)
2923       with_cpu="`echo ${target} | sed 's/-.*$//'`"
2924       ;;
2925   esac
2926
2927   # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
2928   case ${target} in
2929     i[34567]86-*-*|x86_64-*-*)
2930       if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
2931         if test x$with_cpu_32 = x; then
2932           with_cpu_32=$with_cpu
2933         fi
2934         if test x$with_cpu_64 = x; then
2935           with_cpu_64=$with_cpu
2936         fi
2937         with_cpu=
2938       fi
2939       ;;
2940   esac
2941 fi
2942
2943 # Support for --with-arch and related options (and a few unrelated options,
2944 # too).
2945 case ${with_arch} in
2946   yes | no)
2947     echo "--with-arch must be passed a value" 1>&2
2948     exit 1
2949     ;;
2950 esac
2951
2952 # If there is no $with_arch option, try to infer one from ${target}.
2953 # This block sets nothing except for with_arch.
2954 if test x$with_arch = x ; then
2955   case ${target} in
2956     i[34567]86-*-darwin*|x86_64-*-darwin*)
2957       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
2958       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
2959       ;;
2960     i[34567]86-*-*)
2961       # --with-fpmath sets the default ISA to SSE2, which is the same
2962       # ISA supported by Pentium 4.
2963       if test x$with_fpmath = x || test $arch_without_sse2 = no; then
2964         with_arch=$arch
2965       else
2966         with_arch=pentium4
2967       fi
2968       ;;
2969     x86_64-*-*)
2970       with_arch=$arch
2971       ;;
2972   esac
2973
2974   # Avoid overriding --with-arch-32 and --with-arch-64 values.
2975   case ${target} in
2976     i[34567]86-*-darwin*|x86_64-*-darwin*)
2977       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
2978       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
2979       ;;
2980     i[34567]86-*-*|x86_64-*-*)
2981       if test x$with_arch_32 != x || test x$with_arch_64 != x; then
2982         if test x$with_arch_32 = x; then
2983           with_arch_32=$with_arch
2984         fi
2985         if test x$with_arch_64 = x; then
2986           if test $arch_without_64bit = yes; then
2987             # Set the default 64bit arch to x86-64 if the default arch
2988             # doesn't support 64bit.
2989             with_arch_64=x86-64
2990           else
2991             with_arch_64=$with_arch
2992           fi
2993         fi
2994         with_arch=
2995       elif test $arch_without_64bit$need_64bit_isa = yesyes; then
2996         # Set the default 64bit arch to x86-64 if the default arch
2997         # doesn't support 64bit and we need 64bit ISA.
2998         with_arch_32=$with_arch
2999         with_arch_64=x86-64
3000         with_arch=
3001       fi
3002       ;;
3003   esac
3004 fi
3005
3006 # Support --with-fpmath.
3007 if test x$with_fpmath != x; then
3008   case ${target} in
3009     i[34567]86-*-* | x86_64-*-*)
3010       case ${with_fpmath} in
3011       avx)
3012         tm_file="${tm_file} i386/avxmath.h"
3013         ;;
3014       sse)
3015         tm_file="${tm_file} i386/ssemath.h"
3016         ;;
3017       *)
3018         echo "Invalid --with-fpmath=$with_fpmath" 1>&2
3019         exit 1
3020         ;;
3021       esac
3022       ;;
3023     *)
3024       echo "--with-fpmath isn't supported for $target." 1>&2
3025       exit 1
3026       ;;
3027   esac
3028 fi
3029
3030 # Similarly for --with-schedule.
3031 if test x$with_schedule = x; then
3032         case ${target} in
3033         hppa1*)
3034                 # Override default PA8000 scheduling model.
3035                 with_schedule=7100LC
3036                 ;;
3037         esac
3038 fi
3039
3040 # Validate and mark as valid any --with options supported
3041 # by this target.  In order to use a particular --with option
3042 # you must list it in supported_defaults; validating the value
3043 # is optional.  This case statement should set nothing besides
3044 # supported_defaults.
3045
3046 supported_defaults=
3047 case "${target}" in
3048         alpha*-*-*)
3049                 supported_defaults="cpu tune"
3050                 for which in cpu tune; do
3051                         eval "val=\$with_$which"
3052                         case "$val" in
3053                         "" \
3054                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
3055                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
3056                         | 21264a)
3057                                 ;;
3058                         *)
3059                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
3060                                 exit 1
3061                                 ;;
3062                         esac
3063                 done
3064                 ;;
3065
3066         arm*-*-*)
3067                 supported_defaults="arch cpu float tune fpu abi mode"
3068                 for which in cpu tune; do
3069                         # See if it matches any of the entries in arm-cores.def
3070                         eval "val=\$with_$which"
3071                         if [ x"$val" = x ] \
3072                             || grep "^ARM_CORE(\"$val\"," \
3073                                     ${srcdir}/config/arm/arm-cores.def \
3074                                     > /dev/null; then
3075                           # Ok
3076                           new_val=`grep "^ARM_CORE(\"$val\"," \
3077                                 ${srcdir}/config/arm/arm-cores.def | \
3078                                 sed -e 's/^[^,]*,[      ]*//' | \
3079                                 sed -e 's/,.*$//'`
3080                           eval "target_${which}_cname=$new_val"
3081                         echo "For $val real value is $new_val"
3082                           true
3083                         else
3084                           echo "Unknown CPU used in --with-$which=$val" 1>&2
3085                           exit 1
3086                         fi
3087                 done
3088
3089                 case "$with_arch" in
3090                 "" \
3091                 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
3092                 | armv5te | armv6j |armv6k | armv6z | armv6zk | armv6-m \
3093                 | armv7 | armv7-a | armv7-r | armv7-m \
3094                 | iwmmxt | ep9312)
3095                         # OK
3096                         ;;
3097                 *)
3098                         echo "Unknown arch used in --with-arch=$with_arch" 1>&2
3099                         exit 1
3100                         ;;
3101                 esac
3102
3103                 case "$with_float" in
3104                 "" \
3105                 | soft | hard | softfp)
3106                         # OK
3107                         ;;
3108                 *)
3109                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3110                         exit 1
3111                         ;;
3112                 esac
3113
3114                 case "$with_fpu" in
3115                 "" \
3116                 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | vfpv3 \
3117                 | vfpv3-fp16 | vfpv3-d16 | vfpv3-d16-fp16 | vfpv3xd \
3118                 | vfpv3xd-fp16 | neon | neon-fp16 | vfpv4 | vfpv4-d16 \
3119                 | fpv4-sp-d16 | neon-vfpv4)
3120                         # OK
3121                         ;;
3122                 *)
3123                         echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
3124                         exit 1
3125                         ;;
3126                 esac
3127
3128                 case "$with_abi" in
3129                 "" \
3130                 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
3131                         #OK
3132                         ;;
3133                 *)
3134                         echo "Unknown ABI used in --with-abi=$with_abi"
3135                         exit 1
3136                         ;;
3137                 esac
3138
3139                 case "$with_mode" in
3140                 "" \
3141                 | arm | thumb )
3142                         #OK
3143                         ;;
3144                 *)
3145                         echo "Unknown mode used in --with-mode=$with_mode"
3146                         exit 1
3147                         ;;
3148                 esac
3149
3150                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
3151                         echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
3152                 fi
3153                 ;;
3154
3155         fr*-*-*linux*)
3156                 supported_defaults=cpu
3157                 case "$with_cpu" in
3158                 fr400) ;;
3159                 fr550) ;;
3160                 *)
3161                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3162                         exit 1
3163                         ;;
3164                 esac
3165                 ;;
3166
3167         fido-*-* | m68k*-*-*)
3168                 supported_defaults="arch cpu"
3169                 case "$with_arch" in
3170                 "" | "m68k"| "cf")
3171                         m68k_arch_family="$with_arch"
3172                         ;;
3173                 *)
3174                         echo "Invalid --with-arch=$with_arch" 1>&2
3175                         exit 1
3176                         ;;
3177                 esac
3178
3179                 # We always have a $with_cpu setting here.
3180                 case "$with_cpu" in
3181                 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
3182                         m68k_cpu_ident=$with_cpu
3183                         ;;
3184                 "m68020-40")
3185                         m68k_cpu_ident=m68020
3186                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
3187                         ;;
3188                 "m68020-60")
3189                         m68k_cpu_ident=m68020
3190                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
3191                         ;;
3192                 *)
3193                         # We need the C identifier rather than the string.
3194                         m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
3195                            'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
3196                             $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
3197                                  ${srcdir}/config/m68k/m68k-devices.def`
3198                         if [ x"$m68k_cpu_ident" = x ] ; then
3199                                 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
3200                                 exit 1
3201                         fi
3202                         with_cpu="mcpu=$with_cpu"
3203                         ;;
3204                 esac
3205                 ;;
3206
3207         hppa*-*-*)
3208                 supported_defaults="arch schedule"
3209
3210                 case "$with_arch" in
3211                 "" | 1.0 | 1.1 | 2.0)
3212                         # OK
3213                         ;;
3214                 *)
3215                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
3216                         exit 1
3217                         ;;
3218                 esac
3219
3220                 case "$with_schedule" in
3221                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
3222                         # OK
3223                         ;;
3224                 *)
3225                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
3226                         exit 1
3227                         ;;
3228                 esac
3229                 ;;
3230
3231         i[34567]86-*-* | x86_64-*-*)
3232                 supported_defaults="arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
3233                 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
3234                         eval "val=\$with_$which"
3235                         case ${val} in
3236                         i386 | i486 \
3237                         | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
3238                         | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
3239                         | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
3240                         | athlon-4 | athlon-xp | athlon-mp | geode \
3241                         | prescott | pentium-m | pentium4m | pentium3m)
3242                                 case "${target}" in
3243                                   x86_64-*-*)
3244                                       case "x$which" in
3245                                         *_32)
3246                                                 ;;
3247                                         *)
3248                                                 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
3249                                                 exit 1
3250                                                 ;;
3251                                       esac
3252                                       ;;
3253                                 esac
3254                                 # OK
3255                                 ;;
3256                         "" | x86-64 | generic | native \
3257                         | k8 | k8-sse3 | athlon64 | athlon64-sse3 | opteron \
3258                         | opteron-sse3 | athlon-fx | bdver1 | btver1 | amdfam10 \
3259                         | barcelona | nocona | core2 | corei7 | corei7-avx | atom)
3260                                 # OK
3261                                 ;;
3262                         *)
3263                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
3264                                 exit 1
3265                                 ;;
3266                         esac
3267                 done
3268                 ;;
3269
3270         mips*-*-*)
3271                 supported_defaults="abi arch arch_32 arch_64 float tune tune_32 tune_64 divide llsc mips-plt synci"
3272
3273                 case ${with_float} in
3274                 "" | soft | hard)
3275                         # OK
3276                         ;;
3277                 *)
3278                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3279                         exit 1
3280                         ;;
3281                 esac
3282
3283                 case ${with_abi} in
3284                 "" | 32 | o64 | n32 | 64 | eabi)
3285                         # OK
3286                         ;;
3287                 *)
3288                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
3289                         exit 1
3290                         ;;
3291                 esac
3292
3293                 case ${with_divide} in
3294                 "" | breaks | traps)
3295                         # OK
3296                         ;;
3297                 *)
3298                         echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
3299                         exit 1
3300                         ;;
3301                 esac
3302
3303                 case ${with_llsc} in
3304                 yes)
3305                         with_llsc=llsc
3306                         ;;
3307                 no)
3308                         with_llsc="no-llsc"
3309                         ;;
3310                 "")
3311                         # OK
3312                         ;;
3313                 *)
3314                         echo "Unknown llsc type used in --with-llsc" 1>&2
3315                         exit 1
3316                         ;;
3317                 esac
3318
3319                 case ${with_mips_plt} in
3320                 yes)
3321                         with_mips_plt=plt
3322                         ;;
3323                 no)
3324                         with_mips_plt=no-plt
3325                         ;;
3326                 "")
3327                         ;;
3328                 *)
3329                         echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
3330                         exit 1
3331                         ;;
3332                 esac
3333
3334                 case ${with_synci} in
3335                 yes)
3336                         with_synci=synci
3337                         ;;
3338                 "" | no)
3339                         # No is the default.
3340                         with_synci=no-synci
3341                         ;;
3342                 *)
3343                         echo "Unknown synci type used in --with-synci" 1>&2
3344                         exit 1
3345                         ;;
3346                 esac
3347                 ;;
3348
3349         powerpc*-*-* | rs6000-*-*)
3350                 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
3351
3352                 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
3353                         eval "val=\$with_$which"
3354                         case ${val} in
3355                         default32 | default64)
3356                                 case $which in
3357                                 cpu | tune)
3358                                         ;;
3359                                 *)
3360                                         echo "$val only valid for --with-cpu and --with-tune." 1>&2
3361                                         exit 1
3362                                         ;;
3363                                 esac
3364                                 with_which="with_$which"
3365                                 eval $with_which=
3366                                 ;;
3367                         405cr)
3368                                 tm_defines="${tm_defines} CONFIG_PPC405CR"
3369                                 eval "with_$which=405"
3370                                 ;;
3371                         "" | common \
3372                         | power | power[234567] | power6x | powerpc | powerpc64 \
3373                         | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
3374                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
3375                         | 476 | 476fp | 505 | 601 | 602 | 603 | 603e | ec603e \
3376                         | 604 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
3377                         | a2 | e300c[23] | 854[08] | e500mc | e500mc64 | titan\
3378                         | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
3379                                 # OK
3380                                 ;;
3381                         *)
3382                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3383                                 exit 1
3384                                 ;;
3385                         esac
3386                 done
3387                 ;;
3388
3389         s390*-*-*)
3390                 supported_defaults="arch mode tune"
3391
3392                 for which in arch tune; do
3393                         eval "val=\$with_$which"
3394                         case ${val} in
3395                         "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10 | z196)
3396                                 # OK
3397                                 ;;
3398                         *)
3399                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3400                                 exit 1
3401                                 ;;
3402                         esac
3403                 done
3404
3405                 case ${with_mode} in
3406                 "" | esa | zarch)
3407                         # OK
3408                         ;;
3409                 *)
3410                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
3411                         exit 1
3412                         ;;
3413                 esac
3414                 ;;
3415
3416         sh[123456ble]-*-* | sh-*-*)
3417                 supported_defaults="cpu"
3418                 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
3419                 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
3420                         # OK
3421                         ;;
3422                 m2a | m2a-single | m2a-single-only | m2a-nofpu)
3423                         ;;
3424                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
3425                         ;;
3426                 *)
3427                         echo "Unknown CPU used in --with-cpu=$with_cpu, known values:"  1>&2
3428                         echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
3429                         echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
3430                         echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
3431                         exit 1
3432                         ;;
3433                 esac
3434                 ;;
3435         sparc*-*-*)
3436                 supported_defaults="cpu float tune"
3437
3438                 for which in cpu tune; do
3439                         eval "val=\$with_$which"
3440                         case ${val} in
3441                         "" | sparc | sparcv9 | sparc64 \
3442                         | v7 | cypress \
3443                         | v8 | supersparc | hypersparc | leon \
3444                         | sparclite | f930 | f934 | sparclite86x \
3445                         | sparclet | tsc701 \
3446                         | v9 | ultrasparc | ultrasparc3 | niagara | niagara2)
3447                                 # OK
3448                                 ;;
3449                         *)
3450                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
3451                                 exit 1
3452                                 ;;
3453                         esac
3454                 done
3455
3456                 case ${with_float} in
3457                 "" | soft | hard)
3458                         # OK
3459                         ;;
3460                 *)
3461                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3462                         exit 1
3463                         ;;
3464                 esac
3465                 ;;
3466
3467         spu-*-*)
3468                 supported_defaults="arch tune"
3469
3470                 for which in arch tune; do
3471                         eval "val=\$with_$which"
3472                         case ${val} in
3473                         "" | cell | celledp)
3474                                 # OK
3475                                 ;;
3476                         *)
3477                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
3478                                 exit 1
3479                                 ;;
3480                         esac
3481                 done
3482                 ;;
3483
3484         v850*-*-*)
3485                 supported_defaults=cpu
3486                 case ${with_cpu} in
3487                 "" | v850e | v850e1)
3488                         # OK
3489                         ;;
3490                 *)
3491                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3492                         exit 1
3493                         ;;
3494                 esac
3495                 ;;
3496 esac
3497
3498 # Set some miscellaneous flags for particular targets.
3499 target_cpu_default2=
3500 case ${target} in
3501         alpha*-*-*)
3502                 if test x$gas = xyes
3503                 then
3504                         target_cpu_default2="MASK_GAS"
3505                 fi
3506                 ;;
3507
3508         arm*-*-*)
3509                 if test x$target_cpu_cname = x
3510                 then
3511                         target_cpu_default2=TARGET_CPU_generic
3512                 else
3513                         target_cpu_default2=TARGET_CPU_$target_cpu_cname
3514                 fi
3515                 ;;
3516
3517         hppa*-*-*)
3518                 target_cpu_default2="MASK_BIG_SWITCH"
3519                 if test x$gas = xyes
3520                 then
3521                         target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
3522                 fi
3523                 ;;
3524
3525         fido*-*-* | m68k*-*-*)
3526                 target_cpu_default2=$m68k_cpu_ident
3527                 if [ x"$m68k_arch_family" != x ]; then
3528                         tmake_file="m68k/t-$m68k_arch_family $tmake_file"
3529                 fi
3530                 ;;
3531
3532         i[34567]86-*-darwin* | x86_64-*-darwin*)
3533                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3534                 ;;
3535         i[34567]86-*-linux* | x86_64-*-linux* | \
3536           i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
3537           i[34567]86-*-gnu*)
3538                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux"
3539                 ;;
3540         i[34567]86-*-solaris2*)
3541                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3542                 ;;
3543         i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw*)
3544                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3545                 ;;
3546         i[34567]86-*-freebsd* | x86_64-*-freebsd*)
3547                 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3548                 ;;
3549         ia64*-*-linux*)
3550                 tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp"
3551                 ;;
3552
3553         mips*-*-*)
3554                 if test x$gnu_ld = xyes
3555                 then
3556                         target_cpu_default2="MASK_SPLIT_ADDRESSES"
3557                 fi
3558                 case ${target} in
3559                         mips*el-*-*)
3560                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
3561                                 ;;
3562                 esac
3563                 tmake_file="mips/t-mips $tmake_file"
3564                 ;;
3565
3566         powerpc*-*-* | rs6000-*-*)
3567                 # FIXME: The PowerPC port uses the value set at compile time,
3568                 # although it's only cosmetic.
3569                 if test "x$with_cpu" != x
3570                 then
3571                         target_cpu_default2="\\\"$with_cpu\\\""
3572                 fi
3573                 out_file=rs6000/rs6000.c
3574                 c_target_objs="${c_target_objs} rs6000-c.o"
3575                 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
3576                 tmake_file="rs6000/t-rs6000 ${tmake_file}"
3577
3578                 if test x$enable_e500_double = xyes
3579                 then
3580                         tm_file="$tm_file rs6000/e500-double.h"
3581                 fi
3582                 ;;
3583
3584         sh[123456ble]*-*-* | sh-*-*)
3585                 c_target_objs="${c_target_objs} sh-c.o"
3586                 cxx_target_objs="${cxx_target_objs} sh-c.o"
3587                 ;;
3588
3589         sparc-leon*-*)
3590                 if test x$with_tune = x ; then
3591                   with_tune=leon;
3592                 fi
3593
3594                 # The SPARC port checks this value at compile-time.
3595                 target_cpu_default2="TARGET_CPU_$with_cpu"
3596                 ;;
3597
3598         sparc*-*-*)
3599                 # Some standard aliases.
3600                 case x$with_cpu in
3601                 xsparc)
3602                         with_cpu=v7
3603                         ;;
3604                 xsparcv9 | xsparc64)
3605                         with_cpu=v9
3606                         ;;
3607                 esac
3608
3609                 # The SPARC port checks this value at compile-time.
3610                 target_cpu_default2="TARGET_CPU_$with_cpu"
3611                 ;;
3612
3613         v850*-*-*)
3614                 # FIXME: The v850 is "special" in that it does not support
3615                 # runtime CPU selection, only --with-cpu.
3616                 case "x$with_cpu" in
3617                 x)
3618                         ;;
3619                 xv850e)
3620                         target_cpu_default2="TARGET_CPU_$with_cpu"
3621                         ;;
3622                 esac
3623                 ;;
3624 esac
3625
3626 t=
3627 all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu divide llsc mips-plt synci"
3628 for option in $all_defaults
3629 do
3630         eval "val=\$with_"`echo $option | sed s/-/_/g`
3631         if test -n "$val"; then
3632                 case " $supported_defaults " in
3633                 *" $option "*)
3634                         ;;
3635                 *)
3636                         echo "This target does not support --with-$option." 2>&1
3637                         echo "Valid --with options are: $supported_defaults" 2>&1
3638                         exit 1
3639                         ;;
3640                 esac
3641
3642                 if test "x$t" = x
3643                 then
3644                         t="{ \"$option\", \"$val\" }"
3645                 else
3646                         t="${t}, { \"$option\", \"$val\" }"
3647                 fi
3648         fi
3649 done
3650
3651 if test "x$t" = x
3652 then
3653         configure_default_options="{ { NULL, NULL} }"
3654 else
3655         configure_default_options="{ ${t} }"
3656 fi
3657
3658 if test "$target_cpu_default2" != ""
3659 then
3660         if test "$target_cpu_default" != ""
3661         then
3662                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3663         else
3664                 target_cpu_default=$target_cpu_default2
3665         fi
3666 fi