OSDN Git Service

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