OSDN Git Service

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