OSDN Git Service

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