OSDN Git Service

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