OSDN Git Service

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