* configure.ac (LD_AS_NEEDED_OPTION, LD_NO_AS_NEEDED_OPTION): Use
[official-gcc.git] / gcc / config.gcc
bloba5defb0f005875b4c7bd3cf6f485eb3543a38439
1 # GCC target-specific configuration file.
2 # Copyright (C) 1997-2018 Free Software Foundation, Inc.
4 #This file is part of GCC.
6 #GCC is free software; you can redistribute it and/or modify it under
7 #the terms of the GNU General Public License as published by the Free
8 #Software Foundation; either version 3, or (at your option) any later
9 #version.
11 #GCC is distributed in the hope that it will be useful, but WITHOUT
12 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 #for more details.
16 #You should have received a copy of the GNU General Public License
17 #along with GCC; see the file COPYING3.  If not see
18 #<http://www.gnu.org/licenses/>.
20 # This is the GCC target-specific configuration file
21 # where a configuration type is mapped to different system-specific
22 # definitions and files.  This is invoked by the autoconf-generated
23 # configure script.  Putting it in a separate shell file lets us skip
24 # running autoconf when modifying target-specific information.
26 # When you change the cases in the OS or target switches, consider
27 # updating ../libgcc/config.host also.
29 # This file switches on the shell variable ${target}, and also uses the
30 # following shell variables:
32 #  with_*               Various variables as set by configure.
34 #  enable_threads       Either the name, yes or no depending on whether
35 #                       threads support was requested.
37 #  default_use_cxa_atexit
38 #                         The default value for the $enable___cxa_atexit
39 #                       variable.  enable___cxa_atexit needs to be set to
40 #                       "yes" for the correct operation of C++ destructors
41 #                       but it relies upon the presence of a non-standard C
42 #                       library function called __cxa_atexit.
43 #                         Since not all C libraries provide __cxa_atexit the
44 #                       default value of $default_use_cxa_atexit is set to
45 #                       "no" except for targets which are known to be OK.
47 #  default_gnu_indirect_function
48 #                       The default value for the $enable_gnu_indirect_function
49 #                       variable.  enable_gnu_indirect_function relies
50 #                       upon the presence of a non-standard gnu ifunc support
51 #                       in the assembler, linker and dynamic linker.
52 #                       Since not all libraries provide the dynamic linking
53 #                       support, the default value of
54 #                       $default_gnu_indirect_function is set to
55 #                       "no" except for targets which are known to be OK.
57 #  gas_flag             Either yes or no depending on whether GNU as was
58 #                       requested.
60 #  gnu_ld_flag          Either yes or no depending on whether GNU ld was
61 #                       requested.
63 # This file sets the following shell variables for use by the
64 # autoconf-generated configure script:
66 #  cpu_type             The name of the cpu, if different from the first
67 #                       chunk of the canonical target name.
69 #  tm_defines           List of target macros to define for all compilations.
71 #  tm_file              A list of target macro files, if different from
72 #                       "$cpu_type/$cpu_type.h". Usually it's constructed
73 #                       per target in a way like this:
74 #                       tm_file="${tm_file} dbxelf.h elfos.h ${cpu_type.h}/elf.h"
75 #                       Note that the preferred order is:
76 #                       - specific target header "${cpu_type}/${cpu_type.h}"
77 #                       - generic headers like dbxelf.h elfos.h, etc.
78 #                       - specializing target headers like ${cpu_type.h}/elf.h
79 #                       This helps to keep OS specific stuff out of the CPU
80 #                       defining header ${cpu_type}/${cpu_type.h}.
82 #                       It is possible to include automatically-generated
83 #                       build-directory files by prefixing them with "./".
84 #                       All other files should relative to $srcdir/config.
86 #  tm_p_file            Location of file with declarations for functions
87 #                       in $out_file.
89 #  out_file             The name of the machine description C support
90 #                       file, if different from "$cpu_type/$cpu_type.c".
92 #  common_out_file      The name of the source file for code shared between
93 #                       the compiler proper and the driver.
95 #  md_file              The name of the machine-description file, if
96 #                       different from "$cpu_type/$cpu_type.md".
98 #  tmake_file           A list of machine-description-specific
99 #                       makefile-fragments, if different from
100 #                       "$cpu_type/t-$cpu_type".
102 #  extra_modes          The name of the file containing a list of extra
103 #                       machine modes, if necessary and different from
104 #                       "$cpu_type/$cpu_type-modes.def".
106 #  extra_objs           List of extra objects that should be linked into
107 #                       the compiler proper (cc1, cc1obj, cc1plus)
108 #                       depending on target.
110 #  extra_gcc_objs       List of extra objects that should be linked into
111 #                       the compiler driver (gcc) depending on target.
113 #  extra_headers        List of used header files from the directory
114 #                       config/${cpu_type}.
116 #  user_headers_inc_next_pre
117 #                       List of header file names of internal gcc header
118 #                       files, which should be prefixed by an include_next.
119 #  user_headers_inc_next_post
120 #                       List of header file names of internal gcc header
121 #                       files, which should be postfixed by an include_next.
122 #  use_gcc_tgmath       If set, add tgmath.h to the list of used header
123 #                       files.
125 #  use_gcc_stdint       If "wrap", install a version of stdint.h that
126 #                       wraps the system's copy for hosted compilations;
127 #                       if "provide", provide a version of systems without
128 #                       such a system header; otherwise "none", do not
129 #                       provide such a header at all.
131 #  extra_programs       List of extra executables compiled for this target
132 #                       machine, used when linking.
134 #  extra_options        List of target-dependent .opt files.
136 #  c_target_objs        List of extra target-dependent objects that be
137 #                       linked into the C compiler only.
139 #  cxx_target_objs      List of extra target-dependent objects that be
140 #                       linked into the C++ compiler only.
142 #  fortran_target_objs  List of extra target-dependent objects that be
143 #                       linked into the fortran compiler only.
145 #  target_gtfiles       List of extra source files with type information.
147 #  xm_defines           List of macros to define when compiling for the
148 #                       target machine.
150 #  xm_file              List of files to include when compiling for the
151 #                       target machine.
153 #  use_collect2         Set to yes or no, depending on whether collect2
154 #                       will be used.
156 #  target_cpu_default   Set to override the default target model.
158 #  gdb_needs_out_file_path
159 #                       Set to yes if gdb needs a dir command with
160 #                       `dirname $out_file`.
162 #  thread_file          Set to control which thread package to use.
164 #  gas                  Set to yes or no depending on whether the target
165 #                       system normally uses GNU as.
167 #  configure_default_options
168 #                       Set to an initializer for configure_default_options
169 #                       in configargs.h, based on --with-cpu et cetera.
171 #  native_system_header_dir
172 #                       Where system header files are found for this
173 #                       target.  This defaults to /usr/include.  If
174 #                       the --with-sysroot configure option or the
175 #                       --sysroot command line option is used this
176 #                       will be relative to the sysroot.
177 # target_type_format_char 
178 #                       The default character to be used for formatting
179 #                       the attribute in a
180 #                       .type symbol_name, ${t_t_f_c}<property>
181 #                       directive.
183 # The following variables are used in each case-construct to build up the
184 # outgoing variables:
186 #  gnu_ld               Set to yes or no depending on whether the target
187 #                       system normally uses GNU ld.
189 #  target_has_targetcm  Set to yes or no depending on whether the target
190 #                       has its own definition of targetcm.
192 #  target_has_targetm_common    Set to yes or no depending on whether the
193 #                       target has its own definition of targetm_common.
195 out_file=
196 common_out_file=
197 tmake_file=
198 extra_headers=
199 user_headers_inc_next_pre=
200 user_headers_inc_next_post=
201 use_gcc_tgmath=yes
202 use_gcc_stdint=none
203 extra_programs=
204 extra_objs=
205 extra_gcc_objs=
206 extra_options=
207 c_target_objs=
208 cxx_target_objs=
209 fortran_target_objs=
210 target_has_targetcm=no
211 target_has_targetm_common=yes
212 tm_defines=
213 xm_defines=
214 # Set this to force installation and use of collect2.
215 use_collect2=
216 # Set this to override the default target model.
217 target_cpu_default=
218 # Set this if gdb needs a dir command with `dirname $out_file`
219 gdb_needs_out_file_path=
220 # Set this to control which thread package will be used.
221 thread_file=
222 # Reinitialize these from the flag values every loop pass, since some
223 # configure entries modify them.
224 gas="$gas_flag"
225 gnu_ld="$gnu_ld_flag"
226 default_use_cxa_atexit=no
227 default_gnu_indirect_function=no
228 target_gtfiles=
229 need_64bit_isa=
230 native_system_header_dir=/usr/include
231 target_type_format_char='@'
233 # Don't carry these over build->host->target.  Please.
234 xm_file=
235 md_file=
237 # Obsolete configurations.
238 case ${target} in
239   powerpc*-*-*spe*                      \
240   | tile*-*-*                           \
242     if test "x$enable_obsolete" != xyes; then
243       echo "*** Configuration ${target} is obsolete." >&2
244       echo "*** Specify --enable-obsolete to build it anyway." >&2
245       echo "*** Support will be REMOVED in the next major release of GCC," >&2
246       echo "*** unless a maintainer comes forward." >&2
247       exit 1
248     fi;;
249 esac
251 # Unsupported targets list.  Do not put an entry in this list unless
252 # it would otherwise be caught by a more permissive pattern.  The list
253 # should be in alphabetical order.
254 case ${target} in
255  # Avoid special cases that are not obsolete
256    arm*-*-*eabi*                        \
258         ;;
259    arm*-wince-pe*                       \
260  | arm*-*-ecos-elf                      \
261  | arm*-*-elf                           \
262  | arm*-*-linux*                        \
263  | arm*-*-uclinux*                      \
264  | i[34567]86-go32-*                    \
265  | i[34567]86-*-go32*                   \
266  | m68k-*-uclinuxoldabi*                \
267  | mips64orion*-*-rtems*                \
268  | pdp11-*-bsd                          \
269  | sparc-hal-solaris2*                  \
270  | thumb-*-*                            \
271  | *-*-freebsd[12] | *-*-freebsd[12].*  \
272  | *-*-freebsd*aout*                    \
273  | *-*-linux*aout*                      \
274  | *-*-linux*coff*                      \
275  | *-*-linux*libc1*                     \
276  | *-*-linux*oldld*                     \
277  | *-*-rtemsaout*                       \
278  | *-*-rtemscoff*                       \
279  | *-*-solaris2                         \
280  | *-*-solaris2.[0-9]                   \
281  | *-*-solaris2.[0-9].*                 \
282  | *-*-sysv*                            \
283  | vax-*-vms*                           \
285         echo "*** Configuration ${target} not supported" 1>&2
286         exit 1
287         ;;
288 esac
290 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
291 # updated in each machine entry.  Also set default extra_headers for some
292 # machines.
293 tm_p_file=
294 cpu_type=`echo ${target} | sed 's/-.*$//'`
295 cpu_is_64bit=
296 case ${target} in
297 m32c*-*-*)
298         cpu_type=m32c
299         tmake_file=m32c/t-m32c
300         target_has_targetm_common=no
301         ;;
302 aarch64*-*-*)
303         cpu_type=aarch64
304         extra_headers="arm_fp16.h arm_neon.h arm_acle.h"
305         c_target_objs="aarch64-c.o"
306         cxx_target_objs="aarch64-c.o"
307         extra_objs="aarch64-builtins.o aarch-common.o cortex-a57-fma-steering.o"
308         target_gtfiles="\$(srcdir)/config/aarch64/aarch64-builtins.c"
309         target_has_targetm_common=yes
310         ;;
311 alpha*-*-*)
312         cpu_type=alpha
313         extra_options="${extra_options} g.opt"
314         ;;
315 am33_2.0-*-linux*)
316         cpu_type=mn10300
317         ;;
318 arc*-*-*)
319         cpu_type=arc
320         c_target_objs="arc-c.o"
321         cxx_target_objs="arc-c.o"
322         extra_options="${extra_options} arc/arc-tables.opt g.opt"
323         extra_headers="arc-simd.h"
324         ;;
325 arm*-*-*)
326         cpu_type=arm
327         extra_objs="arm-builtins.o aarch-common.o"
328         extra_headers="mmintrin.h arm_neon.h arm_acle.h arm_fp16.h arm_cmse.h"
329         target_type_format_char='%'
330         c_target_objs="arm-c.o"
331         cxx_target_objs="arm-c.o"
332         extra_options="${extra_options} arm/arm-tables.opt"
333         target_gtfiles="\$(srcdir)/config/arm/arm-builtins.c"
334         ;;
335 avr-*-*)
336         cpu_type=avr
337         c_target_objs="avr-c.o"
338         cxx_target_objs="avr-c.o"
339         ;;
340 bfin*-*)
341         cpu_type=bfin
342         ;;
343 crisv32-*)
344         cpu_type=cris
345         ;;
346 frv*)   cpu_type=frv
347         extra_options="${extra_options} g.opt"
348         ;;
349 ft32*)  cpu_type=ft32
350         target_has_targetm_common=no
351         ;;
352 moxie*) cpu_type=moxie
353         target_has_targetm_common=no
354         ;;
355 fido-*-*)
356         cpu_type=m68k
357         extra_headers=math-68881.h
358         extra_options="${extra_options} m68k/m68k-tables.opt"
359         ;;
360 i[34567]86-*-*)
361         cpu_type=i386
362         c_target_objs="i386-c.o"
363         cxx_target_objs="i386-c.o"
364         extra_objs="x86-tune-sched.o x86-tune-sched-bd.o x86-tune-sched-atom.o x86-tune-sched-core.o"
365         extra_options="${extra_options} fused-madd.opt"
366         extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
367                        pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
368                        nmmintrin.h bmmintrin.h fma4intrin.h wmmintrin.h
369                        immintrin.h x86intrin.h avxintrin.h xopintrin.h
370                        ia32intrin.h cross-stdarg.h lwpintrin.h popcntintrin.h
371                        lzcntintrin.h bmiintrin.h bmi2intrin.h tbmintrin.h
372                        avx2intrin.h avx512fintrin.h fmaintrin.h f16cintrin.h
373                        rtmintrin.h xtestintrin.h rdseedintrin.h prfchwintrin.h
374                        adxintrin.h fxsrintrin.h xsaveintrin.h xsaveoptintrin.h
375                        avx512cdintrin.h avx512erintrin.h avx512pfintrin.h
376                        shaintrin.h clflushoptintrin.h xsavecintrin.h
377                        xsavesintrin.h avx512dqintrin.h avx512bwintrin.h
378                        avx512vlintrin.h avx512vlbwintrin.h avx512vldqintrin.h
379                        avx512ifmaintrin.h avx512ifmavlintrin.h avx512vbmiintrin.h
380                        avx512vbmivlintrin.h avx5124fmapsintrin.h avx5124vnniwintrin.h
381                        avx512vpopcntdqintrin.h clwbintrin.h mwaitxintrin.h
382                        clzerointrin.h pkuintrin.h sgxintrin.h cetintrin.h
383                        gfniintrin.h cet.h avx512vbmi2intrin.h
384                        avx512vbmi2vlintrin.h avx512vnniintrin.h
385                        avx512vnnivlintrin.h vaesintrin.h vpclmulqdqintrin.h
386                        avx512vpopcntdqvlintrin.h avx512bitalgintrin.h
387                        pconfigintrin.h wbnoinvdintrin.h movdirintrin.h"
388         ;;
389 x86_64-*-*)
390         cpu_type=i386
391         c_target_objs="i386-c.o"
392         cxx_target_objs="i386-c.o"
393         extra_options="${extra_options} fused-madd.opt"
394         extra_objs="x86-tune-sched.o x86-tune-sched-bd.o x86-tune-sched-atom.o x86-tune-sched-core.o"
395         extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
396                        pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
397                        nmmintrin.h bmmintrin.h fma4intrin.h wmmintrin.h
398                        immintrin.h x86intrin.h avxintrin.h xopintrin.h
399                        ia32intrin.h cross-stdarg.h lwpintrin.h popcntintrin.h
400                        lzcntintrin.h bmiintrin.h bmi2intrin.h tbmintrin.h
401                        avx2intrin.h avx512fintrin.h fmaintrin.h f16cintrin.h
402                        rtmintrin.h xtestintrin.h rdseedintrin.h prfchwintrin.h
403                        adxintrin.h fxsrintrin.h xsaveintrin.h xsaveoptintrin.h
404                        avx512cdintrin.h avx512erintrin.h avx512pfintrin.h
405                        shaintrin.h clflushoptintrin.h xsavecintrin.h
406                        xsavesintrin.h avx512dqintrin.h avx512bwintrin.h
407                        avx512vlintrin.h avx512vlbwintrin.h avx512vldqintrin.h
408                        avx512ifmaintrin.h avx512ifmavlintrin.h avx512vbmiintrin.h
409                        avx512vbmivlintrin.h avx5124fmapsintrin.h avx5124vnniwintrin.h
410                        avx512vpopcntdqintrin.h clwbintrin.h mwaitxintrin.h
411                        clzerointrin.h pkuintrin.h sgxintrin.h cetintrin.h
412                        gfniintrin.h cet.h avx512vbmi2intrin.h
413                        avx512vbmi2vlintrin.h avx512vnniintrin.h
414                        avx512vnnivlintrin.h vaesintrin.h vpclmulqdqintrin.h
415                        avx512vpopcntdqvlintrin.h avx512bitalgintrin.h
416                        pconfigintrin.h wbnoinvdintrin.h movdirintrin.h"
417         ;;
418 ia64-*-*)
419         extra_headers=ia64intrin.h
420         extra_options="${extra_options} g.opt fused-madd.opt"
421         ;;
422 hppa*-*-*)
423         cpu_type=pa
424         ;;
425 lm32*)
426         extra_options="${extra_options} g.opt"
427         ;;
428 m32r*-*-*)
429         cpu_type=m32r
430         extra_options="${extra_options} g.opt"
431         ;;
432 m68k-*-*)
433         extra_headers=math-68881.h
434         extra_options="${extra_options} m68k/m68k-tables.opt"
435         ;;
436 microblaze*-*-*)
437         cpu_type=microblaze
438         extra_options="${extra_options} g.opt"
439         ;;
440 mips*-*-*)
441         cpu_type=mips
442         extra_headers="loongson.h msa.h"
443         extra_objs="frame-header-opt.o"
444         extra_options="${extra_options} g.opt fused-madd.opt mips/mips-tables.opt"
445         ;;
446 nds32*)
447         cpu_type=nds32
448         extra_headers="nds32_intrinsic.h"
449         extra_objs="nds32-cost.o nds32-intrinsic.o nds32-isr.o nds32-md-auxiliary.o nds32-pipelines-auxiliary.o nds32-predicates.o nds32-memory-manipulation.o nds32-fp-as-gp.o nds32-relax-opt.o nds32-utils.o"
450         ;;
451 nios2-*-*)
452         cpu_type=nios2
453         extra_options="${extra_options} g.opt"
454         ;;
455 nvptx-*-*)
456         cpu_type=nvptx
457         ;;
458 powerpc*-*-*spe*)
459         cpu_type=powerpcspe
460         extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h spu2vmx.h vec_types.h si2vmx.h htmintrin.h htmxlintrin.h"
461         case x$with_cpu in
462             xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456789]|xpower6x|xrs64a|xcell|xa2|xe500mc64|xe5500|xe6500)
463                 cpu_is_64bit=yes
464                 ;;
465         esac
466         extra_options="${extra_options} g.opt fused-madd.opt powerpcspe/powerpcspe-tables.opt"
467         ;;
468 powerpc*-*-*)
469         cpu_type=rs6000
470         extra_objs="rs6000-string.o rs6000-p8swap.o"
471         extra_headers="ppc-asm.h altivec.h htmintrin.h htmxlintrin.h"
472         extra_headers="${extra_headers} bmi2intrin.h bmiintrin.h"
473         extra_headers="${extra_headers} xmmintrin.h mm_malloc.h emmintrin.h"
474         extra_headers="${extra_headers} mmintrin.h x86intrin.h"
475         extra_headers="${extra_headers} ppu_intrinsics.h spu2vmx.h vec_types.h si2vmx.h"
476         extra_headers="${extra_headers} paired.h"
477         extra_headers="${extra_headers} amo.h"
478         case x$with_cpu in
479             xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456789]|xpower6x|xrs64a|xcell|xa2|xe500mc64|xe5500|xe6500)
480                 cpu_is_64bit=yes
481                 ;;
482         esac
483         extra_options="${extra_options} g.opt fused-madd.opt rs6000/rs6000-tables.opt"
484         ;;
485 riscv*)
486         cpu_type=riscv
487         extra_objs="riscv-builtins.o riscv-c.o"
488         ;;
489 rs6000*-*-*)
490         extra_options="${extra_options} g.opt fused-madd.opt rs6000/rs6000-tables.opt"
491         extra_objs="rs6000-string.o rs6000-p8swap.o"
492         ;;
493 sparc*-*-*)
494         cpu_type=sparc
495         c_target_objs="sparc-c.o"
496         cxx_target_objs="sparc-c.o"
497         extra_headers="visintrin.h"
498         ;;
499 spu*-*-*)
500         cpu_type=spu
501         ;;
502 s390*-*-*)
503         cpu_type=s390
504         extra_options="${extra_options} fused-madd.opt"
505         extra_headers="s390intrin.h htmintrin.h htmxlintrin.h vecintrin.h"
506         ;;
507 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
508 sh[123456789lbe]*-*-* | sh-*-*)
509         cpu_type=sh
510         extra_options="${extra_options} fused-madd.opt"
511         extra_objs="${extra_objs} sh_treg_combine.o sh-mem.o sh_optimize_sett_clrt.o"
512         ;;
513 v850*-*-*)
514         cpu_type=v850
515         ;;
516 tic6x-*-*)
517         cpu_type=c6x
518         extra_headers="c6x_intrinsics.h"
519         extra_options="${extra_options} c6x/c6x-tables.opt"
520         ;;
521 xtensa*-*-*)
522         extra_options="${extra_options} fused-madd.opt"
523         ;;
524 tilegx*-*-*)
525         cpu_type=tilegx
526         ;;
527 tilepro*-*-*)
528         cpu_type=tilepro
529         ;;
530 esac
532 tm_file=${cpu_type}/${cpu_type}.h
533 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
534 then
535         tm_p_file=${cpu_type}/${cpu_type}-protos.h
537 extra_modes=
538 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
539 then
540         extra_modes=${cpu_type}/${cpu_type}-modes.def
542 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}.opt
543 then
544         extra_options="${extra_options} ${cpu_type}/${cpu_type}.opt"
547 case ${target} in
548 aarch64*-*-*)
549         tm_p_file="${tm_p_file} arm/aarch-common-protos.h"
550         case ${with_abi} in
551         "")
552                 if test "x$with_multilib_list" = xilp32; then
553                         tm_file="aarch64/biarchilp32.h ${tm_file}"
554                 else
555                         tm_file="aarch64/biarchlp64.h ${tm_file}"
556                 fi
557                 ;;
558         ilp32)
559                 tm_file="aarch64/biarchilp32.h ${tm_file}"
560                 ;;
561         lp64)
562                 tm_file="aarch64/biarchlp64.h ${tm_file}"
563                 ;;
564         *)
565                 echo "Unknown ABI used in --with-abi=$with_abi"
566                 exit 1
567         esac
568         ;;
569 i[34567]86-*-*)
570         if test "x$with_abi" != x; then
571                 echo "This target does not support --with-abi."
572                 exit 1
573         fi
574         if test "x$enable_cld" = xyes; then
575                 tm_defines="${tm_defines} USE_IX86_CLD=1"
576         fi
577         if test "x$enable_frame_pointer" = xyes; then
578                 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
579         fi
580         tm_file="vxworks-dummy.h ${tm_file}"
581         ;;
582 x86_64-*-*)
583         case ${with_abi} in
584         "")
585                 if test "x$with_multilib_list" = xmx32; then
586                         tm_file="i386/biarchx32.h ${tm_file}"
587                 else
588                         tm_file="i386/biarch64.h ${tm_file}"
589                 fi
590                 ;;
591         64 | m64)
592                 tm_file="i386/biarch64.h ${tm_file}"
593                 ;;
594         x32 | mx32)
595                 tm_file="i386/biarchx32.h ${tm_file}"
596                 ;;
597         *)
598                 echo "Unknown ABI used in --with-abi=$with_abi"
599                 exit 1
600         esac
601         if test "x$enable_cld" = xyes; then
602                 tm_defines="${tm_defines} USE_IX86_CLD=1"
603         fi
604         if test "x$enable_frame_pointer" = xyes; then
605                 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
606         fi
607         tm_file="vxworks-dummy.h ${tm_file}"
608         ;;
609 arm*-*-*)
610         tm_p_file="arm/arm-flags.h ${tm_p_file} arm/aarch-common-protos.h"
611         tm_file="vxworks-dummy.h ${tm_file}"
612         ;;
613 mips*-*-* | sh*-*-* | sparc*-*-*)
614         tm_file="vxworks-dummy.h ${tm_file}"
615         ;;
616 esac
618 # On a.out targets, we need to use collect2.
619 case ${target} in
620 *-*-*aout*)
621         use_collect2=yes
622         ;;
623 esac
625 # Common C libraries.
626 tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 LIBC_MUSL=4"
628 # 32-bit x86 processors supported by --with-arch=.  Each processor
629 # MUST be separated by exactly one space.
630 x86_archs="athlon athlon-4 athlon-fx athlon-mp athlon-tbird \
631 athlon-xp k6 k6-2 k6-3 geode c3 c3-2 winchip-c6 winchip2 i386 i486 \
632 i586 i686 pentium pentium-m pentium-mmx pentium2 pentium3 pentium3m \
633 pentium4 pentium4m pentiumpro prescott lakemont"
635 # 64-bit x86 processors supported by --with-arch=.  Each processor
636 # MUST be separated by exactly one space.
637 x86_64_archs="amdfam10 athlon64 athlon64-sse3 barcelona bdver1 bdver2 \
638 bdver3 bdver4 znver1 btver1 btver2 k8 k8-sse3 opteron opteron-sse3 nocona \
639 core2 corei7 corei7-avx core-avx-i core-avx2 atom slm nehalem westmere \
640 sandybridge ivybridge haswell broadwell bonnell silvermont knl knm \
641 skylake-avx512 cannonlake icelake-client icelake-server skylake x86-64 native"
643 # Additional x86 processors supported by --with-cpu=.  Each processor
644 # MUST be separated by exactly one space.
645 x86_cpus="generic intel"
647 # Common parts for widely ported systems.
648 case ${target} in
649 *-*-darwin*)
650   tmake_file="t-darwin ${cpu_type}/t-darwin"
651   tm_file="${tm_file} darwin.h"
652   case ${target} in
653   *-*-darwin9*)
654     tm_file="${tm_file} darwin9.h"
655     ;;
656   *-*-darwin[1][01]*)
657     tm_file="${tm_file} darwin9.h darwin10.h"
658     ;;
659   *-*-darwin[1][2-9]* | *-*-darwin[2][0-9]*)
660     tm_file="${tm_file} darwin9.h darwin10.h darwin12.h"
661     ;;
662   esac
663   tm_file="${tm_file} ${cpu_type}/darwin.h"
664   tm_p_file="${tm_p_file} darwin-protos.h"
665   target_gtfiles="\$(srcdir)/config/darwin.c"
666   extra_options="${extra_options} darwin.opt"
667   c_target_objs="${c_target_objs} darwin-c.o"
668   cxx_target_objs="${cxx_target_objs} darwin-c.o"
669   fortran_target_objs="darwin-f.o"
670   target_has_targetcm=yes
671   extra_objs="${extra_objs} darwin.o"
672   extra_gcc_objs="darwin-driver.o"
673   default_use_cxa_atexit=yes
674   use_gcc_stdint=wrap
675   case ${enable_threads} in
676     "" | yes | posix) thread_file='posix' ;;
677   esac
678   ;;
679 *-*-dragonfly*)
680   gas=yes
681   gnu_ld=yes
682   tmake_file="t-slibgcc"
683   case ${enable_threads} in
684     "" | yes | posix)
685       thread_file='posix'
686       ;;
687     no | single)
688       # Let these non-posix thread selections fall through if requested
689       ;;
690     *)
691       echo 'Unknown thread configuration for DragonFly BSD'
692       exit 1
693       ;;
694   esac
695   extra_options="$extra_options rpath.opt dragonfly.opt"
696   default_use_cxa_atexit=yes
697   use_gcc_stdint=wrap
698   ;;
699 *-*-freebsd*)
700   # This is the generic ELF configuration of FreeBSD.  Later
701   # machine-specific sections may refine and add to this
702   # configuration.
703   #
704   # Due to tm_file entry ordering issues that vary between cpu
705   # architectures, we only define fbsd_tm_file to allow the
706   # machine-specific section to dictate the final order of all
707   # entries of tm_file with the minor exception that components
708   # of the tm_file set here will always be of the form:
709   #
710   # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
711   #
712   # The machine-specific section should not tamper with this
713   # ordering but may order all other entries of tm_file as it
714   # pleases around the provided core setting.
715   gas=yes
716   gnu_ld=yes
717   fbsd_major=`echo ${target} | sed -e 's/.*freebsd//g' | sed -e 's/\..*//g'`
718   if test "$fbsd_major" = ""; then
719     echo "Specify the major version number of the targeted FreeBSD release"
720     echo "like this: --target=amd64-unknown-freebsd10.1"
721     exit 1
722   fi
723   tm_defines="${tm_defines} FBSD_MAJOR=${fbsd_major}"
724   tmake_file="t-slibgcc"
725   case ${enable_threads} in
726     no)
727       fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
728       ;;
729     "" | yes | posix)
730       thread_file='posix'
731       ;;
732     *)
733       echo 'Unknown thread configuration for FreeBSD'
734       exit 1
735       ;;
736   esac
737   fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h freebsd-stdint.h"
738   extra_options="$extra_options rpath.opt freebsd.opt"
739   case ${target} in
740     *-*-freebsd[345].*)
741       :;;
742     *)
743       default_use_cxa_atexit=yes;;
744   esac
745   use_gcc_stdint=wrap
746   ;;
747 *-*-fuchsia*)
748   native_system_header_dir=/include
749   ;;
750 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
751   extra_options="$extra_options gnu-user.opt"
752   gas=yes
753   gnu_ld=yes
754   case ${enable_threads} in
755     "" | yes | posix) thread_file='posix' ;;
756   esac
757   tmake_file="t-slibgcc"
758   case $target in
759     *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-kopensolaris*-gnu)
760       :;;
761     *-*-gnu*)
762       native_system_header_dir=/include
763       ;;
764   esac
765   # Linux C libraries selection switch: glibc / uclibc / bionic.
766   # uclibc and bionic aren't usable for GNU/Hurd and neither for GNU/k*BSD.
767   case $target in
768     *linux*)
769       tm_p_file="${tm_p_file} linux-protos.h"
770       tmake_file="${tmake_file} t-linux"
771       extra_objs="${extra_objs} linux.o"
772       extra_options="${extra_options} linux.opt"
773       ;;
774   esac
775   case $target in
776     *-*-*android*)
777       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_BIONIC"
778       ;;
779     *-*-*uclibc*)
780       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC"
781       ;;
782     *-*-*musl*)
783       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_MUSL"
784       ;;
785     *)
786       tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC"
787       ;;
788   esac
789   # Assume that glibc or uClibc or Bionic are being used and so __cxa_atexit
790   # is provided.
791   default_use_cxa_atexit=yes
792   use_gcc_tgmath=no
793   use_gcc_stdint=wrap
794   # Enable compilation for Android by default for *android* targets.
795   case $target in
796     *-*-*android*)
797       tm_defines="$tm_defines ANDROID_DEFAULT=1"
798       ;;
799     *)
800       tm_defines="$tm_defines ANDROID_DEFAULT=0"
801       ;;
802   esac
803   c_target_objs="${c_target_objs} glibc-c.o"
804   cxx_target_objs="${cxx_target_objs} glibc-c.o"
805   tmake_file="${tmake_file} t-glibc"
806   target_has_targetcm=yes
807   ;;
808 *-*-netbsd*)
809   tm_p_file="${tm_p_file} netbsd-protos.h"
810   tmake_file="t-netbsd t-slibgcc"
811   extra_objs="${extra_objs} netbsd.o"
812   gas=yes
813   gnu_ld=yes
814   use_gcc_stdint=wrap
815   case ${enable_threads} in
816     "" | yes | posix) thread_file='posix' ;;
817   esac
818   nbsd_tm_file="netbsd.h netbsd-stdint.h netbsd-elf.h"
819   default_use_cxa_atexit=yes
820   ;;
821 *-*-openbsd*)
822   tmake_file="t-openbsd"
823   case ${enable_threads} in
824     yes)
825       thread_file='posix'
826       ;;
827   esac
828   case ${target} in
829     *-*-openbsd4.[3-9]|*-*-openbsd[5-9]*)
830       default_use_cxa_atexit=yes
831       ;;
832   esac
833   ;;
834 *-*-phoenix*)
835   gas=yes
836   gnu_ld=yes
837   default_use_cxa_atexit=yes
838   ;;
839 *-*-rtems*)
840   case ${enable_threads} in
841     "" | yes | rtems) thread_file='rtems' ;;
842     posix) thread_file='posix' ;;
843     no) ;;
844     *)
845       echo 'Unknown thread configuration for RTEMS'
846       exit 1
847       ;;
848   esac
849   tmake_file="${tmake_file} t-rtems"
850   extra_options="${extra_options} rtems.opt"
851   default_use_cxa_atexit=yes
852   use_gcc_stdint=wrap
853   ;;
854 *-*-uclinux*)
855   extra_options="$extra_options gnu-user.opt"
856   use_gcc_stdint=wrap
857   case ${enable_threads} in
858     "" | yes | posix) thread_file='posix' ;;
859   esac
860   tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC SINGLE_LIBC"
861   ;;
862 *-*-rdos*)
863   use_gcc_stdint=wrap
864   ;;
865 *-*-solaris2*)
866   # i?86-*-solaris2* needs to insert headers between cpu default and
867   # Solaris 2 specific ones.
868   sol2_tm_file_head="dbxelf.h elfos.h ${cpu_type}/sysv4.h"
869   sol2_tm_file_tail="${cpu_type}/sol2.h sol2.h"
870   sol2_tm_file="${sol2_tm_file_head} ${sol2_tm_file_tail}"
871   case ${target} in
872     *-*-solaris2.1[1-9]*)
873       # __cxa_atexit was introduced in Solaris 11.4.
874       default_use_cxa_atexit=yes
875       ;;
876   esac
877   use_gcc_stdint=wrap
878   if test x$gnu_ld = xyes; then
879     tm_file="usegld.h ${tm_file}"
880   fi
881   if test x$gas = xyes; then
882     tm_file="usegas.h ${tm_file}"
883   fi
884   tm_p_file="${tm_p_file} sol2-protos.h"
885   tmake_file="${tmake_file} t-sol2 t-slibgcc"
886   c_target_objs="${c_target_objs} sol2-c.o"
887   cxx_target_objs="${cxx_target_objs} sol2-c.o sol2-cxx.o"
888   extra_objs="${extra_objs} sol2.o sol2-stubs.o"
889   extra_options="${extra_options} sol2.opt"
890   case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
891     "":yes:* | yes:yes:* )
892       thread_file=posix
893       ;;
894   esac
895   ;;
896 *-*-*vms*)
897   extra_options="${extra_options} vms/vms.opt"
898   xmake_file=vms/x-vms
899   tmake_file="vms/t-vms t-slibgcc"
900   extra_objs="vms.o"
901   target_gtfiles="$target_gtfiles \$(srcdir)/config/vms/vms.c"
902   tm_p_file="${tm_p_file} vms/vms-protos.h"
903   xm_file="vms/xm-vms.h"
904   c_target_objs="vms-c.o"
905   cxx_target_objs="vms-c.o"
906   fortran_target_objs="vms-f.o"
907   use_gcc_stdint=provide
908   tm_file="${tm_file} vms/vms-stdint.h"
909   if test x$gnu_ld != xyes; then
910     # Build wrappers for native case.
911     extra_programs="ld\$(exeext) ar\$(exeext)"
912     tmake_file="$tmake_file vms/t-vmsnative"
913   fi
914   ;;
915 *-*-vxworks*)
916   tmake_file=t-vxworks
917   xm_defines=POSIX
918   extra_options="${extra_options} vxworks.opt"
919   extra_objs="$extra_objs vxworks.o"
920   use_gcc_stdint=provide
921   tm_file="${tm_file} vxworks-stdint.h"
922   case ${enable_threads} in
923     no) ;;
924     "" | yes | vxworks) thread_file='vxworks' ;;
925     *) echo 'Unknown thread configuration for VxWorks'; exit 1 ;;
926   esac
927   case $target in
928     *-*-vxworks7*)
929       tm_defines="$tm_defines TARGET_VXWORKS7=1"
930       ;;
931   esac
932   ;;
933 *-*-elf|arc*-*-elf*)
934   # Assume that newlib is being used and so __cxa_atexit is provided.
935   default_use_cxa_atexit=yes
936   use_gcc_stdint=wrap
937   ;;
938 esac
940 case ${target} in
941 aarch64*-*-elf | aarch64*-*-fuchsia* | aarch64*-*-rtems*)
942         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h"
943         tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-elf-raw.h"
944         tmake_file="${tmake_file} aarch64/t-aarch64"
945         case $target in
946         aarch64-*-elf*)
947                 use_gcc_stdint=wrap
948                 ;;
949         aarch64-*-fuchsia*)
950                 tm_file="${tm_file} fuchsia.h"
951                 ;;
952         aarch64-*-rtems*)
953                 tm_file="${tm_file} rtems.h aarch64/rtems.h"
954                 ;;
955         esac
956         case $target in
957         aarch64_be-*)
958                 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
959                 ;;
960         esac
961         aarch64_multilibs="${with_multilib_list}"
962         if test "$aarch64_multilibs" = "default"; then
963                 aarch64_multilibs="lp64,ilp32"
964         fi
965         aarch64_multilibs=`echo $aarch64_multilibs | sed -e 's/,/ /g'`
966         for aarch64_multilib in ${aarch64_multilibs}; do
967                 case ${aarch64_multilib} in
968                 ilp32 | lp64 )
969                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${aarch64_multilib}"
970                         ;;
971                 *)
972                         echo "--with-multilib-list=${aarch64_multilib} not supported."
973                         exit 1
974                 esac
975         done
976         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
977         ;;
978 aarch64*-*-freebsd*)
979         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file}"
980         tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-freebsd.h"
981         tmake_file="${tmake_file} aarch64/t-aarch64 aarch64/t-aarch64-freebsd"
982         ;;
983 aarch64*-*-linux*)
984         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h"
985         tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-linux.h"
986         tmake_file="${tmake_file} aarch64/t-aarch64 aarch64/t-aarch64-linux"
987         tm_defines="${tm_defines}  TARGET_DEFAULT_ASYNC_UNWIND_TABLES=1"
988         case $target in
989         aarch64_be-*)
990                 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
991                 ;;
992         esac
993         aarch64_multilibs="${with_multilib_list}"
994         if test "$aarch64_multilibs" = "default"; then
995                 # TODO: turn on ILP32 multilib build after its support is mature.
996                 # aarch64_multilibs="lp64,ilp32"
997                 aarch64_multilibs="lp64"
998         fi
999         aarch64_multilibs=`echo $aarch64_multilibs | sed -e 's/,/ /g'`
1000         for aarch64_multilib in ${aarch64_multilibs}; do
1001                 case ${aarch64_multilib} in
1002                 ilp32 | lp64 )
1003                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${aarch64_multilib}"
1004                         ;;
1005                 *)
1006                         echo "--with-multilib-list=${aarch64_multilib} not supported."
1007                         exit 1
1008                 esac
1009         done
1010         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
1011         ;;
1012 alpha*-*-linux*)
1013         tm_file="elfos.h ${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h glibc-stdint.h"
1014         tmake_file="${tmake_file} alpha/t-linux alpha/t-alpha"
1015         extra_options="${extra_options} alpha/elf.opt"
1016         ;;
1017 alpha*-*-freebsd*)
1018         tm_file="elfos.h ${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
1019         tmake_file="${tmake_file} alpha/t-alpha"
1020         extra_options="${extra_options} alpha/elf.opt"
1021         ;;
1022 alpha*-*-netbsd*)
1023         tm_file="elfos.h ${tm_file} ${nbsd_tm_file} alpha/elf.h alpha/netbsd.h"
1024         tmake_file="${tmake_file} alpha/t-alpha"
1025         extra_options="${extra_options} netbsd.opt netbsd-elf.opt \
1026                        alpha/elf.opt"
1027         ;;
1028 alpha*-*-openbsd*)
1029         tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
1030         tm_file="elfos.h alpha/alpha.h alpha/elf.h openbsd.h openbsd-stdint.h alpha/openbsd.h openbsd-libpthread.h"
1031         tmake_file="${tmake_file} alpha/t-alpha"
1032         extra_options="${extra_options} openbsd.opt alpha/elf.opt"
1033         # default x-alpha is only appropriate for dec-osf.
1034         ;;
1035 alpha*-dec-*vms*)
1036         tm_file="${tm_file} vms/vms.h alpha/vms.h"
1037         tmake_file="${tmake_file} alpha/t-vms alpha/t-alpha"
1038         ;;
1039 arc*-*-elf*)
1040         tm_file="arc/arc-arch.h dbxelf.h elfos.h newlib-stdint.h arc/elf.h ${tm_file}"
1041         tmake_file="arc/t-multilib arc/t-arc"
1042         extra_gcc_objs="driver-arc.o"
1043         if test "x$with_cpu" != x; then
1044                 tm_defines="${tm_defines} TARGET_CPU_BUILD=PROCESSOR_$with_cpu"
1045         fi
1046         if test x${with_endian} = x; then
1047                 case ${target} in
1048                 arc*be-*-* | arc*eb-*-*)        with_endian=big ;;
1049                 *)                              with_endian=little ;;
1050                 esac
1051         fi
1052         case ${with_endian} in
1053         big|little)             ;;
1054         *)      echo "with_endian=${with_endian} not supported."; exit 1 ;;
1055         esac
1056         case ${with_endian} in
1057         big*)   tm_file="arc/big.h ${tm_file}"
1058         esac
1059         ;;
1060 arc*-*-linux*)
1061         tm_file="arc/arc-arch.h dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h arc/linux.h ${tm_file}"
1062         tmake_file="${tmake_file} arc/t-arc"
1063         extra_gcc_objs="driver-arc.o"
1064         if test "x$with_cpu" != x; then
1065                 tm_defines="${tm_defines} TARGET_CPU_BUILD=PROCESSOR_$with_cpu"
1066         fi
1067         if test x${with_endian} = x; then
1068                 case ${target} in
1069                 arc*be-*-* | arc*eb-*-*)        with_endian=big ;;
1070                 *)                              with_endian=little ;;
1071                 esac
1072         fi
1073         case ${with_endian} in
1074         big|little)             ;;
1075         *)      echo "with_endian=${with_endian} not supported."; exit 1 ;;
1076         esac
1077         case ${with_endian} in
1078         big*)   tm_file="arc/big.h ${tm_file}"
1079         esac
1080         ;;
1081 arm-wrs-vxworks|arm-wrs-vxworks7)
1082         extra_options="${extra_options} arm/vxworks.opt"
1083         tmake_file="${tmake_file} arm/t-arm arm/t-vxworks"
1084         case $target in
1085         *-vxworks7)
1086             # VxWorks7 on ARM adheres to the ARM Base Platform ABI
1087             tmake_file="${tmake_file} arm/t-bpabi"
1088             tm_file="arm/bpabi.h ${tm_file}"
1089             # The BPABI long long divmod functions return a 128-bit value in
1090             # registers r0-r3.
1091             need_64bit_hwint=yes
1092             default_use_cxa_atexit=yes
1093             ;;
1094         *)  ;;
1095         esac
1096         tm_file="elfos.h arm/elf.h arm/aout.h ${tm_file} vx-common.h vxworks.h arm/vxworks.h"
1097         target_cpu_cname="arm8"
1098         ;;
1099 arm*-*-freebsd*)                # ARM FreeBSD EABI
1100         tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h"
1101         case $target in
1102         arm*b-*-freebsd*)
1103             tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
1104             ;;
1105         esac
1106         tmake_file="${tmake_file} arm/t-arm arm/t-bpabi"
1107         tm_file="${tm_file} arm/bpabi.h arm/freebsd.h arm/aout.h arm/arm.h"
1108         case $target in
1109         armv6*-*-freebsd*)
1110             target_cpu_cname="arm1176jzf-s"
1111             if test $fbsd_major -ge 11; then
1112                tm_defines="${tm_defines} TARGET_FREEBSD_ARM_HARD_FLOAT=1"
1113             fi
1114             ;;
1115         armv7*-*-freebsd*)
1116             target_cpu_cname="generic-armv7-a"
1117             tm_defines="${tm_defines} TARGET_FREEBSD_ARM_HARD_FLOAT=1"
1118             ;;
1119         *)
1120             target_cpu_cname="arm9"
1121             ;;
1122         esac
1123         with_tls=${with_tls:-gnu}
1124         ;;
1125 arm*-*-netbsdelf*)
1126         tm_file="dbxelf.h elfos.h ${nbsd_tm_file} arm/elf.h arm/aout.h ${tm_file} arm/netbsd-elf.h"
1127         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1128         tmake_file="${tmake_file} arm/t-arm"
1129         target_cpu_cname="arm6"
1130         ;;
1131 arm*-*-linux-*)                 # ARM GNU/Linux with ELF
1132         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"
1133         extra_options="${extra_options} linux-android.opt"
1134         case $target in
1135         arm*b-*-linux*)
1136             tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
1137             ;;
1138         esac
1139         tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
1140         tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h arm/aout.h vxworks-dummy.h arm/arm.h"
1141         # Generation of floating-point instructions requires at least ARMv5te.
1142         if [ "$with_float" = "hard" -o "$with_float" = "softfp" ] ; then
1143             target_cpu_cname="arm10e"
1144         else
1145             target_cpu_cname="arm10tdmi"
1146         fi
1147         # Define multilib configuration for arm-linux-androideabi.
1148         case ${target} in
1149         *-androideabi)
1150             tmake_file="$tmake_file arm/t-linux-androideabi"
1151             ;;
1152         esac
1153         # The EABI requires the use of __cxa_atexit.
1154         default_use_cxa_atexit=yes
1155         with_tls=${with_tls:-gnu}
1156         ;;
1157 arm*-*-uclinux*eabi*)           # ARM ucLinux
1158         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h glibc-stdint.h"
1159         tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf arm/t-bpabi"
1160         tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h arm/aout.h vxworks-dummy.h arm/arm.h"
1161         target_cpu_cname="arm7tdmi"
1162         # The EABI requires the use of __cxa_atexit.
1163         default_use_cxa_atexit=yes
1164         ;;
1165 arm*-*-phoenix*)
1166         tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
1167         tm_file="${tm_file} newlib-stdint.h phoenix.h"
1168         tm_file="${tm_file} arm/aout.h arm/arm.h"
1169         tmake_file="${tmake_file} arm/t-arm arm/t-bpabi arm/t-phoenix"
1170         target_cpu_cname="arm7tdmi"
1171         ;;
1172 arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems* | arm*-*-fuchsia*)
1173         case ${target} in
1174         arm*eb-*-eabi*)
1175           tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
1176         esac
1177         default_use_cxa_atexit=yes
1178         tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
1179         tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf"
1180         target_cpu_cname="arm7tdmi"
1181         case ${target} in
1182         arm*-*-eabi*)
1183           tm_file="$tm_file newlib-stdint.h"
1184           tmake_file="${tmake_file} arm/t-bpabi"
1185           use_gcc_stdint=wrap
1186           ;;
1187         arm*-*-fuchsia*)
1188           tm_file="${tm_file} fuchsia.h arm/fuchsia-elf.h glibc-stdint.h"
1189           tmake_file="${tmake_file} arm/t-bpabi arm/t-fuchsia"
1190           target_cpu_cname="generic-armv7-a"
1191           ;;
1192         arm*-*-rtems*)
1193           tm_file="${tm_file} rtems.h arm/rtems.h newlib-stdint.h"
1194           tmake_file="${tmake_file} arm/t-bpabi arm/t-rtems"
1195           ;;
1196         arm*-*-symbianelf*)
1197           tm_file="${tm_file} arm/symbian.h"
1198           # We do not include t-bpabi for Symbian OS because the system
1199           # provides its own implementation of the BPABI functions.
1200           tmake_file="${tmake_file} arm/t-symbian"
1201           target_cpu_cname="arm10tdmi"
1202           ;;
1203         esac
1204         tm_file="${tm_file} arm/aout.h vxworks-dummy.h arm/arm.h"
1205         ;;
1206 avr-*-*)
1207         tm_file="elfos.h avr/elf.h avr/avr-arch.h avr/avr.h avr/specs.h dbxelf.h avr/avr-stdint.h"
1208         if test x${with_avrlibc} != xno; then
1209             tm_file="${tm_file} ${cpu_type}/avrlibc.h"
1210             tm_defines="${tm_defines} WITH_AVRLIBC"
1211         fi
1212         tmake_file="${tmake_file} avr/t-avr avr/t-multilib"
1213         use_gcc_stdint=wrap
1214         extra_gcc_objs="driver-avr.o avr-devices.o"
1215         extra_objs="avr-devices.o avr-log.o"
1216         ;;
1217 bfin*-elf*)
1218         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
1219         tmake_file=bfin/t-bfin-elf
1220         use_collect2=no
1221         ;;
1222 bfin*-uclinux*)
1223         tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h glibc-stdint.h bfin/uclinux.h"
1224         tmake_file=bfin/t-bfin-uclinux
1225         use_collect2=no
1226         ;;
1227 bfin*-linux-uclibc*)
1228         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"
1229         tmake_file="${tmake_file} bfin/t-bfin-linux"
1230         use_collect2=no
1231         ;;
1232 bfin*-rtems*)
1233         tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h newlib-stdint.h"
1234         tmake_file="${tmake_file} bfin/t-rtems"
1235         ;;
1236 bfin*-*)
1237         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
1238         use_collect2=no
1239         use_gcc_stdint=wrap
1240         ;;
1241 cr16-*-elf)
1242         tm_file="elfos.h ${tm_file} newlib-stdint.h"
1243         tmake_file="${tmake_file} cr16/t-cr16 "
1244         use_collect2=no
1245         ;;
1246 crisv32-*-elf | crisv32-*-none)
1247         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1248         tmake_file="cris/t-cris"
1249         target_cpu_default=32
1250         gas=yes
1251         extra_options="${extra_options} cris/elf.opt"
1252         use_gcc_stdint=wrap
1253         ;;
1254 cris-*-elf | cris-*-none)
1255         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1256         tmake_file="cris/t-cris cris/t-elfmulti"
1257         gas=yes
1258         extra_options="${extra_options} cris/elf.opt"
1259         use_gcc_stdint=wrap
1260         ;;
1261 crisv32-*-linux* | cris-*-linux*)
1262         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h glibc-stdint.h cris/linux.h"
1263         tmake_file="${tmake_file} cris/t-cris cris/t-linux"
1264         extra_options="${extra_options} cris/linux.opt"
1265         case $target in
1266           cris-*-*)
1267                 target_cpu_default=10
1268                 ;;
1269           crisv32-*-*)
1270                 target_cpu_default=32
1271                 ;;
1272         esac
1273         ;;
1274 epiphany-*-elf | epiphany-*-rtems*)
1275         tm_file="${tm_file} dbxelf.h elfos.h"
1276         tmake_file="${tmake_file} epiphany/t-epiphany"
1277         case ${target} in
1278         epiphany-*-rtems*)
1279           tm_file="${tm_file} rtems.h epiphany/rtems.h newlib-stdint.h"
1280           ;;
1281         *)
1282           tm_file="${tm_file} newlib-stdint.h"
1283           ;;
1284         esac
1285         extra_options="${extra_options} fused-madd.opt"
1286         extra_objs="${extra_objs} mode-switch-use.o resolve-sw-modes.o"
1287         tm_defines="${tm_defines} EPIPHANY_STACK_OFFSET=${with_stack_offset:-8}"
1288         extra_headers="epiphany_intrinsics.h"
1289         ;;
1290 fr30-*-elf)
1291         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1292         ;;
1293 frv-*-elf)
1294         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1295         tmake_file=frv/t-frv
1296         ;;
1297 frv-*-*linux*)
1298         tm_file="dbxelf.h elfos.h ${tm_file} \
1299                  gnu-user.h linux.h glibc-stdint.h frv/linux.h"
1300         tmake_file="${tmake_file} frv/t-frv frv/t-linux"
1301         ;;
1302 ft32-*-elf)
1303         gas=yes
1304         gnu_ld=yes
1305         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1306         tmake_file="${tmake_file} ft32/t-ft32"
1307         ;;
1308 moxie-*-elf)
1309         gas=yes
1310         gnu_ld=yes
1311         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1312         tmake_file="${tmake_file} moxie/t-moxie"
1313         ;;
1314 moxie-*-uclinux*)
1315         gas=yes
1316         gnu_ld=yes
1317         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h glibc-stdint.h moxie/uclinux.h"
1318         tmake_file="${tmake_file} moxie/t-moxie"
1319         ;;
1320 moxie-*-rtems*)
1321         tmake_file="${tmake_file} moxie/t-moxie"
1322         tm_file="moxie/moxie.h dbxelf.h elfos.h moxie/rtems.h rtems.h newlib-stdint.h"
1323         ;;
1324 moxie-*-moxiebox*)
1325         gas=yes
1326         gnu_ld=yes
1327         tm_file="${tm_file} dbxelf.h elfos.h moxie/moxiebox.h newlib-stdint.h"
1328         tmake_file="${tmake_file} moxie/t-moxiebox"
1329         ;;
1330 h8300-*-elf*)
1331         tmake_file="h8300/t-h8300"
1332         tm_file="h8300/h8300.h dbxelf.h elfos.h newlib-stdint.h h8300/elf.h"
1333         ;;
1334 h8300-*-linux*)
1335         tmake_file="${tmake_file} h8300/t-h8300 h8300/t-linux"
1336         tm_file="h8300/h8300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h h8300/linux.h"
1337         ;;
1338 hppa*64*-*-linux*)
1339         target_cpu_default="MASK_PA_11|MASK_PA_20"
1340         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h gnu-user.h linux.h \
1341                  glibc-stdint.h pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h \
1342                  pa/pa64-linux.h"
1343         gas=yes gnu_ld=yes
1344         ;;
1345 hppa*-*-linux*)
1346         target_cpu_default="MASK_PA_11|MASK_NO_SPACE_REGS|MASK_CALLER_COPIES"
1347         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h pa/pa-linux.h \
1348                  pa/pa32-regs.h pa/pa32-linux.h"
1349         tmake_file="${tmake_file} pa/t-linux"
1350         ;;
1351 hppa*-*-openbsd*)
1352         target_cpu_default="MASK_PA_11"
1353         tm_file="${tm_file} dbxelf.h elfos.h openbsd.h openbsd-stdint.h openbsd-libpthread.h \
1354                  pa/pa-openbsd.h pa/pa32-regs.h pa/pa32-openbsd.h"
1355         extra_options="${extra_options} openbsd.opt"
1356         gas=yes
1357         gnu_ld=yes
1358         ;;
1359 hppa[12]*-*-hpux10*)
1360         case ${target} in
1361         hppa1.1-*-* | hppa2*-*-*)
1362                 target_cpu_default="MASK_PA_11"
1363                 ;;
1364         esac
1365         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
1366                  pa/pa-hpux.h pa/pa-hpux10.h"
1367         extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux10.opt"
1368         case ${target} in
1369         *-*-hpux10.[1-9]*)
1370                 tm_file="${tm_file} pa/pa-hpux1010.h"
1371                 extra_options="${extra_options} pa/pa-hpux1010.opt"
1372                 ;;
1373         esac
1374         use_gcc_stdint=provide
1375         tm_file="${tm_file} hpux-stdint.h"
1376         tmake_file="t-slibgcc"
1377         case ${enable_threads} in
1378           "")
1379             if test x$have_pthread_h = xyes ; then
1380               tmake_file="${tmake_file} pa/t-dce-thr"
1381             fi
1382             ;;
1383           yes | dce)
1384             tmake_file="${tmake_file} pa/t-dce-thr"
1385             ;;
1386         esac
1387         use_collect2=yes
1388         gas=yes
1389         if test "x$with_dwarf2" != x; then
1390                 echo "Warning: dwarf2 debug format is not supported for this target, --with-dwarf2 ignored" 1>&2
1391                 dwarf2=no
1392         fi
1393         ;;
1394 hppa*64*-*-hpux11*)
1395         target_cpu_default="MASK_PA_11|MASK_PA_20"
1396         if test x$gnu_ld = xyes
1397         then
1398                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1399         fi
1400         tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
1401                  pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \
1402                  pa/pa-hpux11.h"
1403         case ${target} in
1404         *-*-hpux11.[12]*)
1405                 tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h"
1406                 extra_options="${extra_options} pa/pa-hpux1111.opt"
1407                 ;;
1408         *-*-hpux11.[3-9]*)
1409                 tm_file="${tm_file} pa/pa-hpux1131.h pa/pa-64.h pa/pa64-hpux.h"
1410                 extra_options="${extra_options} pa/pa-hpux1131.opt"
1411                 ;;
1412         *)
1413                 tm_file="${tm_file} pa/pa-64.h pa/pa64-hpux.h"
1414                 ;;
1415         esac
1416         extra_options="${extra_options} pa/pa-hpux.opt \
1417                        pa/pa-hpux1010.opt pa/pa64-hpux.opt hpux11.opt"
1418         tmake_file="t-slibgcc"
1419         case x${enable_threads} in
1420         x | xyes | xposix )
1421                 thread_file=posix
1422                 ;;
1423         esac
1424         gas=yes
1425         case ${target} in
1426           *-*-hpux11.[01]*)
1427                 use_gcc_stdint=provide
1428                 tm_file="${tm_file} hpux-stdint.h"
1429                 ;;
1430           *-*-hpux11.[23]*)
1431                 use_gcc_stdint=wrap
1432                 tm_file="${tm_file} hpux-stdint.h"
1433                 ;;
1434         esac
1435         ;;
1436 hppa[12]*-*-hpux11*)
1437         case ${target} in
1438         hppa1.1-*-* | hppa2*-*-*)
1439                 target_cpu_default="MASK_PA_11"
1440                 ;;
1441         esac
1442         tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
1443                  pa/pa-hpux.h pa/pa-hpux1010.h pa/pa-hpux11.h"
1444         extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux1010.opt \
1445                        hpux11.opt"
1446         case ${target} in
1447         *-*-hpux11.[12]*)
1448                 tm_file="${tm_file} pa/pa-hpux1111.h"
1449                 extra_options="${extra_options} pa/pa-hpux1111.opt"
1450                 ;;
1451         *-*-hpux11.[3-9]*)
1452                 tm_file="${tm_file} pa/pa-hpux1131.h"
1453                 extra_options="${extra_options} pa/pa-hpux1131.opt"
1454                 ;;
1455         esac
1456         tmake_file="t-slibgcc"
1457         case x${enable_threads} in
1458         x | xyes | xposix )
1459                 thread_file=posix
1460                 ;;
1461         esac
1462         use_collect2=yes
1463         gas=yes
1464         case ${target} in
1465           *-*-hpux11.[01]*)
1466                 use_gcc_stdint=provide
1467                 tm_file="${tm_file} hpux-stdint.h"
1468                 ;;
1469           *-*-hpux11.[23]*)
1470                 use_gcc_stdint=wrap
1471                 tm_file="${tm_file} hpux-stdint.h"
1472                 ;;
1473         esac
1474         if test "x$with_dwarf2" != x; then
1475                 echo "Warning: dwarf2 debug format is not supported for this target, --with-dwarf2 ignored" 1>&2
1476                 dwarf2=no
1477         fi
1478         ;;
1479 i[34567]86-*-darwin*)
1480         need_64bit_isa=yes
1481         # Baseline choice for a machine that allows m64 support.
1482         with_cpu=${with_cpu:-core2}
1483         tmake_file="${tmake_file} t-slibgcc"
1484         ;;
1485 x86_64-*-darwin*)
1486         with_cpu=${with_cpu:-core2}
1487         tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc"
1488         tm_file="${tm_file} ${cpu_type}/darwin64.h"
1489         ;;
1490 i[34567]86-*-elfiamcu)
1491         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/iamcu.h"
1492         ;;
1493 i[34567]86-*-elf*)
1494         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h"
1495         ;;
1496 x86_64-*-elf*)
1497         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h"
1498         ;;
1499 x86_64-*-rtems*)
1500         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h i386/rtemself.h rtems.h"
1501         ;;
1502 i[34567]86-*-rdos*)
1503     tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/rdos.h"
1504     ;;
1505 x86_64-*-rdos*)
1506     tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h i386/rdos.h i386/rdos64.h"
1507     tmake_file="i386/t-i386elf t-svr4"
1508     ;;
1509 i[34567]86-*-dragonfly*)
1510         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h dragonfly.h dragonfly-stdint.h i386/dragonfly.h"
1511         tmake_file="${tmake_file} i386/t-crtstuff"
1512         ;;
1513 x86_64-*-dragonfly*)
1514         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h dragonfly.h dragonfly-stdint.h i386/x86-64.h i386/dragonfly.h"
1515         tmake_file="${tmake_file} i386/t-crtstuff"
1516         ;;
1517 i[34567]86-*-freebsd*)
1518         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
1519         ;;
1520 x86_64-*-freebsd*)
1521         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"
1522         ;;
1523 i[34567]86-*-netbsdelf*)
1524         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${nbsd_tm_file} i386/netbsd-elf.h"
1525         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1526         ;;
1527 x86_64-*-netbsd*)
1528         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${nbsd_tm_file} i386/x86-64.h i386/netbsd64.h"
1529         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1530         ;;
1531 i[34567]86-*-openbsd*)
1532         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
1533         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h i386/openbsdelf.h"
1534         extra_options="${extra_options} openbsd.opt"
1535         gas=yes
1536         gnu_ld=yes
1537         ;;
1538 x86_64-*-openbsd*)
1539         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
1540         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h i386/x86-64.h i386/openbsdelf.h"
1541         extra_options="${extra_options} openbsd.opt"
1542         gas=yes
1543         gnu_ld=yes
1544         ;;
1545 i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
1546                         # Intel 80386's running GNU/*
1547                         # with ELF format using glibc 2
1548         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h glibc-stdint.h"
1549         case ${target} in
1550         i[34567]86-*-linux*)
1551                 tm_file="${tm_file} linux.h linux-android.h"
1552                 extra_options="${extra_options} linux-android.opt"
1553                 if test x$enable_targets = xall; then
1554                         tm_file="${tm_file} i386/x86-64.h i386/gnu-user-common.h i386/gnu-user64.h i386/linux-common.h i386/linux64.h"
1555                         tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1556                         tmake_file="${tmake_file} i386/t-linux64"
1557                         x86_multilibs="${with_multilib_list}"
1558                         if test "$x86_multilibs" = "default"; then
1559                                 x86_multilibs="m64,m32"
1560                         fi
1561                         x86_multilibs=`echo $x86_multilibs | sed -e 's/,/ /g'`
1562                         for x86_multilib in ${x86_multilibs}; do
1563                                 case ${x86_multilib} in
1564                                 m32 | m64 | mx32)
1565                                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${x86_multilib}"
1566                                         ;;
1567                                 *)
1568                                         echo "--with-multilib-list=${x86_with_multilib} not supported."
1569                                         exit 1
1570                                 esac
1571                         done
1572                         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
1573                         need_64bit_isa=yes
1574                         if test x$with_cpu = x; then
1575                                 if test x$with_cpu_64 = x; then
1576                                         with_cpu_64=generic
1577                                 fi
1578                         else
1579                                 case " $x86_cpus $x86_archs $x86_64_archs " in
1580                                 *" $with_cpu "*)
1581                                         ;;
1582                                 *)
1583                                         echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1584                                         echo "$x86_cpus $x86_archs $x86_64_archs " 1>&2
1585                                         exit 1
1586                                         ;;
1587                                 esac
1588                         fi
1589                 else
1590                         tm_file="${tm_file} i386/gnu-user-common.h i386/gnu-user.h i386/linux-common.h i386/linux.h"
1591                 fi
1592                 ;;
1593         i[34567]86-*-kfreebsd*-gnu)
1594                 tm_file="${tm_file} i386/gnu-user-common.h i386/gnu-user.h kfreebsd-gnu.h i386/kfreebsd-gnu.h"
1595                 ;;
1596         i[34567]86-*-kopensolaris*-gnu)
1597                 tm_file="${tm_file} i386/gnu-user-common.h i386/gnu-user.h kopensolaris-gnu.h i386/kopensolaris-gnu.h"
1598                 ;;
1599         i[34567]86-*-gnu*)
1600                 tm_file="$tm_file i386/gnu-user-common.h i386/gnu-user.h gnu.h i386/gnu.h"
1601                 ;;
1602         esac
1603         ;;
1604 x86_64-*-linux* | x86_64-*-kfreebsd*-gnu)
1605         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h glibc-stdint.h \
1606                  i386/x86-64.h i386/gnu-user-common.h i386/gnu-user64.h"
1607         case ${target} in
1608         x86_64-*-linux*)
1609                 tm_file="${tm_file} linux.h linux-android.h i386/linux-common.h i386/linux64.h"
1610                 extra_options="${extra_options} linux-android.opt"
1611                 ;;
1612         x86_64-*-kfreebsd*-gnu)
1613                 tm_file="${tm_file} kfreebsd-gnu.h i386/kfreebsd-gnu64.h"
1614                 ;;
1615         esac
1616         tmake_file="${tmake_file} i386/t-linux64"
1617         x86_multilibs="${with_multilib_list}"
1618         if test "$x86_multilibs" = "default"; then
1619                 case ${with_abi} in
1620                 x32 | mx32)
1621                         x86_multilibs="mx32"
1622                         ;;
1623                 *)
1624                         x86_multilibs="m64,m32"
1625                         ;;
1626                 esac
1627         fi
1628         x86_multilibs=`echo $x86_multilibs | sed -e 's/,/ /g'`
1629         for x86_multilib in ${x86_multilibs}; do
1630                 case ${x86_multilib} in
1631                 m32 | m64 | mx32)
1632                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${x86_multilib}"
1633                         ;;
1634                 *)
1635                         echo "--with-multilib-list=${x86_with_multilib} not supported."
1636                         exit 1
1637                 esac
1638         done
1639         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
1640         ;;
1641 i[34567]86-pc-msdosdjgpp*)
1642         xm_file=i386/xm-djgpp.h
1643         tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h i386/djgpp-stdint.h"
1644         native_system_header_dir=/dev/env/DJDIR/include
1645         extra_options="${extra_options} i386/djgpp.opt"
1646         gnu_ld=yes
1647         gas=yes
1648         use_gcc_stdint=wrap
1649         ;;
1650 i[34567]86-*-lynxos*)
1651         xm_defines=POSIX
1652         tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
1653         tmake_file="${tmake_file} t-lynx"
1654         extra_options="${extra_options} lynx.opt"
1655         thread_file=lynx
1656         gnu_ld=yes
1657         gas=yes
1658         ;;
1659 i[34567]86-*-nto-qnx*)
1660         tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h i386/unix.h i386/nto.h"
1661         extra_options="${extra_options} i386/nto.opt"
1662         gnu_ld=yes
1663         gas=yes
1664         ;;
1665 i[34567]86-*-rtems*)
1666         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"
1667         tmake_file="${tmake_file} i386/t-rtems"
1668         ;;
1669 i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
1670         # Set default arch_32 to pentium4, tune_32 to generic like the other
1671         # i386 targets, although config.guess defaults to i386-pc-solaris2*.
1672         with_arch_32=${with_arch_32:-pentium4}
1673         with_tune_32=${with_tune_32:-generic}
1674         tm_file="${tm_file} i386/unix.h i386/att.h ${sol2_tm_file_head} i386/x86-64.h ${sol2_tm_file_tail}"
1675         tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1676         tmake_file="$tmake_file i386/t-sol2"
1677         need_64bit_isa=yes
1678         if test x$with_cpu = x; then
1679                 if test x$with_cpu_64 = x; then
1680                         with_cpu_64=generic
1681                 fi
1682         else
1683                 case " $x86_cpus $x86_archs $x86_64_archs " in
1684                 *" $with_cpu "*)
1685                         ;;
1686                 *)
1687                         echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1688                         echo "$x86_cpus $x86_archs $x86_64_archs" 1>&2
1689                         exit 1
1690                         ;;
1691                 esac
1692         fi
1693         ;;
1694 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae|i[4567]86-wrs-vxworks7|x86_64-wrs-vxworks7)
1695         tm_file="${tm_file} i386/unix.h i386/att.h elfos.h"
1696         case ${target} in
1697           x86_64-*)
1698             need_64bit_isa=yes
1699             tm_file="${tm_file} i386/x86-64.h"
1700             ;;
1701         esac
1702         tm_file="${tm_file} vx-common.h"
1703         case ${target} in
1704           *-vxworksae*)
1705             tm_file="${tm_file} vxworksae.h i386/vxworks.h i386/vxworksae.h"
1706             tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
1707             ;;
1708           *)
1709             tm_file="${tm_file} vxworks.h i386/vxworks.h"
1710             tmake_file="${tmake_file} i386/t-vxworks"
1711             ;;
1712         esac
1713         ;;
1714 i[34567]86-*-cygwin*)
1715         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"
1716         xm_file=i386/xm-cygwin.h
1717         tmake_file="${tmake_file} i386/t-cygming t-slibgcc"
1718         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1719         extra_options="${extra_options} i386/cygming.opt i386/cygwin.opt"
1720         extra_objs="${extra_objs} winnt.o winnt-stubs.o"
1721         c_target_objs="${c_target_objs} msformat-c.o"
1722         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1723         if test x$enable_threads = xyes; then
1724                 thread_file='posix'
1725         fi
1726         default_use_cxa_atexit=yes
1727         use_gcc_stdint=wrap
1728         ;;
1729 x86_64-*-cygwin*)
1730         need_64bit_isa=yes
1731         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h i386/cygwin-w64.h i386/cygwin-stdint.h"
1732         xm_file=i386/xm-cygwin.h
1733         tmake_file="${tmake_file} i386/t-cygming t-slibgcc i386/t-cygwin-w64"
1734         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1735         extra_options="${extra_options} i386/cygming.opt i386/cygwin.opt"
1736         extra_objs="${extra_objs} winnt.o winnt-stubs.o"
1737         c_target_objs="${c_target_objs} msformat-c.o"
1738         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1739         if test x$enable_threads = xyes; then
1740                 thread_file='posix'
1741         fi
1742         default_use_cxa_atexit=yes
1743         use_gcc_stdint=wrap
1744         tm_defines="${tm_defines} TARGET_CYGWIN64=1"
1745         ;;
1746 i[34567]86-*-mingw* | x86_64-*-mingw*)
1747         tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h"
1748         xm_file=i386/xm-mingw32.h
1749         c_target_objs="${c_target_objs} winnt-c.o"
1750         cxx_target_objs="${cxx_target_objs} winnt-c.o"
1751         target_has_targetcm="yes"
1752         case ${target} in
1753                 x86_64-*-* | *-w64-*)
1754                         need_64bit_isa=yes
1755                         ;;
1756                 *)
1757                         ;;
1758         esac
1759         if test x$enable_threads = xposix ; then
1760                 tm_file="${tm_file} i386/mingw-pthread.h"
1761         fi
1762         tm_file="${tm_file} i386/mingw32.h"
1763         # This makes the logic if mingw's or the w64 feature set has to be used
1764         case ${target} in
1765                 *-w64-*)
1766                         user_headers_inc_next_post="${user_headers_inc_next_post} float.h"
1767                         user_headers_inc_next_pre="${user_headers_inc_next_pre} stddef.h stdarg.h"
1768                         tm_file="${tm_file} i386/mingw-w64.h"
1769                         if test x$enable_targets = xall; then
1770                                 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1771                                 if test x$with_cpu = x; then
1772                                         if test x$with_cpu_64 = x; then
1773                                                 with_cpu_64=generic
1774                                         fi
1775                                 else
1776                                         case " $x86_cpus $x86_archs $x86_64_archs " in
1777                                         *" $with_cpu "*)
1778                                                 ;;
1779                                         *)
1780                                                 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1781                                                 echo "$x86_cpus $x86_archs $x86_64_archs" 1>&2
1782                                                 exit 1
1783                                                 ;;
1784                                         esac
1785                                 fi
1786                         fi
1787                         ;;
1788                 *)
1789                         ;;
1790         esac
1791         tm_file="${tm_file} i386/mingw-stdint.h"
1792         tmake_file="${tmake_file} t-winnt i386/t-cygming t-slibgcc"
1793         case ${target} in
1794                x86_64-w64-*)
1795                         tmake_file="${tmake_file} i386/t-mingw-w64"
1796                         ;;
1797                i[34567]86-w64-*)
1798                         tmake_file="${tmake_file} i386/t-mingw-w32"
1799                         ;;
1800         esac
1801         native_system_header_dir=/mingw/include
1802         target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1803         extra_options="${extra_options} i386/cygming.opt i386/mingw.opt"
1804         case ${target} in
1805                 *-w64-*)
1806                         extra_options="${extra_options} i386/mingw-w64.opt"
1807                         ;;
1808                 *)
1809                         ;;
1810         esac
1811         extra_objs="${extra_objs} winnt.o winnt-stubs.o"
1812         c_target_objs="${c_target_objs} msformat-c.o"
1813         cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1814         gas=yes
1815         gnu_ld=yes
1816         default_use_cxa_atexit=yes
1817         use_gcc_stdint=wrap
1818         case ${enable_threads} in
1819           "" | yes | win32)
1820             thread_file='win32'
1821             ;;
1822           posix)
1823             thread_file='posix'
1824             ;;
1825         esac
1826         case ${target} in
1827                 *mingw32crt*)
1828                         tm_file="${tm_file} i386/crtdll.h"
1829                         ;;
1830                 *mingw32msv* | *mingw*)
1831                         ;;
1832         esac
1833         ;;
1834 x86_64-*-fuchsia*)
1835         tmake_file="${tmake_file} i386/t-x86_64-elf"
1836         tm_file="${tm_file} i386/unix.h i386/att.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h fuchsia.h"
1837         ;;
1838 ia64*-*-elf*)
1839         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h ia64/sysv4.h ia64/elf.h"
1840         tmake_file="ia64/t-ia64"
1841         target_cpu_default="0"
1842         if test x$gas = xyes
1843         then
1844                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1845         fi
1846         if test x$gnu_ld = xyes
1847         then
1848                 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1849         fi
1850         ;;
1851 ia64*-*-freebsd*)
1852         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1853         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1854         tmake_file="${tmake_file} ia64/t-ia64"
1855         ;;
1856 ia64*-*-linux*)
1857         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ia64/sysv4.h ia64/linux.h"
1858         tmake_file="${tmake_file} ia64/t-ia64 ia64/t-linux t-libunwind"
1859         target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1860         ;;
1861 ia64*-*-hpux*)
1862         tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/hpux.h"
1863         tmake_file="ia64/t-ia64 ia64/t-hpux t-slibgcc"
1864         target_cpu_default="MASK_GNU_AS"
1865         case x$enable_threads in
1866         x | xyes | xposix )
1867                 thread_file=posix
1868                 ;;
1869         esac
1870         use_collect2=no
1871         c_target_objs="ia64-c.o"
1872         cxx_target_objs="ia64-c.o"
1873         extra_options="${extra_options} ia64/ilp32.opt hpux11.opt"
1874         use_gcc_stdint=wrap
1875         tm_file="${tm_file} hpux-stdint.h"
1876         case ${target} in
1877         *-*-hpux11.3*)
1878                 tm_file="${tm_file} ia64/hpux-unix2003.h"
1879                 ;;
1880         esac
1881         ;;
1882 ia64-hp-*vms*)
1883         tm_file="${tm_file} elfos.h ia64/sysv4.h vms/vms.h ia64/vms.h"
1884         tmake_file="${tmake_file} ia64/t-ia64"
1885         target_cpu_default="0"
1886         if test x$gas = xyes
1887         then
1888                 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1889         fi
1890         extra_options="${extra_options} ia64/vms.opt"
1891         ;;
1892 iq2000*-*-elf*)
1893         tm_file="elfos.h newlib-stdint.h iq2000/iq2000.h"
1894         out_file=iq2000/iq2000.c
1895         md_file=iq2000/iq2000.md
1896         ;;
1897 lm32-*-elf*)
1898         tm_file="dbxelf.h elfos.h ${tm_file} newlib-stdint.h"
1899         tmake_file="${tmake_file} lm32/t-lm32"
1900         ;;
1901 lm32-*-rtems*)
1902         tm_file="dbxelf.h elfos.h ${tm_file} lm32/rtems.h rtems.h newlib-stdint.h"
1903         tmake_file="${tmake_file} lm32/t-lm32"
1904         tmake_file="${tmake_file} lm32/t-rtems"
1905          ;;
1906 lm32-*-uclinux*)
1907         tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h lm32/uclinux-elf.h"
1908         tmake_file="${tmake_file} lm32/t-lm32"
1909         ;;
1910 m32r-*-elf*)
1911         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1912         ;;
1913 m32rle-*-elf*)
1914         tm_file="dbxelf.h elfos.h newlib-stdint.h m32r/little.h ${tm_file}"
1915         ;;
1916 m32r-*-linux*)
1917         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} m32r/linux.h"
1918         tmake_file="${tmake_file} m32r/t-linux t-slibgcc"
1919         gnu_ld=yes
1920         if test x$enable_threads = xyes; then
1921                 thread_file='posix'
1922         fi
1923         ;;
1924 m32rle-*-linux*)
1925         tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m32r/little.h ${tm_file} m32r/linux.h"
1926         tmake_file="${tmake_file} m32r/t-linux t-slibgcc"
1927         gnu_ld=yes
1928         if test x$enable_threads = xyes; then
1929                 thread_file='posix'
1930         fi
1931         ;;
1932 m68k-*-elf* | fido-*-elf*)
1933         case ${target} in
1934         fido-*-elf*)
1935                 # Check that $with_cpu makes sense.
1936                 case $with_cpu in
1937                 "" | "fidoa")
1938                         ;;
1939                 *)
1940                         echo "Cannot accept --with-cpu=$with_cpu"
1941                         exit 1
1942                         ;;
1943                 esac
1944                 with_cpu=fidoa
1945                 ;;
1946         *)
1947                 default_m68k_cpu=68020
1948                 default_cf_cpu=5206
1949                 ;;
1950         esac
1951         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"
1952         tm_defines="${tm_defines} MOTOROLA=1"
1953         tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
1954         # Add multilibs for targets other than fido.
1955         case ${target} in
1956         fido-*-elf*)
1957                 ;;
1958         *)
1959                 tmake_file="$tmake_file m68k/t-mlibs"
1960                 ;;
1961         esac
1962         ;;
1963 m68k*-*-netbsdelf*)
1964         default_m68k_cpu=68020
1965         default_cf_cpu=5475
1966         tm_file="${tm_file} dbxelf.h elfos.h ${nbsd_tm_file} m68k/netbsd-elf.h"
1967         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
1968         tm_defines="${tm_defines} MOTOROLA=1 CHAR_FAST8=1 SHORT_FAST16=1"
1969         ;;
1970 m68k*-*-openbsd*)
1971         default_m68k_cpu=68020
1972         default_cf_cpu=5475
1973         # needed to unconfuse gdb
1974         tm_defines="${tm_defines} OBSD_OLD_GAS"
1975         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h m68k/openbsd.h"
1976         extra_options="${extra_options} openbsd.opt"
1977         tmake_file="t-openbsd m68k/t-openbsd"
1978         # we need collect2 until our bug is fixed...
1979         use_collect2=yes
1980         ;;
1981 m68k-*-uclinux*)                # Motorola m68k/ColdFire running uClinux
1982                                 # with uClibc, using the new GNU/Linux-style
1983                                 # ABI.
1984         default_m68k_cpu=68020
1985         default_cf_cpu=5206
1986         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"
1987         extra_options="${extra_options} m68k/uclinux.opt"
1988         tm_defines="${tm_defines} MOTOROLA=1"
1989         tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
1990         ;;
1991 m68k-*-linux*)                  # Motorola m68k's running GNU/Linux
1992                                 # with ELF format using glibc 2
1993                                 # aka the GNU/Linux C library 6.
1994         default_m68k_cpu=68020
1995         default_cf_cpu=5475
1996         with_arch=${with_arch:-m68k}
1997         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m68k/linux.h ./sysroot-suffix.h"
1998         extra_options="${extra_options} m68k/ieee.opt"
1999         tm_defines="${tm_defines} MOTOROLA=1"
2000         tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs"
2001         ;;
2002 m68k-*-rtems*)
2003         default_m68k_cpu=68020
2004         default_cf_cpu=5206
2005         tmake_file="${tmake_file} m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff m68k/t-rtems m68k/t-mlibs"
2006         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"
2007         tm_defines="${tm_defines} MOTOROLA=1"
2008         ;;
2009 mcore-*-elf)
2010         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} mcore/mcore-elf.h"
2011         tmake_file=mcore/t-mcore
2012         inhibit_libc=true
2013         ;;
2014 microblaze*-linux*)
2015         case $target in
2016                 microblazeel-*)
2017                         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=0"
2018                         ;;
2019                 microblaze-*)
2020                         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=4321"
2021                         ;;
2022         esac
2023         tm_file="${tm_file} dbxelf.h gnu-user.h linux.h microblaze/linux.h"
2024         tm_file="${tm_file} glibc-stdint.h"
2025         c_target_objs="${c_target_objs} microblaze-c.o"
2026         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
2027         tmake_file="${tmake_file} microblaze/t-microblaze"
2028         tmake_file="${tmake_file} microblaze/t-microblaze-linux"
2029         ;;
2030 microblaze*-*-rtems*)
2031         case $target in
2032                 microblazeel-*)
2033                         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=0"
2034                         ;;
2035                 microblaze-*)
2036                         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=4321"
2037                         ;;
2038         esac
2039         tm_file="${tm_file} dbxelf.h"
2040         tm_file="${tm_file} microblaze/rtems.h rtems.h newlib-stdint.h"
2041         c_target_objs="${c_target_objs} microblaze-c.o"
2042         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
2043         tmake_file="${tmake_file} microblaze/t-microblaze"
2044         tmake_file="${tmake_file} microblaze/t-rtems"
2045         ;;
2046 microblaze*-*-elf)
2047         case $target in
2048                 microblazeel-*)
2049                         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=0"
2050                         ;;
2051                 microblaze-*)
2052                         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=4321"
2053                         ;;
2054         esac
2055         tm_file="${tm_file} dbxelf.h newlib-stdint.h"
2056         c_target_objs="${c_target_objs} microblaze-c.o"
2057         cxx_target_objs="${cxx_target_objs} microblaze-c.o"
2058         tmake_file="${tmake_file} microblaze/t-microblaze"
2059         ;;
2060 riscv*-*-linux*)
2061         tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} riscv/linux.h"
2062         case "x${enable_multilib}" in
2063         xno) ;;
2064         xyes) tmake_file="${tmake_file} riscv/t-linux-multilib" ;;
2065         *) echo "Unknown value for enable_multilib"; exit 1
2066         esac
2067         tmake_file="${tmake_file} riscv/t-riscv riscv/t-linux"
2068         gnu_ld=yes
2069         gas=yes
2070         # Force .init_array support.  The configure script cannot always
2071         # automatically detect that GAS supports it, yet we require it.
2072         gcc_cv_initfini_array=yes
2073         ;;
2074 riscv*-*-elf* | riscv*-*-rtems*)
2075         tm_file="elfos.h newlib-stdint.h ${tm_file} riscv/elf.h"
2076         case "x${enable_multilib}" in
2077         xno) ;;
2078         xyes) tmake_file="${tmake_file} riscv/t-elf-multilib" ;;
2079         *) echo "Unknown value for enable_multilib"; exit 1
2080         esac
2081         tmake_file="${tmake_file} riscv/t-riscv"
2082         gnu_ld=yes
2083         gas=yes
2084         # Force .init_array support.  The configure script cannot always
2085         # automatically detect that GAS supports it, yet we require it.
2086         gcc_cv_initfini_array=yes
2087         case ${target} in
2088         riscv*-*-rtems*)
2089           tm_file="${tm_file} rtems.h riscv/rtems.h"
2090           ;;
2091         esac
2092         ;;
2093 riscv*-*-freebsd*)
2094         tm_file="${tm_file} elfos.h ${fbsd_tm_file} riscv/freebsd.h"
2095         tmake_file="${tmake_file} riscv/t-riscv"
2096         gnu_ld=yes
2097         gas=yes
2098         # Force .init_array support.  The configure script cannot always
2099         # automatically detect that GAS supports it, yet we require it.
2100         gcc_cv_initfini_array=yes
2101         ;;
2102 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
2103         target_cpu_default="MASK_ABICALLS"
2104         tm_file="elfos.h ${tm_file} mips/elf.h ${nbsd_tm_file} mips/netbsd.h"
2105         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2106         ;;
2107 mips*-img-linux*)
2108         tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/linux.h mips/linux-common.h mips/mti-linux.h"
2109         extra_options="${extra_options} linux-android.opt"
2110         tmake_file="${tmake_file} mips/t-img-linux"
2111         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=37 MIPS_ABI_DEFAULT=ABI_32"
2112         with_arch_32="mips32r6"
2113         with_arch_64="mips64r6"
2114         gnu_ld=yes
2115         gas=yes
2116         ;;
2117 mips*-mti-linux*)
2118         tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/linux.h mips/linux-common.h mips/mti-linux.h"
2119         extra_options="${extra_options} linux-android.opt"
2120         tmake_file="${tmake_file} mips/t-mti-linux"
2121         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
2122         with_arch_32="mips32r2"
2123         with_arch_64="mips64r2"
2124         gnu_ld=yes
2125         gas=yes
2126         ;;
2127 mips*-*-linux*)                         # Linux MIPS, either endian.
2128         tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/linux.h mips/linux-common.h"
2129         extra_options="${extra_options} linux-android.opt"
2130         case ${target} in
2131                 mipsisa32r6*)
2132                         default_mips_arch=mips32r6
2133                         ;;
2134                 mipsisa32r2*)
2135                         default_mips_arch=mips32r2
2136                         ;;
2137                 mipsisa32*)
2138                         default_mips_arch=mips32
2139                         ;;
2140                 mips64el-st-linux-gnu)
2141                         default_mips_abi=n32
2142                         tm_file="${tm_file} mips/st.h"
2143                         tmake_file="${tmake_file} mips/t-st"
2144                         enable_mips_multilibs="yes"
2145                         ;;
2146                 mips64octeon*-*-linux*)
2147                         default_mips_abi=n32
2148                         tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
2149                         target_cpu_default=MASK_SOFT_FLOAT_ABI
2150                         enable_mips_multilibs="yes"
2151                         ;;
2152                 mipsisa64r6*-*-linux*)
2153                         default_mips_abi=n32
2154                         default_mips_arch=mips64r6
2155                         enable_mips_multilibs="yes"
2156                         ;;
2157                 mipsisa64r2*-*-linux*)
2158                         default_mips_abi=n32
2159                         default_mips_arch=mips64r2
2160                         enable_mips_multilibs="yes"
2161                         ;;
2162                 mips64*-*-linux* | mipsisa64*-*-linux*)
2163                         default_mips_abi=n32
2164                         enable_mips_multilibs="yes"
2165                         ;;
2166         esac
2167         if test x$enable_targets = xall; then
2168                 enable_mips_multilibs="yes"
2169         fi
2170         if test x$enable_mips_multilibs = xyes; then
2171                 tmake_file="${tmake_file} mips/t-linux64"
2172         fi
2173         ;;
2174 mips*-mti-elf*)
2175         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h mips/sde.h mips/mti-elf.h"
2176         tmake_file="mips/t-mti-elf"
2177         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
2178         with_arch_32="mips32r2"
2179         with_arch_64="mips64r2"
2180         ;;
2181 mips*-img-elf*)
2182         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h mips/sde.h mips/mti-elf.h"
2183         tmake_file="mips/t-img-elf"
2184         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=37 MIPS_ABI_DEFAULT=ABI_32"
2185         with_arch_32="mips32r6"
2186         with_arch_64="mips64r6"
2187         ;;
2188 mips*-sde-elf*)
2189         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h mips/sde.h"
2190         tmake_file="mips/t-sde"
2191         extra_options="${extra_options} mips/sde.opt"
2192         case "${with_newlib}" in
2193           yes)
2194             # newlib / libgloss.
2195             ;;
2196           *)
2197             # MIPS toolkit libraries.
2198             tm_file="$tm_file mips/sdemtk.h"
2199             tmake_file="$tmake_file mips/t-sdemtk"
2200             case ${enable_threads} in
2201               "" | yes | mipssde)
2202                 thread_file='mipssde'
2203                 ;;
2204             esac
2205             ;;
2206         esac
2207         case ${target} in
2208           mipsisa32r6*)
2209             tm_defines="MIPS_ISA_DEFAULT=37 MIPS_ABI_DEFAULT=ABI_32"
2210             ;;
2211           mipsisa32r2*)
2212             tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
2213             ;;
2214           mipsisa32*)
2215             tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
2216             ;;
2217           mipsisa64r6*)
2218             tm_defines="MIPS_ISA_DEFAULT=69 MIPS_ABI_DEFAULT=ABI_N32"
2219             ;;
2220           mipsisa64r2*)
2221             tm_defines="MIPS_ISA_DEFAULT=65 MIPS_ABI_DEFAULT=ABI_N32"
2222             ;;
2223           mipsisa64*)
2224             tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
2225             ;;
2226         esac
2227         ;;
2228 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
2229 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
2230 mipsisa32r6-*-elf* | mipsisa32r6el-*-elf* | \
2231 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
2232 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf* | \
2233 mipsisa64r6-*-elf* | mipsisa64r6el-*-elf*)
2234         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
2235         tmake_file="mips/t-isa3264"
2236         case ${target} in
2237           mipsisa32r6*)
2238             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=37"
2239             ;;
2240           mipsisa32r2*)
2241             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
2242             ;;
2243           mipsisa32*)
2244             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
2245             ;;
2246           mipsisa64r6*)
2247             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=69"
2248             ;;
2249           mipsisa64r2*)
2250             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
2251             ;;
2252           mipsisa64*)
2253             tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
2254             ;;
2255         esac
2256         case ${target} in
2257           mipsisa32*-*-elfoabi*)
2258             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
2259             tm_file="${tm_file} mips/elfoabi.h"
2260             ;;
2261           mipsisa64*-*-elfoabi*)
2262             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
2263             tm_file="${tm_file} mips/elfoabi.h"
2264             ;;
2265           *-*-elf*)
2266             tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
2267             ;;
2268         esac
2269         ;;
2270 mipsisa64sr71k-*-elf*)
2271         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
2272         tmake_file=mips/t-sr71k
2273         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
2274         ;;
2275 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
2276         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
2277         tmake_file="mips/t-elf mips/t-sb1"
2278         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
2279         ;;
2280 mips-*-elf* | mipsel-*-elf* | mipsr5900-*-elf* | mipsr5900el-*-elf*)
2281         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
2282         tmake_file="mips/t-elf"
2283         ;;
2284 mips64r5900-*-elf* | mips64r5900el-*-elf*)
2285         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h"
2286         tmake_file="mips/t-elf"
2287         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
2288         ;;
2289 mips64-*-elf* | mips64el-*-elf*)
2290         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
2291         tmake_file="mips/t-elf"
2292         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
2293         ;;
2294 mips64vr-*-elf* | mips64vrel-*-elf*)
2295         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/vr.h mips/elf.h"
2296         tmake_file=mips/t-vr
2297         tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
2298         ;;
2299 mips64orion-*-elf* | mips64orionel-*-elf*)
2300         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elforion.h mips/elf.h"
2301         tmake_file="mips/t-elf"
2302         tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
2303         ;;
2304 mips*-*-rtems*)
2305         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
2306         tmake_file="${tmake_file} mips/t-elf mips/t-rtems"
2307         ;;
2308 mips-wrs-vxworks)
2309         tm_file="elfos.h ${tm_file} mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
2310         tmake_file="${tmake_file} mips/t-vxworks"
2311         ;;
2312 mipstx39-*-elf* | mipstx39el-*-elf*)
2313         tm_file="elfos.h newlib-stdint.h ${tm_file} mips/r3900.h mips/elf.h"
2314         tmake_file="mips/t-r3900"
2315         ;;
2316 mmix-knuth-mmixware)
2317         tm_file="${tm_file} newlib-stdint.h"
2318         use_gcc_stdint=wrap
2319         ;;
2320 mn10300-*-*)
2321         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2322         if test x$stabs = xyes
2323         then
2324                 tm_file="${tm_file} dbx.h"
2325         fi
2326         use_collect2=no
2327         use_gcc_stdint=wrap
2328         ;;
2329 msp430*-*-*)
2330         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2331         c_target_objs="msp430-c.o"
2332         cxx_target_objs="msp430-c.o"
2333         tmake_file="${tmake_file} msp430/t-msp430"
2334         extra_gcc_objs="driver-msp430.o"
2335         ;;
2336 nds32le-*-*)
2337         target_cpu_default="0"
2338         tm_defines="${tm_defines}"
2339         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} nds32/nds32_intrinsic.h"
2340         tmake_file="nds32/t-nds32 nds32/t-mlibs"
2341         ;;
2342 nds32be-*-*)
2343         target_cpu_default="0|MASK_BIG_ENDIAN"
2344         tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
2345         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} nds32/nds32_intrinsic.h"
2346         tmake_file="nds32/t-nds32 nds32/t-mlibs"
2347         ;;
2348 nios2-*-*)
2349         tm_file="elfos.h ${tm_file}"
2350         tmake_file="${tmake_file} nios2/t-nios2"
2351         case ${target} in
2352         nios2-*-linux*)
2353                 tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h nios2/linux.h "
2354                 ;;
2355         nios2-*-elf*)
2356                 tm_file="${tm_file} newlib-stdint.h nios2/elf.h"
2357                 extra_options="${extra_options} nios2/elf.opt"
2358                 ;;
2359         nios2-*-rtems*)
2360                 tm_file="${tm_file} newlib-stdint.h nios2/rtems.h rtems.h"
2361                 tmake_file="${tmake_file} t-rtems nios2/t-rtems"
2362                 ;;
2363         esac
2364         ;;
2365 nvptx-*)
2366         tm_file="${tm_file} newlib-stdint.h"
2367         use_gcc_stdint=wrap
2368         tmake_file="nvptx/t-nvptx"
2369         if test x$enable_as_accelerator = xyes; then
2370                 extra_programs="${extra_programs} mkoffload\$(exeext)"
2371                 tm_file="${tm_file} nvptx/offload.h"
2372         fi
2373         ;;
2374 pdp11-*-*)
2375         tm_file="${tm_file} newlib-stdint.h"
2376         use_gcc_stdint=wrap
2377         ;;
2378 # port not yet contributed
2379 #powerpc-*-openbsd*)
2380 #       tmake_file="${tmake_file} rs6000/t-fprules"
2381 #       extra_headers=
2382 #       ;;
2383 powerpc-*-darwin*)
2384         extra_options="${extra_options} rs6000/darwin.opt"
2385         case ${target} in
2386           *-darwin1[0-9]* | *-darwin[8-9]*)
2387             tmake_file="${tmake_file} rs6000/t-darwin8"
2388             tm_file="${tm_file} rs6000/darwin8.h"
2389             ;;
2390           *-darwin7*)
2391             tm_file="${tm_file} rs6000/darwin7.h"
2392             ;;
2393           *-darwin[0-6]*)
2394             ;;
2395         esac
2396         tmake_file="${tmake_file} t-slibgcc"
2397         extra_headers=altivec.h
2398         ;;
2399 powerpc64-*-darwin*)
2400         extra_options="${extra_options} ${cpu_type}/darwin.opt"
2401         tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc"
2402         tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
2403         extra_headers=altivec.h
2404         ;;
2405 powerpc*-*-freebsd*)
2406         tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h"
2407         extra_options="${extra_options} rs6000/sysv4.opt"
2408         tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2409         case ${target} in
2410              powerpc64*)
2411                 tm_file="${tm_file} rs6000/default64.h rs6000/freebsd64.h"
2412                 tmake_file="${tmake_file} rs6000/t-freebsd64"
2413                 extra_options="${extra_options} rs6000/linux64.opt"
2414                 ;;
2415              *)
2416                 tm_file="${tm_file} rs6000/freebsd.h"
2417                 ;;
2418         esac
2419         ;;
2420 powerpc-*-netbsd*)
2421         tm_file="${tm_file} dbxelf.h elfos.h ${nbsd_tm_file} freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2422         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2423         tmake_file="${tmake_file} rs6000/t-netbsd"
2424         extra_options="${extra_options} rs6000/sysv4.opt"
2425         ;;
2426 powerpc-*-eabispe*)
2427         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h ${cpu_type}/sysv4.h ${cpu_type}/eabi.h ${cpu_type}/e500.h ${cpu_type}/eabispe.h"
2428         extra_options="${extra_options} ${cpu_type}/sysv4.opt"
2429         tmake_file="${cpu_type}/t-spe ${cpu_type}/t-ppccomm"
2430         use_gcc_stdint=wrap
2431         ;;
2432 powerpc-*-eabisimaltivec*)
2433         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h rs6000/eabialtivec.h"
2434         extra_options="${extra_options} rs6000/sysv4.opt"
2435         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
2436         use_gcc_stdint=wrap
2437         ;;
2438 powerpc-*-eabisim*)
2439         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
2440         extra_options="${extra_options} rs6000/sysv4.opt"
2441         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
2442         use_gcc_stdint=wrap
2443         ;;
2444 powerpc-*-elf*)
2445         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h"
2446         extra_options="${extra_options} rs6000/sysv4.opt"
2447         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
2448         ;;
2449 powerpc-*-eabialtivec*)
2450         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
2451         extra_options="${extra_options} rs6000/sysv4.opt"
2452         tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
2453         use_gcc_stdint=wrap
2454         ;;
2455 powerpc-xilinx-eabi*)
2456         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"
2457         extra_options="${extra_options} rs6000/sysv4.opt rs6000/xilinx.opt"
2458         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm rs6000/t-xilinx"
2459         use_gcc_stdint=wrap
2460         ;;
2461 powerpc-*-eabi*)
2462         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h"
2463         extra_options="${extra_options} rs6000/sysv4.opt"
2464         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
2465         use_gcc_stdint=wrap
2466         ;;
2467 powerpc-*-rtems*spe*)
2468         tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h powerpcspe/sysv4.h powerpcspe/eabi.h powerpcspe/e500.h powerpcspe/rtems.h rtems.h"
2469         extra_options="${extra_options} powerpcspe/sysv4.opt"
2470         tmake_file="${tmake_file} powerpcspe/t-fprules powerpcspe/t-rtems powerpcspe/t-ppccomm"
2471         ;;
2472 powerpc-*-rtems*)
2473         tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/rtems.h rtems.h"
2474         extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
2475         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-rtems rs6000/t-ppccomm"
2476         ;;
2477 powerpc*-*-linux*spe*)
2478         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h freebsd-spec.h powerpcspe/sysv4.h"
2479         extra_options="${extra_options} powerpcspe/sysv4.opt"
2480         tmake_file="${tmake_file} powerpcspe/t-fprules powerpcspe/t-ppccomm"
2481         extra_objs="$extra_objs powerpcspe-linux.o"
2482         maybe_biarch=
2483         tm_file="${tm_file} powerpcspe/linux.h glibc-stdint.h"
2484         tmake_file="${tmake_file} powerpcspe/t-ppcos powerpcspe/t-linux"
2485         tm_file="${tm_file} powerpcspe/linuxspe.h powerpcspe/e500.h"
2486         ;;
2487 powerpc*-*-linux*)
2488         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h freebsd-spec.h rs6000/sysv4.h"
2489         extra_options="${extra_options} rs6000/sysv4.opt"
2490         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm"
2491         extra_objs="$extra_objs rs6000-linux.o"
2492         case ${target} in
2493             powerpc*le-*-*)
2494                 tm_file="${tm_file} rs6000/sysv4le.h" ;;
2495         esac
2496         case ${target}:${with_cpu} in
2497             powerpc64*: | powerpc64*:native) cpu_is_64bit=yes ;;
2498         esac
2499         maybe_biarch=${cpu_is_64bit}
2500         case ${enable_targets} in
2501             *powerpc64*) maybe_biarch=yes ;;
2502             all) maybe_biarch=yes ;;
2503         esac
2504         case ${target} in
2505             powerpc64*-*-linux*spe* | powerpc64*-*-linux*paired*)
2506                 echo "*** Configuration ${target} not supported" 1>&2
2507                 exit 1
2508                 ;;
2509             powerpc*-*-linux*spe* | powerpc*-*-linux*paired*)
2510                 maybe_biarch=
2511                 ;;
2512         esac
2513         case ${target}:${enable_targets}:${maybe_biarch} in
2514             powerpc64-* | powerpc-*:*:yes | *:*powerpc64-*:yes | *:all:yes \
2515             | powerpc64le*:*powerpcle* | powerpc64le*:*powerpc-* \
2516             | powerpcle-*:*powerpc64le*:yes)
2517                 if test x$cpu_is_64bit = xyes; then
2518                     tm_file="${tm_file} rs6000/default64.h"
2519                 fi
2520                 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h glibc-stdint.h"
2521                 tmake_file="$tmake_file rs6000/t-linux64"
2522                 case ${target} in
2523                     powerpc*le-*-*)
2524                         tmake_file="$tmake_file rs6000/t-linux64le"
2525                         case ${enable_targets} in
2526                             all | *powerpc64-* | *powerpc-*)
2527                                 tmake_file="$tmake_file rs6000/t-linux64lebe" ;;
2528                         esac ;;
2529                     *)
2530                         case ${enable_targets} in
2531                             all | *powerpc64le-* | *powerpcle-*)
2532                                 tmake_file="$tmake_file rs6000/t-linux64bele" ;;
2533                         esac ;;
2534                 esac
2535                 extra_options="${extra_options} rs6000/linux64.opt"
2536                 ;;
2537             powerpc64*)
2538                 tm_file="${tm_file} rs6000/default64.h rs6000/linux64.h glibc-stdint.h"
2539                 extra_options="${extra_options} rs6000/linux64.opt"
2540                 tmake_file="${tmake_file} rs6000/t-linux"
2541                 ;;
2542             *)
2543                 tm_file="${tm_file} rs6000/linux.h glibc-stdint.h"
2544                 tmake_file="${tmake_file} rs6000/t-ppcos rs6000/t-linux"
2545                 ;;
2546         esac
2547         case ${target} in
2548             powerpc*-*-linux*ppc476*)
2549                 tm_file="${tm_file} rs6000/476.h"
2550                 extra_options="${extra_options} rs6000/476.opt" ;;
2551             powerpc*-*-linux*altivec*)
2552                 tm_file="${tm_file} rs6000/linuxaltivec.h" ;;
2553             powerpc*-*-linux*spe*)
2554                 tm_file="${tm_file} ${cpu_type}/linuxspe.h ${cpu_type}/e500.h" ;;
2555             powerpc*-*-linux*paired*)
2556                 tm_file="${tm_file} rs6000/750cl.h" ;;
2557         esac
2558         case ${target} in
2559             *-linux*-musl*)
2560                 enable_secureplt=yes ;;
2561         esac
2562         if test x${enable_secureplt} = xyes; then
2563                 tm_file="rs6000/secureplt.h ${tm_file}"
2564         fi
2565         ;;
2566 powerpc-wrs-vxworks*spe)
2567         tm_file="${tm_file} elfos.h freebsd-spec.h powerpcspe/sysv4.h"
2568         tmake_file="${tmake_file} powerpcspe/t-fprules powerpcspe/t-ppccomm powerpcspe/t-vxworks"
2569         extra_options="${extra_options} powerpcspe/sysv4.opt"
2570         extra_headers=ppc-asm.h
2571         tm_file="${tm_file} vx-common.h vxworks.h powerpcspe/vxworks.h powerpcspe/e500.h"
2572         ;;
2573 powerpc-wrs-vxworks*)
2574         tm_file="${tm_file} elfos.h freebsd-spec.h rs6000/sysv4.h"
2575         tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
2576         extra_options="${extra_options} rs6000/sysv4.opt"
2577         extra_headers=ppc-asm.h
2578         case ${target} in
2579           *-vxworksmils*)
2580             tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/vxworksmils.h"
2581             tmake_file="${tmake_file} rs6000/t-vxworksmils"
2582             ;;
2583           *-vxworksae*)
2584             tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/vxworksae.h"
2585             tmake_file="${tmake_file} rs6000/t-vxworksae"
2586             ;;
2587           *-vxworks*)
2588             tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h"
2589             ;;
2590         esac
2591         ;;
2592 powerpc-*-lynxos*)
2593         xm_defines=POSIX
2594         tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
2595         tmake_file="t-lynx rs6000/t-lynx"
2596         extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
2597         thread_file=lynx
2598         gnu_ld=yes
2599         gas=yes
2600         ;;
2601 powerpcle-*-elf*)
2602         tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h"
2603         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
2604         extra_options="${extra_options} rs6000/sysv4.opt"
2605         ;;
2606 powerpcle-*-eabisim*)
2607         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/eabisim.h"
2608         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
2609         extra_options="${extra_options} rs6000/sysv4.opt"
2610         use_gcc_stdint=wrap
2611         ;;
2612 powerpcle-*-eabi*)
2613         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"
2614         tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
2615         extra_options="${extra_options} rs6000/sysv4.opt"
2616         use_gcc_stdint=wrap
2617         ;;
2618 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2619         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h rs6000/aix-stdint.h"
2620         tmake_file="rs6000/t-aix43 t-slibgcc"
2621         extra_options="${extra_options} rs6000/aix64.opt"
2622         use_collect2=yes
2623         thread_file='aix'
2624         use_gcc_stdint=provide
2625         extra_headers=
2626         ;;
2627 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
2628         tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h rs6000/aix-stdint.h"
2629         extra_options="${extra_options} rs6000/aix64.opt"
2630         tmake_file="rs6000/t-aix43 t-slibgcc"
2631         use_collect2=yes
2632         thread_file='aix'
2633         use_gcc_stdint=wrap
2634         extra_headers=
2635         ;;
2636 rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
2637         tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h rs6000/aix-stdint.h"
2638         tmake_file="rs6000/t-aix52 t-slibgcc"
2639         extra_options="${extra_options} rs6000/aix64.opt"
2640         use_collect2=yes
2641         thread_file='aix'
2642         use_gcc_stdint=wrap
2643         extra_headers=
2644         ;;
2645 rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
2646         tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h rs6000/aix-stdint.h"
2647         tmake_file="rs6000/t-aix52 t-slibgcc"
2648         extra_options="${extra_options} rs6000/aix64.opt"
2649         use_collect2=yes
2650         thread_file='aix'
2651         use_gcc_stdint=wrap
2652         extra_headers=altivec.h
2653         ;;
2654 rs6000-ibm-aix6.* | powerpc-ibm-aix6.*)
2655         tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h rs6000/aix-stdint.h"
2656         tmake_file="rs6000/t-aix52 t-slibgcc"
2657         extra_options="${extra_options} rs6000/aix64.opt"
2658         use_collect2=yes
2659         thread_file='aix'
2660         use_gcc_stdint=wrap
2661         extra_headers=altivec.h
2662         default_use_cxa_atexit=yes
2663         ;;
2664 rs6000-ibm-aix7.1.* | powerpc-ibm-aix7.1.*)
2665         tm_file="${tm_file} rs6000/aix.h rs6000/aix71.h rs6000/xcoff.h rs6000/aix-stdint.h"
2666         tmake_file="rs6000/t-aix52 t-slibgcc"
2667         extra_options="${extra_options} rs6000/aix64.opt"
2668         use_collect2=yes
2669         thread_file='aix'
2670         use_gcc_stdint=wrap
2671         extra_headers="altivec.h amo.h"
2672         default_use_cxa_atexit=yes
2673         ;;
2674 rs6000-ibm-aix[789].* | powerpc-ibm-aix[789].*)
2675         tm_file="${tm_file} rs6000/aix.h rs6000/aix72.h rs6000/xcoff.h rs6000/aix-stdint.h"
2676         tmake_file="rs6000/t-aix52 t-slibgcc"
2677         extra_options="${extra_options} rs6000/aix64.opt"
2678         use_collect2=yes
2679         thread_file='aix'
2680         use_gcc_stdint=wrap
2681         extra_headers="altivec.h amo.h"
2682         default_use_cxa_atexit=yes
2683         ;;
2684 rl78-*-elf*)
2685         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2686         target_has_targetm_common=no
2687         c_target_objs="rl78-c.o"
2688         cxx_target_objs="rl78-c.o"
2689         tmake_file="${tmake_file} rl78/t-rl78"
2690         ;;
2691 rx-*-elf*)
2692         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2693         tmake_file="${tmake_file} rx/t-rx"
2694         ;;
2695 s390-*-linux*)
2696         tm_file="s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2697         c_target_objs="${c_target_objs} s390-c.o"
2698         cxx_target_objs="${cxx_target_objs} s390-c.o"
2699         if test x$enable_targets = xall; then
2700                 tmake_file="${tmake_file} s390/t-linux64"
2701         fi
2702         tmake_file="${tmake_file} s390/t-s390"
2703         ;;
2704 s390x-*-linux*)
2705         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
2706         tm_p_file="linux-protos.h s390/s390-protos.h"
2707         c_target_objs="${c_target_objs} s390-c.o"
2708         cxx_target_objs="${cxx_target_objs} s390-c.o"
2709         md_file=s390/s390.md
2710         extra_modes=s390/s390-modes.def
2711         out_file=s390/s390.c
2712         tmake_file="${tmake_file} s390/t-linux64 s390/t-s390"
2713         ;;
2714 s390x-ibm-tpf*)
2715         tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h s390/tpf.h"
2716         tm_p_file=s390/s390-protos.h
2717         c_target_objs="${c_target_objs} s390-c.o"
2718         cxx_target_objs="${cxx_target_objs} s390-c.o"
2719         md_file=s390/s390.md
2720         extra_modes=s390/s390-modes.def
2721         out_file=s390/s390.c
2722         thread_file='tpf'
2723         extra_options="${extra_options} s390/tpf.opt"
2724         tmake_file="${tmake_file} s390/t-s390"
2725         ;;
2726 sh-*-elf* | sh[12346l]*-*-elf* | \
2727   sh-*-linux* | sh[2346lbe]*-*-linux* | \
2728   sh-*-netbsdelf* | shl*-*-netbsdelf*)
2729         tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2730         if test x${with_endian} = x; then
2731                 case ${target} in
2732                 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2733                 shbe-*-* | sheb-*-*)               with_endian=big,little ;;
2734                 sh[1234]l* | sh[34]*-*-linux*)     with_endian=little ;;
2735                 shl* | sh*-*-linux* | \
2736                   sh-superh-elf)                   with_endian=little,big ;;
2737                 sh[1234]*-*-*)                     with_endian=big ;;
2738                 *)                                 with_endian=big,little ;;
2739                 esac
2740         fi
2741         # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2742         #  First word : the default endian.
2743         #  Second word: the secondary endian (optional).
2744         case ${with_endian} in
2745         big)            TM_ENDIAN_CONFIG=mb ;;
2746         little)         TM_ENDIAN_CONFIG=ml ;;
2747         big,little)     TM_ENDIAN_CONFIG="mb ml" ;;
2748         little,big)     TM_ENDIAN_CONFIG="ml mb" ;;
2749         *)      echo "with_endian=${with_endian} not supported."; exit 1 ;;
2750         esac
2751         case ${with_endian} in
2752         little*)        tm_file="sh/little.h ${tm_file}" ;;
2753         esac
2754         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h"
2755         case ${target} in
2756         sh*-*-linux*)   tmake_file="${tmake_file} sh/t-linux"
2757                         if test x$enable_fdpic = xyes; then
2758                                 tm_defines="$tm_defines FDPIC_DEFAULT=1"
2759                         fi
2760                         tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
2761         sh*-*-netbsd*)
2762                         tm_file="${tm_file} ${nbsd_tm_file} sh/netbsd-elf.h"
2763                         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2765                         ;;
2766         sh*-superh-elf) if test x$with_libgloss != xno; then
2767                                 with_libgloss=yes
2768                                 tm_file="${tm_file} sh/newlib.h"
2769                         fi
2770                         tm_file="${tm_file} sh/embed-elf.h"
2771                         tm_file="${tm_file} sh/superh.h"
2772                         extra_options="${extra_options} sh/superh.opt" ;;
2773         *)              if test x$with_newlib = xyes \
2774                            && test x$with_libgloss = xyes; then
2775                                 tm_file="${tm_file} sh/newlib.h"
2776                         fi
2777                         tm_file="${tm_file} sh/embed-elf.h" ;;
2778         esac
2779         case ${target} in
2780         *-*-netbsd)
2781                 ;;
2782         *-*-elf*)
2783                 tm_file="${tm_file} newlib-stdint.h"
2784                 ;;
2785         esac
2786         # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2787         case `echo ${target} | sed 's/e[lb]-/-/'` in
2788         sh4a_single_only*)      sh_cpu_target=sh4a-single-only ;;
2789         sh4a_single*)           sh_cpu_target=sh4a-single ;;
2790         sh4a_nofpu*)            sh_cpu_target=sh4a-nofpu ;;
2791         sh4al)                  sh_cpu_target=sh4al ;;
2792         sh4a*)                  sh_cpu_target=sh4a ;;
2793         sh4_single_only*)       sh_cpu_target=sh4-single-only ;;
2794         sh4_single*)            sh_cpu_target=sh4-single ;;
2795         sh4_nofpu*)             sh_cpu_target=sh4-nofpu ;;
2796         sh4* | sh-superh-*)     sh_cpu_target=sh4 ;;
2797         sh3e*)                  sh_cpu_target=sh3e ;;
2798         sh*-*-netbsd* | sh3*)   sh_cpu_target=sh3 ;;
2799         sh2a_single_only*)      sh_cpu_target=sh2a-single-only ;;
2800         sh2a_single*)           sh_cpu_target=sh2a-single ;;
2801         sh2a_nofpu*)            sh_cpu_target=sh2a-nofpu ;;
2802         sh2a*)                  sh_cpu_target=sh2a ;;
2803         sh2e*)                  sh_cpu_target=sh2e ;;
2804         sh2*)                   sh_cpu_target=sh2 ;;
2805         *)                      sh_cpu_target=sh1 ;;
2806         esac
2807         # did the user say --without-fp ?
2808         if test x$with_fp = xno; then
2809                 case ${sh_cpu_target} in
2810                 sh4al | sh1)    ;;
2811                 sh4a* )         sh_cpu_target=sh4a-nofpu ;;
2812                 sh4*)           sh_cpu_target=sh4-nofpu ;;
2813                 sh3*)           sh_cpu_target=sh3 ;;
2814                 sh2a*)          sh_cpu_target=sh2a-nofpu ;;
2815                 sh2*)           sh_cpu_target=sh2 ;;
2816                 *)      echo --without-fp not available for $target: ignored
2817                 esac
2818                 tm_defines="$tm_defines STRICT_NOFPU=1"
2819         fi
2820         sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2821         case $sh_cpu_default in
2822           sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
2823           sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
2824           sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
2825           sh3e | sh3 | sh2e | sh2 | sh1) ;;
2826         "")     sh_cpu_default=${sh_cpu_target} ;;
2827         *)      echo "with_cpu=$with_cpu not supported"; exit 1 ;;
2828         esac
2829         sh_multilibs=${with_multilib_list}
2830         if test "$sh_multilibs" = "default" ; then
2831                 case ${target} in
2832                 sh[1234]*)      sh_multilibs=${sh_cpu_target} ;;
2833                 sh-superh-*)    sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2834                 sh*-*-linux*)   sh_multilibs=m1,m2,m2a,m3e,m4 ;;
2835                 sh*-*-netbsd*)  sh_multilibs=m3,m3e,m4 ;;
2836                 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
2837                 esac
2838                 if test x$with_fp = xno; then
2839                         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`"
2840                 fi
2841         fi
2842         target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
2843         tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
2844         tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2845         sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^[Ss][Hh]/m/' -e 's/ [Ss][Hh]/ m/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
2846         for sh_multilib in ${sh_multilibs}; do
2847                 case ${sh_multilib} in
2848                 m1 | m2 | m2e | m3 | m3e | \
2849                 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2850                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
2851                 m2a | m2a-single | m2a-single-only | m2a-nofpu)
2852                         # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2853                         # It is passed to MULTIILIB_OPTIONS verbatim.
2854                         TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2855                         tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2856                         ;;
2857                 \!*)    # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2858                         # It is passed the MULTILIB_EXCEPTIONS verbatim.
2859                         TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
2860                 *)
2861                         echo "with_multilib_list=${sh_multilib} not supported."
2862                         exit 1
2863                         ;;
2864                 esac
2865         done
2866         TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
2867         if test x${enable_incomplete_targets} = xyes ; then
2868                 tm_defines="$tm_defines SUPPORT_SH1=1 SUPPORT_SH2E=1 SUPPORT_SH4=1 SUPPORT_SH4_SINGLE=1 SUPPORT_SH2A=1 SUPPORT_SH2A_SINGLE=1"
2869         fi
2870         tm_file="$tm_file ./sysroot-suffix.h"
2871         tmake_file="$tmake_file t-sysroot-suffix"
2872         ;;
2873 sh-*-rtems*)
2874         tmake_file="${tmake_file} sh/t-sh sh/t-rtems"
2875         tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
2876         ;;
2877 sh-wrs-vxworks)
2878         tmake_file="$tmake_file sh/t-sh sh/t-vxworks"
2879         tm_file="${tm_file} elfos.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
2880         ;;
2881 sparc-*-elf*)
2882         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp-elf.h"
2883         case ${target} in
2884             *-leon-*)
2885                 tmake_file="sparc/t-sparc sparc/t-leon"
2886                 ;;
2887             *-leon[3-9]*)
2888                 tmake_file="sparc/t-sparc sparc/t-leon3"
2889                 ;;
2890             *)
2891                 tmake_file="sparc/t-sparc sparc/t-elf"
2892                 ;;
2893         esac
2894         ;;
2895 sparc-*-rtems*)
2896         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
2897         tmake_file="${tmake_file} sparc/t-sparc sparc/t-rtems"
2898         ;;
2899 sparc-*-linux*)
2900         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h sparc/tso.h"
2901         extra_options="${extra_options} sparc/long-double-switch.opt"
2902         case ${target} in
2903             *-leon-*)
2904                 tmake_file="${tmake_file} sparc/t-sparc sparc/t-leon"
2905                 ;;
2906             *-leon[3-9]*)
2907                 tmake_file="${tmake_file} sparc/t-sparc sparc/t-leon3"
2908                 ;;
2909             *)
2910                 tmake_file="${tmake_file} sparc/t-sparc"
2911                 ;;
2912         esac
2913         if test x$enable_targets = xall; then
2914                 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
2915                 tmake_file="${tmake_file} sparc/t-linux64"
2916         else
2917                 tm_file="${tm_file} sparc/linux.h"
2918                 tmake_file="${tmake_file} sparc/t-linux"
2919         fi
2920         ;;
2921 sparc-*-netbsdelf*)
2922         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h ${nbsd_tm_file} sparc/netbsd-elf.h"
2923         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2924         extra_options="${extra_options} sparc/long-double-switch.opt"
2925         tmake_file="${tmake_file} sparc/t-sparc"
2926         ;;
2927 sparc*-*-solaris2*)
2928         tm_file="sparc/biarch64.h ${tm_file} ${sol2_tm_file} sparc/tso.h"
2929         case ${target} in
2930             sparc64-*-* | sparcv9-*-*)
2931                 tm_file="sparc/default64.h ${tm_file}"
2932                 ;;
2933             *)
2934                 test x$with_cpu != x || with_cpu=v9
2935                 ;;
2936         esac
2937         tmake_file="${tmake_file} sparc/t-sparc sparc/t-sol2"
2938         ;;
2939 sparc-wrs-vxworks)
2940         tm_file="${tm_file} elfos.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
2941         tmake_file="${tmake_file} sparc/t-sparc sparc/t-vxworks"
2942         ;;
2943 sparc64-*-elf*)
2944         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
2945         extra_options="${extra_options}"
2946         tmake_file="${tmake_file} sparc/t-sparc"
2947         ;;
2948 sparc64-*-rtems*)
2949         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h sparc/rtemself.h rtems.h"
2950         extra_options="${extra_options}"
2951         tmake_file="${tmake_file} sparc/t-sparc sparc/t-rtems-64"
2952         ;;
2953 sparc64-*-linux*)
2954         tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h sparc/default64.h sparc/linux64.h sparc/tso.h"
2955         extra_options="${extra_options} sparc/long-double-switch.opt"
2956         tmake_file="${tmake_file} sparc/t-sparc sparc/t-linux64"
2957         ;;
2958 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2959         tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2960         extra_options="${extra_options} sparc/long-double-switch.opt"
2961         case "x$with_cpu" in
2962                 xultrasparc) ;;
2963                 x) with_cpu=ultrasparc ;;
2964                 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2965         esac
2966         tmake_file="${tmake_file} sparc/t-sparc"
2967         ;;
2968 sparc64-*-netbsd*)
2969         tm_file="sparc/biarch64.h ${tm_file}"
2970         tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h ${nbsd_tm_file} sparc/netbsd-elf.h"
2971         extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2972         extra_options="${extra_options} sparc/long-double-switch.opt"
2973         tmake_file="${tmake_file} sparc/t-sparc sparc/t-netbsd64"
2974         ;;
2975 sparc64-*-openbsd*)
2976         tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h"
2977         tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h sparc/openbsd64.h"
2978         extra_options="${extra_options} openbsd.opt"
2979         extra_options="${extra_options}"
2980         gas=yes gnu_ld=yes
2981         with_cpu=ultrasparc
2982         tmake_file="${tmake_file} sparc/t-sparc"
2983         ;;
2984 spu-*-elf*)
2985         tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
2986         tmake_file="spu/t-spu-elf"
2987         native_system_header_dir=/include
2988         extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h spu_cache.h"
2989         extra_modes=spu/spu-modes.def
2990         c_target_objs="${c_target_objs} spu-c.o"
2991         cxx_target_objs="${cxx_target_objs} spu-c.o"
2992         ;;
2993 tic6x-*-elf)
2994         tm_file="elfos.h ${tm_file} c6x/elf-common.h c6x/elf.h"
2995         tm_file="${tm_file} dbxelf.h tm-dwarf2.h newlib-stdint.h"
2996         tmake_file="c6x/t-c6x c6x/t-c6x-elf"
2997         use_collect2=no
2998         ;;
2999 tic6x-*-uclinux)
3000         tm_file="elfos.h ${tm_file} gnu-user.h linux.h c6x/elf-common.h c6x/uclinux-elf.h"
3001         tm_file="${tm_file} dbxelf.h tm-dwarf2.h glibc-stdint.h"
3002         tm_file="${tm_file} ./sysroot-suffix.h"
3003         tmake_file="t-sysroot-suffix t-slibgcc"
3004         tmake_file="${tmake_file} c6x/t-c6x c6x/t-c6x-elf c6x/t-c6x-uclinux"
3005         use_collect2=no
3006         ;;
3007 tilegx*-*-linux*)
3008         tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilegx/linux.h ${tm_file}"
3009         tmake_file="${tmake_file} tilegx/t-tilegx"
3010         extra_objs="${extra_objs} mul-tables.o"
3011         c_target_objs="${c_target_objs} tilegx-c.o"
3012         cxx_target_objs="${cxx_target_objs} tilegx-c.o"
3013         extra_headers="feedback.h"
3014         case $target in
3015         tilegxbe-*)
3016                 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
3017                 ;;
3018         esac
3019         ;;
3020 tilepro*-*-linux*)
3021         tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilepro/linux.h ${tm_file}"
3022         tmake_file="${tmake_file} tilepro/t-tilepro"
3023         extra_objs="${extra_objs} mul-tables.o"
3024         c_target_objs="${c_target_objs} tilepro-c.o"
3025         cxx_target_objs="${cxx_target_objs} tilepro-c.o"
3026         extra_headers="feedback.h"
3027         ;;
3028 v850-*-rtems*)
3029         target_cpu_default="TARGET_CPU_generic"
3030         tm_file="dbxelf.h elfos.h v850/v850.h"
3031         tm_file="${tm_file} rtems.h v850/rtems.h newlib-stdint.h"
3032         tmake_file="${tmake_file} v850/t-v850"
3033         tmake_file="${tmake_file} v850/t-rtems"
3034         use_collect2=no
3035         c_target_objs="v850-c.o"
3036         cxx_target_objs="v850-c.o"
3037         ;;
3038 v850*-*-*)
3039         case ${target} in
3040         v850e3v5-*-*)
3041                 target_cpu_default="TARGET_CPU_v850e3v5"
3042                 ;;
3043         v850e2v3-*-*)
3044                 target_cpu_default="TARGET_CPU_v850e2v3"
3045                 ;;
3046         v850e2-*-*)
3047                 target_cpu_default="TARGET_CPU_v850e2"
3048                 ;;
3049         v850e1-*-* | v850es-*-*)
3050                 target_cpu_default="TARGET_CPU_v850e1"
3051                 ;;
3052         v850e-*-*)
3053                 target_cpu_default="TARGET_CPU_v850e"
3054                 ;;
3055         v850-*-*)
3056                 target_cpu_default="TARGET_CPU_generic"
3057                 ;;
3058         esac
3059         tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
3060         if test x$stabs = xyes
3061         then
3062                 tm_file="${tm_file} dbx.h"
3063         fi
3064         use_collect2=no
3065         c_target_objs="v850-c.o"
3066         cxx_target_objs="v850-c.o"
3067         use_gcc_stdint=wrap
3068         ;;
3069 vax-*-linux*)
3070         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h vax/elf.h vax/linux.h"
3071         extra_options="${extra_options} vax/elf.opt"
3072         ;;
3073 vax-*-netbsdelf*)
3074         tm_file="${tm_file} elfos.h ${nbsd_tm_file} vax/elf.h vax/netbsd-elf.h"
3075         extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
3076         tm_defines="${tm_defines} CHAR_FAST8=1 SHORT_FAST16=1"
3077         ;;
3078 vax-*-openbsd*)
3079         tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-libpthread.h vax/openbsd.h"
3080         extra_options="${extra_options} openbsd.opt"
3081         use_collect2=yes
3082         ;;
3083 visium-*-elf*)
3084         tm_file="dbxelf.h elfos.h ${tm_file} visium/elf.h newlib-stdint.h"
3085         tmake_file="visium/t-visium visium/t-crtstuff"
3086         ;;
3087 xstormy16-*-elf)
3088         # For historical reasons, the target files omit the 'x'.
3089         tm_file="dbxelf.h elfos.h newlib-stdint.h stormy16/stormy16.h"
3090         tm_p_file=stormy16/stormy16-protos.h
3091         md_file=stormy16/stormy16.md
3092         out_file=stormy16/stormy16.c
3093         extra_options=stormy16/stormy16.opt
3094         tmake_file="stormy16/t-stormy16"
3095         ;;
3096 xtensa*-*-elf*)
3097         tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h xtensa/elf.h"
3098         extra_options="${extra_options} xtensa/elf.opt"
3099         ;;
3100 xtensa*-*-linux*)
3101         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/linux.h"
3102         tmake_file="${tmake_file} xtensa/t-xtensa"
3103         ;;
3104 xtensa*-*-uclinux*)
3105         tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/uclinux.h"
3106         tmake_file="${tmake_file} xtensa/t-xtensa"
3107         extra_options="${extra_options} xtensa/uclinux.opt"
3108         ;;
3109 am33_2.0-*-linux*)
3110         tm_file="mn10300/mn10300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h mn10300/linux.h"
3111         gas=yes gnu_ld=yes
3112         use_collect2=no
3113         ;;
3114 m32c-*-rtems*)
3115         tm_file="dbxelf.h elfos.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
3116         c_target_objs="m32c-pragma.o"
3117         cxx_target_objs="m32c-pragma.o"
3118         ;;
3119 m32c-*-elf*)
3120         tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
3121         c_target_objs="m32c-pragma.o"
3122         cxx_target_objs="m32c-pragma.o"
3123         ;;
3125         echo "*** Configuration ${target} not supported" 1>&2
3126         exit 1
3127         ;;
3128 esac
3130 case ${target} in
3131 i[34567]86-*-linux* | x86_64-*-linux*)
3132         tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
3133         ;;
3134 i[34567]86-*-* | x86_64-*-*)
3135         tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
3136         ;;
3137 powerpc*-*-* | rs6000-*-*)
3138         tm_file="${tm_file} ${cpu_type}/option-defaults.h"
3139 esac
3141 # non-glibc systems
3142 case ${target} in
3143 *-linux-musl*)
3144         tmake_file="${tmake_file} t-musl"
3145         ;;
3146 *-linux-uclibc*)
3147         tmake_file="${tmake_file} t-uclibc"
3148         ;;
3149 esac
3151 # Assume the existence of indirect function support and allow the use of the
3152 # resolver attribute.
3153 case ${target} in
3154 *-*-linux*android*|*-*-linux*uclibc*|*-*-linux*musl*)
3155         ;;
3156 *-*-linux*)
3157         case ${target} in
3158         aarch64*-* | arm*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-*)
3159                 default_gnu_indirect_function=yes
3160                 ;;
3161         esac
3162         ;;
3163 esac
3165 # Build mkoffload tool
3166 case ${target} in
3167 *-intelmic-* | *-intelmicemul-*)
3168         tmake_file="${tmake_file} i386/t-intelmic"
3169         tm_file="${tm_file} i386/intelmic-offload.h"
3170         ;;
3171 esac
3173 if [ "$target_has_targetcm" = "no" ]; then
3174   c_target_objs="$c_target_objs default-c.o"
3175   cxx_target_objs="$cxx_target_objs default-c.o"
3178 if [ "$common_out_file" = "" ]; then
3179   if [ "$target_has_targetm_common" = "yes" ]; then
3180     common_out_file="$cpu_type/$cpu_type-common.c"
3181   else
3182     common_out_file="default-common.c"
3183   fi
3186 # Support for --with-cpu and related options (and a few unrelated options,
3187 # too).
3188 case ${with_cpu} in
3189   yes | no)
3190     echo "--with-cpu must be passed a value" 1>&2
3191     exit 1
3192     ;;
3193 esac
3195 # Set arch and cpu from ${target} and ${target_noncanonical}.  Set cpu
3196 # to generic if there is no processor scheduler model for the target.
3197 arch=
3198 cpu=
3199 arch_without_sse2=no
3200 arch_without_64bit=no
3201 case ${target} in
3202   i386-*-freebsd*)
3203     if test $fbsd_major -ge 6; then
3204       arch=i486
3205     else
3206       arch=i386
3207     fi
3208     cpu=generic
3209     arch_without_sse2=yes
3210     arch_without_64bit=yes
3211     ;;
3212   i386-*-netbsd*)
3213     arch=i486
3214     cpu=generic
3215     arch_without_sse2=yes
3216     arch_without_64bit=yes
3217     ;;
3218   i386-*-*)
3219     arch=i386
3220     cpu=i386
3221     arch_without_sse2=yes
3222     arch_without_64bit=yes
3223     ;;
3224   i486-*-*)
3225     arch=i486
3226     cpu=i486
3227     arch_without_sse2=yes
3228     arch_without_64bit=yes
3229     ;;
3230   i586-*-*)
3231     arch_without_sse2=yes
3232     arch_without_64bit=yes
3233     case ${target_noncanonical} in
3234       k6_2-*)
3235         arch=k6-2
3236         cpu=k6-2
3237         ;;
3238       k6_3-*)
3239         arch=k6-3
3240         cpu=k6-3
3241         ;;
3242       k6-*)
3243         arch=k6
3244         cpu=k6
3245         ;;
3246       pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
3247         arch=pentium-mmx
3248         cpu=pentium-mmx
3249         ;;
3250       *)
3251         arch=pentium
3252         cpu=pentium
3253         ;;
3254     esac
3255     ;;
3256   i686-*-* | i786-*-*)
3257     case ${target_noncanonical} in
3258       znver1-*)
3259         arch=znver1
3260         cpu=znver1
3261         ;;
3262       bdver4-*)
3263         arch=bdver4
3264         cpu=bdver4
3265         ;;
3266       bdver3-*)
3267         arch=bdver3
3268         cpu=bdver3
3269         ;;
3270       bdver2-*)
3271         arch=bdver2
3272         cpu=bdver2
3273         ;;
3274       bdver1-*)
3275         arch=bdver1
3276         cpu=bdver1
3277         ;;
3278       btver1-*)
3279         arch=btver1
3280         cpu=btver1
3281         ;;
3282       btver2-*)
3283         arch=btver2
3284         cpu=btver2
3285         ;;
3286       amdfam10-*|barcelona-*)
3287         arch=amdfam10
3288         cpu=amdfam10
3289         ;;
3290       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
3291         arch=k8-sse3
3292         cpu=k8-sse3
3293         ;;
3294       k8-*|opteron-*|athlon64-*|athlon_fx-*)
3295         arch=k8
3296         cpu=k8
3297         ;;
3298       athlon_xp-*|athlon_mp-*|athlon_4-*)
3299         arch=athlon-4
3300         cpu=athlon-4
3301         arch_without_sse2=yes
3302         arch_without_64bit=yes
3303         ;;
3304       athlon_tbird-*|athlon-*)
3305         arch=athlon
3306         cpu=athlon
3307         arch_without_sse2=yes
3308         ;;
3309       geode-*)
3310         arch=geode
3311         cpu=geode
3312         arch_without_sse2=yes
3313         ;;
3314       pentium2-*)
3315         arch=pentium2
3316         cpu=pentium2
3317         arch_without_sse2=yes
3318         ;;
3319       pentium3-*|pentium3m-*)
3320         arch=pentium3
3321         cpu=pentium3
3322         arch_without_sse2=yes
3323         ;;
3324       pentium4-*|pentium4m-*)
3325         arch=pentium4
3326         cpu=pentium4
3327         ;;
3328       prescott-*)
3329         arch=prescott
3330         cpu=prescott
3331         ;;
3332       nocona-*)
3333         arch=nocona
3334         cpu=nocona
3335         ;;
3336       atom-*)
3337         arch=atom
3338         cpu=atom
3339         ;;
3340       slm-*)
3341         arch=slm
3342         cpu=slm
3343         ;;
3344       core2-*)
3345         arch=core2
3346         cpu=core2
3347         ;;
3348       corei7-*)
3349         arch=corei7
3350         cpu=corei7
3351         ;;
3352       corei7_avx-*)
3353         arch=corei7-avx
3354         cpu=corei7-avx
3355         ;;
3356       pentium_m-*)
3357         arch=pentium-m
3358         cpu=pentium-m
3359         ;;
3360       pentiumpro-*)
3361         arch=pentiumpro
3362         cpu=pentiumpro
3363         arch_without_sse2=yes
3364         ;;
3365       *)
3366         arch=pentiumpro
3367         cpu=generic
3368         arch_without_sse2=yes
3369         arch_without_64bit=yes
3370         ;;
3371     esac
3372     ;;
3373   x86_64-*-*)
3374     case ${target_noncanonical} in
3375       znver1-*)
3376         arch=znver1
3377         cpu=znver1
3378         ;;
3379       bdver4-*)
3380         arch=bdver4
3381         cpu=bdver4
3382         ;;
3383       bdver3-*)
3384         arch=bdver3
3385         cpu=bdver3
3386         ;;
3387       bdver2-*)
3388         arch=bdver2
3389         cpu=bdver2
3390         ;;
3391       bdver1-*)
3392         arch=bdver1
3393         cpu=bdver1
3394         ;;
3395       btver1-*)
3396         arch=btver1
3397         cpu=btver1
3398         ;;
3399       btver2-*)
3400         arch=btver2
3401         cpu=btver2
3402         ;;
3403       amdfam10-*|barcelona-*)
3404         arch=amdfam10
3405         cpu=amdfam10
3406         ;;
3407       k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
3408         arch=k8-sse3
3409         cpu=k8-sse3
3410         ;;
3411       k8-*|opteron-*|athlon_64-*)
3412         arch=k8
3413         cpu=k8
3414         ;;
3415       nocona-*)
3416         arch=nocona
3417         cpu=nocona
3418         ;;
3419       atom-*)
3420         arch=atom
3421         cpu=atom
3422         ;;
3423       slm-*)
3424         arch=slm
3425         cpu=slm
3426         ;;
3427       core2-*)
3428         arch=core2
3429         cpu=core2
3430         ;;
3431       corei7-*)
3432         arch=corei7
3433         cpu=corei7
3434         ;;
3435       *)
3436         arch=x86-64
3437         cpu=generic
3438         ;;
3439     esac
3440     ;;
3441 esac
3443 # If there is no $with_cpu option, try to infer one from ${target}.
3444 # This block sets nothing except for with_cpu.
3445 if test x$with_cpu = x ; then
3446   case ${target} in
3447     i[34567]86-*-elfiamcu)
3448       with_cpu=lakemont
3449       ;;
3450     i[34567]86-*-*|x86_64-*-*)
3451       with_cpu=$cpu
3452       ;;
3453     alphaev6[78]*-*-*)
3454       with_cpu=ev67
3455       ;;
3456     alphaev6*-*-*)
3457       with_cpu=ev6
3458       ;;
3459     alphapca56*-*-*)
3460       with_cpu=pca56
3461       ;;
3462     alphaev56*-*-*)
3463       with_cpu=ev56
3464       ;;
3465     alphaev5*-*-*)
3466       with_cpu=ev5
3467       ;;
3468     frv-*-*linux* | frv400-*-*linux*)
3469       with_cpu=fr400
3470       ;;
3471     frv550-*-*linux*)
3472       with_cpu=fr550
3473       ;;
3474     m68k*-*-*)
3475       case "$with_arch" in
3476         "cf")
3477           with_cpu=${default_cf_cpu}
3478           ;;
3479         "" | "m68k")
3480           with_cpu=m${default_m68k_cpu}
3481           ;;
3482       esac
3483       ;;
3484     powerpc*-*-*spe*)
3485       # For SPE, start with 8540, then upgrade to 8548 if
3486       # --enable-e500-double was requested explicitly or if we were
3487       # configured for e500v2.
3488       with_cpu=8540
3489       if test x$enable_e500_double = xyes; then
3490         with_cpu=8548
3491       fi
3492       case ${target_noncanonical} in
3493         e500v2*)
3494           with_cpu=8548
3495           ;;
3496       esac
3497       ;;
3498     sparc*-*-*)
3499       case ${target} in
3500         *-leon-*)
3501           with_cpu=leon
3502           ;;
3503         *-leon[3-9]*)
3504           with_cpu=leon3
3505           ;;
3506         *-leon[3-9]v7*)
3507           with_cpu=leon3v7
3508           ;;
3509         *)
3510           with_cpu="`echo ${target} | sed 's/-.*$//'`"
3511           ;;
3512       esac
3513       ;;
3514     visium-*-*)
3515       with_cpu=gr5
3516       ;;
3517   esac
3519   # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
3520   case ${target} in
3521     i[34567]86-*-*|x86_64-*-*)
3522       if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
3523         if test x$with_cpu_32 = x; then
3524           with_cpu_32=$with_cpu
3525         fi
3526         if test x$with_cpu_64 = x; then
3527           with_cpu_64=$with_cpu
3528         fi
3529         with_cpu=
3530       fi
3531       ;;
3532   esac
3535 # Support for --with-arch and related options (and a few unrelated options,
3536 # too).
3537 case ${with_arch} in
3538   yes | no)
3539     echo "--with-arch must be passed a value" 1>&2
3540     exit 1
3541     ;;
3542 esac
3544 # If there is no $with_arch option, try to infer one from ${target}.
3545 # This block sets nothing except for with_arch.
3546 if test x$with_arch = x ; then
3547   case ${target} in
3548     i[34567]86-*-darwin*|x86_64-*-darwin*)
3549       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3550       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3551       ;;
3552     i[34567]86-*-elfiamcu)
3553       with_arch=lakemont
3554       ;;
3555     i[34567]86-*-*)
3556       # --with-fpmath sets the default ISA to SSE2, which is the same
3557       # ISA supported by Pentium 4.
3558       if test x$with_fpmath = x || test $arch_without_sse2 = no; then
3559         with_arch=$arch
3560       else
3561         with_arch=pentium4
3562       fi
3563       ;;
3564     x86_64-*-*)
3565       with_arch=$arch
3566       ;;
3567     mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3568       with_arch=r5900
3569       ;;
3570     mips*-*-vxworks)
3571       with_arch=mips2
3572       ;;
3573   esac
3575   # Avoid overriding --with-arch-32 and --with-arch-64 values.
3576   case ${target} in
3577     i[34567]86-*-darwin*|x86_64-*-darwin*)
3578       # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3579       # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3580       ;;
3581     i[34567]86-*-*|x86_64-*-*)
3582       if test x$with_arch_32 != x || test x$with_arch_64 != x; then
3583         if test x$with_arch_32 = x; then
3584           with_arch_32=$with_arch
3585         fi
3586         if test x$with_arch_64 = x; then
3587           if test $arch_without_64bit = yes; then
3588             # Set the default 64bit arch to x86-64 if the default arch
3589             # doesn't support 64bit.
3590             with_arch_64=x86-64
3591           else
3592             with_arch_64=$with_arch
3593           fi
3594         fi
3595         with_arch=
3596       elif test $arch_without_64bit$need_64bit_isa = yesyes; then
3597         # Set the default 64bit arch to x86-64 if the default arch
3598         # doesn't support 64bit and we need 64bit ISA.
3599         with_arch_32=$with_arch
3600         with_arch_64=x86-64
3601         with_arch=
3602       fi
3603       ;;
3604   esac
3607 # Infer a default setting for --with-float.
3608 if test x$with_float = x; then
3609   case ${target} in
3610     mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3611       # The R5900 doesn't support 64-bit float.  32-bit float doesn't
3612       # comply with IEEE 754.
3613       with_float=soft
3614       ;;
3615   esac
3618 # Infer a default setting for --with-fpu.
3619 if test x$with_fpu = x; then
3620   case ${target} in
3621     mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3622       # The R5900 FPU only supports single precision.
3623       with_fpu=single
3624       ;;
3625   esac
3628 # Support --with-fpmath.
3629 if test x$with_fpmath != x; then
3630   case ${target} in
3631     i[34567]86-*-* | x86_64-*-*)
3632       case ${with_fpmath} in
3633       avx)
3634         tm_file="${tm_file} i386/avxmath.h"
3635         ;;
3636       sse)
3637         tm_file="${tm_file} i386/ssemath.h"
3638         ;;
3639       *)
3640         echo "Invalid --with-fpmath=$with_fpmath" 1>&2
3641         exit 1
3642         ;;
3643       esac
3644       ;;
3645     *)
3646       echo "--with-fpmath isn't supported for $target." 1>&2
3647       exit 1
3648       ;;
3649   esac
3652 # Similarly for --with-schedule.
3653 if test x$with_schedule = x; then
3654         case ${target} in
3655         hppa1*)
3656                 # Override default PA8000 scheduling model.
3657                 with_schedule=7100LC
3658                 ;;
3659         esac
3662 # Infer a default setting for --with-llsc.
3663 if test x$with_llsc = x; then
3664   case ${target} in
3665     mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3666       # The R5900 doesn't support LL(D) and SC(D).
3667       with_llsc=no
3668       ;;
3669     mips*-*-linux*)
3670       # The kernel emulates LL and SC where necessary.
3671       with_llsc=yes
3672       ;;
3673   esac
3676 # Validate and mark as valid any --with options supported
3677 # by this target.  In order to use a particular --with option
3678 # you must list it in supported_defaults; validating the value
3679 # is optional.  This case statement should set nothing besides
3680 # supported_defaults.
3682 supported_defaults=
3683 case "${target}" in
3684         aarch64*-*-*)
3685                 supported_defaults="abi cpu arch"
3686                 for which in cpu arch; do
3688                         eval "val=\$with_$which"
3689                         base_val=`echo $val | sed -e 's/\+.*//'`
3690                         ext_val=`echo $val | sed -e 's/[a-z0-9.-]\+//'`
3692                         if [ $which = arch ]; then
3693                           def=aarch64-arches.def
3694                           pattern=AARCH64_ARCH
3695                         else
3696                           def=aarch64-cores.def
3697                           pattern=AARCH64_CORE
3698                         fi
3700                         ext_mask=AARCH64_CPU_DEFAULT_FLAGS
3702                         # Find the base CPU or ARCH id in aarch64-cores.def or
3703                         # aarch64-arches.def
3704                         if [ x"$base_val" = x ] \
3705                             || grep "^$pattern(\"$base_val\"," \
3706                                     ${srcdir}/config/aarch64/$def \
3707                                     > /dev/null; then
3709                           if [ $which = arch ]; then
3710                                 base_id=`grep "^$pattern(\"$base_val\"," \
3711                                   ${srcdir}/config/aarch64/$def | \
3712                                   sed -e 's/^[^,]*,[    ]*//' | \
3713                                   sed -e 's/,.*$//'`
3714                                 # Extract the architecture flags from aarch64-arches.def
3715                                 ext_mask=`grep "^$pattern(\"$base_val\"," \
3716                                    ${srcdir}/config/aarch64/$def | \
3717                                    sed -e 's/)$//' | \
3718                                    sed -e 's/^.*,//'`
3719                           else
3720                                 base_id=`grep "^$pattern(\"$base_val\"," \
3721                                   ${srcdir}/config/aarch64/$def | \
3722                                   sed -e 's/^[^,]*,[    ]*//' | \
3723                                   sed -e 's/,.*$//'`
3724                           fi
3726                           while [ x"$ext_val" != x ]
3727                           do
3728                                 ext_val=`echo $ext_val | sed -e 's/\+//'`
3729                                 ext=`echo $ext_val | sed -e 's/\+.*//'`
3730                                 base_ext=`echo $ext | sed -e 's/^no//'`
3732                                 if [ x"$base_ext" = x ] \
3733                                     || grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
3734                                     ${srcdir}/config/aarch64/aarch64-option-extensions.def \
3735                                     > /dev/null; then
3737                                   ext_canon=`grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
3738                                         ${srcdir}/config/aarch64/aarch64-option-extensions.def | \
3739                                         sed -e 's/^[^,]*,[      ]*//' | \
3740                                         sed -e 's/,.*$//'`
3741                                   ext_on=`grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
3742                                         ${srcdir}/config/aarch64/aarch64-option-extensions.def | \
3743                                         sed -e 's/^[^,]*,[      ]*[^,]*,[       ]*//' | \
3744                                         sed -e 's/,.*$//' | \
3745                                         sed -e 's/).*$//'`
3746                                   ext_off=`grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
3747                                         ${srcdir}/config/aarch64/aarch64-option-extensions.def | \
3748                                         sed -e 's/^[^,]*,[      ]*[^,]*,[       ]*[^,]*,[       ]*//' | \
3749                                         sed -e 's/,.*$//' | \
3750                                         sed -e 's/).*$//'`
3753                                   if [ $ext = $base_ext ]; then
3754                                         # Adding extension
3755                                         ext_mask="("$ext_mask") | ("$ext_on" | "$ext_canon")"
3756                                   else
3757                                         # Removing extension
3758                                         ext_mask="("$ext_mask") & ~("$ext_off" | "$ext_canon")"
3759                                   fi
3761                                   true
3762                                 else
3763                                   echo "Unknown extension used in --with-$which=$val" 1>&2
3764                                   exit 1
3765                                 fi
3766                                 ext_val=`echo $ext_val | sed -e 's/[a-z0-9]\+//'`
3767                           done
3769                           ext_mask="(("$ext_mask") << 6)"
3770                           if [ x"$base_id" != x ]; then
3771                                 target_cpu_cname="TARGET_CPU_$base_id | $ext_mask"
3772                           fi
3773                           true
3774                         else
3775                           echo "Unknown $which used in --with-$which=$val" 1>&2
3776                           exit 1
3777                         fi
3778                 done
3779                 ;;
3781         alpha*-*-*)
3782                 supported_defaults="cpu tune"
3783                 for which in cpu tune; do
3784                         eval "val=\$with_$which"
3785                         case "$val" in
3786                         "" \
3787                         | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
3788                         | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
3789                         | 21264a)
3790                                 ;;
3791                         *)
3792                                 echo "Unknown CPU used in --with-$which=$val" 1>&2
3793                                 exit 1
3794                                 ;;
3795                         esac
3796                 done
3797                 ;;
3799         arc*-*-*)
3800                 supported_defaults="cpu"
3802                 if [ x"$with_cpu" = x ] \
3803                     || grep "^ARC_CPU ($with_cpu," \
3804                        ${srcdir}/config/arc/arc-cpus.def \
3805                        > /dev/null; then
3806                  # Ok
3807                  true
3808                 else
3809                  echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3810                  exit 1
3811                 fi
3812                 ;;
3814         arm*-*-*)
3815                 supported_defaults="arch cpu float tune fpu abi mode tls"
3816                 for which in cpu tune arch; do
3817                         # See if it matches a supported value
3818                         eval "val=\$with_$which"
3819                         if [ x"$val" != x ]; then
3820                           cpu=`awk -f ${srcdir}/config/arm/parsecpu.awk \
3821                                 -v cmd="chk$which $val" \
3822                                 ${srcdir}/config/arm/arm-cpus.in`
3823                           if [ "$cpu" = "error" ]; then
3824                             echo "Unknown target in --with-$which=$val" 1>&2
3825                             exit 1
3826                           else
3827                             new_val=$cpu
3828                             eval "target_${which}_cname=$new_val"
3829                             echo "For $val real value is $new_val"
3830                           fi
3831                         fi
3832                 done
3834                 case "$with_float" in
3835                 "" \
3836                 | soft | hard | softfp)
3837                         # OK
3838                         ;;
3839                 *)
3840                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3841                         exit 1
3842                         ;;
3843                 esac
3845                 # see if --with-fpu matches any of the supported FPUs
3846                 if [ x"$with_fpu" != x ] ; then
3847                   fpu=`awk -f ${srcdir}/config/arm/parsecpu.awk \
3848                         -v cmd="chkfpu $with_fpu" \
3849                         ${srcdir}/config/arm/arm-cpus.in`
3850                   if [ "$fpu" = "error"]
3851                   then
3852                     echo "Unknown target in --with-$which=$val" 1>&2
3853                     exit 1
3854                   fi
3855                 fi
3857                 case "$with_abi" in
3858                 "" \
3859                 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
3860                         #OK
3861                         ;;
3862                 *)
3863                         echo "Unknown ABI used in --with-abi=$with_abi"
3864                         exit 1
3865                         ;;
3866                 esac
3868                 case "$with_mode" in
3869                 "" \
3870                 | arm | thumb )
3871                         #OK
3872                         ;;
3873                 *)
3874                         echo "Unknown mode used in --with-mode=$with_mode"
3875                         exit 1
3876                         ;;
3877                 esac
3879                 case "$with_tls" in
3880                 "" \
3881                 | gnu | gnu2)
3882                         # OK
3883                         ;;
3884                 *)
3885                         echo "Unknown TLS method used in --with-tls=$with_tls" 1>&2
3886                         exit 1
3887                         ;;
3888                 esac
3890                 if test "x$with_arch" != x && test "x$with_cpu" != x; then
3891                         echo "Switch \"--with-arch\" may not be used with switch \"--with-cpu\""  1>&2
3892                         exit 1
3893                 fi
3895                 if test "x$with_cpu" != x && test "x$with_tune" != x; then
3896                         echo "Switch \"--with-tune\" may not be used with switch \"--with-cpu\""  1>&2
3897                         exit 1
3898                 fi
3900                 # Add extra multilibs
3901                 if test "x$with_multilib_list" != x; then
3902                         arm_multilibs=`echo $with_multilib_list | sed -e 's/,/ /g'`
3903                         if test "x${arm_multilibs}" != xdefault ; then
3904                                 for arm_multilib in ${arm_multilibs}; do
3905                                         case ${arm_multilib} in
3906                                         aprofile|rmprofile)
3907                                                 tmake_profile_file="arm/t-multilib"
3908                                                 ;;
3909                                         *)
3910                                                 echo "Error: --with-multilib-list=${with_multilib_list} not supported." 1>&2
3911                                                 exit 1
3912                                                 ;;
3913                                         esac
3914                                 done
3915                         fi
3917                         if test "x${tmake_profile_file}" != x ; then
3918                                 # arm/t-aprofile and arm/t-rmprofile are only
3919                                 # designed to work without any with-cpu,
3920                                 # with-arch, with-mode, with-fpu or with-float
3921                                 # options.
3922                                 if test "x$with_arch" != x \
3923                                     || test "x$with_cpu" != x \
3924                                     || test "x$with_float" != x \
3925                                     || test "x$with_fpu" != x \
3926                                     || test "x$with_mode" != x ; then
3927                                     echo "Error: You cannot use any of --with-arch/cpu/fpu/float/mode with --with-multilib-list=${with_multilib_list}" 1>&2
3928                                     exit 1
3929                                 fi
3930                                 # But pass the default value for float-abi
3931                                 # through to the multilib selector
3932                                 with_float="soft"
3933                                 tmake_file="${tmake_file} ${tmake_profile_file}"
3934                                 TM_MULTILIB_CONFIG="$with_multilib_list"
3935                         fi
3936                 fi
3937                 target_cpu_cname=${target_cpu_cname:-arm6}
3938                 with_cpu=${with_cpu:-$target_cpu_cname}
3939                 ;;
3941         fr*-*-*linux*)
3942                 supported_defaults=cpu
3943                 case "$with_cpu" in
3944                 fr400) ;;
3945                 fr550) ;;
3946                 *)
3947                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3948                         exit 1
3949                         ;;
3950                 esac
3951                 ;;
3953         fido-*-* | m68k*-*-*)
3954                 supported_defaults="arch cpu"
3955                 case "$with_arch" in
3956                 "" | "m68k"| "cf")
3957                         m68k_arch_family="$with_arch"
3958                         ;;
3959                 *)
3960                         echo "Invalid --with-arch=$with_arch" 1>&2
3961                         exit 1
3962                         ;;
3963                 esac
3965                 # We always have a $with_cpu setting here.
3966                 case "$with_cpu" in
3967                 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
3968                         m68k_cpu_ident=$with_cpu
3969                         ;;
3970                 "m68020-40")
3971                         m68k_cpu_ident=m68020
3972                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
3973                         ;;
3974                 "m68020-60")
3975                         m68k_cpu_ident=m68020
3976                         tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
3977                         ;;
3978                 *)
3979                         # We need the C identifier rather than the string.
3980                         m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
3981                            'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
3982                             $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
3983                                  ${srcdir}/config/m68k/m68k-devices.def`
3984                         if [ x"$m68k_cpu_ident" = x ] ; then
3985                                 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
3986                                 exit 1
3987                         fi
3988                         with_cpu="mcpu=$with_cpu"
3989                         ;;
3990                 esac
3991                 ;;
3993         hppa*-*-*)
3994                 supported_defaults="arch schedule"
3996                 case "$with_arch" in
3997                 "" | 1.0 | 1.1 | 2.0)
3998                         # OK
3999                         ;;
4000                 *)
4001                         echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
4002                         exit 1
4003                         ;;
4004                 esac
4006                 case "$with_schedule" in
4007                 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
4008                         # OK
4009                         ;;
4010                 *)
4011                         echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
4012                         exit 1
4013                         ;;
4014                 esac
4015                 ;;
4017         i[34567]86-*-* | x86_64-*-*)
4018                 supported_defaults="abi arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
4019                 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
4020                         eval "val=\$with_$which"
4021                         case " $x86_archs " in
4022                         *" ${val} "*)
4023                                 case "${target}" in
4024                                   x86_64-*-*)
4025                                       case "x$which" in
4026                                         *_32)
4027                                                 ;;
4028                                         *)
4029                                                 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
4030                                                 exit 1
4031                                                 ;;
4032                                       esac
4033                                       ;;
4034                                 esac
4035                                 # OK
4036                                 ;;
4037                         *)
4038                                 if test x${val} != x; then
4039                                         case " $x86_64_archs " in
4040                                         *" ${val} "*)
4041                                                 # OK
4042                                                 ;;
4043                                         *)
4044                                                 # Allow $x86_cpus --with-cpu=/--with-tune=
4045                                                 case "x$which" in
4046                                                 xcpu*|xtune*)
4047                                                         case " $x86_cpus " in
4048                                                         *" ${val} "*)
4049                                                                 # OK
4050                                                                 ;;
4051                                                         *)
4052                                                                 echo "Unknown CPU given in --with-$which=$val." 1>&2
4053                                                                 exit 1
4054                                                                 ;;
4055                                                         esac
4056                                                         ;;
4057                                                 *)
4058                                                         echo "Unknown CPU given in --with-$which=$val." 1>&2
4059                                                         exit 1
4060                                                         ;;
4061                                                 esac
4062                                         ;;
4063                                         esac
4064                                 fi
4065                                 ;;
4066                         esac
4067                 done
4068                 ;;
4070         riscv*-*-*)
4071                 supported_defaults="abi arch tune"
4073                 case "${target}" in
4074                 riscv32*) xlen=32 ;;
4075                 riscv64*) xlen=64 ;;
4076                 *) echo "Unsupported RISC-V target ${target}" 1>&2; exit 1 ;;
4077                 esac
4079                 # Infer arch from --with-arch, --target, and --with-abi.
4080                 case "${with_arch}" in
4081                 rv32i* | rv32g* | rv64i* | rv64g*)
4082                         # OK.
4083                         ;;
4084                 "")
4085                         # Infer XLEN, but otherwise assume GC.
4086                         case "${with_abi}" in
4087                         ilp32 | ilp32f | ilp32d) with_arch="rv32gc" ;;
4088                         lp64 | lp64f | lp64d) with_arch="rv64gc" ;;
4089                         *) with_arch="rv${xlen}gc" ;;
4090                         esac
4091                         ;;
4092                 *)
4093                         echo "--with-arch=${with_arch} is not supported.  The argument must begin with rv32i, rv32g, rv64i, or rv64g." 1>&2
4094                         exit 1
4095                         ;;
4096                 esac
4098                 # Make sure --with-abi is valid.  If it was not specified,
4099                 # pick a default based on the ISA, preferring soft-float
4100                 # unless the D extension is present.
4101                 case "${with_abi}" in
4102                 ilp32 | ilp32f | ilp32d | lp64 | lp64f | lp64d)
4103                         ;;
4104                 "")
4105                         case "${with_arch}" in
4106                         rv32*d* | rv32g*) with_abi=ilp32d ;;
4107                         rv32*) with_abi=ilp32 ;;
4108                         rv64*d* | rv64g*) with_abi=lp64d ;;
4109                         rv64*) with_abi=lp64 ;;
4110                         esac
4111                         ;;
4112                 *)
4113                         echo "--with-abi=${with_abi} is not supported" 1>&2
4114                         exit 1
4115                         ;;
4116                 esac
4118                 # Make sure ABI and ISA are compatible.
4119                 case "${with_abi},${with_arch}" in
4120                 ilp32,rv32* \
4121                 | ilp32f,rv32*f* | ilp32f,rv32g* \
4122                 | ilp32d,rv32*d* | ilp32d,rv32g* \
4123                 | lp64,rv64* \
4124                 | lp64f,rv64*f* | lp64f,rv64g* \
4125                 | lp64d,rv64*d* | lp64d,rv64g*)
4126                         ;;
4127                 *)
4128                         echo "--with-abi=${with_abi} is not supported for ISA ${with_arch}" 1>&2
4129                         exit 1
4130                         ;;
4131                 esac
4132                 ;;
4134         mips*-*-*)
4135                 supported_defaults="abi arch arch_32 arch_64 float fpu nan fp_32 odd_spreg_32 tune tune_32 tune_64 divide llsc mips-plt synci lxc1-sxc1 madd4"
4137                 case ${with_float} in
4138                 "" | soft | hard)
4139                         # OK
4140                         ;;
4141                 *)
4142                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
4143                         exit 1
4144                         ;;
4145                 esac
4147                 case ${with_fpu} in
4148                 "" | single | double)
4149                         # OK
4150                         ;;
4151                 *)
4152                         echo "Unknown fpu type used in --with-fpu=$with_fpu" 1>&2
4153                         exit 1
4154                         ;;
4155                 esac
4157                 case ${with_nan} in
4158                 "" | 2008 | legacy)
4159                         # OK
4160                         ;;
4161                 *)
4162                         echo "Unknown NaN encoding used in --with-nan=$with_nan" 1>&2
4163                         exit 1
4164                         ;;
4165                 esac
4167                 case ${with_fp_32} in
4168                 "" | 32 | xx | 64)
4169                         # OK
4170                         ;;
4171                 *)
4172                         echo "Unknown FP mode used in --with-fp-32=$with_fp_32" 1>&2
4173                         exit 1
4174                         ;;
4175                 esac
4177                 case ${with_odd_spreg_32} in
4178                 yes)
4179                         with_odd_spreg_32="odd-spreg"
4180                         ;;
4181                 no)
4182                         with_odd_spreg_32="no-odd-spreg"
4183                         ;;
4184                 "")
4185                         # OK
4186                         ;;
4187                 *)
4188                         echo "Unknown odd-spreg-32 type used in --with-odd-spreg-32=$with_odd_spreg_32" 1>&2
4189                         exit 1
4190                         ;;
4191                 esac
4193                 case ${with_abi} in
4194                 "" | 32 | o64 | n32 | 64 | eabi)
4195                         # OK
4196                         ;;
4197                 *)
4198                         echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
4199                         exit 1
4200                         ;;
4201                 esac
4203                 case ${with_divide} in
4204                 "" | breaks | traps)
4205                         # OK
4206                         ;;
4207                 *)
4208                         echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
4209                         exit 1
4210                         ;;
4211                 esac
4213                 case ${with_llsc} in
4214                 yes)
4215                         with_llsc=llsc
4216                         ;;
4217                 no)
4218                         with_llsc="no-llsc"
4219                         ;;
4220                 "")
4221                         # OK
4222                         ;;
4223                 *)
4224                         echo "Unknown llsc type used in --with-llsc" 1>&2
4225                         exit 1
4226                         ;;
4227                 esac
4229                 case ${with_mips_plt} in
4230                 yes)
4231                         with_mips_plt=plt
4232                         ;;
4233                 no)
4234                         with_mips_plt=no-plt
4235                         ;;
4236                 "")
4237                         ;;
4238                 *)
4239                         echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
4240                         exit 1
4241                         ;;
4242                 esac
4244                 case ${with_synci} in
4245                 yes)
4246                         with_synci=synci
4247                         ;;
4248                 no)
4249                         with_synci=no-synci
4250                         ;;
4251                 "")
4252                         ;;
4253                 *)
4254                         echo "Unknown synci type used in --with-synci" 1>&2
4255                         exit 1
4256                         ;;
4257                 esac
4259                 case ${with_lxc1_sxc1} in
4260                 yes)
4261                         with_lxc1_sxc1=lxc1-sxc1
4262                         ;;
4263                 no)
4264                         with_lxc1_sxc1=no-lxc1-sxc1
4265                         ;;
4266                 "")
4267                         ;;
4268                 *)
4269                         echo "Unknown lxc1-sxc1 type used in --with-lxc1-sxc1" 1>&2
4270                         exit 1
4271                         ;;
4272                 esac
4274                 case ${with_madd4} in
4275                 yes)
4276                         with_madd4=madd4
4277                         ;;
4278                 no)
4279                         with_madd4=no-madd4
4280                         ;;
4281                 "")
4282                         ;;
4283                 *)
4284                         echo "Unknown madd4 type used in --with-madd4" 1>&2
4285                         exit 1
4286                         ;;
4287                 esac
4288                 ;;
4290         nds32*-*-*)
4291                 supported_defaults="arch cpu nds32_lib float fpu_config"
4293                 # process --with-arch
4294                 case "${with_arch}" in
4295                 "" | v3 )
4296                         tm_defines="${tm_defines} TARGET_ARCH_DEFAULT=0"
4297                         ;;
4298                 v2 | v2j | v3m)
4299                         # OK
4300                         tm_defines="${tm_defines} TARGET_ARCH_DEFAULT=0"
4301                         ;;
4302                 v3f)
4303                         tm_defines="${tm_defines} TARGET_ARCH_DEFAULT=1"
4304                         ;;
4305                 v3s)
4306                         tm_defines="${tm_defines} TARGET_ARCH_DEFAULT=2"
4308                         ;;
4309                 *)
4310                         echo "Cannot accept --with-arch=$with_arch, available values are: v2 v2j v3 v3m v3f v3s" 1>&2
4311                         exit 1
4312                         ;;
4313                 esac
4315                 case "${with_cpu}" in
4316                 "")
4317                         with_cpu=n9
4318                         ;;
4319                 n6 | n7 | n8 | e8 | s8 | n9)
4320                         # OK
4321                         ;;
4322                 *)
4323                         echo "Cannot accept --with-cpu=$with_cpu, available values are: n6 n7 n8 e8 s8 n9" 1>&2
4324                         exit 1
4325                         ;;
4326                 esac
4328                 # process --with-nds32-lib
4329                 case "${with_nds32_lib}" in
4330                 "")
4331                         # the default library is newlib
4332                         with_nds32_lib=newlib
4333                         ;;
4334                 newlib)
4335                         # OK
4336                         ;;
4337                 mculib)
4338                         # OK
4339                         ;;
4340                 *)
4341                         echo "Cannot accept --with-nds32-lib=$with_nds32_lib, available values are: newlib mculib" 1>&2
4342                         exit 1
4343                         ;;
4344                 esac
4346                 # process --with-float
4347                 case "${with_float}" in
4348                 "" | soft | hard)
4349                         # OK
4350                         ;;
4351                 *)
4352                         echo "Cannot accept --with-float=$with_float, available values are: soft hard" 1>&2
4353                         exit 1
4354                         ;;
4355                 esac
4357                 # process --with-config-fpu
4358                 case "${with_config_fpu}" in
4359                 "" | 0 | 1 | 2 | 3)
4360                         # OK
4361                         ;;
4362                 *)
4363                         echo "Cannot accept --with-config-fpu=$with_config_fpu, available values from 0 to 7" 1>&2
4364                         exit 1
4365                         ;;
4366                 esac
4369                 ;;
4370         nios2*-*-*)
4371                 supported_defaults="arch"
4372                         case "$with_arch" in
4373                         "" | r1 | r2)
4374                                 # OK
4375                                 ;;
4376                         *)
4377                                 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
4378                                 exit 1
4379                                 ;;
4380                         esac
4381                 ;;
4383         powerpc*-*-* | rs6000-*-*)
4384                 supported_defaults="abi cpu cpu_32 cpu_64 float tune tune_32 tune_64 advance_toolchain"
4386                 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
4387                         eval "val=\$with_$which"
4388                         case ${val} in
4389                         default32 | default64)
4390                                 case $which in
4391                                 cpu | tune)
4392                                         ;;
4393                                 *)
4394                                         echo "$val only valid for --with-cpu and --with-tune." 1>&2
4395                                         exit 1
4396                                         ;;
4397                                 esac
4398                                 with_which="with_$which"
4399                                 eval $with_which=
4400                                 ;;
4401                         405cr)
4402                                 tm_defines="${tm_defines} CONFIG_PPC405CR"
4403                                 eval "with_$which=405"
4404                                 ;;
4405                         "" | common | native \
4406                         | power[3456789] | power5+ | power6x \
4407                         | powerpc | powerpc64 | powerpc64le \
4408                         | rs64 \
4409                         | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
4410                         | 476 | 476fp | 505 | 601 | 602 | 603 | 603e | ec603e \
4411                         | 604 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
4412                         | a2 | e300c[23] | 854[08] | e500mc | e500mc64 | e5500 | e6500 \
4413                         | titan | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
4414                                 # OK
4415                                 ;;
4416                         *)
4417                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
4418                                 exit 1
4419                                 ;;
4420                         esac
4421                 done
4423                 case "$with_abi" in
4424                 "" | elfv1 | elfv2 )
4425                         #OK
4426                         ;;
4427                 *)
4428                         echo "Unknown ABI used in --with-abi=$with_abi"
4429                         exit 1
4430                         ;;
4431                 esac
4433                 if test "x$with_advance_toolchain" != x; then
4434                     if test -d "/opt/$with_advance_toolchain/." -a \
4435                         -d "/opt/$with_advance_toolchain/bin/." -a \
4436                         -d "/opt/$with_advance_toolchain/include/."; then
4438                         tm_file="$tm_file ./advance-toolchain.h"
4439                         (at="/opt/$with_advance_toolchain"
4440                          echo "/* Use Advance Toolchain $at */"
4441                          echo
4442                          echo "#undef  LINK_OS_EXTRA_SPEC32"
4443                          echo "#define LINK_OS_EXTRA_SPEC32" \
4444                               "\"%(link_os_new_dtags)" \
4445                               "-rpath $prefix/lib -rpath $at/lib" \
4446                               "-L $prefix/lib -L $at/lib\""
4447                          echo
4448                          echo "#undef  LINK_OS_EXTRA_SPEC64"
4449                          echo "#define LINK_OS_EXTRA_SPEC64" \
4450                               "\"%(link_os_new_dtags)" \
4451                               "-rpath $prefix/lib64 -rpath $at/lib64" \
4452                               "-L $prefix/lib64 -L $at/lib64\""
4453                          echo
4454                          echo "#undef  LINK_OS_NEW_DTAGS_SPEC"
4455                          echo "#define LINK_OS_NEW_DTAGS_SPEC" \
4456                               "\"--enable-new-dtags\""
4457                          echo
4458                          echo "#undef  DYNAMIC_LINKER_PREFIX"
4459                          echo "#define DYNAMIC_LINKER_PREFIX \"$at\""
4460                          echo
4461                          echo "#undef  MD_EXEC_PREFIX"
4462                          echo "#define MD_EXEC_PREFIX \"$at/bin/\""
4463                          echo
4464                          echo "#undef  MD_STARTFILE_PREFIX"
4465                          echo "#define MD_STARTFILE_PREFIX \"$at/lib/\"") \
4466                             > advance-toolchain.h
4467                     else
4468                         echo "Unknown advance-toolchain $with_advance_toolchain"
4469                         exit 1
4470                     fi
4471                 fi
4473                 # Set up the default long double format if the user changed it.
4474                 if test x$with_long_double_format = xieee; then
4475                     tm_defines="${tm_defines} TARGET_IEEEQUAD_DEFAULT=1"
4477                 elif test x$with_long_double_format = xibm; then
4478                     tm_defines="${tm_defines} TARGET_IEEEQUAD_DEFAULT=0"
4479                 fi
4481                 case "${target}:${enable_multilib}:${with_long_double_format}" in
4482                     powerpc64le*:yes:ieee | powerpc64le*:yes:ibm)
4483                         tm_defines="${tm_defines} TARGET_IEEEQUAD_MULTILIB=1"
4484                         tmake_file="${tmake_file} rs6000/t-ldouble-linux64le-${with_long_double_format}"
4485                         ;;
4486                     *)
4487                         :
4488                         ;;
4489                 esac
4490                 ;;
4492         s390*-*-*)
4493                 supported_defaults="arch mode tune"
4495                 for which in arch tune; do
4496                         eval "val=\$with_$which"
4497                         case ${val} in
4498                         "" | native | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10 | z196 | zEC12 | z13 | z14 | arch3 | arch5 | arch6 | arch7 | arch8 | arch9 | arch10 | arch11 | arch12)
4499                                 # OK
4500                                 ;;
4501                         *)
4502                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
4503                                 exit 1
4504                                 ;;
4505                         esac
4506                 done
4508                 case ${with_mode} in
4509                 "" | esa | zarch)
4510                         # OK
4511                         ;;
4512                 *)
4513                         echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
4514                         exit 1
4515                         ;;
4516                 esac
4517                 ;;
4519         sh[123456ble]*-*-* | sh-*-*)
4520                 supported_defaults="cpu"
4521                 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
4522                 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
4523                         # OK
4524                         ;;
4525                 m2a | m2a-single | m2a-single-only | m2a-nofpu)
4526                         ;;
4527                 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
4528                         ;;
4529                 *)
4530                         echo "Unknown CPU used in --with-cpu=$with_cpu, known values:"  1>&2
4531                         echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
4532                         echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
4533                         echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
4534                         exit 1
4535                         ;;
4536                 esac
4537                 ;;
4538         sparc*-*-*)
4539                 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
4541                 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
4542                         eval "val=\$with_$which"
4543                         case ${val} in
4544                         "" | sparc | sparcv9 | sparc64 \
4545                         | v7 | cypress \
4546                         | v8 | supersparc | hypersparc | leon | leon3 | leon3v7 \
4547                         | sparclite | f930 | f934 | sparclite86x \
4548                         | sparclet | tsc701 \
4549                         | v9 | ultrasparc | ultrasparc3 | niagara | niagara2 \
4550                         | niagara3 | niagara4 | niagara7 | m8)
4551                                 # OK
4552                                 ;;
4553                         *)
4554                                 echo "Unknown cpu used in --with-$which=$val" 1>&2
4555                                 exit 1
4556                                 ;;
4557                         esac
4558                 done
4560                 case ${with_float} in
4561                 "" | soft | hard)
4562                         # OK
4563                         ;;
4564                 *)
4565                         echo "Unknown floating point type used in --with-float=$with_float" 1>&2
4566                         exit 1
4567                         ;;
4568                 esac
4569                 ;;
4571         spu-*-*)
4572                 supported_defaults="arch tune"
4574                 for which in arch tune; do
4575                         eval "val=\$with_$which"
4576                         case ${val} in
4577                         "" | cell | celledp)
4578                                 # OK
4579                                 ;;
4580                         *)
4581                                 echo "Unknown cpu used in --with-$which=$val." 1>&2
4582                                 exit 1
4583                                 ;;
4584                         esac
4585                 done
4586                 ;;
4588         tic6x-*-*)
4589                 supported_defaults="arch"
4591                 case ${with_arch} in
4592                 "" | c62x | c64x | c64x+ | c67x | c67x+ | c674x)
4593                         # OK
4594                         ;;
4595                 *)
4596                         echo "Unknown arch used in --with-arch=$with_arch." 1>&2
4597                         exit 1
4598                         ;;
4599                 esac
4600                 ;;
4602         v850*-*-*)
4603                 supported_defaults=cpu
4604                 case ${with_cpu} in
4605                 "" | v850e | v850e1 | v850e2 | v850es | v850e2v3 | v850e3v5)
4606                         # OK
4607                         ;;
4608                 *)
4609                         echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
4610                         exit 1
4611                         ;;
4612                 esac
4613                 ;;
4614         visium-*-*)
4615                 supported_defaults="cpu"
4616                 case $with_cpu in
4617                   "" | gr5 | gr6)
4618                         ;;
4619                   *)    echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
4620                         exit 1
4621                         ;;
4622                 esac
4623                 ;;
4624 esac
4626 # Set some miscellaneous flags for particular targets.
4627 target_cpu_default2=
4628 case ${target} in
4629         aarch64*-*-*)
4630                 if test x"$target_cpu_cname" != x
4631                 then
4632                         target_cpu_default2=$target_cpu_cname
4633                 fi
4634                 ;;
4636         arm*-*-*)
4637                 if test x$with_cpu = x
4638                 then
4639                         echo "Don't know the target cpu" 1>&2
4640                         exit 1
4641                 else
4642                         target_cpu_default2="\\\"$with_cpu\\\""
4643                 fi
4644                 ;;
4646         hppa*-*-*)
4647                 if test x$gas = xyes
4648                 then
4649                         target_cpu_default2="MASK_GAS"
4650                 fi
4651                 ;;
4653         fido*-*-* | m68k*-*-*)
4654                 target_cpu_default2=$m68k_cpu_ident
4655                 tmake_file="m68k/t-opts $tmake_file"
4656                 if [ x"$m68k_arch_family" != x ]; then
4657                         tmake_file="m68k/t-$m68k_arch_family $tmake_file"
4658                 fi
4659                 ;;
4661         i[34567]86-*-darwin* | x86_64-*-darwin*)
4662                 ;;
4663         i[34567]86-*-linux* | x86_64-*-linux*)
4664                 extra_objs="${extra_objs} cet.o"
4665                 tmake_file="$tmake_file i386/t-linux i386/t-cet"
4666                 ;;
4667         i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu)
4668                 tmake_file="$tmake_file i386/t-kfreebsd"
4669                 ;;
4670         i[34567]86-*-gnu*)
4671                 tmake_file="$tmake_file i386/t-gnu"
4672                 ;;
4673         i[34567]86-*-msdosdjgpp*)
4674                 tmake_file="${tmake_file} i386/t-djgpp"
4675                 ;;
4676         i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
4677                 ;;
4678         i[34567]86-*-cygwin* | x86_64-*-cygwin*)
4679                 ;;
4680         i[34567]86-*-mingw* | x86_64-*-mingw*)
4681                 ;;
4682         i[34567]86-*-dragonfly* | x86_64-*-dragonfly*)
4683                 ;;
4684         i[34567]86-*-freebsd* | x86_64-*-freebsd*)
4685                 ;;
4686         ia64*-*-linux*)
4687                 ;;
4689         mips*-*-*)
4690                 if test x$gnu_ld = xyes
4691                 then
4692                         target_cpu_default2="MASK_SPLIT_ADDRESSES"
4693                 fi
4694                 case ${target} in
4695                         mips*el-*-*)
4696                                 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
4697                                 ;;
4698                 esac
4699                 if test x$with_arch != x; then
4700                         default_mips_arch=$with_arch
4701                 fi
4702                 if test x$with_abi != x; then
4703                         default_mips_abi=$with_abi
4704                 fi
4705                 case ${default_mips_arch} in
4706                     mips1)    tm_defines="$tm_defines MIPS_ISA_DEFAULT=1" ;;
4707                     mips2)    tm_defines="$tm_defines MIPS_ISA_DEFAULT=2" ;;
4708                     mips3)    tm_defines="$tm_defines MIPS_ISA_DEFAULT=3" ;;
4709                     mips4)    tm_defines="$tm_defines MIPS_ISA_DEFAULT=4" ;;
4710                     mips32)   tm_defines="$tm_defines MIPS_ISA_DEFAULT=32" ;;
4711                     mips32r2) tm_defines="$tm_defines MIPS_ISA_DEFAULT=33" ;;
4712                     mips32r6) tm_defines="$tm_defines MIPS_ISA_DEFAULT=37" ;;
4713                     mips64)   tm_defines="$tm_defines MIPS_ISA_DEFAULT=64" ;;
4714                     mips64r2) tm_defines="$tm_defines MIPS_ISA_DEFAULT=65" ;;
4715                     mips64r6) tm_defines="$tm_defines MIPS_ISA_DEFAULT=69" ;;
4716                 esac
4717                 case ${default_mips_abi} in
4718                     32)   tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_32" ;;
4719                     o64)  tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_O64" ;;
4720                     n32)  tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_N32" ;;
4721                     64)   tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_64" ;;
4722                     eabi) tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_EABI" ;;
4723                 esac
4724                 tmake_file="mips/t-mips $tmake_file"
4725                 ;;
4727         powerpc*-*-* | rs6000-*-*)
4728                 # FIXME: The PowerPC port uses the value set at compile time,
4729                 # although it's only cosmetic.
4730                 if test "x$with_cpu" != x
4731                 then
4732                         target_cpu_default2="\\\"$with_cpu\\\""
4733                 fi
4734                 out_file="${cpu_type}/${cpu_type}.c"
4735                 c_target_objs="${c_target_objs} ${cpu_type}-c.o"
4736                 cxx_target_objs="${cxx_target_objs} ${cpu_type}-c.o"
4737                 tmake_file="${cpu_type}/t-${cpu_type} ${tmake_file}"
4738                 ;;
4740         sh[123456ble]*-*-* | sh-*-*)
4741                 c_target_objs="${c_target_objs} sh-c.o"
4742                 cxx_target_objs="${cxx_target_objs} sh-c.o"
4743                 ;;
4745         sparc*-*-*)
4746                 # Some standard aliases.
4747                 case x$with_cpu in
4748                 xsparc)
4749                         with_cpu=v7
4750                         ;;
4751                 xsparcv9 | xsparc64)
4752                         with_cpu=v9
4753                         ;;
4754                 esac
4756                 if test x$with_tune = x ; then
4757                       case ${target} in
4758                       *-leon-*)
4759                           with_tune=leon
4760                           ;;
4761                       *-leon[3-9]*)
4762                           with_tune=leon3
4763                           ;;
4764                       esac
4765                 fi
4767                 # The SPARC port checks this value at compile-time.
4768                 target_cpu_default2="TARGET_CPU_$with_cpu"
4769                 ;;
4771         v850*-*-*)
4772                 case "x$with_cpu" in
4773                 x)
4774                         ;;
4775                 xv850e | xv850e1 | xv850e2 | xv850e2v3 | xv850e3v5)
4776                         target_cpu_default2="TARGET_CPU_$with_cpu"
4777                         ;;
4778                 xv850es)
4779                         target_cpu_default2="TARGET_CPU_v850e1"
4780                         ;;
4781                 esac
4782                 ;;
4783         visium-*-*)
4784                 target_cpu_default2="TARGET_CPU_$with_cpu"
4785                 ;;
4786 esac
4789 all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu nan fp_32 odd_spreg_32 divide llsc mips-plt synci tls lxc1-sxc1 madd4"
4790 for option in $all_defaults
4792         eval "val=\$with_"`echo $option | sed s/-/_/g`
4793         if test -n "$val"; then
4794                 case " $supported_defaults " in
4795                 *" $option "*)
4796                         ;;
4797                 *)
4798                         echo "This target does not support --with-$option." 2>&1
4799                         echo "Valid --with options are: $supported_defaults" 2>&1
4800                         exit 1
4801                         ;;
4802                 esac
4804                 if test "x$t" = x
4805                 then
4806                         t="{ \"$option\", \"$val\" }"
4807                 else
4808                         t="${t}, { \"$option\", \"$val\" }"
4809                 fi
4810         fi
4811 done
4813 if test "x$t" = x
4814 then
4815         configure_default_options="{ { NULL, NULL} }"
4816 else
4817         configure_default_options="{ ${t} }"
4820 if test "$target_cpu_default2" != ""
4821 then
4822         if test "$target_cpu_default" != ""
4823         then
4824                 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
4825         else
4826                 target_cpu_default=$target_cpu_default2
4827         fi
4830 case ${target} in
4831 i[34567]86-*-* | x86_64-*-*)
4832         if test x$enable_as_accelerator = xyes; then
4833                 extra_programs="mkoffload\$(exeext)"
4834         fi
4835         ;;
4836 esac