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