Limit dg-xfail-run-if for *-*-hpux11.[012]* to -O0
[official-gcc.git] / libgcc / config.host
blob017fbc7a06dc4f91c9079c6ee795b56a15f5e6d6
1 # libgcc host-specific configuration file.
2 # Copyright (C) 1997-2024 Free Software Foundation, Inc.
4 #This file is part of GCC.
6 #GCC is free software; you can redistribute it and/or modify it under
7 #the terms of the GNU General Public License as published by the Free
8 #Software Foundation; either version 3, or (at your option) any later
9 #version.
11 #GCC is distributed in the hope that it will be useful, but WITHOUT
12 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 #for more details.
16 #You should have received a copy of the GNU General Public License
17 #along with GCC; see the file COPYING3.  If not see
18 #<http://www.gnu.org/licenses/>.
20 # This is the libgcc host-specific configuration file
21 # where a configuration type is mapped to different system-specific
22 # definitions and files.  This is invoked by the autoconf-generated
23 # configure script.  Putting it in a separate shell file lets us skip
24 # running autoconf when modifying host-specific information.
26 # This file bears an obvious resemblance to gcc/config.gcc.  The cases
27 # should be kept similar, to ease moving library-specific settings
28 # from config.gcc to this file.  That is also why tmake_file is
29 # left as tmake_file, rather than hmake_file, even though this library
30 # switches on ${host}.
32 # This file switches on the shell variable ${host}, and also uses the
33 # following shell variables:
35 #  with_*               Various variables as set by configure.
37 # This file sets the following shell variables for use by the
38 # autoconf-generated configure script:
40 #  asm_hidden_op        The assembler pseudo-op to use for hide
41 #                       lists for object files implemented in
42 #                       assembly (with -fvisibility=hidden for C).
43 #                       The default is ".hidden".
44 #  cpu_type             The name of the cpu, if different from the first
45 #                       chunk of the canonical host name.
46 #  enable_execute_stack The name of a source file implementing
47 #                       __enable_execute_stack.
48 #  extra_parts          List of extra object files that should be compiled
49 #                       for this target machine.  This may be overridden
50 #                       by setting EXTRA_PARTS in a tmake_file fragment.
51 #                       If either is set, EXTRA_PARTS and
52 #                       EXTRA_MULTILIB_PARTS inherited from the GCC
53 #                       subdirectory will be ignored.
54 #  md_unwind_header     The name of a header file defining
55 #                       MD_FALLBACK_FRAME_STATE_FOR.
56 #  sfp_machine_header   The name of a sfp-machine.h header file for soft-fp.
57 #                       Defaults to "$cpu_type/sfp-machine.h" if it exists,
58 #                       no-sfp-machine.h otherwise.
59 #  tmake_file           A list of machine-description-specific
60 #                       makefile fragments.
61 #  tm_defines           List of target macros to define for all compilations.
62 #  tm_file              A list of target macro files used only for code
63 #                       built for the target, not the host.  These files
64 #                       are relative to $srcdir/config and must not have
65 #                       the same names as files in $srcdir/../gcc/config.
66 #  unwind_header        The name of the header file declaring the unwind
67 #                       runtime interface routines.
69 asm_hidden_op=.hidden
70 enable_execute_stack=
71 extra_parts=
72 tmake_file=
73 tm_file=
74 tm_define=
75 md_unwind_header=no-unwind.h
76 unwind_header=unwind-generic.h
78 # Set default cpu_type so it can be updated in each machine entry.
79 cpu_type=`echo ${host} | sed 's/-.*$//'`
80 case ${host} in
81 m32c*-*-*)
82         cpu_type=m32c
83         tmake_file=t-fdpbit
84         ;;
85 aarch64*-*-*)
86         cpu_type=aarch64
87         ;;
88 alpha*-*-*)
89         cpu_type=alpha
90         ;;
91 am33_2.0-*-linux*)
92         cpu_type=mn10300
93         ;;
94 amdgcn*-*-*)
95         cpu_type=gcn
96         tmake_file="${tmake_file} t-softfp-sfdf t-softfp"
97         ;;
98 arc*-*-*)
99         cpu_type=arc
100         ;;
101 arm*-*-*)
102         cpu_type=arm
103         ;;
104 avr-*-*)
105         cpu_type=avr
106         ;;    
107 bfin*-*)
108         cpu_type=bfin
109         ;;
110 bpf-*-*)
111         cpu_type=bpf
112         ;;
113 csky*-*-*)
114         cpu_type=csky
115         ;;
116 fido-*-*)
117         cpu_type=m68k
118         ;;
119 frv*)   cpu_type=frv
120         ;;
121 ft32*)  cpu_type=ft32
122         ;;
123 moxie*) cpu_type=moxie
124         ;;
125 i[34567]86-*-*)
126         cpu_type=i386
127         ;;
128 x86_64-*-*)
129         cpu_type=i386
130         ;;
131 ia64-*-*)
132         ;;
133 hppa*-*-*)
134         cpu_type=pa
135         ;;
136 lm32*-*-*)
137         cpu_type=lm32
138         ;;
139 loongarch*-*)
140         cpu_type=loongarch
141         tmake_file="loongarch/t-loongarch"
142         if test "${libgcc_cv_loongarch_hard_float}" = yes; then
143                 tmake_file="${tmake_file} t-hardfp-sfdf t-hardfp"
144         else
145                 tmake_file="${tmake_file} t-softfp-sfdf"
146         fi
147         if test "${ac_cv_sizeof_long_double}" = 16; then
148                 tmake_file="${tmake_file} loongarch/t-softfp-tf"
149         fi
150         if test "${host_address}" = 64; then
151                 tmake_file="${tmake_file} loongarch/t-loongarch64"
152         fi
153         tmake_file="${tmake_file} t-softfp"
154         ;;
155 m32r*-*-*)
156         cpu_type=m32r
157         ;;
158 m68k-*-*)
159         ;;
160 microblaze*-*-*)
161         cpu_type=microblaze
162         ;;
163 mips*-*-*)
164         # All MIPS targets provide a full set of FP routines.
165         cpu_type=mips
166         tmake_file="mips/t-mips"
167         if test "${libgcc_cv_mips_hard_float}" = yes; then
168                 tmake_file="${tmake_file} t-hardfp-sfdf t-hardfp"
169         else
170                 tmake_file="${tmake_file} t-softfp-sfdf"
171         fi
172         if test "${ac_cv_sizeof_long_double}" = 16; then
173                 tmake_file="${tmake_file} mips/t-softfp-tf"
174         fi
175         if test "${host_address}" = 64; then
176                 tmake_file="${tmake_file} mips/t-mips64"
177         fi
178         tmake_file="${tmake_file} t-softfp"
179         ;;
180 nds32*-*)
181         cpu_type=nds32
182         ;;
183 nios2*-*-*)
184         cpu_type=nios2
185         ;;
186 or1k*-*-*)
187         cpu_type=or1k
188         ;;
189 powerpc*-*-*)
190         cpu_type=rs6000
191         ;;
192 pru-*-*)
193         cpu_type=pru
194         ;;
195 rs6000*-*-*)
196         ;;
197 riscv*-*-*)
198         cpu_type=riscv
199         ;;
200 sparc64*-*-*)
201         cpu_type=sparc
202         tmake_file="${tmake_file} sparc/t-sparc"
203         ;;
204 sparc*-*-*)
205         cpu_type=sparc
206         tmake_file="${tmake_file} sparc/t-sparc"
207         ;;
208 s390*-*-*)
209         cpu_type=s390
210         ;;
211 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
212 sh[123456789lbe]*-*-*)
213         cpu_type=sh
214         ;;
215 v850*-*-*)
216         cpu_type=v850
217         ;;
218 tic6x-*-*)
219         cpu_type=c6x
220         ;;
221 esac
223 # Common parts for widely ported systems.
224 case ${host} in
225 *-*-darwin*)
226   asm_hidden_op=.private_extern
227   tmake_file="$tmake_file t-darwin ${cpu_type}/t-darwin t-libgcc-pic"
228   # The unwinder is provided by the system shared libraries, do not add one
229   # to the shared libgcc but, for older systems, we build a shared unwinder
230   # separately so that we can construct a libgcc_s.1 to use for binaries
231   # linked against the old libgcc_ext.10.x stubs.
232   case ${host} in
233     *-*-darwin[89]* | *-*-darwin10*)
234       tmake_file="$tmake_file t-darwin-ehs ${cpu_type}/t-darwin-ehs"
235       ;;
236   esac
237   tmake_file="$tmake_file t-slibgcc-darwin"
238   case ${host} in
239     *-*-darwin1[89]* | *-*-darwin2* )
240       tmake_file="t-darwin-min-8 $tmake_file"
241       ;;
242     *-*-darwin9* | *-*-darwin1[0-7]*)
243       tmake_file="t-darwin-min-5 $tmake_file"
244       ;;
245     *-*-darwin[4-8]*)
246       tmake_file="t-darwin-min-1 $tmake_file"
247       ;;
248     *)
249       # Fall back to configuring for the oldest system known to work with
250       # all archs and the current sources.
251       tmake_file="t-darwin-min-5 $tmake_file"
252       echo "Warning: libgcc configured to support macOS 10.5" 1>&2
253       ;;
254   esac
255   # We are not using libtool to build the libs here, so we need to replicate
256   # a little of the logic around setting Darwin rpaths.  Setting an explicit
257   # yes or no is honoured, otherwise we choose a suitable default.
258   # Sadly, this has to be kept in line with the rules in libtool.m4.
259   # This make fragment will override the setting in t-slibgcc-darwin so it
260   # must appear after it.
261   if test "x$enable_darwin_at_rpath" = "x"; then
262     echo "enable_darwin_at_rpath is unset" 1>&2
263     case ${host} in
264       *-darwin[45678]*) ;;
265       *-darwin9* | *-darwin1[01234]*) ;; # We might default these on later.
266       *-darwin*)
267         echo "but is needed after macOS 10.11 (setting it on)" 1>&2
268         enable_darwin_at_rpath=yes
269         ;;
270     esac
271   else
272     echo "enable_darwin_at_rpath is '$enable_darwin_at_rpath'" 1>&2
273   fi
274   if test "x$enable_darwin_at_rpath" = "xyes"; then
275     tmake_file="$tmake_file t-darwin-rpath "
276   fi
277   extra_parts="crt3.o libd10-uwfef.a crttms.o crttme.o libemutls_w.a"
278   ;;
279 *-*-dragonfly*)
280   tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip"
281   tmake_file="$tmake_file t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver"
282   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
283   ;;
284 *-*-freebsd*)
285   # This is the generic ELF configuration of FreeBSD.  Later
286   # machine-specific sections may refine and add to this
287   # configuration.
288   tmake_file="$tmake_file t-freebsd t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver"
289   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
290   case ${target_thread_file} in
291     posix)
292       tmake_file="${tmake_file} t-freebsd-thread"
293       # Before 5.0, FreeBSD can't bind shared libraries to -lc
294       # when "optionally" threaded via weak pthread_* checks.
295       case ${host} in
296         *-*-freebsd[34] | *-*-freebsd[34].*)
297           tmake_file="${tmake_file} t-slibgcc-nolc-override"
298           ;;
299       esac
300       ;;
301   esac
302   ;;
303 *-*-fuchsia*)
304   tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip t-slibgcc t-slibgcc-fuchsia"
305   extra_parts="crtbegin.o crtend.o"
306   ;;
307 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu | *-*-uclinuxfdpiceabi)
308   tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver t-linux"
309   extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
310   if test x$enable_vtable_verify = xyes; then
311     extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
312   fi
313   ;;
314 *-*-lynxos*)
315   tmake_file="$tmake_file t-lynx $cpu_type/t-crtstuff t-crtstuff-pic t-libgcc-pic"
316   extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
317   ;;
318 *-*-netbsd*)
319   tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip"
320   tmake_file="$tmake_file t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver"
321   tmake_file="$tmake_file t-slibgcc-libgcc"
322   extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
323   ;;
324 *-*-openbsd*)
325   tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip"
326   case ${target_thread_file} in
327     posix)
328       tmake_file="$tmake_file t-openbsd-thread"
329       ;;
330   esac
331   ;;
332 *-*-rtems*)
333   tmake_file="$tmake_file t-rtems"
334   extra_parts="crtbegin.o crtend.o"
335   ;;
336 *-*-solaris2*)
337   # Unless linker support and dl_iterate_phdr are present,
338   # unwind-dw2-fde-dip.c automatically falls back to unwind-dw2-fde.c.
339   tmake_file="$tmake_file sol2/t-sol2 t-eh-dw2-dip t-crtstuff-pic t-libgcc-pic t-slibgcc t-slibgcc-elf-ver"
340   if test $with_gnu_ld = yes; then
341     tmake_file="$tmake_file t-slibgcc-gld"
342   else
343     tmake_file="$tmake_file t-slibgcc-sld"
344   fi
345   # Add cpu-specific t-sol2 after t-slibgcc-* so it can augment SHLIB_MAPFILES.
346   tmake_file="$tmake_file $cpu_type/t-sol2"
347   extra_parts="gmon.o crtbegin.o crtend.o"
348   if test "${libgcc_cv_solaris_crts}" = yes; then
349     # Solaris 11.4 provides crt1.o, crti.o, and crtn.o as part of the
350     # base system.  crtp.o and crtpg.o implement the compiler-dependent parts.
351     extra_parts="$extra_parts crtp.o crtpg.o"
352     # If the Solaris CRTs are present, both ld and gld will have PIE support.
353     extra_parts="$extra_parts crtbeginS.o crtendS.o"
354   else
355     case ${host} in
356       i?86-*-solaris2* | x86_64-*-solaris2*)
357         # Solaris 10+/x86 provides crt1.o, crti.o, crtn.o, and gcrt1.o as
358         # part of the base system.
359         ;;
360       sparc*-*-solaris2*)
361         # Solaris 10+/SPARC lacks crt1.o and gcrt1.o.
362         extra_parts="$extra_parts crt1.o gcrt1.o"
363         ;;
364     esac
365   fi
366   if test x$enable_vtable_verify = xyes; then
367     extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
368   fi
369   ;;
370 *-*-uclinux*)
371   extra_parts="crtbegin.o crtend.o"
372   ;;
373 *-*-*vms*)
374   tmake_file="vms/t-vms"
375   extra_parts="crt0.o crtbegin.o crtbeginS.o crtend.o crtendS.o"
376   ;;
377 *-*-vxworksae*)
378   tmake_file=t-vxworksae
379   ;;
380 *-*-vxworks*)
381   tmake_file=t-vxworks
382   ;;
383 *-*-elf)
384   extra_parts="crtbegin.o crtend.o"
385   ;;
386 esac
388 # VxWorks ports rely on specially crafted crtstuff files
389 case ${host} in
390 *-*-vxworks*)
391   tmake_file="${tmake_file} t-vxcrtstuff"
392   ;;
393 esac
395 case ${host} in
396 *-*-darwin* | *-*-dragonfly* | *-*-freebsd* | *-*-netbsd* | *-*-openbsd* | \
397   *-*-solaris2*)
398   enable_execute_stack=enable-execute-stack-mprotect.c
399   ;;
400 i[34567]86-*-mingw* | x86_64-*-mingw*)
401   enable_execute_stack=config/i386/enable-execute-stack-mingw32.c
402   ;;
403 i[34567]86-*-cygwin* | x86_64-*-cygwin*)
404   enable_execute_stack=config/i386/enable-execute-stack-mingw32.c
405   ;;
407   enable_execute_stack=enable-execute-stack-empty.c;
408   ;;
409 esac
411 case ${host} in
412 aarch64*-*-elf | aarch64*-*-rtems*)
413         extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o"
414         extra_parts="$extra_parts crtfastmath.o"
415         tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
416         tmake_file="${tmake_file} ${cpu_type}/t-lse t-slibgcc-libgcc"
417         tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
418         tmake_file="${tmake_file} t-dfprules"
419         md_unwind_header=aarch64/aarch64-unwind.h
420         ;;
421 aarch64*-*-freebsd*)
422         extra_parts="$extra_parts crtfastmath.o"
423         tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
424         tmake_file="${tmake_file} ${cpu_type}/t-lse t-slibgcc-libgcc"
425         tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
426         tmake_file="${tmake_file} t-dfprules"
427         md_unwind_header=aarch64/freebsd-unwind.h
428         ;;
429 aarch64*-*-netbsd*)
430         extra_parts="$extra_parts crtfastmath.o"
431         tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
432         tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
433         tmake_file="${tmake_file} t-dfprules"
434         md_unwind_header=aarch64/aarch64-unwind.h
435         ;;
436 aarch64*-*-fuchsia*)
437         tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
438         tmake_file="${tmake_file} ${cpu_type}/t-lse t-slibgcc-libgcc"
439         tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp"
440         tmake_file="${tmake_file} t-dfprules"
441         ;;
442 aarch64*-*-linux*)
443         extra_parts="$extra_parts crtfastmath.o"
444         md_unwind_header=aarch64/linux-unwind.h
445         tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
446         tmake_file="${tmake_file} ${cpu_type}/t-lse t-slibgcc-libgcc"
447         tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
448         tmake_file="${tmake_file} t-dfprules"
449         tmake_file="${tmake_file} ${cpu_type}/t-heap-trampoline"
450         ;;
451 aarch64*-*-vxworks7*)
452         extra_parts="$extra_parts crtfastmath.o"
453         md_unwind_header=aarch64/aarch64-unwind.h
454         tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
455         tmake_file="${tmake_file} ${cpu_type}/t-lse"
456         tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
457         tmake_file="${tmake_file} t-dfprules"
458         ;;
459 alpha*-*-linux*)
460         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee t-crtfm alpha/t-linux"
461         extra_parts="$extra_parts crtfastmath.o"
462         md_unwind_header=alpha/linux-unwind.h
463         ;;
464 alpha*-*-freebsd*)
465         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee t-crtfm"
466         extra_parts="$extra_parts crtbeginT.o crtfastmath.o"
467         ;;
468 alpha*-*-netbsd*)
469         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
470         ;;
471 alpha*-*-openbsd*)
472         tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
473         ;;
474 alpha64-dec-*vms*)
475         tmake_file="$tmake_file alpha/t-alpha alpha/t-ieee alpha/t-vms t-slibgcc-vms"
476         extra_parts="$extra_parts vms-dwarf2.o vms-dwarf2eh.o"
477         md_unwind_header=alpha/vms-unwind.h
478         ;;
479 alpha*-dec-*vms*)
480         tmake_file="$tmake_file alpha/t-alpha alpha/t-ieee alpha/t-vms t-slibgcc-vms"
481         extra_parts="$extra_parts vms-dwarf2.o vms-dwarf2eh.o"
482         md_unwind_header=alpha/vms-unwind.h
483         ;;
484 amdgcn*-*-amdhsa)
485         tmake_file="$tmake_file gcn/t-amdgcn"
486         extra_parts="crt0.o"
487         ;;
488 arc*-*-elf*)
489         tmake_file="arc/t-arc"
490         extra_parts="crti.o crtn.o crtend.o crtbegin.o crtendS.o crtbeginS.o"
491         extra_parts="$extra_parts crttls.o"
492         ;;
493 arc*-*-linux*)
494         tmake_file="${tmake_file} t-slibgcc-libgcc t-slibgcc-nolc-override arc/t-arc-uClibc arc/t-arc"
495         extra_parts="$extra_parts crti.o crtn.o"
496         extra_parts="$extra_parts crttls.o"
497         md_unwind_header=arc/linux-unwind.h
498         ;;
499 arm-wrs-vxworks7*)
500         tmake_file="$tmake_file arm/t-arm arm/t-elf arm/t-bpabi arm/t-vxworks7"
501         tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
502         tm_file="$tm_file arm/bpabi-lib.h"
503         unwind_header=config/arm/unwind-arm.h
504         extra_parts="$extra_parts crti.o crtn.o"
505         ;;
506 arm*-*-freebsd*)                # ARM FreeBSD EABI
507         tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix arm/t-elf"
508         tmake_file="${tmake_file} arm/t-bpabi arm/t-freebsd"
509         tm_file="${tm_file} arm/bpabi-lib.h"
510         unwind_header=config/arm/unwind-arm.h
511         tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
512         ;;
513 arm*-*-fuchsia*)
514         tmake_file="${tmake_file} arm/t-arm arm/t-elf arm/t-bpabi"
515         tmake_file="${tmake_file} arm/tsoftfp t-softfp"
516         tm_file="${tm_file} arm/bpabi-lib.h"
517         unwind_header=config/arm/unwind-arm.h
518         ;;
519 arm*-*-netbsdelf*)
520         tmake_file="$tmake_file arm/t-arm"
521         case ${host} in
522           arm*-*-netbsdelf-*eabi*)
523             tmake_file="${tmake_file} arm/t-netbsd-eabi"
524             unwind_header=config/arm/unwind-arm.h
525             ;;
526           *)
527             tmake_file="${tmake_file} arm/t-netbsd t-slibgcc-gld-nover"
528             ;;
529         esac
530         ;;
531 arm*-*-linux* | arm*-*-uclinuxfdpiceabi)
532         tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix t-crtfm"
533         tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc"
534         tm_file="$tm_file arm/bpabi-lib.h"
535         unwind_header=config/arm/unwind-arm.h
536         tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
537         extra_parts="$extra_parts crtfastmath.o"
538         ;;
539 arm*-*-uclinux*)                # ARM ucLinux
540         tmake_file="${tmake_file} t-fixedpoint-gnu-prefix t-crtfm"
541         tmake_file="$tmake_file arm/t-arm arm/t-elf t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
542         tmake_file="${tmake_file} arm/t-bpabi"
543         tm_file="$tm_file arm/bpabi-lib.h"
544         unwind_header=config/arm/unwind-arm.h
545         extra_parts="$extra_parts crti.o crtn.o"
546         ;;
547 arm*-*-phoenix*)
548         tmake_file="t-hardfp t-softfp arm/t-arm arm/t-elf arm/t-softfp arm/t-phoenix"
549         tmake_file="${tmake_file} arm/t-bpabi"
550         tm_file="$tm_file arm/bpabi-lib.h"
551         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
552         unwind_header=config/arm/unwind-arm.h
553         ;;
554 arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*)
555         tmake_file="${tmake_file} arm/t-arm arm/t-elf t-fixedpoint-gnu-prefix"
556         tm_file="$tm_file arm/bpabi-lib.h"
557         case ${host} in
558         arm*-*-eabi* | arm*-*-rtems*)
559           tmake_file="${tmake_file} arm/t-bpabi arm/t-sync t-crtfm"
560           extra_parts="crtbegin.o crtend.o crti.o crtn.o"
561           ;;
562         arm*-*-symbianelf*)
563           tmake_file="${tmake_file} arm/t-symbian t-slibgcc-nolc-override"
564           tm_file="$tm_file arm/symbian-lib.h"
565           # Symbian OS provides its own startup code.
566           ;;
567         esac
568         tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
569         extra_parts="$extra_parts crtfastmath.o"
570         unwind_header=config/arm/unwind-arm.h
571         ;;
572 avr-*-*)
573         # Make HImode functions for AVR
574         tmake_file="${cpu_type}/t-avr t-fpbit"
575         # Make some DFmode functions from libf7, part of avr-libgcc.
576         # This must be prior to adding t-avrlibc.
577         case "y${with_libf7}" in
578             yno)
579                 # No libf7 support.
580                 ;;
581             ylibgcc)
582                 tmake_file="$tmake_file ${cpu_type}/libf7/t-libf7"
583                 ;;
584             ymath)
585                 tmake_file="$tmake_file ${cpu_type}/libf7/t-libf7-math"
586                 tmake_file="$tmake_file ${cpu_type}/libf7/t-libf7"
587                 ;;
588             ymath-symbols | yyes | y)
589                 tmake_file="$tmake_file ${cpu_type}/libf7/t-libf7-math-symbols"
590                 tmake_file="$tmake_file ${cpu_type}/libf7/t-libf7-math"
591                 tmake_file="$tmake_file ${cpu_type}/libf7/t-libf7"
592                 ;;
593             *)
594                 echo "Error: --with-libf7=${with_libf7} but can only be used with: 'libgcc', 'math', 'math-symbols', 'yes', 'no'" 1>&2
595                 exit 1
596                 ;;
597         esac
598         if test x${with_avrlibc} != xno; then
599             tmake_file="$tmake_file ${cpu_type}/t-avrlibc"
600         fi
601         tm_file="$tm_file avr/avr-lib.h"
602         if test x${with_fixed_point} = xno; then
603             fixed_point=no
604         fi
605         ;;
606 bfin*-elf*)
607         tmake_file="bfin/t-bfin bfin/t-crtlibid bfin/t-crtstuff t-libgcc-pic t-fdpbit"
608         extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o crtlibid.o"
609         ;;
610 bfin*-uclinux*)
611         tmake_file="bfin/t-bfin bfin/t-crtlibid bfin/t-crtstuff t-libgcc-pic t-fdpbit"
612         extra_parts="$extra_parts crtbeginS.o crtendS.o crtlibid.o"
613         md_unwind_header=bfin/linux-unwind.h
614         ;;
615 bfin*-linux-uclibc*)
616         tmake_file="$tmake_file bfin/t-bfin bfin/t-crtstuff t-libgcc-pic t-fdpbit bfin/t-linux"
617         # No need to build crtbeginT.o on uClibc systems.  Should probably
618         # be moved to the OS specific section above.
619         extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
620         md_unwind_header=bfin/linux-unwind.h
621         ;;
622 bfin*-rtems*)
623         tmake_file="$tmake_file bfin/t-bfin t-fdpbit"
624         extra_parts="$extra_parts crti.o crtn.o"
625         ;;
626 bfin*-*)
627         tmake_file="$tmake_file bfin/t-bfin t-fdpbit"
628         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
629         ;;
630 bpf-*-*)
631         tmake_file="$tmake_file ${cpu_type}/t-${cpu_type}"
632         extra_parts="crti.o crtn.o"
633         ;;
634 cris-*-elf)
635         tmake_file="$tmake_file cris/t-cris t-softfp-sfdf t-softfp cris/t-elfmulti"
636         ;;
637 csky-*-elf*)
638         tmake_file="csky/t-csky t-fdpbit"
639         extra_parts="crtbegin.o crtend.o crti.o crtn.o"
640         ;;
641 csky-*-linux*)
642         tmake_file="$tmake_file csky/t-csky t-slibgcc-libgcc t-fdpbit csky/t-linux-csky"
643         extra_parts="$extra_parts crti.o crtn.o"
644         md_unwind_header=csky/linux-unwind.h
645         ;;
646 epiphany-*-elf* | epiphany-*-rtems*)
647         tmake_file="$tmake_file epiphany/t-epiphany t-fdpbit epiphany/t-custom-eqsf"
648         extra_parts="$extra_parts crti.o crtint.o crtrunc.o crtm1reg-r43.o crtm1reg-r63.o crtn.o"
649         ;;
650 fr30-*-elf)
651         tmake_file="$tmake_file fr30/t-fr30 t-fdpbit"
652         extra_parts="$extra_parts crti.o crtn.o"
653         ;;
654 frv-*-elf)
655         tmake_file="$tmake_file frv/t-frv t-fdpbit"
656         tm_file="$tm_file frv/elf-lib.h frv/frv-abi.h"
657         # Don't use crtbegin.o, crtend.o.
658         extra_parts="frvbegin.o frvend.o"
659         ;;
660 frv-*-*linux*)
661         tmake_file="$tmake_file frv/t-frv frv/t-linux t-fdpbit"
662         tm_file="$tm_file frv/elf-lib.h frv/frv-abi.h"
663         ;;
664 ft32-*-elf)
665         tmake_file="ft32/t-ft32 t-softfp-sfdf t-softfp-excl t-softfp"
666         extra_parts="$extra_parts crti.o crti-hw.o crtn.o"
667         ;;
668 h8300-*-elf*)
669         tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
670         tm_file="$tm_file h8300/h8300-lib.h"
671         extra_parts="$extra_parts crti.o crtn.o"
672         ;;
673 h8300-*-linux*)
674         tmake_file="t-linux h8300/t-linux t-softfp-sfdf t-softfp"
675         tm_file="$tm_file h8300/h8300-lib.h"
676         ;;
677 hppa*64*-*-linux*)
678         tmake_file="$tmake_file pa/t-pa64-linux pa/t-dimode"
679         tmake_file="$tmake_file pa/t-softfp-sfdftf t-softfp"
680         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
681         ;;
682 hppa*-*-linux*)
683         tmake_file="$tmake_file pa/t-linux t-slibgcc-libgcc"
684         # Set the libgcc version number
685         if test x$ac_cv_sjlj_exceptions = xyes; then
686             tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
687         else
688             tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
689         fi
690         extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
691         md_unwind_header=pa/linux-unwind.h
692         ;;
693 hppa*64*-*-hpux11*)
694         tmake_file="$tmake_file pa/t-pa64-hpux pa/t-dimode"
695         tmake_file="$tmake_file pa/t-stublib t-libgcc-pic t-slibgcc"
696         # Set the libgcc version number
697         if test x$ac_cv_sjlj_exceptions = xyes; then
698             tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
699         else
700             tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
701         fi
702         tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
703         tmake_file="$tmake_file pa/t-softfp-sfdftf t-softfp"
704         tm_file="$tm_file pa/pa64-hpux-lib.h"
705         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
706                      libgcc_stub.a"
707         md_unwind_header=pa/hpux-unwind.h
708         ;;
709 hppa*-*-openbsd*)
710         tmake_file="$tmake_file pa/t-openbsd"
711         ;;
712 hppa*-*-netbsd*)
713         tmake_file="$tmake_file pa/t-netbsd"
714         ;;
715 i[34567]86-*-darwin*)
716         tmake_file="$tmake_file i386/t-crtpc t-crtfm i386/t-msabi"
717         tm_file="$tm_file i386/darwin-lib.h"
718         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
719         ;;
720 x86_64-*-darwin*)
721         tmake_file="$tmake_file i386/t-crtpc t-crtfm i386/t-msabi"
722         tm_file="$tm_file i386/darwin-lib.h"
723         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
724         tmake_file="${tmake_file} i386/t-heap-trampoline"
725         ;;
726 i[34567]86-*-elfiamcu)
727         tmake_file="$tmake_file i386/t-crtstuff t-softfp-sfdftf i386/32/t-softfp i386/32/t-iamcu i386/t-softfp t-softfp t-dfprules"
728         ;;
729 i[34567]86-*-elf*)
730         tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic"
731         ;;
732 x86_64-*-elf* | x86_64-*-rtems*)
733         tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic"
734         case ${host} in
735           x86_64-*-rtems*)
736             extra_parts="$extra_parts crti.o crtn.o"
737             ;;
738         esac
739         ;;
740 x86_64-*-fuchsia*)
741         tmake_file="$tmake_file t-libgcc-pic"
742         ;;
743 i[34567]86-*-dragonfly*)
744         tmake_file="${tmake_file} i386/t-dragonfly i386/t-crtstuff"
745         md_unwind_header=i386/dragonfly-unwind.h
746         ;;
747 x86_64-*-dragonfly*)
748         tmake_file="${tmake_file} i386/t-dragonfly i386/t-crtstuff"
749         md_unwind_header=i386/dragonfly-unwind.h
750         ;;
751 i[34567]86-*-freebsd*)
752         tmake_file="${tmake_file} i386/t-freebsd i386/t-crtstuff"
753         md_unwind_header=i386/freebsd-unwind.h
754         ;;
755 x86_64-*-freebsd*)
756         tmake_file="${tmake_file} i386/t-freebsd i386/t-crtstuff"
757         md_unwind_header=i386/freebsd-unwind.h
758         ;;
759 i[34567]86-*-netbsdelf*)
760         tmake_file="${tmake_file} i386/t-crtstuff"
761         ;;
762 x86_64-*-netbsd*)
763         tmake_file="${tmake_file} i386/t-crtstuff"
764         ;;
765 i[34567]86-*-openbsd*)
766         ;;
767 x86_64-*-openbsd*)
768         ;;
769 i[34567]86-*-linux*)
770         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
771         tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
772         tm_file="${tm_file} i386/elf-lib.h"
773         md_unwind_header=i386/linux-unwind.h
774         ;;
775 i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-kopensolaris*-gnu)
776         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
777         tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
778         tm_file="${tm_file} i386/elf-lib.h"
779         ;;
780 i[34567]86-*-gnu*)
781         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
782         tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
783         tm_file="${tm_file} i386/elf-lib.h"
784         md_unwind_header=i386/gnu-unwind.h
785         ;;
786 x86_64-*-linux*)
787         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
788         tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
789         tm_file="${tm_file} i386/elf-lib.h"
790         md_unwind_header=i386/linux-unwind.h
791         tmake_file="${tmake_file} i386/t-heap-trampoline"
792         ;;
793 x86_64-*-kfreebsd*-gnu)
794         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
795         tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
796         tm_file="${tm_file} i386/elf-lib.h"
797         ;;
798 x86_64-*-gnu*)
799         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
800         tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
801         tm_file="${tm_file} i386/elf-lib.h"
802         md_unwind_header=i386/gnu-unwind.h
803         ;;
804 i[34567]86-pc-msdosdjgpp*)
805         ;;
806 i[34567]86-*-lynxos*)
807         ;;
808 i[34567]86-*-nto-qnx*)
809         tmake_file="$tmake_file i386/t-nto t-libgcc-pic"
810         extra_parts=crtbegin.o
811         ;;
812 i[34567]86-*-rtems*)
813         tmake_file="$tmake_file i386/t-crtstuff t-softfp-sfdftf i386/32/t-softfp i386/t-softfp t-softfp"
814         extra_parts="$extra_parts crti.o crtn.o"
815         ;;
816 i[34567]86-*-solaris2* | x86_64-*-solaris2*)
817         tmake_file="$tmake_file i386/t-crtpc t-crtfm i386/t-msabi"
818         extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
819         tm_file="${tm_file} i386/elf-lib.h"
820         md_unwind_header=i386/sol2-unwind.h
821         ;;
822 i[4567]86-wrs-vxworks*|x86_64-wrs-vxworks*)
823         ;;
824 i[34567]86-*-cygwin*)
825         extra_parts="crtbegin.o crtbeginS.o crtend.o crtfastmath.o"
826         if test x$enable_vtable_verify = xyes; then
827                 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
828         fi
829         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
830         if test x$ac_cv_sjlj_exceptions = xyes; then
831                 tmake_eh_file="i386/t-sjlj-eh"
832         else
833                 tmake_eh_file="i386/t-dw2-eh"
834         fi
835         # Shared libgcc DLL install dir depends on cross/native build.
836         if test x${build} = x${host} ; then
837                 tmake_dlldir_file="i386/t-dlldir"
838         else
839                 tmake_dlldir_file="i386/t-dlldir-x"
840         fi
841         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-cygming i386/t-cygwin t-crtfm i386/t-chkstk t-dfprules"
842         ;;
843 x86_64-*-cygwin*)
844         extra_parts="crtbegin.o crtbeginS.o crtend.o crtfastmath.o"
845         if test x$enable_vtable_verify = xyes; then
846                 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
847         fi
848         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
849         if test x$ac_cv_sjlj_exceptions = xyes; then
850                 tmake_eh_file="i386/t-sjlj-eh"
851         elif test "${host_address}" = 32; then
852                 # biarch -m32 with --disable-sjlj-exceptions
853                 tmake_eh_file="i386/t-dw2-eh"
854         else
855                 tmake_eh_file="i386/t-seh-eh"
856         fi
857         # Shared libgcc DLL install dir depends on cross/native build.
858         if test x${build} = x${host} ; then
859                 tmake_dlldir_file="i386/t-dlldir"
860         else
861                 tmake_dlldir_file="i386/t-dlldir-x"
862         fi
863         # FIXME - dj - t-chkstk used to be in here, need a 64-bit version of that
864         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-cygming i386/t-cygwin t-crtfm t-dfprules i386/t-chkstk"
865         ;;
866 i[34567]86-*-mingw*)
867         extra_parts="crtbegin.o crtend.o crtfastmath.o"
868         if test x$enable_vtable_verify = xyes; then
869                 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
870         fi
871         case ${target_thread_file} in
872           win32)
873             tmake_thr_file="i386/t-gthr-win32"
874             ;;
875           posix)
876             tmake_thr_file="i386/t-mingw-pthread"
877             ;;
878           mcf)
879             tmake_thr_file="i386/t-mingw-mcfgthread"
880             ;;
881         esac
882         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
883         if test x$ac_cv_sjlj_exceptions = xyes; then
884                 tmake_eh_file="i386/t-sjlj-eh"
885         else
886                 tmake_eh_file="i386/t-dw2-eh"
887                 md_unwind_header=i386/w32-unwind.h
888         fi
889         # Shared libgcc DLL install dir depends on cross/native build.
890         if test x${build} = x${host} ; then
891                 tmake_dlldir_file="i386/t-dlldir"
892         else
893                 tmake_dlldir_file="i386/t-dlldir-x"
894         fi
895         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_thr_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-slibgcc-mingw i386/t-cygming i386/t-mingw32 t-crtfm i386/t-chkstk t-dfprules"
896         ;;
897 x86_64-*-mingw*)
898         case ${target_thread_file} in
899           win32)
900             tmake_thr_file="i386/t-gthr-win32"
901             ;;
902           posix)
903             tmake_thr_file="i386/t-mingw-pthread"
904             ;;
905           mcf)
906             tmake_thr_file="i386/t-mingw-mcfgthread"
907             ;;
908         esac
909         # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
910         if test x$ac_cv_sjlj_exceptions = xyes; then
911                 tmake_eh_file="i386/t-sjlj-eh"
912         elif test "${host_address}" = 32; then
913                 # biarch -m32 with --disable-sjlj-exceptions
914                 tmake_eh_file="i386/t-dw2-eh"
915                 md_unwind_header=i386/w32-unwind.h
916         else
917                 tmake_eh_file="i386/t-seh-eh"
918         fi
919         # Shared libgcc DLL install dir depends on cross/native build.
920         if test x${build} = x${host} ; then
921                 tmake_dlldir_file="i386/t-dlldir"
922         else
923                 tmake_dlldir_file="i386/t-dlldir-x"
924         fi
925         tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_thr_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-slibgcc-mingw i386/t-cygming i386/t-mingw32 t-dfprules t-crtfm i386/t-chkstk"
926         extra_parts="$extra_parts crtbegin.o crtend.o crtfastmath.o"
927         if test x$enable_vtable_verify = xyes; then
928                 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
929         fi
930         ;;
931 ia64*-*-elf*)
932         extra_parts="$extra_parts crtbeginS.o crtendS.o crtfastmath.o"
933         tmake_file="ia64/t-ia64 ia64/t-ia64-elf ia64/t-eh-ia64 t-crtfm t-softfp-tf ia64/t-softfp t-softfp ia64/t-softfp-compat"
934         ;;
935 ia64*-*-freebsd*)
936         extra_parts="$extra_parts crtfastmath.o"
937         tmake_file="$tmake_file ia64/t-ia64 ia64/t-ia64-elf ia64/t-eh-ia64 t-crtfm t-softfp-tf ia64/t-softfp t-softfp ia64/t-softfp-compat"
938         ;;
939 ia64*-*-linux*)
940         # Don't use crtbeginT.o from *-*-linux* default.
941         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
942         tmake_file="$tmake_file ia64/t-ia64 ia64/t-ia64-elf t-crtfm t-softfp-tf ia64/t-softfp t-softfp ia64/t-softfp-compat ia64/t-eh-ia64 t-libunwind ia64/t-linux"
943         if test x$with_system_libunwind != xyes ; then
944                 tmake_file="${tmake_file} t-libunwind-elf ia64/t-linux-libunwind"
945         fi
946         md_unwind_header=ia64/linux-unwind.h
947         ;;
948 ia64*-*-hpux*)
949         tmake_file="ia64/t-ia64 ia64/t-ia64-elf ia64/t-hpux t-slibgcc ia64/t-slibgcc-hpux t-slibgcc-hpux"
950         ;;
951 ia64-hp-*vms*)
952         tmake_file="$tmake_file ia64/t-ia64 ia64/t-eh-ia64 ia64/t-vms t-slibgcc-vms t-softfp-tf ia64/t-softfp t-softfp"
953         extra_parts="$extra_parts crtinitS.o"
954         md_unwind_header=ia64/vms-unwind.h
955         ;;
956 iq2000*-*-elf*)
957         tmake_file="iq2000/t-iq2000 t-fdpbit"
958         # Don't use default.
959         extra_parts=
960         ;;
961 lm32-*-elf*)
962         extra_parts="$extra_parts crti.o crtn.o"
963         tmake_file="lm32/t-lm32 lm32/t-elf t-softfp-sfdf t-softfp"
964         ;;
965 lm32-*-rtems*)
966         tmake_file="$tmake_file lm32/t-lm32 lm32/t-elf t-softfp-sfdf t-softfp"
967         extra_parts="$extra_parts crti.o crtn.o"
968         ;;
969 lm32-*-uclinux*)
970         extra_parts="$extra_parts crtbegin.o crtendS.o crtbeginT.o"
971         tmake_file="lm32/t-lm32 lm32/t-uclinux t-libgcc-pic t-softfp-sfdf t-softfp"
972         ;;
973 loongarch*-linux*)
974         extra_parts="$extra_parts crtfastmath.o"
975         tmake_file="${tmake_file} t-crtfm loongarch/t-crtstuff"
976         case ${host} in
977           *)
978             tmake_file="${tmake_file} t-slibgcc-libgcc"
979             ;;
980         esac
981         md_unwind_header=loongarch/linux-unwind.h
982         ;;
983 loongarch*-elf*)
984         extra_parts="$extra_parts crtfastmath.o"
985         tmake_file="${tmake_file} t-crtfm loongarch/t-crtstuff"
986         tmake_file="${tmake_file} t-slibgcc-libgcc"
987         ;;
988 m32r-*-elf*)
989         tmake_file="$tmake_file m32r/t-m32r t-fdpbit"
990         extra_parts="$extra_parts crtinit.o crtfini.o"
991         ;;
992 m32rle-*-elf*)
993         tmake_file=t-fdpbit
994         ;;
995 m68k-*-elf* | fido-*-elf)
996         tmake_file="$tmake_file m68k/t-floatlib"
997         ;;
998 m68k*-*-netbsdelf*)
999         ;;
1000 m68k*-*-openbsd*)
1001         ;;
1002 m68k-*-uclinux*)        # Motorola m68k/ColdFire running uClinux with uClibc
1003         tmake_file="$tmake_file m68k/t-floatlib m68k/t-linux"
1004         md_unwind_header=m68k/linux-unwind.h
1005         ;;
1006 m68k-*-linux*)                  # Motorola m68k's running GNU/Linux
1007                                 # with ELF format using glibc 2
1008                                 # aka the GNU/Linux C library 6.
1009         tmake_file="$tmake_file m68k/t-floatlib m68k/t-linux"
1010         # If not configured with setjmp/longjmp exceptions, bump the
1011         # libgcc version number.
1012         if test x$ac_cv_sjlj_exceptions != xyes; then
1013             tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
1014         fi
1015         md_unwind_header=m68k/linux-unwind.h
1016         ;;
1017 m68k-*-rtems*)
1018         tmake_file="$tmake_file m68k/t-floatlib"
1019         extra_parts="$extra_parts crti.o crtn.o"
1020         ;;
1021 mcore-*-elf)
1022         tmake_file="mcore/t-mcore t-fdpbit"
1023         extra_parts="$extra_parts crti.o crtn.o"
1024         ;;
1025 microblaze*-linux*)
1026         tmake_file="${tmake_file} microblaze/t-microblaze t-fdpbit t-slibgcc-libgcc"
1027         ;;
1028 microblaze*-*-elf)
1029         tmake_file="${tmake_file} microblaze/t-microblaze t-fdpbit"
1030         extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o crti.o crtn.o"
1031         ;;
1032 microblaze*-*-rtems*)
1033         tmake_file="${tmake_file} microblaze/t-microblaze t-fdpbit"
1034         extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o crti.o crtn.o"
1035         ;;
1036 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
1037         ;;
1038 mips*-*-linux*)                         # Linux MIPS, either endian.
1039         extra_parts="$extra_parts crtfastmath.o"
1040         tmake_file="${tmake_file} t-crtfm"
1041         case ${host} in
1042           mips64r5900* | mipsr5900*)
1043             # The MIPS16 support code uses floating point
1044             # instructions that are not supported on r5900.
1045             ;;
1046           *)
1047             tmake_file="${tmake_file} mips/t-mips16 t-slibgcc-libgcc"
1048             ;;
1049         esac
1050         md_unwind_header=mips/linux-unwind.h
1051         ;;
1052 mips*-sde-elf*)
1053         tmake_file="$tmake_file mips/t-crtstuff mips/t-mips16"
1054         case "${with_newlib}" in
1055           yes)
1056             # newlib / libgloss.
1057             ;;
1058           *)
1059             # MIPS toolkit libraries.
1060             tmake_file="$tmake_file mips/t-sdemtk"
1061             ;;
1062         esac
1063         extra_parts="$extra_parts crti.o crtn.o"
1064         ;;
1065 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
1066 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
1067 mipsisa32r6-*-elf* | mipsisa32r6el-*-elf* | \
1068 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
1069 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf* | \
1070 mipsisa64r6-*-elf* | mipsisa64r6el-*-elf*)
1071         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
1072         extra_parts="$extra_parts crti.o crtn.o"
1073         ;;
1074 mipsisa64sr71k-*-elf*)
1075         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff t-fdpbit"
1076         extra_parts="$extra_parts crti.o crtn.o"
1077         ;;
1078 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1079         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
1080         extra_parts="$extra_parts crti.o crtn.o"
1081         ;;
1082 mips-*-elf* | mipsel-*-elf*)
1083         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
1084         extra_parts="$extra_parts crti.o crtn.o"
1085         ;;
1086 mipsr5900-*-elf* | mipsr5900el-*-elf*)
1087         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff"
1088         extra_parts="$extra_parts crti.o crtn.o"
1089         ;;
1090 mips64-*-elf* | mips64el-*-elf*)
1091         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
1092         extra_parts="$extra_parts crti.o crtn.o"
1093         ;;
1094 mips64r5900-*-elf* | mips64r5900el-*-elf*)
1095         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff"
1096         extra_parts="$extra_parts crti.o crtn.o"
1097         ;;
1098 mips64vr-*-elf* | mips64vrel-*-elf*)
1099         tmake_file="$tmake_file mips/t-elf mips/t-vr mips/t-crtstuff"
1100         extra_parts="$extra_parts crti.o crtn.o"
1101         ;;
1102 mips64orion-*-elf* | mips64orionel-*-elf*)
1103         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
1104         extra_parts="$extra_parts crti.o crtn.o"
1105         ;;
1106 mips*-*-rtems*)
1107         tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
1108         extra_parts="$extra_parts crti.o crtn.o"
1109         ;;
1110 mips-wrs-vxworks)
1111         ;;
1112 mipstx39-*-elf* | mipstx39el-*-elf*)
1113         tmake_file="$tmake_file mips/t-crtstuff mips/t-mips16"
1114         ;;
1115 mmix-knuth-mmixware)
1116         extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1117         tmake_file="${tmake_file} ${cpu_type}/t-${cpu_type}"
1118         ;;
1119 mn10300-*-*)
1120         tmake_file=t-fdpbit
1121         ;;
1122 moxie-*-elf | moxie-*-moxiebox* | moxie-*-uclinux* | moxie-*-rtems*)
1123         tmake_file="$tmake_file moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
1124         extra_parts="$extra_parts crti.o crtn.o crtbegin.o crtend.o"
1125         ;;
1126 msp430-*-elf*)
1127         tmake_file="$tm_file t-crtstuff t-fdpbit msp430/t-msp430"
1128         extra_parts="crtbegin.o crtend.o crtbegin_no_eh.o crtend_no_eh.o"
1129         extra_parts="$extra_parts libmul_none.a libmul_16.a libmul_32.a libmul_f5.a"
1130         ;;
1131 nds32*-linux*)
1132         # Basic makefile fragment and extra_parts for crt stuff.
1133         # We also append c-isr library implementation.
1134         tmake_file="${tmake_file} t-slibgcc-libgcc"
1135         tmake_file="${tmake_file} nds32/t-nds32-glibc nds32/t-crtstuff t-softfp-sfdf t-softfp"
1136         # The header file of defining MD_FALLBACK_FRAME_STATE_FOR.
1137         md_unwind_header=nds32/linux-unwind.h
1138         # Append library definition makefile fragment according to --with-nds32-lib=X setting.
1139         case "${with_nds32_lib}" in
1140         "" | glibc | uclibc )
1141                 ;;
1142         *)
1143                 echo "Cannot accept --with-nds32-lib=$with_nds32_lib, available values are: glibc uclibc" 1>&2
1144                 exit 1
1145                 ;;
1146         esac
1147         ;;
1148 nds32*-elf*)
1149         # Basic makefile fragment and extra_parts for crt stuff.
1150         # We also append c-isr library implementation.
1151         tmake_file="${tmake_file} nds32/t-nds32 nds32/t-nds32-isr"
1152         extra_parts="crtbegin1.o crtend1.o libnds32_isr.a"
1153         # Append library definition makefile fragment according to --with-nds32-lib=X setting.
1154         case "${with_nds32_lib}" in
1155         "" | newlib)
1156                 # Append library definition makefile fragment t-nds32-newlib.
1157                 # Append 'soft-fp' software floating point make rule fragment provided by gcc.
1158                 tmake_file="${tmake_file} nds32/t-nds32-newlib t-softfp-sfdf t-softfp"
1159                 ;;
1160         mculib)
1161                 # Append library definition makefile fragment t-nds32-mculib.
1162                 # The software floating point library is included in mculib.
1163                 tmake_file="${tmake_file} nds32/t-nds32-mculib"
1164                 ;;
1165         *)
1166                 echo "Cannot accept --with-nds32-lib=$with_nds32_lib, available values are: newlib mculib" 1>&2
1167                 exit 1
1168                 ;;
1169         esac
1170         ;;
1171 nios2-*-linux*)
1172         tmake_file="$tmake_file nios2/t-nios2 nios2/t-linux t-libgcc-pic t-eh-dw2-dip t-slibgcc-libgcc"
1173         tm_file="$tm_file nios2/elf-lib.h"
1174         md_unwind_header=nios2/linux-unwind.h
1175         ;;
1176 nios2-*-*)
1177         tmake_file="$tmake_file nios2/t-nios2 t-softfp-sfdf t-softfp-excl t-softfp"
1178         extra_parts="$extra_parts crti.o crtn.o"
1179         ;;
1180 or1k-*-linux*)
1181         tmake_file="$tmake_file or1k/t-or1k or1k/t-crtstuff"
1182         tmake_file="$tmake_file t-softfp-sfdf t-softfp"
1183         md_unwind_header=or1k/linux-unwind.h
1184         ;;
1185 or1k-*-*)
1186         tmake_file="$tmake_file or1k/t-or1k or1k/t-crtstuff"
1187         tmake_file="$tmake_file t-softfp-sfdf t-softfp"
1188         ;;
1189 pdp11-*-*)
1190         tmake_file="pdp11/t-pdp11 t-fdpbit"
1191         ;;
1192 powerpc-*-darwin*)
1193         case ${host} in
1194         *-*-darwin9* | *-*-darwin[12][0-9]*)
1195           # libSystem contains unwind information for signal frames since
1196           # Darwin 9.
1197           ;;
1198         *)
1199           md_unwind_header=rs6000/darwin-unwind.h
1200           ;;
1201         esac
1202         # We build the darwin10 EH shim for Rosetta (running on x86 machines).
1203         tm_file="$tm_file i386/darwin-lib.h"
1204         tmake_file="$tmake_file rs6000/t-ppc64-fp rs6000/t-ibm-ldouble"
1205         extra_parts="$extra_parts crt2.o crt3_2.o libef_ppc.a dw_ppc.o"
1206         ;;
1207 powerpc64-*-darwin*)
1208         # We build the darwin10 EH shim for Rosetta (running on x86 machines).
1209         tm_file="$tm_file i386/darwin-lib.h"
1210         tmake_file="$tmake_file rs6000/t-darwin64 rs6000/t-ibm-ldouble"
1211         extra_parts="$extra_parts crt2.o crt3_2.o libef_ppc.a dw_ppc.o"
1212         ;;
1213 powerpc*-*-freebsd*)
1214         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff rs6000/t-freebsd t-softfp-sfdf t-softfp-excl t-softfp"
1215         extra_parts="$extra_parts crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1216         case ${host} in
1217         powerpc64*)
1218           tmake_file="${tmake_file} rs6000/t-freebsd64"
1219           md_unwind_header=rs6000/freebsd-unwind.h
1220           ;;
1221         esac
1222         ;;
1223 powerpc-*-netbsd*)
1224         tmake_file="$tmake_file rs6000/t-netbsd rs6000/t-crtstuff"
1225         ;;
1226 powerpc-*-eabispe*)
1227         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1228         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1229         ;;
1230 powerpc-*-eabisimaltivec*)
1231         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1232         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1233         ;;
1234 powerpc-*-eabisim*)
1235         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1236         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1237         ;;
1238 powerpc-*-elf*)
1239         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1240         extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1241         ;;
1242 powerpc-*-eabialtivec*)
1243         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1244         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1245         ;;
1246 powerpc-xilinx-eabi*)
1247         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1248         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1249         ;;
1250 powerpc-*-eabi*)
1251         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1252         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1253         ;;
1254 powerpc-*-rtems*)
1255         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1256         extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1257         ;;
1258 powerpc*-*-linux*)
1259         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff rs6000/t-linux t-dfprules rs6000/t-ppc64-fp t-slibgcc-libgcc"
1260         tmake_file="${tmake_file} t-stack rs6000/t-stack-rs6000"
1261         case $ppc_fp_type in
1262         64)
1263                 ;;
1264         hard)
1265                 tmake_file="${tmake_file} t-hardfp-sfdf t-hardfp"
1266                 ;;
1267         soft)
1268                 tmake_file="${tmake_file} t-softfp-sfdf ${ppc_fp_compat} t-softfp"
1269                 ;;
1270         e500v1)
1271                 tmake_file="${tmake_file} rs6000/t-e500v1-fp ${ppc_fp_compat} t-softfp t-hardfp"
1272                 ;;
1273         e500v2)
1274                 tmake_file="${tmake_file} t-hardfp-sfdf rs6000/t-e500v2-fp ${ppc_fp_compat} t-softfp t-hardfp"
1275                 ;;
1276         *)
1277                 echo "Unknown ppc_fp_type $ppc_fp_type" 1>&2
1278                 exit 1
1279                 ;;
1280         esac
1282         if test $libgcc_cv_powerpc_float128 = yes; then
1283                 tmake_file="${tmake_file} rs6000/t-float128"
1284         fi
1286         if test $libgcc_cv_powerpc_float128_hw = yes; then
1287                 tmake_file="${tmake_file} rs6000/t-float128-hw"
1288         fi
1290         if test $libgcc_cv_powerpc_3_1_float128_hw = yes; then
1291                 tmake_file="${tmake_file} rs6000/t-float128-p10-hw"
1292         fi
1294         extra_parts="$extra_parts ecrti.o ecrtn.o ncrti.o ncrtn.o"
1295         md_unwind_header=rs6000/linux-unwind.h
1296         ;;
1297 powerpc*-wrs-vxworks7*)
1298         tmake_file="$tmake_file rs6000/t-vxworks rs6000/t-savresfgpr t-dfprules rs6000/t-ppc64-fp"
1299         tmake_file="rs6000/t-crtstuff ${tmake_file}"
1300         case $ppc_fp_type in
1301         64)
1302                 ;;
1303         hard)
1304                 tmake_file="${tmake_file} t-hardfp-sfdf"
1305                 ;;
1306         soft)
1307                 tmake_file="${tmake_file} t-softfp-sfdf t-softfp"
1308                 ;;
1309         *)
1310                 echo "Unknown ppc_fp_type $ppc_fp_type" 1>&2
1311                 exit 1
1312                 ;;
1313         esac
1314         ;;
1315 powerpc-wrs-vxworks*)
1316         tmake_file="$tmake_file rs6000/t-vxworks rs6000/t-savresfgpr t-fdpbit"
1317         ;;
1318 powerpc-*-lynxos*)
1319         tmake_file="$tmake_file rs6000/t-lynx t-fdpbit"
1320         ;;
1321 powerpcle-*-elf*)
1322         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1323         extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1324         ;;
1325 powerpcle-*-eabisim*)
1326         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1327         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1328         ;;
1329 powerpcle-*-eabi*)
1330         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
1331         extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
1332         ;;
1333 pru-*-*)
1334         tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp t-gnu-prefix pru/t-pru"
1335         tm_file="$tm_file pru/pru-abi.h"
1336         ;;
1337 riscv*-*-linux*)
1338         tmake_file="${tmake_file} riscv/t-crtstuff riscv/t-softfp${host_address} t-softfp riscv/t-elf riscv/t-elf${host_address} t-slibgcc-libgcc"
1339         extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o crtendS.o crtbeginT.o"
1340         md_unwind_header=riscv/linux-unwind.h
1341         ;;
1342 riscv*-*-freebsd*)
1343         tmake_file="${tmake_file} riscv/t-crtstuff riscv/t-softfp${host_address} t-softfp riscv/t-elf riscv/t-elf${host_address} t-slibgcc-libgcc"
1344         extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o crtendS.o crtbeginT.o"
1345         ;;
1346 riscv*-*-*)
1347         tmake_file="${tmake_file} riscv/t-softfp${host_address} t-softfp riscv/t-elf riscv/t-elf${host_address}"
1348         extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o"
1349         ;;
1350 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
1351         md_unwind_header=rs6000/aix-unwind.h
1352         tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
1353         ;;
1354 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
1355         md_unwind_header=rs6000/aix-unwind.h
1356         tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
1357         ;;
1358 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
1359         md_unwind_header=rs6000/aix-unwind.h
1360         tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble rs6000/t-aix-cxa"
1361         extra_parts="crtcxa.o crtcxa_s.o crtdbase.o crtcxa_64.o crtcxa_64_s.o crtdbase_64.o"
1362         ;;
1363 rl78-*-elf)
1364         tmake_file="$tm_file t-fdpbit rl78/t-rl78"
1365         ;;
1366 rx-*-elf)
1367         tmake_file="rx/t-rx t-fdpbit"
1368         tm_file="$tm_file rx/rx-abi.h rx/rx-lib.h"
1369         ;;
1370 rx-*-linux*)
1371         tmake_file="rx/t-rx t-fdpbit"
1372         tm_file="$tm_file rx/rx-lib.h"
1373         ;;
1374 s390-*-linux*)
1375         tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi t-stack s390/t-stack-s390"
1376         md_unwind_header=s390/linux-unwind.h
1377         ;;
1378 s390x-*-linux*)
1379         tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux t-stack s390/t-stack-s390"
1380         if test "${host_address}" = 32; then
1381            tmake_file="${tmake_file} s390/32/t-floattodi"
1382         fi
1383         md_unwind_header=s390/linux-unwind.h
1384         ;;
1385 s390x-ibm-tpf*)
1386         tmake_file="${tmake_file} s390/t-crtstuff t-libgcc-pic t-eh-dw2-dip s390/t-tpf"
1387         extra_parts="crtbeginS.o crtendS.o"
1388         md_unwind_header=s390/tpf-unwind.h
1389         ;;
1390 sh-*-elf* | sh[12346l]*-*-elf*)
1391         tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
1392         extra_parts="$extra_parts crt1.o crti.o crtn.o crtbeginS.o crtendS.o \
1393                 libic_invalidate_array_4-100.a \
1394                 libic_invalidate_array_4-200.a \
1395                 libic_invalidate_array_4a.a \
1396                 libgcc-Os-4-200.a libgcc-4-300.a"
1397         case ${host} in
1398         sh*-superh-elf)
1399                 tmake_file="$tmake_file sh/t-superh"
1400                 extra_parts="$extra_parts crt1-mmu.o gcrt1-mmu.o gcrt1.o"
1401                 ;;
1402         esac
1403         ;;
1404 sh-*-linux* | sh[2346lbe]*-*-linux*)
1405         tmake_file="${tmake_file} sh/t-sh t-slibgcc-libgcc sh/t-linux t-fdpbit"
1406         md_unwind_header=sh/linux-unwind.h
1407         ;;
1408 sh-*-netbsdelf* | shl*-*-netbsdelf*)
1409         tmake_file="$tmake_file sh/t-sh sh/t-netbsd"
1411         # NetBSD's C library includes a fast software FP library that
1412         # has support for setting/setting the rounding mode, exception
1413         # mask, etc.  Therefore, we don't want to include software FP
1414         # in libgcc.
1415         ;;
1416 sh-*-rtems*)
1417         tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
1418         extra_parts="$extra_parts crt1.o crti.o crtn.o crtbeginS.o crtendS.o \
1419                 libic_invalidate_array_4-100.a \
1420                 libic_invalidate_array_4-200.a \
1421                 libic_invalidate_array_4a.a \
1422                 libgcc-Os-4-200.a libgcc-4-300.a"
1423         ;;
1424 sh-wrs-vxworks)
1425         tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
1426         ;;
1427 sparc-*-netbsdelf*)
1428         ;;
1429 sparc64-*-openbsd*)
1430         ;;
1431 sparc-*-elf*)
1432         case ${host} in
1433         *-leon[3-9]*)
1434                 ;;
1435         *)
1436                 tmake_file="sparc/t-softmul"
1437                 ;;
1438         esac
1439         tmake_file="${tmake_file} t-fdpbit t-crtfm"
1440         extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1441         ;;
1442 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
1443         tmake_file="${tmake_file} t-crtfm"
1444         if test "${host_address}" = 64; then
1445                 tmake_file="$tmake_file sparc/t-linux64"
1446         fi
1447         case ${host} in
1448         *-leon*)
1449                 tmake_file="${tmake_file} t-fdpbit"
1450                 ;;
1451         *)
1452                 tmake_file="${tmake_file} sparc/t-linux"
1453                 ;;
1454         esac
1455         case ${host} in
1456         *-leon[3-9]*)
1457                 ;;
1458         *)
1459                 if test "${host_address}" = 32; then
1460                         tmake_file="$tmake_file sparc/t-softmul"
1461                 fi
1462                 ;;
1463         esac
1464         extra_parts="$extra_parts crtfastmath.o"
1465         md_unwind_header=sparc/linux-unwind.h
1466         ;;
1467 sparc-*-rtems*)
1468         tmake_file="$tmake_file sparc/t-elf sparc/t-softmul t-crtfm t-fdpbit"
1469         extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1470         ;;
1471 sparc*-*-solaris2*)
1472         tmake_file="$tmake_file t-crtfm"
1473         extra_parts="$extra_parts crtfastmath.o"
1474         md_unwind_header=sparc/sol2-unwind.h
1475         ;;
1476 sparc64-*-elf*)
1477         tmake_file="${tmake_file} t-crtfm"
1478         extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1479         ;;
1480 sparc64-*-rtems*)
1481         tmake_file="$tmake_file t-crtfm"
1482         extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1483         ;;
1484 sparc-wrs-vxworks)
1485         ;;
1486 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
1487         tmake_file="$tmake_file t-crtfm"
1488         extra_parts="$extra_parts crtfastmath.o"
1489         ;;
1490 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
1491         extra_parts="$extra_parts crtfastmath.o"
1492         tmake_file="${tmake_file} t-crtfm sparc/t-linux"
1493         if test "${host_address}" = 64; then
1494                 tmake_file="${tmake_file} sparc/t-linux64"
1495         fi
1496         if test "${host_address}" = 32; then
1497                 tmake_file="${tmake_file} sparc/t-softmul"
1498         fi
1499         md_unwind_header=sparc/linux-unwind.h
1500         ;;
1501 sparc64-*-netbsd*)
1502         ;;
1503 tic6x-*-uclinux)
1504         tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp \
1505                 c6x/t-elf  c6x/t-uclinux t-crtstuff-pic t-libgcc-pic \
1506                 t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver t-gnu-prefix"
1507         tm_file="$tm_file c6x/c6x-abi.h"
1508         extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
1509         unwind_header=config/c6x/unwind-c6x.h
1510         ;;
1511 tic6x-*-elf)
1512         tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp t-gnu-prefix c6x/t-elf"
1513         tm_file="$tm_file c6x/c6x-abi.h"
1514         extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
1515         unwind_header=config/c6x/unwind-c6x.h
1516         ;;
1517 v850*-*-*)
1518         tmake_file="${tmake_file} v850/t-v850 t-fdpbit"
1519         ;;
1520 vax-*-linux*)
1521         tmake_file="$tmake_file vax/t-linux"
1522         ;;
1523 vax-*-netbsdelf*)
1524         ;;
1525 vax-*-openbsd*)
1526         ;;
1527 visium-*-elf*)
1528         extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o"
1529         tmake_file="visium/t-visium t-fdpbit"
1530         ;;
1531 xstormy16-*-elf)
1532         tmake_file="stormy16/t-stormy16 t-fdpbit"
1533         ;;
1534 xtensa*-*-elf*)
1535         tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-elf"
1536         extra_parts="$extra_parts crti.o crtn.o"
1537         ;;
1538 xtensa*-*-linux*)
1539         tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-linux t-slibgcc-libgcc"
1540         md_unwind_header=xtensa/linux-unwind.h
1541         ;;
1542 xtensa*-*-uclinux*)
1543         tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-linux t-slibgcc-libgcc"
1544         md_unwind_header=xtensa/linux-unwind.h
1545         extra_parts="$extra_parts crtbeginS.o crtbeginT.o crtendS.o"
1546         ;;
1547 am33_2.0-*-linux*)
1548         # Don't need crtbeginT.o from *-*-linux* default.
1549         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
1550         tmake_file="$tmake_file t-fdpbit"
1551         ;;
1552 m32c-*-elf*)
1553         tmake_file="$tmake_file m32c/t-m32c"
1554         ;;
1555 nvptx-*)
1556         tmake_file="$tmake_file nvptx/t-nvptx"
1557         extra_parts="crt0.o"
1558         ;;
1560         echo "*** Configuration ${host} not supported" 1>&2
1561         exit 1
1562         ;;
1563 esac
1565 case ${host} in
1566 i[34567]86-*-* | x86_64-*-*)
1567         case ${host} in
1568         *-musl*)
1569                 tmake_file="${tmake_file} i386/t-cpuinfo-static"
1570                 ;;
1571         *)
1572                 tmake_file="${tmake_file} i386/t-cpuinfo"
1573                 ;;
1574         esac
1575         ;;
1576 esac
1578 case ${host} in
1579 i[34567]86-*-linux* | x86_64-*-linux* | \
1580   i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
1581   i[34567]86-*-gnu* | x86_64-*-gnu*)
1582         tmake_file="${tmake_file} t-tls i386/t-linux i386/t-msabi t-slibgcc-libgcc"
1583         if test "$libgcc_cv_cfi" = "yes"; then
1584                 tmake_file="${tmake_file} t-stack i386/t-stack-i386"
1585         fi
1586         ;;
1587 esac
1589 case ${host} in
1590 i[34567]86-*-elfiamcu | i[34567]86-*-rtems*)
1591         # These use soft-fp for SFmode and DFmode, not just TFmode.
1592         ;;
1593 i[34567]86-*-* | x86_64-*-*)
1594         tmake_file="${tmake_file} t-softfp-tf"
1595         tmake_file="${tmake_file} i386/${host_address}/t-softfp i386/t-softfp t-softfp"
1596         ;;
1597 esac
1599 case ${host} in
1600 i[34567]86-*-linux* | x86_64-*-linux*)
1601         # Provide backward binary compatibility for 64bit Linux/x86.
1602         if test "${host_address}" = 64; then
1603                 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
1604         fi
1605         tm_file="${tm_file} i386/value-unwind.h"
1606         ;;
1607 aarch64*-*-*)
1608         # ILP32 needs an extra header for unwinding
1609         tm_file="${tm_file} aarch64/value-unwind.h"
1610         ;;
1611 riscv*-*-*)
1612         tm_file="${tm_file} riscv/value-unwind.h"
1613         ;;
1614 esac
1616 # Setup to build a shared libgcc for VxWorks when that was requested,
1617 # for library variants that support it (rtp only, code model not large).
1620 case ${host} in
1621 *vxworks*)
1622         case ${with_multisubdir}-${enable_shared} in
1623         *large*)
1624                 ;;
1625         *mrtp*-yes)
1626                 tmake_file="${tmake_file} t-libgcc-pic"
1628                 # Arrange to set a soname on libgcc_s so DT_NEEDED entries
1629                 # for it refer to that alone. This ensures absence of path
1630                 # components which would be incorrect as the runtime loader
1631                 # on target has no visibility over the host filesystem.
1632                 tmake_file="${tmake_file} t-slibgcc-gld-nover"
1633                 tmake_file="${tmake_file} t-slibgcc"
1635                 # t-slibgcc-libgcc is needed on at least aarch64 (for
1636                 # lse) and at most harmless on other targets.
1637                 tmake_file="${tmake_file} t-slibgcc-libgcc"
1639                 tmake_file="${tmake_file} t-crtstuff-pic t-vxcrtstuffS"
1640                 ;;
1641         esac
1642         ;;
1643 esac
1645 # The vxworks threads implementation relies on a few extra sources,
1646 # which we arrange to add after everything else:
1648 case ${target_thread_file} in
1649 vxworks)
1650         case ${host} in
1651         *-*-vxworksae)
1652                 tmake_file="${tmake_file} t-gthr-vxworksae"
1653                 ;;
1654         *-*-vxworks*)
1655                 tmake_file="${tmake_file} t-gthr-vxworks"
1656                 ;;
1657         esac
1658 esac
1660 case ${host} in
1661 *-*-musl*)
1662   # The gthr weak references are unsafe with static linking
1663   tmake_file="$tmake_file t-gthr-noweak"
1664   ;;
1665 esac