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