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