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