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