re PR tree-optimization/55191 (ICE in compute_antic at tree-ssa-pre.c:2511)
[gcc.git] / libgcc / config.host
1 # libgcc host-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4
5 #This file is part of GCC.
6
7 #GCC is free software; you can redistribute it and/or modify it under
8 #the terms of the GNU General Public License as published by the Free
9 #Software Foundation; either version 3, or (at your option) any later
10 #version.
11
12 #GCC is distributed in the hope that it will be useful, but WITHOUT
13 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 #for more details.
16
17 #You should have received a copy of the GNU General Public License
18 #along with GCC; see the file COPYING3. If not see
19 #<http://www.gnu.org/licenses/>.
20
21 # This is the libgcc host-specific configuration file
22 # where a configuration type is mapped to different system-specific
23 # definitions and files. This is invoked by the autoconf-generated
24 # configure script. Putting it in a separate shell file lets us skip
25 # running autoconf when modifying host-specific information.
26
27 # This file bears an obvious resemblance to gcc/config.gcc. The cases
28 # should be kept similar, to ease moving library-specific settings
29 # from config.gcc to this file. That is also why tmake_file is
30 # left as tmake_file, rather than hmake_file, even though this library
31 # switches on ${host}.
32
33 # This file switches on the shell variable ${host}, and also uses the
34 # following shell variables:
35 #
36 # with_* Various variables as set by configure.
37
38 # This file sets the following shell variables for use by the
39 # autoconf-generated configure script:
40 #
41 # asm_hidden_op The assembler pseudo-op to use for hide
42 # lists for object files implemented in
43 # assembly (with -fvisibility=hidden for C).
44 # The default is ".hidden".
45 # cpu_type The name of the cpu, if different from the first
46 # chunk of the canonical host name.
47 # enable_execute_stack The name of a source file implementing
48 # __enable_execute_stack.
49 # extra_parts List of extra object files that should be compiled
50 # for this target machine. This may be overridden
51 # by setting EXTRA_PARTS in a tmake_file fragment.
52 # If either is set, EXTRA_PARTS and
53 # EXTRA_MULTILIB_PARTS inherited from the GCC
54 # subdirectory will be ignored.
55 # md_unwind_header The name of a header file defining
56 # MD_FALLBACK_FRAME_STATE_FOR.
57 # sfp_machine_header The name of a sfp-machine.h header file for soft-fp.
58 # Defaults to "$cpu_type/sfp-machine.h" if it exists,
59 # no-sfp-machine.h otherwise.
60 # tmake_file A list of machine-description-specific
61 # makefile fragments.
62 # tm_defines List of target macros to define for all compilations.
63 # tm_file A list of target macro files used only for code
64 # built for the target, not the host. These files
65 # are relative to $srcdir/config and must not have
66 # the same names as files in $srcdir/../gcc/config.
67 # unwind_header The name of the header file declaring the unwind
68 # runtime interface routines.
69
70 asm_hidden_op=.hidden
71 enable_execute_stack=
72 extra_parts=
73 tmake_file=
74 tm_file=
75 tm_define=
76 md_unwind_header=no-unwind.h
77 unwind_header=unwind-generic.h
78
79 # Set default cpu_type so it can be updated in each machine entry.
80 cpu_type=`echo ${host} | sed 's/-.*$//'`
81 case ${host} in
82 m32c*-*-*)
83 cpu_type=m32c
84 tmake_file=t-fdpbit
85 ;;
86 aarch64*-*-*)
87 cpu_type=aarch64
88 ;;
89 alpha*-*-*)
90 cpu_type=alpha
91 ;;
92 am33_2.0-*-linux*)
93 cpu_type=mn10300
94 ;;
95 arm*-*-*)
96 cpu_type=arm
97 ;;
98 avr-*-*)
99 cpu_type=avr
100 ;;
101 bfin*-*)
102 cpu_type=bfin
103 ;;
104 cr16-*-*)
105 ;;
106 fido-*-*)
107 cpu_type=m68k
108 ;;
109 frv*) cpu_type=frv
110 ;;
111 moxie*) cpu_type=moxie
112 ;;
113 i[34567]86-*-*)
114 cpu_type=i386
115 ;;
116 x86_64-*-*)
117 cpu_type=i386
118 ;;
119 ia64-*-*)
120 ;;
121 hppa*-*-*)
122 cpu_type=pa
123 ;;
124 lm32*-*-*)
125 cpu_type=lm32
126 ;;
127 m32r*-*-*)
128 cpu_type=m32r
129 ;;
130 m68k-*-*)
131 ;;
132 mep*-*-*)
133 ;;
134 microblaze*-*-*)
135 cpu_type=microblaze
136 ;;
137 mips*-*-*)
138 cpu_type=mips
139 tmake_file=mips/t-mips
140 ;;
141 powerpc*-*-*)
142 cpu_type=rs6000
143 ;;
144 rs6000*-*-*)
145 ;;
146 score*-*-*)
147 cpu_type=score
148 ;;
149 sparc64*-*-*)
150 cpu_type=sparc
151 ;;
152 sparc*-*-*)
153 cpu_type=sparc
154 ;;
155 spu*-*-*)
156 cpu_type=spu
157 ;;
158 s390*-*-*)
159 cpu_type=s390
160 ;;
161 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
162 sh[123456789lbe]*-*-*)
163 cpu_type=sh
164 ;;
165 v850*-*-*)
166 cpu_type=v850
167 ;;
168 tic6x-*-*)
169 cpu_type=c6x
170 ;;
171 esac
172
173 # Common parts for widely ported systems.
174 case ${host} in
175 *-*-darwin*)
176 asm_hidden_op=.private_extern
177 tmake_file="$tmake_file t-darwin ${cpu_type}/t-darwin t-libgcc-pic t-slibgcc-darwin"
178 extra_parts="crt3.o crttms.o crttme.o"
179 ;;
180 *-*-freebsd*)
181 # This is the generic ELF configuration of FreeBSD. Later
182 # machine-specific sections may refine and add to this
183 # configuration.
184 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"
185 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
186 case ${target_thread_file} in
187 posix)
188 tmake_file="${tmake_file} t-freebsd-thread"
189 # Before 5.0, FreeBSD can't bind shared libraries to -lc
190 # when "optionally" threaded via weak pthread_* checks.
191 case ${host} in
192 *-*-freebsd[34] | *-*-freebsd[34].*)
193 tmake_file="${tmake_file} t-slibgcc-nolc-override"
194 ;;
195 esac
196 ;;
197 esac
198 ;;
199 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
200 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"
201 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
202 ;;
203 *-*-lynxos*)
204 tmake_file="$tmake_file t-lynx $cpu_type/t-crtstuff t-crtstuff-pic t-libgcc-pic"
205 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
206 ;;
207 *-*-netbsd*)
208 tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver"
209 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
210 # ELF configurations. We will clear extra_parts in the
211 # a.out configurations.
212 case ${host} in
213 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
214 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
215 ;;
216 esac
217 ;;
218 *-*-openbsd*)
219 tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip"
220 case ${target_thread_file} in
221 posix)
222 tmake_file="$tmake_file t-openbsd-thread"
223 ;;
224 esac
225 ;;
226 *-*-rtems*)
227 tmake_file="$tmake_file t-rtems"
228 extra_parts="crtbegin.o crtend.o"
229 ;;
230 *-*-solaris2*)
231 # Unless linker support and dl_iterate_phdr are present,
232 # unwind-dw2-fde-dip.c automatically falls back to unwind-dw2-fde.c.
233 tmake_file="$tmake_file t-sol2 t-eh-dw2-dip t-libgcc-pic t-slibgcc t-slibgcc-elf-ver"
234 if test $with_gnu_ld = yes; then
235 tmake_file="$tmake_file t-slibgcc-gld"
236 else
237 tmake_file="$tmake_file t-slibgcc-sld"
238 fi
239 # Add cpu-specific t-sol2 after t-slibgcc-* so it can augment SHLIB_MAPFILES.
240 tmake_file="$tmake_file $cpu_type/t-sol2"
241 extra_parts="gmon.o crtbegin.o crtend.o"
242 case ${host} in
243 i?86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*)
244 # Solaris 10+/x86 provides crt1.o, crti.o, crtn.o, and gcrt1.o as
245 # part of the base system.
246 ;;
247 sparc*-*-solaris2.1[0-9]*)
248 # Solaris 10+/SPARC lacks crt1.o and gcrt1.o.
249 extra_parts="$extra_parts crt1.o gcrt1.o"
250 ;;
251 *)
252 extra_parts="$extra_parts crt1.o crti.o crtn.o gcrt1.o"
253 ;;
254 esac
255 ;;
256 *-*-uclinux*)
257 extra_parts="crtbegin.o crtend.o"
258 ;;
259 *-*-*vms*)
260 tmake_file="vms/t-vms"
261 extra_parts="crt0.o crtbegin.o crtbeginS.o crtend.o crtendS.o"
262 ;;
263 *-*-vxworks*)
264 tmake_file=t-vxworks
265 ;;
266 *-*-elf)
267 extra_parts="crtbegin.o crtend.o"
268 ;;
269 esac
270
271 case ${host} in
272 *-*-darwin* | *-*-freebsd* | *-*-netbsd* | *-*-openbsd* | *-*-solaris2*)
273 enable_execute_stack=enable-execute-stack-mprotect.c
274 ;;
275 i[34567]86-*-mingw* | x86_64-*-mingw*)
276 enable_execute_stack=config/i386/enable-execute-stack-mingw32.c
277 ;;
278 *)
279 enable_execute_stack=enable-execute-stack-empty.c;
280 ;;
281 esac
282
283 case ${host} in
284 aarch64*-*-elf)
285 extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o"
286 tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
287 tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp"
288 ;;
289 aarch64*-*-linux*)
290 md_unwind_header=aarch64/linux-unwind.h
291 tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
292 tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp"
293 ;;
294 alpha*-*-linux*)
295 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee t-crtfm alpha/t-linux"
296 extra_parts="$extra_parts crtfastmath.o"
297 md_unwind_header=alpha/linux-unwind.h
298 ;;
299 alpha*-*-freebsd*)
300 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee t-crtfm"
301 extra_parts="$extra_parts crtbeginT.o crtfastmath.o"
302 ;;
303 alpha*-*-netbsd*)
304 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
305 ;;
306 alpha*-*-openbsd*)
307 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
308 ;;
309 alpha64-dec-*vms*)
310 tmake_file="$tmake_file alpha/t-alpha alpha/t-ieee alpha/t-vms t-slibgcc-vms"
311 extra_parts="$extra_parts vms-dwarf2.o vms-dwarf2eh.o"
312 md_unwind_header=alpha/vms-unwind.h
313 ;;
314 alpha*-dec-*vms*)
315 tmake_file="$tmake_file alpha/t-alpha alpha/t-ieee alpha/t-vms t-slibgcc-vms"
316 extra_parts="$extra_parts vms-dwarf2.o vms-dwarf2eh.o"
317 md_unwind_header=alpha/vms-unwind.h
318 ;;
319 arm-wrs-vxworks)
320 tmake_file="$tmake_file arm/t-arm arm/t-vxworks t-fdpbit"
321 extra_parts="$extra_parts crti.o crtn.o"
322 ;;
323 arm*-*-freebsd*)
324 tmake_file="$tmake_file arm/t-arm arm/t-strongarm-elf t-fdpbit"
325 ;;
326 arm*-*-netbsdelf*)
327 tmake_file="$tmake_file arm/t-arm arm/t-netbsd t-slibgcc-gld-nover"
328 ;;
329 arm*-*-linux*) # ARM GNU/Linux with ELF
330 tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix"
331 case ${host} in
332 arm*-*-linux-*)
333 tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc"
334 tm_file="$tm_file arm/bpabi-lib.h"
335 unwind_header=config/arm/unwind-arm.h
336 ;;
337 *)
338 tmake_file="$tmake_file arm/t-linux"
339 ;;
340 esac
341 tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
342 ;;
343 arm*-*-uclinux*) # ARM ucLinux
344 tmake_file="${tmake_file} t-fixedpoint-gnu-prefix"
345 case ${host} in
346 arm*-*-uclinux*eabi)
347 tmake_file="${tmake_file} arm/t-bpabi"
348 tm_file="$tm_file arm/bpabi-lib.h"
349 unwind_header=config/arm/unwind-arm.h
350 ;;
351 esac
352 tmake_file="$tmake_file arm/t-arm arm/t-elf t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
353 extra_parts="$extra_parts crti.o crtn.o"
354 ;;
355 arm*-*-ecos-elf)
356 tmake_file="$tmake_file arm/t-arm arm/t-elf t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
357 extra_parts="$extra_parts crti.o crtn.o"
358 ;;
359 arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*)
360 tmake_file="${tmake_file} arm/t-arm arm/t-elf t-fixedpoint-gnu-prefix"
361 tm_file="$tm_file arm/bpabi-lib.h"
362 case ${host} in
363 arm*-*-eabi* | arm*-*-rtems*)
364 tmake_file="${tmake_file} arm/t-bpabi"
365 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
366 ;;
367 arm*-*-symbianelf*)
368 tmake_file="${tmake_file} arm/t-symbian t-slibgcc-nolc-override"
369 tm_file="$tm_file arm/symbian-lib.h"
370 # Symbian OS provides its own startup code.
371 ;;
372 esac
373 tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
374 unwind_header=config/arm/unwind-arm.h
375 ;;
376 arm*-*-elf)
377 tmake_file="$tmake_file arm/t-arm arm/t-elf t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
378 extra_parts="$extra_parts crti.o crtn.o"
379 ;;
380 arm*-wince-pe*)
381 tmake_file="$tmake_file arm/t-arm arm/t-wince-pe"
382 ;;
383 avr-*-rtems*)
384 tmake_file="$tmake_file avr/t-avr avr/t-rtems t-fpbit"
385 tm_file="$tm_file avr/avr-lib.h"
386 # Don't use default.
387 extra_parts=
388 ;;
389 avr-*-*)
390 # Make HImode functions for AVR
391 tmake_file="${cpu_type}/t-avr t-fpbit"
392 if test x${with_avrlibc} != xno; then
393 tmake_file="$tmake_file ${cpu_type}/t-avrlibc"
394 fi
395 tm_file="$tm_file avr/avr-lib.h"
396 ;;
397 bfin*-elf*)
398 tmake_file="bfin/t-bfin bfin/t-crtlibid bfin/t-crtstuff t-libgcc-pic t-fdpbit"
399 extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o crtlibid.o"
400 ;;
401 bfin*-uclinux*)
402 tmake_file="bfin/t-bfin bfin/t-crtlibid bfin/t-crtstuff t-libgcc-pic t-fdpbit"
403 extra_parts="$extra_parts crtbeginS.o crtendS.o crtlibid.o"
404 md_unwind_header=bfin/linux-unwind.h
405 ;;
406 bfin*-linux-uclibc*)
407 tmake_file="$tmake_file bfin/t-bfin bfin/t-crtstuff t-libgcc-pic t-fdpbit bfin/t-linux"
408 # No need to build crtbeginT.o on uClibc systems. Should probably
409 # be moved to the OS specific section above.
410 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
411 md_unwind_header=bfin/linux-unwind.h
412 ;;
413 bfin*-rtems*)
414 tmake_file="$tmake_file bfin/t-bfin t-fdpbit"
415 extra_parts="$extra_parts crti.o crtn.o"
416 ;;
417 bfin*-*)
418 tmake_file="$tmake_file bfin/t-bfin t-fdpbit"
419 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
420 ;;
421 cr16-*-elf)
422 tmake_file="${tmake_file} cr16/t-cr16 cr16/t-crtlibid t-fdpbit"
423 extra_parts="$extra_parts crti.o crtn.o crtlibid.o"
424 ;;
425 crisv32-*-elf)
426 tmake_file="$tmake_file cris/t-cris t-fdpbit"
427 ;;
428 cris-*-elf)
429 tmake_file="$tmake_file cris/t-cris t-fdpbit cris/t-elfmulti"
430 ;;
431 cris-*-linux* | crisv32-*-linux*)
432 tmake_file="$tmake_file cris/t-cris t-fdpbit cris/t-linux"
433 ;;
434 epiphany-*-elf*)
435 tmake_file="epiphany/t-epiphany t-fdpbit epiphany/t-custom-eqsf"
436 extra_parts="$extra_parts crti.o crtint.o crtrunc.o crtm1reg-r43.o crtm1reg-r63.o crtn.o"
437 ;;
438 fr30-*-elf)
439 tmake_file="$tmake_file fr30/t-fr30 t-fdpbit"
440 extra_parts="$extra_parts crti.o crtn.o"
441 ;;
442 frv-*-elf)
443 tmake_file="$tmake_file frv/t-frv t-fdpbit"
444 tm_file="$tm_file frv/frv-abi.h"
445 # Don't use crtbegin.o, crtend.o.
446 extra_parts="frvbegin.o frvend.o"
447 ;;
448 frv-*-*linux*)
449 tmake_file="$tmake_file frv/t-frv frv/t-linux t-fdpbit"
450 tm_file="$tm_file frv/frv-abi.h"
451 ;;
452 h8300-*-rtems*)
453 tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
454 tm_file="$tm_file h8300/h8300-lib.h"
455 extra_parts="$extra_parts crti.o crtn.o"
456 ;;
457 h8300-*-elf*)
458 tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
459 tm_file="$tm_file h8300/h8300-lib.h"
460 extra_parts="$extra_parts crti.o crtn.o"
461 ;;
462 hppa*64*-*-linux*)
463 tmake_file="$tmake_file pa/t-linux pa/t-linux64"
464 ;;
465 hppa*-*-linux*)
466 tmake_file="$tmake_file pa/t-linux t-slibgcc-libgcc"
467 # Set the libgcc version number
468 if test x$enable_sjlj_exceptions = xyes; then
469 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
470 else
471 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
472 fi
473 md_unwind_header=pa/linux-unwind.h
474 ;;
475 hppa[12]*-*-hpux10*)
476 tmake_file="$tmake_file pa/t-hpux pa/t-hpux10 t-libgcc-pic t-slibgcc"
477 # Set the libgcc version number
478 if test x$enable_sjlj_exceptions = xyes; then
479 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
480 else
481 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
482 fi
483 tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
484 md_unwind_header=pa/hpux-unwind.h
485 ;;
486 hppa*64*-*-hpux11*)
487 tmake_file="$tmake_file pa/t-hpux pa/t-pa64 pa/t-stublib t-libgcc-pic t-slibgcc"
488 # Set the libgcc version number
489 if test x$enable_sjlj_exceptions = xyes; then
490 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
491 else
492 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
493 fi
494 tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
495 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
496 libgcc_stub.a"
497 md_unwind_header=pa/hpux-unwind.h
498 ;;
499 hppa[12]*-*-hpux11*)
500 tmake_file="$tmake_file pa/t-hpux pa/t-stublib t-libgcc-pic t-slibgcc"
501 # Set the libgcc version number
502 if test x$enable_sjlj_exceptions = xyes; then
503 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
504 else
505 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
506 fi
507 tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
508 extra_parts="libgcc_stub.a"
509 md_unwind_header=pa/hpux-unwind.h
510 ;;
511 hppa*-*-openbsd*)
512 tmake_file="$tmake_file pa/t-openbsd"
513 ;;
514 i[34567]86-*-darwin*)
515 tmake_file="$tmake_file i386/t-crtpc i386/t-crtfm"
516 tm_file="$tm_file i386/darwin-lib.h"
517 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
518 ;;
519 x86_64-*-darwin*)
520 tmake_file="$tmake_file i386/t-crtpc i386/t-crtfm"
521 tm_file="$tm_file i386/darwin-lib.h"
522 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
523 ;;
524 i[34567]86-*-elf*)
525 tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic"
526 ;;
527 x86_64-*-elf*)
528 tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic"
529 ;;
530 i[34567]86-*-freebsd*)
531 tmake_file="${tmake_file} i386/t-freebsd i386/t-crtstuff"
532 ;;
533 x86_64-*-freebsd*)
534 tmake_file="${tmake_file} i386/t-freebsd i386/t-crtstuff"
535 ;;
536 i[34567]86-*-netbsdelf*)
537 ;;
538 x86_64-*-netbsd*)
539 tmake_file="${tmake_file} i386/t-crtstuff"
540 ;;
541 i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
542 ;;
543 i[34567]86-*-openbsd*)
544 ;;
545 x86_64-*-openbsd*)
546 ;;
547 i[34567]86-*-linux*)
548 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
549 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm i386/t-crtstuff t-dfprules"
550 md_unwind_header=i386/linux-unwind.h
551 ;;
552 i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
553 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
554 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm i386/t-crtstuff t-dfprules"
555 ;;
556 x86_64-*-linux*)
557 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
558 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm i386/t-crtstuff t-dfprules"
559 md_unwind_header=i386/linux-unwind.h
560 ;;
561 x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
562 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
563 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm i386/t-crtstuff t-dfprules"
564 ;;
565 i[34567]86-pc-msdosdjgpp*)
566 ;;
567 i[34567]86-*-lynxos*)
568 ;;
569 i[34567]86-*-nto-qnx*)
570 tmake_file="$tmake_file i386/t-nto t-libgcc-pic"
571 extra_parts=crtbegin.o
572 ;;
573 i[34567]86-*-rtems*)
574 tmake_file="$tmake_file i386/t-softfp i386/t-crtstuff"
575 extra_parts="$extra_parts crti.o crtn.o"
576 ;;
577 i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
578 tmake_file="$tmake_file i386/t-crtpc i386/t-crtfm"
579 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
580 md_unwind_header=i386/sol2-unwind.h
581 ;;
582 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
583 ;;
584 i[34567]86-*-cygwin*)
585 extra_parts="crtbegin.o crtend.o crtfastmath.o"
586 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
587 if test x$enable_sjlj_exceptions = xyes; then
588 tmake_eh_file="i386/t-sjlj-eh"
589 else
590 tmake_eh_file="i386/t-dw2-eh"
591 fi
592 # Shared libgcc DLL install dir depends on cross/native build.
593 if test x${build} = x${host} ; then
594 tmake_dlldir_file="i386/t-dlldir"
595 else
596 tmake_dlldir_file="i386/t-dlldir-x"
597 fi
598 tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-cygming i386/t-cygwin i386/t-crtfm i386/t-chkstk t-dfprules"
599 ;;
600 i[34567]86-*-mingw*)
601 extra_parts="crtbegin.o crtend.o crtfastmath.o"
602 case ${target_thread_file} in
603 win32)
604 tmake_file="$tmake_file i386/t-gthr-win32"
605 ;;
606 posix)
607 tmake_file="i386/t-mingw-pthread $tmake_file"
608 ;;
609 esac
610 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
611 if test x$enable_sjlj_exceptions = xyes; then
612 tmake_eh_file="i386/t-sjlj-eh"
613 else
614 tmake_eh_file="i386/t-dw2-eh"
615 md_unwind_header=i386/w32-unwind.h
616 fi
617 # Shared libgcc DLL install dir depends on cross/native build.
618 if test x${build} = x${host} ; then
619 tmake_dlldir_file="i386/t-dlldir"
620 else
621 tmake_dlldir_file="i386/t-dlldir-x"
622 fi
623 tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-cygming i386/t-mingw32 i386/t-crtfm i386/t-chkstk t-dfprules"
624 ;;
625 x86_64-*-mingw*)
626 case ${target_thread_file} in
627 win32)
628 tmake_file="$tmake_file i386/t-gthr-win32"
629 ;;
630 posix)
631 tmake_file="i386/t-mingw-pthread $tmake_file"
632 ;;
633 esac
634 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
635 if test x$enable_sjlj_exceptions = xyes; then
636 tmake_eh_file="i386/t-sjlj-eh"
637 else
638 tmake_eh_file="i386/t-seh-eh"
639 fi
640 # Shared libgcc DLL install dir depends on cross/native build.
641 if test x${build} = x${host} ; then
642 tmake_dlldir_file="i386/t-dlldir"
643 else
644 tmake_dlldir_file="i386/t-dlldir-x"
645 fi
646 tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-mingw32 t-dfprules i386/t-crtfm i386/t-chkstk"
647 extra_parts="$extra_parts crtfastmath.o"
648 ;;
649 i[34567]86-*-interix[3-9]*)
650 tmake_file="$tmake_file i386/t-interix i386/t-chkstk"
651 ;;
652 ia64*-*-elf*)
653 extra_parts="$extra_parts crtbeginS.o crtendS.o crtfastmath.o"
654 tmake_file="ia64/t-ia64 ia64/t-ia64-elf ia64/t-eh-ia64 t-crtfm"
655 ;;
656 ia64*-*-freebsd*)
657 extra_parts="$extra_parts crtfastmath.o"
658 tmake_file="$tmake_file ia64/t-ia64 ia64/t-ia64-elf ia64/t-eh-ia64 t-crtfm"
659 ;;
660 ia64*-*-linux*)
661 # Don't use crtbeginT.o from *-*-linux* default.
662 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
663 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"
664 if test x$with_system_libunwind != xyes ; then
665 tmake_file="${tmake_file} t-libunwind-elf ia64/t-linux-libunwind"
666 fi
667 md_unwind_header=ia64/linux-unwind.h
668 ;;
669 ia64*-*-hpux*)
670 tmake_file="ia64/t-ia64 ia64/t-ia64-elf ia64/t-hpux t-slibgcc ia64/t-slibgcc-hpux t-slibgcc-hpux"
671 ;;
672 ia64-hp-*vms*)
673 tmake_file="$tmake_file ia64/t-ia64 ia64/t-eh-ia64 ia64/t-vms t-slibgcc-vms"
674 extra_parts="$extra_parts crtinitS.o"
675 md_unwind_header=ia64/vms-unwind.h
676 ;;
677 iq2000*-*-elf*)
678 tmake_file="iq2000/t-iq2000 t-fdpbit"
679 # Don't use default.
680 extra_parts=
681 ;;
682 lm32-*-elf*)
683 extra_parts="$extra_parts crti.o crtn.o"
684 tmake_file="lm32/t-lm32 lm32/t-elf t-softfp-sfdf t-softfp"
685 ;;
686 lm32-*-rtems*)
687 tmake_file="$tmake_file lm32/t-lm32 lm32/t-elf t-softfp-sfdf t-softfp"
688 extra_parts="$extra_parts crti.o crtn.o"
689 ;;
690 lm32-*-uclinux*)
691 extra_parts="$extra_parts crtbegin.o crtendS.o crtbeginT.o"
692 tmake_file="lm32/t-lm32 lm32/t-uclinux t-libgcc-pic t-softfp-sfdf t-softfp"
693 ;;
694 m32r-*-elf*)
695 tmake_file=t-fdpbit
696 ;;
697 m32r-*-rtems*)
698 tmake_file="$tmake_file m32r/t-m32r t-fdpbit"
699 extra_parts="$extra_parts crtinit.o crtfini.o"
700 ;;
701 m32rle-*-elf*)
702 tmake_file=t-fdpbit
703 ;;
704 m32r-*-linux*)
705 tmake_file="$tmake_file m32r/t-linux t-fdpbit"
706 ;;
707 m32rle-*-linux*)
708 tmake_file="$tmake_file m32r/t-linux t-fdpbit"
709 ;;
710 m68k-*-elf* | fido-*-elf)
711 tmake_file="$tmake_file m68k/t-floatlib"
712 ;;
713 m68k*-*-netbsdelf*)
714 ;;
715 m68k*-*-openbsd*)
716 ;;
717 m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux with uClibc
718 tmake_file="$tmake_file m68k/t-floatlib m68k/t-linux"
719 md_unwind_header=m68k/linux-unwind.h
720 ;;
721 m68k-*-linux*) # Motorola m68k's running GNU/Linux
722 # with ELF format using glibc 2
723 # aka the GNU/Linux C library 6.
724 tmake_file="$tmake_file m68k/t-floatlib m68k/t-linux"
725 # If not configured with --enable-sjlj-exceptions, bump the
726 # libgcc version number.
727 if test x$enable_sjlj_exceptions != xyes; then
728 tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
729 fi
730 md_unwind_header=m68k/linux-unwind.h
731 ;;
732 m68k-*-rtems*)
733 tmake_file="$tmake_file m68k/t-floatlib"
734 extra_parts="$extra_parts crti.o crtn.o"
735 ;;
736 mcore-*-elf)
737 tmake_file="mcore/t-mcore t-fdpbit"
738 extra_parts="$extra_parts crti.o crtn.o"
739 ;;
740 microblaze*-linux*)
741 tmake_file="$tmake_file t-slibgcc-nolc-override microblaze/t-microblaze t-fdpbit"
742 ;;
743 microblaze*-*-*)
744 tmake_file="microblaze/t-microblaze t-fdpbit"
745 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
746 ;;
747 mips*-*-netbsd*) # NetBSD/mips, either endian.
748 ;;
749 mips*-*-linux*) # Linux MIPS, either endian.
750 extra_parts="$extra_parts crtfastmath.o"
751 tmake_file="${tmake_file} t-crtfm mips/t-mips16"
752 md_unwind_header=mips/linux-unwind.h
753 if test "${ac_cv_sizeof_long_double}" = 16; then
754 tmake_file="${tmake_file} mips/t-tpbit"
755 fi
756 ;;
757 mips*-sde-elf*)
758 tmake_file="$tmake_file mips/t-crtstuff mips/t-mips16"
759 case "${with_newlib}" in
760 yes)
761 # newlib / libgloss.
762 ;;
763 *)
764 # MIPS toolkit libraries.
765 tmake_file="$tmake_file mips/t-sdemtk"
766 ;;
767 esac
768 extra_parts="$extra_parts crti.o crtn.o"
769 ;;
770 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
771 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
772 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
773 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
774 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
775 extra_parts="$extra_parts crti.o crtn.o"
776 ;;
777 mipsisa64sr71k-*-elf*)
778 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff t-fdpbit"
779 extra_parts="$extra_parts crti.o crtn.o"
780 ;;
781 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
782 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
783 extra_parts="$extra_parts crti.o crtn.o"
784 ;;
785 mips-*-elf* | mipsel-*-elf*)
786 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
787 extra_parts="$extra_parts crti.o crtn.o"
788 ;;
789 mips64-*-elf* | mips64el-*-elf*)
790 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
791 extra_parts="$extra_parts crti.o crtn.o"
792 ;;
793 mips64vr-*-elf* | mips64vrel-*-elf*)
794 tmake_file="$tmake_file mips/t-elf mips/t-vr mips/t-crtstuff"
795 extra_parts="$extra_parts crti.o crtn.o"
796 ;;
797 mips64orion-*-elf* | mips64orionel-*-elf*)
798 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
799 extra_parts="$extra_parts crti.o crtn.o"
800 ;;
801 mips*-*-rtems*)
802 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
803 extra_parts="$extra_parts crti.o crtn.o"
804 ;;
805 mips-wrs-vxworks)
806 ;;
807 mipstx39-*-elf* | mipstx39el-*-elf*)
808 tmake_file="$tmake_file mips/t-crtstuff mips/t-mips16"
809 ;;
810 mmix-knuth-mmixware)
811 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
812 tmake_file="${tmake_file} ${cpu_type}/t-${cpu_type}"
813 ;;
814 mn10300-*-*)
815 tmake_file=t-fdpbit
816 ;;
817 moxie-*-elf | moxie-*-uclinux*)
818 tmake_file="moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
819 extra_parts="$extra_parts crti.o crtn.o"
820 ;;
821 moxie-*-rtems*)
822 tmake_file="$tmake_file moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
823 # Don't use default.
824 extra_parts=
825 ;;
826 pdp11-*-*)
827 tmake_file="pdp11/t-pdp11 t-fdpbit"
828 ;;
829 picochip-*-*)
830 tmake_file="picochip/t-picochip t-fpbit"
831 ;;
832 powerpc-*-darwin*)
833 case ${host} in
834 *-*-darwin9* | *-*-darwin[12][0-9]*)
835 # libSystem contains unwind information for signal frames since
836 # Darwin 9.
837 ;;
838 *)
839 md_unwind_header=rs6000/darwin-unwind.h
840 ;;
841 esac
842 tmake_file="$tmake_file rs6000/t-ibm-ldouble"
843 extra_parts="$extra_parts crt2.o"
844 ;;
845 powerpc64-*-darwin*)
846 tmake_file="$tmake_file rs6000/t-darwin64 rs6000/t-ibm-ldouble"
847 extra_parts="$extra_parts crt2.o"
848 ;;
849 powerpc*-*-freebsd*)
850 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff rs6000/t-freebsd t-softfp-sfdf t-softfp-excl t-softfp"
851 extra_parts="$extra_parts crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
852 case ${host} in
853 powerpc64*)
854 tmake_file="${tmake_file} rs6000/t-freebsd64"
855 md_unwind_header=rs6000/freebsd-unwind.h
856 ;;
857 esac
858 ;;
859 powerpc-*-netbsd*)
860 tmake_file="$tmake_file rs6000/t-netbsd rs6000/t-crtstuff"
861 ;;
862 powerpc-*-eabispe*)
863 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic"
864 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
865 ;;
866 powerpc-*-eabisimaltivec*)
867 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
868 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
869 ;;
870 powerpc-*-eabisim*)
871 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
872 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
873 ;;
874 powerpc-*-elf*)
875 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
876 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
877 ;;
878 powerpc-*-eabialtivec*)
879 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
880 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
881 ;;
882 powerpc-xilinx-eabi*)
883 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
884 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
885 ;;
886 powerpc-*-eabi*)
887 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
888 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
889 ;;
890 powerpc-*-rtems*)
891 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
892 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
893 ;;
894 powerpc-*-linux* | powerpc64-*-linux*)
895 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff rs6000/t-linux t-softfp-sfdf t-softfp-excl t-dfprules rs6000/t-ppc64-fp t-softfp t-slibgcc-libgcc"
896 extra_parts="$extra_parts ecrti.o ecrtn.o ncrti.o ncrtn.o"
897 md_unwind_header=rs6000/linux-unwind.h
898 ;;
899 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
900 tmake_file="$tmake_file rs6000/t-ppccomm t-fdpbit"
901 ;;
902 powerpc-*-lynxos*)
903 tmake_file="$tmake_file rs6000/t-lynx t-fdpbit"
904 ;;
905 powerpcle-*-elf*)
906 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
907 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
908 ;;
909 powerpcle-*-eabisim*)
910 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
911 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
912 ;;
913 powerpcle-*-eabi*)
914 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
915 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
916 ;;
917 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
918 md_unwind_header=rs6000/aix-unwind.h
919 tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
920 ;;
921 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
922 md_unwind_header=rs6000/aix-unwind.h
923 tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
924 ;;
925 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
926 md_unwind_header=rs6000/aix-unwind.h
927 tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
928 ;;
929 rl78-*-elf)
930 tmake_file="$tm_file t-fdpbit rl78/t-rl78"
931 ;;
932 rx-*-elf)
933 tmake_file="rx/t-rx t-fdpbit"
934 tm_file="$tm_file rx/rx-abi.h rx/rx-lib.h"
935 ;;
936 s390-*-linux*)
937 tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi"
938 md_unwind_header=s390/linux-unwind.h
939 ;;
940 s390x-*-linux*)
941 tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux"
942 md_unwind_header=s390/linux-unwind.h
943 ;;
944 s390x-ibm-tpf*)
945 tmake_file="${tmake_file} s390/t-crtstuff t-libgcc-pic t-eh-dw2-dip"
946 extra_parts="crtbeginS.o crtendS.o"
947 md_unwind_header=s390/tpf-unwind.h
948 ;;
949 score-*-elf)
950 tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp"
951 extra_parts="$extra_parts crti.o crtn.o"
952 ;;
953 sh-*-elf* | sh[12346l]*-*-elf*)
954 tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
955 extra_parts="$extra_parts crt1.o crti.o crtn.o crtbeginS.o crtendS.o \
956 libic_invalidate_array_4-100.a \
957 libic_invalidate_array_4-200.a \
958 libic_invalidate_array_4a.a \
959 libgcc-Os-4-200.a libgcc-4-300.a"
960 case ${host} in sh64*-*-*)
961 tmake_file="$tmake_file sh/t-sh64"
962 ;;
963 esac
964 case ${host} in
965 sh*-superh-elf)
966 tmake_file="$tmake_file sh/t-superh"
967 extra_parts="$extra_parts crt1-mmu.o gcrt1-mmu.o gcrt1.o"
968 ;;
969 esac
970 ;;
971 sh-*-linux* | sh[2346lbe]*-*-linux*)
972 tmake_file="${tmake_file} sh/t-sh t-slibgcc-libgcc sh/t-linux t-fdpbit"
973 case ${host} in sh64*-*-linux*)
974 tmake_file="$tmake_file sh/t-sh64"
975 ;;
976 esac
977 md_unwind_header=sh/linux-unwind.h
978 ;;
979 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
980 sh64-*-netbsd* | sh64l*-*-netbsd*)
981 tmake_file="$tmake_file sh/t-sh sh/t-netbsd"
982 case ${host} in
983 sh5*-*-netbsd* | sh64*-netbsd*)
984 tmake_file="$tmake_file sh/t-sh64"
985 ;;
986 esac
987 # NetBSD's C library includes a fast software FP library that
988 # has support for setting/setting the rounding mode, exception
989 # mask, etc. Therefore, we don't want to include software FP
990 # in libgcc.
991 ;;
992 sh-*-rtems*)
993 tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
994 extra_parts="$extra_parts crt1.o crti.o crtn.o crtbeginS.o crtendS.o \
995 libic_invalidate_array_4-100.a \
996 libic_invalidate_array_4-200.a \
997 libic_invalidate_array_4a.a \
998 libgcc-Os-4-200.a libgcc-4-300.a"
999 ;;
1000 sh-wrs-vxworks)
1001 tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
1002 ;;
1003 sparc-*-netbsdelf*)
1004 ;;
1005 sparc64-*-openbsd*)
1006 ;;
1007 sparc-*-elf*)
1008 case ${host} in
1009 *-leon[3-9]*)
1010 ;;
1011 *)
1012 tmake_file="sparc/t-softmul"
1013 ;;
1014 esac
1015 tmake_file="${tmake_file} t-fdpbit t-crtfm"
1016 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1017 ;;
1018 sparc-*-linux*) # SPARC's running GNU/Linux, libc6
1019 tmake_file="${tmake_file} t-crtfm"
1020 if test "${host_address}" = 64; then
1021 tmake_file="$tmake_file sparc/t-linux64"
1022 fi
1023 case ${host} in
1024 *-leon*)
1025 tmake_file="${tmake_file} t-fdpbit"
1026 ;;
1027 *)
1028 tmake_file="${tmake_file} sparc/t-linux"
1029 ;;
1030 esac
1031 case ${host} in
1032 *-leon[3-9]*)
1033 ;;
1034 *)
1035 if test "${host_address}" = 32; then
1036 tmake_file="$tmake_file sparc/t-softmul"
1037 fi
1038 ;;
1039 esac
1040 extra_parts="$extra_parts crtfastmath.o"
1041 md_unwind_header=sparc/linux-unwind.h
1042 ;;
1043 sparc-*-rtems*)
1044 tmake_file="$tmake_file sparc/t-elf sparc/t-softmul t-crtfm t-fdpbit"
1045 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1046 ;;
1047 sparc*-*-solaris2*)
1048 tmake_file="$tmake_file t-crtfm"
1049 extra_parts="$extra_parts crtfastmath.o"
1050 md_unwind_header=sparc/sol2-unwind.h
1051 ;;
1052 sparc64-*-elf*)
1053 tmake_file="${tmake_file} t-crtfm"
1054 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1055 ;;
1056 sparc64-*-rtems*)
1057 tmake_file="$tmake_file t-crtfm"
1058 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
1059 ;;
1060 sparc-wrs-vxworks)
1061 ;;
1062 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
1063 tmake_file="$tmake_file t-crtfm"
1064 extra_parts="$extra_parts crtfastmath.o"
1065 ;;
1066 sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
1067 extra_parts="$extra_parts crtfastmath.o"
1068 tmake_file="${tmake_file} t-crtfm sparc/t-linux"
1069 if test "${host_address}" = 64; then
1070 tmake_file="${tmake_file} sparc/t-linux64"
1071 fi
1072 if test "${host_address}" = 32; then
1073 tmake_file="${tmake_file} sparc/t-softmul"
1074 fi
1075 md_unwind_header=sparc/linux-unwind.h
1076 ;;
1077 sparc64-*-netbsd*)
1078 ;;
1079 spu-*-elf*)
1080 tmake_file="$tmake_file spu/t-elf t-libgcc-pic t-fdpbit"
1081 extra_parts="$extra_parts \
1082 libgcc_cachemgr.a libgcc_cachemgr_nonatomic.a \
1083 libgcc_cache8k.a libgcc_cache16k.a libgcc_cache32k.a \
1084 libgcc_cache64k.a libgcc_cache128k.a"
1085 ;;
1086 tic6x-*-uclinux)
1087 tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp \
1088 c6x/t-elf c6x/t-uclinux t-crtstuff-pic t-libgcc-pic \
1089 t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver t-gnu-prefix"
1090 tm_file="$tm_file c6x/c6x-abi.h"
1091 extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
1092 unwind_header=config/c6x/unwind-c6x.h
1093 ;;
1094 tic6x-*-elf)
1095 tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp t-gnu-prefix c6x/t-elf"
1096 tm_file="$tm_file c6x/c6x-abi.h"
1097 extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
1098 unwind_header=config/c6x/unwind-c6x.h
1099 ;;
1100 tilegx-*-linux*)
1101 tmake_file="${tmake_file} tilegx/t-crtstuff t-softfp-sfdf tilegx/t-softfp t-softfp tilegx/t-tilegx"
1102 md_unwind_header=tilepro/linux-unwind.h
1103 ;;
1104 tilepro-*-linux*)
1105 tmake_file="${tmake_file} tilepro/t-crtstuff t-softfp-sfdf t-softfp tilepro/t-tilepro"
1106 md_unwind_header=tilepro/linux-unwind.h
1107 ;;
1108 v850*-*-*)
1109 tmake_file="v850/t-v850 t-fdpbit"
1110 ;;
1111 vax-*-linux*)
1112 tmake_file="$tmake_file vax/t-linux"
1113 ;;
1114 vax-*-netbsdelf*)
1115 ;;
1116 vax-*-openbsd*)
1117 ;;
1118 xstormy16-*-elf)
1119 tmake_file="stormy16/t-stormy16 t-fdpbit"
1120 ;;
1121 xtensa*-*-elf*)
1122 tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-elf"
1123 extra_parts="$extra_parts crti.o crtn.o"
1124 ;;
1125 xtensa*-*-linux*)
1126 tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-linux"
1127 md_unwind_header=xtensa/linux-unwind.h
1128 ;;
1129 am33_2.0-*-linux*)
1130 # Don't need crtbeginT.o from *-*-linux* default.
1131 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
1132 tmake_file="$tmake_file t-fdpbit"
1133 ;;
1134 m32c-*-elf*|m32c-*-rtems*)
1135 tmake_file="$tmake_file m32c/t-m32c"
1136 ;;
1137 mep*-*-*)
1138 tmake_file="mep/t-mep t-fdpbit"
1139 extra_parts="crtbegin.o crtend.o"
1140 ;;
1141 *)
1142 echo "*** Configuration ${host} not supported" 1>&2
1143 exit 1
1144 ;;
1145 esac
1146
1147 case ${host} in
1148 i[34567]86-*-* | x86_64-*-*)
1149 tmake_file="${tmake_file} i386/t-cpuinfo"
1150 ;;
1151 esac
1152
1153 case ${host} in
1154 i[34567]86-*-linux* | x86_64-*-linux* | \
1155 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
1156 i[34567]86-*-knetbsd*-gnu | \
1157 i[34567]86-*-gnu*)
1158 tmake_file="${tmake_file} t-tls i386/t-linux"
1159 if test "$libgcc_cv_cfi" = "yes"; then
1160 tmake_file="${tmake_file} t-stack i386/t-stack-i386"
1161 fi
1162 ;;
1163 esac
1164
1165 case ${host} in
1166 i[34567]86-*-darwin* | x86_64-*-darwin* | \
1167 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
1168 i[34567]86-*-linux* | x86_64-*-linux* | \
1169 i[34567]86-*-gnu* | \
1170 i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]* | \
1171 i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw* | \
1172 i[34567]86-*-freebsd* | x86_64-*-freebsd*)
1173 tmake_file="${tmake_file} t-softfp-tf"
1174 if test "${host_address}" = 32; then
1175 tmake_file="${tmake_file} i386/${host_address}/t-softfp"
1176 fi
1177 tmake_file="${tmake_file} i386/t-softfp t-softfp"
1178 ;;
1179 esac
1180
1181 case ${host} in
1182 i[34567]86-*-linux* | x86_64-*-linux*)
1183 # Provide backward binary compatibility for 64bit Linux/x86.
1184 if test "${host_address}" = 64; then
1185 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
1186 fi
1187 tm_file="${tm_file} i386/value-unwind.h"
1188 ;;
1189 esac