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