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