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