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