]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/config.host
Handle -fcilkplus in Mac OS X LINK_COMMAND_SPEC
[thirdparty/gcc.git] / libgcc / config.host
CommitLineData
894a47b4 1# libgcc host-specific configuration file.
f1717362 2# Copyright (C) 1997-2016 Free Software Foundation, Inc.
894a47b4 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
6bc9506f 8#Software Foundation; either version 3, or (at your option) any later
894a47b4 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
6bc9506f 17#along with GCC; see the file COPYING3. If not see
18#<http://www.gnu.org/licenses/>.
894a47b4 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.
a6f06169 46# enable_execute_stack The name of a source file implementing
47# __enable_execute_stack.
894a47b4 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.
1e53920f 54# md_unwind_header The name of a header file defining
55# MD_FALLBACK_FRAME_STATE_FOR.
84600db5 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.
894a47b4 59# tmake_file A list of machine-description-specific
2219274c 60# makefile fragments.
022a2799 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.
e59be7e3 66# unwind_header The name of the header file declaring the unwind
67# runtime interface routines.
894a47b4 68
69asm_hidden_op=.hidden
a6f06169 70enable_execute_stack=
894a47b4 71extra_parts=
72tmake_file=
022a2799 73tm_file=
74tm_define=
1e53920f 75md_unwind_header=no-unwind.h
e59be7e3 76unwind_header=unwind-generic.h
894a47b4 77
78# Set default cpu_type so it can be updated in each machine entry.
79cpu_type=`echo ${host} | sed 's/-.*$//'`
80case ${host} in
81m32c*-*-*)
82 cpu_type=m32c
a23b9c51 83 tmake_file=t-fdpbit
894a47b4 84 ;;
1b3d2097 85aarch64*-*-*)
86 cpu_type=aarch64
87 ;;
894a47b4 88alpha*-*-*)
89 cpu_type=alpha
90 ;;
91am33_2.0-*-linux*)
92 cpu_type=mn10300
93 ;;
8eaaaea3 94arc*-*-*)
95 cpu_type=arc
96 ;;
894a47b4 97arm*-*-*)
98 cpu_type=arm
99 ;;
38dd5584 100avr-*-*)
101 cpu_type=avr
102 ;;
894a47b4 103bfin*-*)
104 cpu_type=bfin
105 ;;
b9fdd12b 106cr16-*-*)
107 ;;
b4294f67 108crisv32-*-*)
109 cpu_type=cris
110 ;;
278e2fd1 111fido-*-*)
112 cpu_type=m68k
113 ;;
894a47b4 114frv*) cpu_type=frv
115 ;;
b6616c9c 116ft32*) cpu_type=ft32
117 ;;
be52b6d8 118moxie*) cpu_type=moxie
119 ;;
894a47b4 120i[34567]86-*-*)
121 cpu_type=i386
122 ;;
123x86_64-*-*)
124 cpu_type=i386
125 ;;
126ia64-*-*)
127 ;;
6af9f7ea 128hppa*-*-*)
894a47b4 129 cpu_type=pa
130 ;;
f6fe91e8 131lm32*-*-*)
132 cpu_type=lm32
133 ;;
894a47b4 134m32r*-*-*)
135 cpu_type=m32r
136 ;;
894a47b4 137m68k-*-*)
138 ;;
46222c18 139mep*-*-*)
140 ;;
d34b0d1e 141microblaze*-*-*)
142 cpu_type=microblaze
143 ;;
894a47b4 144mips*-*-*)
9bcbf352 145 # All MIPS targets provide a full set of FP routines.
894a47b4 146 cpu_type=mips
4b366ca9 147 tmake_file="mips/t-mips"
148 if test "${libgcc_cv_mips_hard_float}" = yes; then
149 tmake_file="${tmake_file} t-hardfp-sfdf t-hardfp"
150 else
151 tmake_file="${tmake_file} t-softfp-sfdf"
152 fi
9bcbf352 153 if test "${ac_cv_sizeof_long_double}" = 16; then
154 tmake_file="${tmake_file} mips/t-softfp-tf"
155 fi
156 if test "${host_address}" = 64; then
157 tmake_file="${tmake_file} mips/t-mips64"
158 fi
159 tmake_file="${tmake_file} t-softfp"
894a47b4 160 ;;
eae21ed1 161nds32*-*)
162 cpu_type=nds32
163 ;;
de65406d 164nios2*-*-*)
165 cpu_type=nios2
166 ;;
894a47b4 167powerpc*-*-*)
168 cpu_type=rs6000
169 ;;
170rs6000*-*-*)
171 ;;
894a47b4 172sparc64*-*-*)
173 cpu_type=sparc
174 ;;
175sparc*-*-*)
176 cpu_type=sparc
177 ;;
178spu*-*-*)
179 cpu_type=spu
180 ;;
181s390*-*-*)
182 cpu_type=s390
183 ;;
184# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
185sh[123456789lbe]*-*-*)
186 cpu_type=sh
187 ;;
2da35515 188tilegx*-*-*)
189 cpu_type=tilegx
190 ;;
191tilepro*-*-*)
192 cpu_type=tilepro
193 ;;
707238af 194v850*-*-*)
195 cpu_type=v850
196 ;;
5aa04b01 197tic6x-*-*)
198 cpu_type=c6x
199 ;;
894a47b4 200esac
201
202# Common parts for widely ported systems.
203case ${host} in
204*-*-darwin*)
205 asm_hidden_op=.private_extern
4dc4ff49 206 tmake_file="$tmake_file t-darwin ${cpu_type}/t-darwin t-libgcc-pic t-slibgcc-darwin"
8f8ba4fc 207 extra_parts="crt3.o crttms.o crttme.o"
894a47b4 208 ;;
463553db 209*-*-dragonfly*)
210 tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip"
211 tmake_file="$tmake_file t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver"
212 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
213 ;;
894a47b4 214*-*-freebsd*)
215 # This is the generic ELF configuration of FreeBSD. Later
216 # machine-specific sections may refine and add to this
217 # configuration.
4dc4ff49 218 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"
237490bf 219 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
a997b0d8 220 case ${target_thread_file} in
221 posix)
4dc4ff49 222 tmake_file="${tmake_file} t-freebsd-thread"
a997b0d8 223 # Before 5.0, FreeBSD can't bind shared libraries to -lc
224 # when "optionally" threaded via weak pthread_* checks.
225 case ${host} in
226 *-*-freebsd[34] | *-*-freebsd[34].*)
227 tmake_file="${tmake_file} t-slibgcc-nolc-override"
228 ;;
229 esac
230 ;;
231 esac
894a47b4 232 ;;
e59be7e3 233*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
4dc4ff49 234 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"
ec5f5503 235 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
236 if test x$enable_vtable_verify = xyes; then
237 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
238 fi
894a47b4 239 ;;
237490bf 240*-*-lynxos*)
4dc4ff49 241 tmake_file="$tmake_file t-lynx $cpu_type/t-crtstuff t-crtstuff-pic t-libgcc-pic"
237490bf 242 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
243 ;;
894a47b4 244*-*-netbsd*)
4dc4ff49 245 tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver"
237490bf 246 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
247 # ELF configurations. We will clear extra_parts in the
248 # a.out configurations.
249 case ${host} in
250 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
251 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
252 ;;
253 esac
894a47b4 254 ;;
255*-*-openbsd*)
81ae3d37 256 tmake_file="$tmake_file t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip"
4dc4ff49 257 case ${target_thread_file} in
258 posix)
259 tmake_file="$tmake_file t-openbsd-thread"
260 ;;
261 esac
894a47b4 262 ;;
263*-*-rtems*)
fbb6f195 264 tmake_file="$tmake_file t-rtems"
237490bf 265 extra_parts="crtbegin.o crtend.o"
894a47b4 266 ;;
63abf89e 267*-*-solaris2*)
e59be7e3 268 # Unless linker support and dl_iterate_phdr are present,
269 # unwind-dw2-fde-dip.c automatically falls back to unwind-dw2-fde.c.
80fc7cb7 270 tmake_file="$tmake_file sol2/t-sol2 t-eh-dw2-dip t-crtstuff-pic t-libgcc-pic t-slibgcc t-slibgcc-elf-ver"
63abf89e 271 if test $with_gnu_ld = yes; then
272 tmake_file="$tmake_file t-slibgcc-gld"
273 else
274 tmake_file="$tmake_file t-slibgcc-sld"
275 fi
276 # Add cpu-specific t-sol2 after t-slibgcc-* so it can augment SHLIB_MAPFILES.
277 tmake_file="$tmake_file $cpu_type/t-sol2"
278 extra_parts="gmon.o crtbegin.o crtend.o"
ba24ad38 279 if test "${libgcc_cv_solaris_crts}" = yes; then
280 # Solaris 11.x and 12 provide crt1.o, crti.o, and crtn.o as part of the
281 # base system. crtp.o and crtpg.o implement the compiler-dependent parts.
282 extra_parts="$extra_parts crtp.o crtpg.o"
80fc7cb7 283 # If the Solaris CRTs are present, both ld and gld will have PIE support.
284 extra_parts="$extra_parts crtbeginS.o crtendS.o"
ba24ad38 285 else
286 case ${host} in
287 i?86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*)
288 # Solaris 10+/x86 provides crt1.o, crti.o, crtn.o, and gcrt1.o as
289 # part of the base system.
290 ;;
291 sparc*-*-solaris2.1[0-9]*)
292 # Solaris 10+/SPARC lacks crt1.o and gcrt1.o.
293 extra_parts="$extra_parts crt1.o gcrt1.o"
294 ;;
295 esac
296 fi
08de21a4 297 if test x$enable_vtable_verify = xyes; then
298 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
299 fi
63abf89e 300 ;;
237490bf 301*-*-uclinux*)
302 extra_parts="crtbegin.o crtend.o"
303 ;;
304*-*-*vms*)
305 tmake_file="vms/t-vms"
784576c7 306 extra_parts="crt0.o crtbegin.o crtbeginS.o crtend.o crtendS.o"
237490bf 307 ;;
894a47b4 308*-*-vxworks*)
4dc4ff49 309 tmake_file=t-vxworks
894a47b4 310 ;;
311*-*-elf)
237490bf 312 extra_parts="crtbegin.o crtend.o"
894a47b4 313 ;;
314esac
315
a6f06169 316case ${host} in
463553db 317*-*-darwin* | *-*-dragonfly* | *-*-freebsd* | *-*-netbsd* | *-*-openbsd* | \
318 *-*-solaris2*)
a6f06169 319 enable_execute_stack=enable-execute-stack-mprotect.c
320 ;;
321i[34567]86-*-mingw* | x86_64-*-mingw*)
322 enable_execute_stack=config/i386/enable-execute-stack-mingw32.c
323 ;;
324*)
325 enable_execute_stack=enable-execute-stack-empty.c;
326 ;;
327esac
328
894a47b4 329case ${host} in
05ea12a2 330aarch64*-*-elf | aarch64*-*-rtems*)
1b3d2097 331 extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o"
8f908dc5 332 extra_parts="$extra_parts crtfastmath.o"
1b3d2097 333 tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
8f908dc5 334 tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
1b3d2097 335 ;;
336aarch64*-*-linux*)
8f908dc5 337 extra_parts="$extra_parts crtfastmath.o"
1b3d2097 338 md_unwind_header=aarch64/linux-unwind.h
339 tmake_file="${tmake_file} ${cpu_type}/t-aarch64"
8f908dc5 340 tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm"
1b3d2097 341 ;;
17b3d2a8 342alpha*-*-linux*)
4dc4ff49 343 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee t-crtfm alpha/t-linux"
cdca0ab7 344 extra_parts="$extra_parts crtfastmath.o"
1e53920f 345 md_unwind_header=alpha/linux-unwind.h
894a47b4 346 ;;
894a47b4 347alpha*-*-freebsd*)
4dc4ff49 348 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee t-crtfm"
237490bf 349 extra_parts="$extra_parts crtbeginT.o crtfastmath.o"
894a47b4 350 ;;
351alpha*-*-netbsd*)
4dc4ff49 352 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
894a47b4 353 ;;
354alpha*-*-openbsd*)
4dc4ff49 355 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
894a47b4 356 ;;
894a47b4 357alpha64-dec-*vms*)
4dc4ff49 358 tmake_file="$tmake_file alpha/t-alpha alpha/t-ieee alpha/t-vms t-slibgcc-vms"
237490bf 359 extra_parts="$extra_parts vms-dwarf2.o vms-dwarf2eh.o"
1e53920f 360 md_unwind_header=alpha/vms-unwind.h
894a47b4 361 ;;
362alpha*-dec-*vms*)
4dc4ff49 363 tmake_file="$tmake_file alpha/t-alpha alpha/t-ieee alpha/t-vms t-slibgcc-vms"
237490bf 364 extra_parts="$extra_parts vms-dwarf2.o vms-dwarf2eh.o"
1e53920f 365 md_unwind_header=alpha/vms-unwind.h
894a47b4 366 ;;
8eaaaea3 367arc*-*-elf*)
368 tmake_file="arc/t-arc-newlib arc/t-arc"
369 extra_parts="crti.o crtn.o crtend.o crtbegin.o crtendS.o crtbeginS.o libgmon.a crtg.o crtgend.o"
5caa55b9 370 extra_parts="${extra_parts} crttls.o"
8eaaaea3 371 ;;
372arc*-*-linux-uclibc*)
373 tmake_file="${tmake_file} t-slibgcc-libgcc t-slibgcc-nolc-override arc/t-arc700-uClibc arc/t-arc"
374 extra_parts="crti.o crtn.o crtend.o crtbegin.o crtendS.o crtbeginS.o libgmon.a crtg.o crtgend.o"
5caa55b9 375 extra_parts="${extra_parts} crttls.o"
8eaaaea3 376 ;;
894a47b4 377arm-wrs-vxworks)
f4f176bd 378 tmake_file="$tmake_file arm/t-arm arm/t-elf t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
237490bf 379 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 380 ;;
275d0a7c 381arm*-*-freebsd*) # ARM FreeBSD EABI
382 tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix arm/t-elf"
383 tmake_file="${tmake_file} arm/t-bpabi arm/t-freebsd t-slibgcc-libgcc"
384 tm_file="${tm_file} arm/bpabi-lib.h"
385 unwind_header=config/arm/unwind-arm.h
386 tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
387 ;;
894a47b4 388arm*-*-netbsdelf*)
4dc4ff49 389 tmake_file="$tmake_file arm/t-arm arm/t-netbsd t-slibgcc-gld-nover"
894a47b4 390 ;;
894a47b4 391arm*-*-linux*) # ARM GNU/Linux with ELF
1ddaa252 392 tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix t-crtfm"
6a11e52b 393 tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc"
394 tm_file="$tm_file arm/bpabi-lib.h"
395 unwind_header=config/arm/unwind-arm.h
84600db5 396 tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
1ddaa252 397 extra_parts="$extra_parts crtfastmath.o"
894a47b4 398 ;;
399arm*-*-uclinux*) # ARM ucLinux
1ddaa252 400 tmake_file="${tmake_file} t-fixedpoint-gnu-prefix t-crtfm"
4ef5912a 401 tmake_file="$tmake_file arm/t-arm arm/t-elf t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
6a11e52b 402 tmake_file="${tmake_file} arm/t-bpabi"
403 tm_file="$tm_file arm/bpabi-lib.h"
404 unwind_header=config/arm/unwind-arm.h
237490bf 405 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 406 ;;
598ebe3d 407arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*)
9213d2eb 408 tmake_file="${tmake_file} arm/t-arm arm/t-elf t-fixedpoint-gnu-prefix"
022a2799 409 tm_file="$tm_file arm/bpabi-lib.h"
e59be7e3 410 case ${host} in
598ebe3d 411 arm*-*-eabi* | arm*-*-rtems*)
1ddaa252 412 tmake_file="${tmake_file} arm/t-bpabi t-crtfm"
237490bf 413 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
e59be7e3 414 ;;
415 arm*-*-symbianelf*)
a997b0d8 416 tmake_file="${tmake_file} arm/t-symbian t-slibgcc-nolc-override"
022a2799 417 tm_file="$tm_file arm/symbian-lib.h"
237490bf 418 # Symbian OS provides its own startup code.
e59be7e3 419 ;;
420 esac
84600db5 421 tmake_file="$tmake_file t-softfp-sfdf t-softfp-excl arm/t-softfp t-softfp"
18e98669 422 extra_parts="$extra_parts crtfastmath.o"
e59be7e3 423 unwind_header=config/arm/unwind-arm.h
894a47b4 424 ;;
894a47b4 425avr-*-rtems*)
02c5dcd9 426 tmake_file="$tmake_file avr/t-avr avr/t-rtems t-fpbit"
022a2799 427 tm_file="$tm_file avr/avr-lib.h"
237490bf 428 # Don't use default.
429 extra_parts=
894a47b4 430 ;;
431avr-*-*)
a23b9c51 432 # Make HImode functions for AVR
433 tmake_file="${cpu_type}/t-avr t-fpbit"
fd28e216 434 if test x${with_avrlibc} != xno; then
435 tmake_file="$tmake_file ${cpu_type}/t-avrlibc"
436 fi
022a2799 437 tm_file="$tm_file avr/avr-lib.h"
894a47b4 438 ;;
439bfin*-elf*)
2219274c 440 tmake_file="bfin/t-bfin bfin/t-crtlibid bfin/t-crtstuff t-libgcc-pic t-fdpbit"
237490bf 441 extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o crtlibid.o"
894a47b4 442 ;;
443bfin*-uclinux*)
2219274c 444 tmake_file="bfin/t-bfin bfin/t-crtlibid bfin/t-crtstuff t-libgcc-pic t-fdpbit"
237490bf 445 extra_parts="$extra_parts crtbeginS.o crtendS.o crtlibid.o"
1e53920f 446 md_unwind_header=bfin/linux-unwind.h
894a47b4 447 ;;
bce94ab5 448bfin*-linux-uclibc*)
2219274c 449 tmake_file="$tmake_file bfin/t-bfin bfin/t-crtstuff t-libgcc-pic t-fdpbit bfin/t-linux"
bce94ab5 450 # No need to build crtbeginT.o on uClibc systems. Should probably
451 # be moved to the OS specific section above.
452 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1e53920f 453 md_unwind_header=bfin/linux-unwind.h
bce94ab5 454 ;;
a23b9c51 455bfin*-rtems*)
9213d2eb 456 tmake_file="$tmake_file bfin/t-bfin t-fdpbit"
237490bf 457 extra_parts="$extra_parts crti.o crtn.o"
a23b9c51 458 ;;
894a47b4 459bfin*-*)
9213d2eb 460 tmake_file="$tmake_file bfin/t-bfin t-fdpbit"
237490bf 461 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
894a47b4 462 ;;
b9fdd12b 463cr16-*-elf)
464 tmake_file="${tmake_file} cr16/t-cr16 cr16/t-crtlibid t-fdpbit"
465 extra_parts="$extra_parts crti.o crtn.o crtlibid.o"
466 ;;
237490bf 467crisv32-*-elf)
b4294f67 468 tmake_file="$tmake_file cris/t-cris t-softfp-sfdf t-softfp"
237490bf 469 ;;
237490bf 470cris-*-elf)
b4294f67 471 tmake_file="$tmake_file cris/t-cris t-softfp-sfdf t-softfp cris/t-elfmulti"
237490bf 472 ;;
877d7f12 473cris-*-linux* | crisv32-*-linux*)
b4294f67 474 tmake_file="$tmake_file cris/t-cris t-softfp-sfdf t-softfp cris/t-linux"
894a47b4 475 ;;
d19f5793 476epiphany-*-elf*)
477 tmake_file="epiphany/t-epiphany t-fdpbit epiphany/t-custom-eqsf"
478 extra_parts="$extra_parts crti.o crtint.o crtrunc.o crtm1reg-r43.o crtm1reg-r63.o crtn.o"
479 ;;
894a47b4 480fr30-*-elf)
9213d2eb 481 tmake_file="$tmake_file fr30/t-fr30 t-fdpbit"
237490bf 482 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 483 ;;
484frv-*-elf)
237490bf 485 tmake_file="$tmake_file frv/t-frv t-fdpbit"
005a5ef5 486 tm_file="$tm_file frv/elf-lib.h frv/frv-abi.h"
237490bf 487 # Don't use crtbegin.o, crtend.o.
488 extra_parts="frvbegin.o frvend.o"
894a47b4 489 ;;
490frv-*-*linux*)
9213d2eb 491 tmake_file="$tmake_file frv/t-frv frv/t-linux t-fdpbit"
005a5ef5 492 tm_file="$tm_file frv/elf-lib.h frv/frv-abi.h"
894a47b4 493 ;;
b6616c9c 494ft32-*-elf)
495 tmake_file="ft32/t-ft32 t-softfp-sfdf t-softfp-excl t-softfp"
496 extra_parts="$extra_parts crti.o crti-hw.o crtn.o"
497 ;;
894a47b4 498h8300-*-rtems*)
9213d2eb 499 tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
022a2799 500 tm_file="$tm_file h8300/h8300-lib.h"
237490bf 501 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 502 ;;
503h8300-*-elf*)
9213d2eb 504 tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
022a2799 505 tm_file="$tm_file h8300/h8300-lib.h"
237490bf 506 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 507 ;;
acff2768 508h8300-*-linux*)
509 tmake_file="t-linux h8300/t-linux t-softfp-sfdf t-softfp"
510 tm_file="$tm_file h8300/h8300-lib.h"
511 ;;
6af9f7ea 512hppa*64*-*-linux*)
9213d2eb 513 tmake_file="$tmake_file pa/t-linux pa/t-linux64"
a99f9d91 514 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
894a47b4 515 ;;
6af9f7ea 516hppa*-*-linux*)
9213d2eb 517 tmake_file="$tmake_file pa/t-linux t-slibgcc-libgcc"
a997b0d8 518 # Set the libgcc version number
177cc56c 519 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 520 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
521 else
522 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
523 fi
a99f9d91 524 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
01cb8ad1 525 md_unwind_header=pa/linux-unwind.h
894a47b4 526 ;;
527hppa[12]*-*-hpux10*)
4dc4ff49 528 tmake_file="$tmake_file pa/t-hpux pa/t-hpux10 t-libgcc-pic t-slibgcc"
a997b0d8 529 # Set the libgcc version number
177cc56c 530 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 531 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
532 else
533 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
534 fi
535 tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
1e53920f 536 md_unwind_header=pa/hpux-unwind.h
894a47b4 537 ;;
538hppa*64*-*-hpux11*)
ab4fdb3d 539 tmake_file="$tmake_file pa/t-hpux pa/t-pa64 pa/t-stublib t-libgcc-pic t-slibgcc"
a997b0d8 540 # Set the libgcc version number
177cc56c 541 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 542 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
543 else
544 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
545 fi
546 tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
237490bf 547 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
548 libgcc_stub.a"
1e53920f 549 md_unwind_header=pa/hpux-unwind.h
894a47b4 550 ;;
551hppa[12]*-*-hpux11*)
4dc4ff49 552 tmake_file="$tmake_file pa/t-hpux pa/t-stublib t-libgcc-pic t-slibgcc"
a997b0d8 553 # Set the libgcc version number
177cc56c 554 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 555 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
556 else
557 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
558 fi
559 tmake_file="$tmake_file pa/t-slibgcc-hpux t-slibgcc-hpux"
237490bf 560 extra_parts="libgcc_stub.a"
1e53920f 561 md_unwind_header=pa/hpux-unwind.h
894a47b4 562 ;;
07cf7615 563hppa*-*-openbsd*)
564 tmake_file="$tmake_file pa/t-openbsd"
565 ;;
894a47b4 566i[34567]86-*-darwin*)
2a8549e0 567 tmake_file="$tmake_file i386/t-crtpc t-crtfm"
022a2799 568 tm_file="$tm_file i386/darwin-lib.h"
ba079bc9 569 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
894a47b4 570 ;;
571x86_64-*-darwin*)
2a8549e0 572 tmake_file="$tmake_file i386/t-crtpc t-crtfm"
022a2799 573 tm_file="$tm_file i386/darwin-lib.h"
ba079bc9 574 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
894a47b4 575 ;;
146896ec 576i[34567]86-*-elfiamcu)
577 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"
578 ;;
894a47b4 579i[34567]86-*-elf*)
4dc4ff49 580 tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic"
894a47b4 581 ;;
1e085786 582x86_64-*-elf* | x86_64-*-rtems*)
4dc4ff49 583 tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic"
cc8ebe39 584 ;;
463553db 585i[34567]86-*-dragonfly*)
586 tmake_file="${tmake_file} i386/t-dragonfly i386/t-crtstuff"
587 md_unwind_header=i386/dragonfly-unwind.h
588 ;;
589x86_64-*-dragonfly*)
590 tmake_file="${tmake_file} i386/t-dragonfly i386/t-crtstuff"
591 md_unwind_header=i386/dragonfly-unwind.h
592 ;;
894a47b4 593i[34567]86-*-freebsd*)
237490bf 594 tmake_file="${tmake_file} i386/t-freebsd i386/t-crtstuff"
328976ed 595 md_unwind_header=i386/freebsd-unwind.h
894a47b4 596 ;;
597x86_64-*-freebsd*)
237490bf 598 tmake_file="${tmake_file} i386/t-freebsd i386/t-crtstuff"
328976ed 599 md_unwind_header=i386/freebsd-unwind.h
894a47b4 600 ;;
601i[34567]86-*-netbsdelf*)
602 ;;
894a47b4 603x86_64-*-netbsd*)
237490bf 604 tmake_file="${tmake_file} i386/t-crtstuff"
894a47b4 605 ;;
606i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
607 ;;
608i[34567]86-*-openbsd*)
609 ;;
51796b3a 610x86_64-*-openbsd*)
611 ;;
fe27820f 612i[34567]86-*-linux*)
6d057ce8 613 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
2a8549e0 614 tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
58ca7445 615 tm_file="${tm_file} i386/elf-lib.h"
1e53920f 616 md_unwind_header=i386/linux-unwind.h
894a47b4 617 ;;
fe27820f 618i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
619 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
2a8549e0 620 tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
58ca7445 621 tm_file="${tm_file} i386/elf-lib.h"
fe27820f 622 ;;
623x86_64-*-linux*)
6d057ce8 624 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
2a8549e0 625 tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
58ca7445 626 tm_file="${tm_file} i386/elf-lib.h"
1e53920f 627 md_unwind_header=i386/linux-unwind.h
894a47b4 628 ;;
fe27820f 629x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
630 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
2a8549e0 631 tmake_file="${tmake_file} i386/t-crtpc t-crtfm i386/t-crtstuff t-dfprules"
58ca7445 632 tm_file="${tm_file} i386/elf-lib.h"
fe27820f 633 ;;
894a47b4 634i[34567]86-pc-msdosdjgpp*)
635 ;;
636i[34567]86-*-lynxos*)
637 ;;
894a47b4 638i[34567]86-*-nto-qnx*)
4dc4ff49 639 tmake_file="$tmake_file i386/t-nto t-libgcc-pic"
237490bf 640 extra_parts=crtbegin.o
894a47b4 641 ;;
642i[34567]86-*-rtems*)
8a3edb33 643 tmake_file="$tmake_file i386/t-crtstuff t-softfp-sfdf t-softfp"
237490bf 644 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 645 ;;
14f27bc6 646i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
2a8549e0 647 tmake_file="$tmake_file i386/t-crtpc t-crtfm"
ba079bc9 648 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
43cbcd84 649 tm_file="${tm_file} i386/elf-lib.h"
1e53920f 650 md_unwind_header=i386/sol2-unwind.h
894a47b4 651 ;;
894a47b4 652i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
653 ;;
1e53920f 654i[34567]86-*-cygwin*)
1db4f54b 655 extra_parts="crtbegin.o crtbeginS.o crtend.o crtfastmath.o"
5be42fa9 656 if test x$enable_vtable_verify = xyes; then
657 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
658 fi
a997b0d8 659 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
177cc56c 660 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 661 tmake_eh_file="i386/t-sjlj-eh"
662 else
663 tmake_eh_file="i386/t-dw2-eh"
664 fi
665 # Shared libgcc DLL install dir depends on cross/native build.
666 if test x${build} = x${host} ; then
667 tmake_dlldir_file="i386/t-dlldir"
668 else
669 tmake_dlldir_file="i386/t-dlldir-x"
670 fi
2a8549e0 671 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"
8f433c51 672 ;;
45d13ef4 673x86_64-*-cygwin*)
1db4f54b 674 extra_parts="crtbegin.o crtbeginS.o crtend.o crtfastmath.o"
5be42fa9 675 if test x$enable_vtable_verify = xyes; then
676 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
677 fi
45d13ef4 678 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
177cc56c 679 if test x$ac_cv_sjlj_exceptions = xyes; then
45d13ef4 680 tmake_eh_file="i386/t-sjlj-eh"
681 else
682 tmake_eh_file="i386/t-seh-eh"
683 fi
684 # Shared libgcc DLL install dir depends on cross/native build.
685 if test x${build} = x${host} ; then
686 tmake_dlldir_file="i386/t-dlldir"
687 else
688 tmake_dlldir_file="i386/t-dlldir-x"
689 fi
690 # FIXME - dj - t-chkstk used to be in here, need a 64-bit version of that
2a8549e0 691 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"
45d13ef4 692 ;;
1e53920f 693i[34567]86-*-mingw*)
694 extra_parts="crtbegin.o crtend.o crtfastmath.o"
5be42fa9 695 if test x$enable_vtable_verify = xyes; then
696 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
697 fi
4dc4ff49 698 case ${target_thread_file} in
699 win32)
700 tmake_file="$tmake_file i386/t-gthr-win32"
701 ;;
2d00fffd 702 posix)
703 tmake_file="i386/t-mingw-pthread $tmake_file"
704 ;;
4dc4ff49 705 esac
a997b0d8 706 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
177cc56c 707 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 708 tmake_eh_file="i386/t-sjlj-eh"
709 else
710 tmake_eh_file="i386/t-dw2-eh"
7ed6dbef 711 md_unwind_header=i386/w32-unwind.h
a997b0d8 712 fi
713 # Shared libgcc DLL install dir depends on cross/native build.
714 if test x${build} = x${host} ; then
715 tmake_dlldir_file="i386/t-dlldir"
716 else
717 tmake_dlldir_file="i386/t-dlldir-x"
718 fi
2a8549e0 719 tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-cygming i386/t-mingw32 t-crtfm i386/t-chkstk t-dfprules"
1e53920f 720 ;;
8f433c51 721x86_64-*-mingw*)
4dc4ff49 722 case ${target_thread_file} in
723 win32)
724 tmake_file="$tmake_file i386/t-gthr-win32"
725 ;;
2d00fffd 726 posix)
727 tmake_file="i386/t-mingw-pthread $tmake_file"
728 ;;
4dc4ff49 729 esac
a997b0d8 730 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
177cc56c 731 if test x$ac_cv_sjlj_exceptions = xyes; then
a997b0d8 732 tmake_eh_file="i386/t-sjlj-eh"
733 else
8ad0b530 734 tmake_eh_file="i386/t-seh-eh"
a997b0d8 735 fi
736 # Shared libgcc DLL install dir depends on cross/native build.
737 if test x${build} = x${host} ; then
738 tmake_dlldir_file="i386/t-dlldir"
739 else
740 tmake_dlldir_file="i386/t-dlldir-x"
741 fi
2a8549e0 742 tmake_file="${tmake_file} ${tmake_eh_file} ${tmake_dlldir_file} i386/t-slibgcc-cygming i386/t-cygming i386/t-mingw32 t-dfprules t-crtfm i386/t-chkstk"
0624d0c7 743 extra_parts="$extra_parts crtbegin.o crtend.o crtfastmath.o"
5be42fa9 744 if test x$enable_vtable_verify = xyes; then
745 extra_parts="$extra_parts vtv_start.o vtv_end.o vtv_start_preinit.o vtv_end_preinit.o"
746 fi
894a47b4 747 ;;
af8e12d0 748i[34567]86-*-interix[3-9]*)
4dc4ff49 749 tmake_file="$tmake_file i386/t-interix i386/t-chkstk"
894a47b4 750 ;;
894a47b4 751ia64*-*-elf*)
237490bf 752 extra_parts="$extra_parts crtbeginS.o crtendS.o crtfastmath.o"
2ff958e6 753 tmake_file="ia64/t-ia64 ia64/t-ia64-elf ia64/t-eh-ia64 t-crtfm"
894a47b4 754 ;;
755ia64*-*-freebsd*)
237490bf 756 extra_parts="$extra_parts crtfastmath.o"
2ff958e6 757 tmake_file="$tmake_file ia64/t-ia64 ia64/t-ia64-elf ia64/t-eh-ia64 t-crtfm"
894a47b4 758 ;;
759ia64*-*-linux*)
237490bf 760 # Don't use crtbeginT.o from *-*-linux* default.
894a47b4 761 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
2ff958e6 762 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"
e59be7e3 763 if test x$with_system_libunwind != xyes ; then
a997b0d8 764 tmake_file="${tmake_file} t-libunwind-elf ia64/t-linux-libunwind"
e59be7e3 765 fi
1e53920f 766 md_unwind_header=ia64/linux-unwind.h
894a47b4 767 ;;
768ia64*-*-hpux*)
2ff958e6 769 tmake_file="ia64/t-ia64 ia64/t-ia64-elf ia64/t-hpux t-slibgcc ia64/t-slibgcc-hpux t-slibgcc-hpux"
894a47b4 770 ;;
9b9a2528 771ia64-hp-*vms*)
9213d2eb 772 tmake_file="$tmake_file ia64/t-ia64 ia64/t-eh-ia64 ia64/t-vms t-slibgcc-vms"
237490bf 773 extra_parts="$extra_parts crtinitS.o"
1e53920f 774 md_unwind_header=ia64/vms-unwind.h
9b9a2528 775 ;;
894a47b4 776iq2000*-*-elf*)
08417926 777 tmake_file="iq2000/t-iq2000 t-fdpbit"
237490bf 778 # Don't use default.
779 extra_parts=
894a47b4 780 ;;
fbb6f195 781lm32-*-elf*)
237490bf 782 extra_parts="$extra_parts crti.o crtn.o"
84600db5 783 tmake_file="lm32/t-lm32 lm32/t-elf t-softfp-sfdf t-softfp"
f6fe91e8 784 ;;
fbb6f195 785lm32-*-rtems*)
786 tmake_file="$tmake_file lm32/t-lm32 lm32/t-elf t-softfp-sfdf t-softfp"
787 extra_parts="$extra_parts crti.o crtn.o"
788 ;;
f6fe91e8 789lm32-*-uclinux*)
237490bf 790 extra_parts="$extra_parts crtbegin.o crtendS.o crtbeginT.o"
4dc4ff49 791 tmake_file="lm32/t-lm32 lm32/t-uclinux t-libgcc-pic t-softfp-sfdf t-softfp"
f6fe91e8 792 ;;
237490bf 793m32r-*-elf*)
a23b9c51 794 tmake_file=t-fdpbit
894a47b4 795 ;;
237490bf 796m32r-*-rtems*)
fbb6f195 797 tmake_file="$tmake_file m32r/t-m32r t-fdpbit"
0cd8c088 798 extra_parts="$extra_parts crtinit.o crtfini.o"
237490bf 799 ;;
894a47b4 800m32rle-*-elf*)
a23b9c51 801 tmake_file=t-fdpbit
894a47b4 802 ;;
803m32r-*-linux*)
237490bf 804 tmake_file="$tmake_file m32r/t-linux t-fdpbit"
894a47b4 805 ;;
806m32rle-*-linux*)
237490bf 807 tmake_file="$tmake_file m32r/t-linux t-fdpbit"
894a47b4 808 ;;
9213d2eb 809m68k-*-elf* | fido-*-elf)
810 tmake_file="$tmake_file m68k/t-floatlib"
894a47b4 811 ;;
6af9f7ea 812m68k*-*-netbsdelf*)
894a47b4 813 ;;
814m68k*-*-openbsd*)
815 ;;
5bb27b7c 816m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux with uClibc
817 tmake_file="$tmake_file m68k/t-floatlib m68k/t-linux"
1e53920f 818 md_unwind_header=m68k/linux-unwind.h
894a47b4 819 ;;
1e53920f 820m68k-*-linux*) # Motorola m68k's running GNU/Linux
894a47b4 821 # with ELF format using glibc 2
822 # aka the GNU/Linux C library 6.
5bb27b7c 823 tmake_file="$tmake_file m68k/t-floatlib m68k/t-linux"
177cc56c 824 # If not configured with setjmp/longjmp exceptions, bump the
a997b0d8 825 # libgcc version number.
177cc56c 826 if test x$ac_cv_sjlj_exceptions != xyes; then
a997b0d8 827 tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
828 fi
1e53920f 829 md_unwind_header=m68k/linux-unwind.h
894a47b4 830 ;;
831m68k-*-rtems*)
9213d2eb 832 tmake_file="$tmake_file m68k/t-floatlib"
237490bf 833 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 834 ;;
835mcore-*-elf)
9213d2eb 836 tmake_file="mcore/t-mcore t-fdpbit"
237490bf 837 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 838 ;;
a997b0d8 839microblaze*-linux*)
c48df545 840 tmake_file="${tmake_file} microblaze/t-microblaze t-fdpbit t-slibgcc-libgcc"
a997b0d8 841 ;;
98f2ac05 842microblaze*-*-elf)
843 tmake_file="${tmake_file} microblaze/t-microblaze t-fdpbit"
844 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o crti.o crtn.o"
d34b0d1e 845 ;;
d742e92d 846microblaze*-*-rtems*)
847 tmake_file="${tmake_file} microblaze/t-microblaze t-fdpbit"
848 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o crti.o crtn.o"
849 ;;
894a47b4 850mips*-*-netbsd*) # NetBSD/mips, either endian.
851 ;;
894a47b4 852mips*-*-linux*) # Linux MIPS, either endian.
283681bb 853 extra_parts="$extra_parts crtfastmath.o"
60b34f30 854 tmake_file="${tmake_file} t-crtfm"
60b34f30 855 case ${host} in
272552a3 856 mips64r5900* | mipsr5900*)
857 # The MIPS16 support code uses floating point
858 # instructions that are not supported on r5900.
859 ;;
860 *)
861 tmake_file="${tmake_file} mips/t-mips16 t-slibgcc-libgcc"
862 ;;
60b34f30 863 esac
1e53920f 864 md_unwind_header=mips/linux-unwind.h
894a47b4 865 ;;
a23b9c51 866mips*-sde-elf*)
20dbbfaf 867 tmake_file="$tmake_file mips/t-crtstuff mips/t-mips16"
a23b9c51 868 case "${with_newlib}" in
869 yes)
870 # newlib / libgloss.
871 ;;
872 *)
873 # MIPS toolkit libraries.
237490bf 874 tmake_file="$tmake_file mips/t-sdemtk"
a23b9c51 875 ;;
876 esac
237490bf 877 extra_parts="$extra_parts crti.o crtn.o"
a23b9c51 878 ;;
21889c08 879mipsisa32-*-elf* | mipsisa32el-*-elf* | \
880mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
78645e70 881mipsisa32r6-*-elf* | mipsisa32r6el-*-elf* | \
21889c08 882mipsisa64-*-elf* | mipsisa64el-*-elf* | \
78645e70 883mipsisa64r2-*-elf* | mipsisa64r2el-*-elf* | \
884mipsisa64r6-*-elf* | mipsisa64r6el-*-elf*)
4dc4ff49 885 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
237490bf 886 extra_parts="$extra_parts crti.o crtn.o"
77a32a8e 887 ;;
894a47b4 888mipsisa64sr71k-*-elf*)
20dbbfaf 889 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff t-fdpbit"
237490bf 890 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 891 ;;
892mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
4dc4ff49 893 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
237490bf 894 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 895 ;;
896mips-*-elf* | mipsel-*-elf*)
4dc4ff49 897 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
237490bf 898 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 899 ;;
60b34f30 900mipsr5900-*-elf* | mipsr5900el-*-elf*)
901 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff"
902 extra_parts="$extra_parts crti.o crtn.o"
903 ;;
894a47b4 904mips64-*-elf* | mips64el-*-elf*)
4dc4ff49 905 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
237490bf 906 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 907 ;;
60b34f30 908mips64r5900-*-elf* | mips64r5900el-*-elf*)
909 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff"
910 extra_parts="$extra_parts crti.o crtn.o"
911 ;;
894a47b4 912mips64vr-*-elf* | mips64vrel-*-elf*)
4dc4ff49 913 tmake_file="$tmake_file mips/t-elf mips/t-vr mips/t-crtstuff"
237490bf 914 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 915 ;;
916mips64orion-*-elf* | mips64orionel-*-elf*)
4dc4ff49 917 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
237490bf 918 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 919 ;;
920mips*-*-rtems*)
4dc4ff49 921 tmake_file="$tmake_file mips/t-elf mips/t-crtstuff mips/t-mips16"
237490bf 922 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 923 ;;
924mips-wrs-vxworks)
925 ;;
894a47b4 926mipstx39-*-elf* | mipstx39el-*-elf*)
237490bf 927 tmake_file="$tmake_file mips/t-crtstuff mips/t-mips16"
894a47b4 928 ;;
929mmix-knuth-mmixware)
8525326e 930 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
931 tmake_file="${tmake_file} ${cpu_type}/t-${cpu_type}"
894a47b4 932 ;;
933mn10300-*-*)
a23b9c51 934 tmake_file=t-fdpbit
894a47b4 935 ;;
e83cd474 936moxie-*-elf | moxie-*-moxiebox* | moxie-*-uclinux*)
84600db5 937 tmake_file="moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
e83cd474 938 extra_parts="$extra_parts crti.o crtn.o crtbegin.o crtend.o"
237490bf 939 ;;
940moxie-*-rtems*)
fbb6f195 941 tmake_file="$tmake_file moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
237490bf 942 # Don't use default.
943 extra_parts=
be52b6d8 944 ;;
e4a25868 945msp430*-*-elf)
946 tmake_file="$tm_file t-crtstuff t-fdpbit msp430/t-msp430"
7ed86ba5 947 extra_parts="$extra_parts libmul_none.a libmul_16.a libmul_32.a libmul_f5.a"
e4a25868 948 ;;
eae21ed1 949nds32*-elf*)
950 # Basic makefile fragment and extra_parts for crt stuff.
951 # We also append c-isr library implementation.
952 tmake_file="${tmake_file} nds32/t-nds32 nds32/t-nds32-isr"
953 extra_parts="crtbegin1.o crtend1.o libnds32_isr.a"
954 # Append library definition makefile fragment according to --with-nds32-lib=X setting.
955 case "${with_nds32_lib}" in
956 "" | newlib)
957 # Append library definition makefile fragment t-nds32-newlib.
958 # Append 'soft-fp' software floating point make rule fragment provided by gcc.
959 tmake_file="${tmake_file} nds32/t-nds32-newlib t-softfp-sfdf t-softfp"
960 ;;
961 mculib)
962 # Append library definition makefile fragment t-nds32-mculib.
963 # The software floating point library is included in mculib.
964 tmake_file="${tmake_file} nds32/t-nds32-mculib"
965 ;;
966 *)
967 echo "Cannot accept --with-nds32-lib=$with_nds32_lib, available values are: newlib mculib" 1>&2
968 exit 1
969 ;;
970 esac
971 ;;
de65406d 972nios2-*-linux*)
973 tmake_file="$tmake_file nios2/t-nios2 nios2/t-linux t-libgcc-pic t-slibgcc-libgcc"
de65406d 974 md_unwind_header=nios2/linux-unwind.h
975 ;;
976nios2-*-*)
977 tmake_file="$tmake_file nios2/t-nios2 t-softfp-sfdf t-softfp-excl t-softfp"
978 extra_parts="$extra_parts crti.o crtn.o"
979 ;;
894a47b4 980pdp11-*-*)
4dc4ff49 981 tmake_file="pdp11/t-pdp11 t-fdpbit"
894a47b4 982 ;;
894a47b4 983powerpc-*-darwin*)
1e53920f 984 case ${host} in
985 *-*-darwin9* | *-*-darwin[12][0-9]*)
986 # libSystem contains unwind information for signal frames since
987 # Darwin 9.
988 ;;
989 *)
990 md_unwind_header=rs6000/darwin-unwind.h
991 ;;
992 esac
84600db5 993 tmake_file="$tmake_file rs6000/t-ibm-ldouble"
1a4a11f3 994 extra_parts="$extra_parts crt2.o"
894a47b4 995 ;;
996powerpc64-*-darwin*)
4dc4ff49 997 tmake_file="$tmake_file rs6000/t-darwin64 rs6000/t-ibm-ldouble"
1a4a11f3 998 extra_parts="$extra_parts crt2.o"
894a47b4 999 ;;
bdd1ee48 1000powerpc*-*-freebsd*)
1001 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff rs6000/t-freebsd t-softfp-sfdf t-softfp-excl t-softfp"
237490bf 1002 extra_parts="$extra_parts crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
bdd1ee48 1003 case ${host} in
1004 powerpc64*)
1005 tmake_file="${tmake_file} rs6000/t-freebsd64"
1006 md_unwind_header=rs6000/freebsd-unwind.h
1007 ;;
1008 esac
894a47b4 1009 ;;
1010powerpc-*-netbsd*)
08417926 1011 tmake_file="$tmake_file rs6000/t-netbsd rs6000/t-crtstuff"
894a47b4 1012 ;;
894a47b4 1013powerpc-*-eabispe*)
16348e18 1014 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1015 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1016 ;;
1017powerpc-*-eabisimaltivec*)
738c50b8 1018 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1019 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1020 ;;
1021powerpc-*-eabisim*)
738c50b8 1022 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1023 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1024 ;;
1025powerpc-*-elf*)
47ab8c10 1026 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1027 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1028 ;;
1029powerpc-*-eabialtivec*)
738c50b8 1030 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1031 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
a23b9c51 1032 ;;
1033powerpc-xilinx-eabi*)
738c50b8 1034 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1035 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1036 ;;
1037powerpc-*-eabi*)
738c50b8 1038 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1039 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1040 ;;
1041powerpc-*-rtems*)
a2397d15 1042 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1043 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1044 ;;
d80dc920 1045powerpc*-*-linux*)
e707b8cc 1046 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"
ec3f28c9 1047 tmake_file="${tmake_file} t-stack rs6000/t-stack-rs6000"
fd1eaa27 1048 case $ppc_fp_type in
1049 64)
1050 ;;
1051 hard)
1052 tmake_file="${tmake_file} t-hardfp-sfdf t-hardfp"
1053 ;;
1054 soft)
0e36a0d7 1055 tmake_file="${tmake_file} t-softfp-sfdf ${ppc_fp_compat} t-softfp"
fd1eaa27 1056 ;;
d9b5cf5c 1057 e500v1)
0e36a0d7 1058 tmake_file="${tmake_file} rs6000/t-e500v1-fp ${ppc_fp_compat} t-softfp t-hardfp"
d9b5cf5c 1059 ;;
1060 e500v2)
0e36a0d7 1061 tmake_file="${tmake_file} t-hardfp-sfdf rs6000/t-e500v2-fp ${ppc_fp_compat} t-softfp t-hardfp"
fd1eaa27 1062 ;;
1063 *)
1064 echo "Unknown ppc_fp_type $ppc_fp_type" 1>&2
1065 exit 1
1066 ;;
1067 esac
d99eec2c 1068
1069 if test $libgcc_cv_powerpc_float128 = yes; then
1070 tmake_file="${tmake_file} rs6000/t-float128"
1071 fi
1072
1073 if test $libgcc_cv_powerpc_float128_hw = yes; then
1074 tmake_file="${tmake_file} rs6000/t-float128-hw"
1075 fi
1076
237490bf 1077 extra_parts="$extra_parts ecrti.o ecrtn.o ncrti.o ncrtn.o"
1e53920f 1078 md_unwind_header=rs6000/linux-unwind.h
894a47b4 1079 ;;
6c352a95 1080powerpc-wrs-vxworks|powerpc-wrs-vxworksae|powerpc-wrs-vxworksmils)
47ab8c10 1081 tmake_file="$tmake_file rs6000/t-ppccomm rs6000/t-savresfgpr t-fdpbit"
894a47b4 1082 ;;
894a47b4 1083powerpc-*-lynxos*)
08417926 1084 tmake_file="$tmake_file rs6000/t-lynx t-fdpbit"
894a47b4 1085 ;;
894a47b4 1086powerpcle-*-elf*)
738c50b8 1087 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1088 extra_parts="$extra_parts crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1089 ;;
1090powerpcle-*-eabisim*)
738c50b8 1091 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1092 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1093 ;;
1094powerpcle-*-eabi*)
738c50b8 1095 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-crtstuff t-crtstuff-pic t-fdpbit"
237490bf 1096 extra_parts="$extra_parts crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o ecrti.o ecrtn.o ncrti.o ncrtn.o"
894a47b4 1097 ;;
894a47b4 1098rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
e59be7e3 1099 md_unwind_header=rs6000/aix-unwind.h
c1420b84 1100 tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
894a47b4 1101 ;;
1102rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
e59be7e3 1103 md_unwind_header=rs6000/aix-unwind.h
c1420b84 1104 tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble"
894a47b4 1105 ;;
1106rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
e59be7e3 1107 md_unwind_header=rs6000/aix-unwind.h
a8af2dd5 1108 tmake_file="t-fdpbit rs6000/t-ppc64-fp rs6000/t-slibgcc-aix rs6000/t-ibm-ldouble rs6000/t-aix-cxa"
552a60d3 1109 extra_parts="crtcxa.o crtcxa_s.o crtdbase.o"
894a47b4 1110 ;;
78e515f7 1111rl78-*-elf)
1112 tmake_file="$tm_file t-fdpbit rl78/t-rl78"
1113 ;;
24833e1a 1114rx-*-elf)
a23b9c51 1115 tmake_file="rx/t-rx t-fdpbit"
022a2799 1116 tm_file="$tm_file rx/rx-abi.h rx/rx-lib.h"
24833e1a 1117 ;;
894a47b4 1118s390-*-linux*)
c6d481f7 1119 tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi t-stack s390/t-stack-s390"
1e53920f 1120 md_unwind_header=s390/linux-unwind.h
894a47b4 1121 ;;
1122s390x-*-linux*)
c6d481f7 1123 tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux t-stack s390/t-stack-s390"
368b5b2c 1124 if test "${host_address}" = 32; then
1125 tmake_file="${tmake_file} s390/32/t-floattodi"
1126 fi
1e53920f 1127 md_unwind_header=s390/linux-unwind.h
894a47b4 1128 ;;
1129s390x-ibm-tpf*)
4dc4ff49 1130 tmake_file="${tmake_file} s390/t-crtstuff t-libgcc-pic t-eh-dw2-dip"
237490bf 1131 extra_parts="crtbeginS.o crtendS.o"
f9cccfac 1132 md_unwind_header=s390/tpf-unwind.h
894a47b4 1133 ;;
237490bf 1134sh-*-elf* | sh[12346l]*-*-elf*)
1135 tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
1136 extra_parts="$extra_parts crt1.o crti.o crtn.o crtbeginS.o crtendS.o \
1137 libic_invalidate_array_4-100.a \
1138 libic_invalidate_array_4-200.a \
1139 libic_invalidate_array_4a.a \
1140 libgcc-Os-4-200.a libgcc-4-300.a"
9213d2eb 1141 case ${host} in sh64*-*-*)
1142 tmake_file="$tmake_file sh/t-sh64"
1143 ;;
1144 esac
97f1a704 1145 case ${host} in
237490bf 1146 sh*-superh-elf)
1147 tmake_file="$tmake_file sh/t-superh"
1148 extra_parts="$extra_parts crt1-mmu.o gcrt1-mmu.o gcrt1.o"
1149 ;;
1150 esac
1151 ;;
1152sh-*-linux* | sh[2346lbe]*-*-linux*)
9213d2eb 1153 tmake_file="${tmake_file} sh/t-sh t-slibgcc-libgcc sh/t-linux t-fdpbit"
1154 case ${host} in sh64*-*-linux*)
1155 tmake_file="$tmake_file sh/t-sh64"
1156 ;;
1157 esac
237490bf 1158 md_unwind_header=sh/linux-unwind.h
1159 ;;
1160sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
1161 sh64-*-netbsd* | sh64l*-*-netbsd*)
9213d2eb 1162 tmake_file="$tmake_file sh/t-sh sh/t-netbsd"
1163 case ${host} in
1164 sh5*-*-netbsd* | sh64*-netbsd*)
1165 tmake_file="$tmake_file sh/t-sh64"
1166 ;;
1167 esac
237490bf 1168 # NetBSD's C library includes a fast software FP library that
1169 # has support for setting/setting the rounding mode, exception
1170 # mask, etc. Therefore, we don't want to include software FP
1171 # in libgcc.
894a47b4 1172 ;;
894a47b4 1173sh-*-rtems*)
9213d2eb 1174 tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
237490bf 1175 extra_parts="$extra_parts crt1.o crti.o crtn.o crtbeginS.o crtendS.o \
57380e33 1176 libic_invalidate_array_4-100.a \
1177 libic_invalidate_array_4-200.a \
1178 libic_invalidate_array_4a.a \
1179 libgcc-Os-4-200.a libgcc-4-300.a"
894a47b4 1180 ;;
1181sh-wrs-vxworks)
9213d2eb 1182 tmake_file="$tmake_file sh/t-sh t-crtstuff-pic t-fdpbit"
894a47b4 1183 ;;
894a47b4 1184sparc-*-netbsdelf*)
1185 ;;
1186sparc64-*-openbsd*)
1187 ;;
1188sparc-*-elf*)
63abf89e 1189 case ${host} in
1190 *-leon[3-9]*)
1191 ;;
1192 *)
1193 tmake_file="sparc/t-softmul"
1194 ;;
1195 esac
237490bf 1196 tmake_file="${tmake_file} t-fdpbit t-crtfm"
1197 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
894a47b4 1198 ;;
1199sparc-*-linux*) # SPARC's running GNU/Linux, libc6
95de80bc 1200 tmake_file="${tmake_file} t-crtfm"
1201 if test "${host_address}" = 64; then
1202 tmake_file="$tmake_file sparc/t-linux64"
1203 fi
a23b9c51 1204 case ${host} in
1205 *-leon*)
a997b0d8 1206 tmake_file="${tmake_file} t-fdpbit"
1207 ;;
1208 *)
1209 tmake_file="${tmake_file} sparc/t-linux"
a23b9c51 1210 ;;
1211 esac
9213d2eb 1212 case ${host} in
1213 *-leon[3-9]*)
1214 ;;
1215 *)
95de80bc 1216 if test "${host_address}" = 32; then
1217 tmake_file="$tmake_file sparc/t-softmul"
1218 fi
9213d2eb 1219 ;;
1220 esac
894a47b4 1221 extra_parts="$extra_parts crtfastmath.o"
f9cccfac 1222 md_unwind_header=sparc/linux-unwind.h
894a47b4 1223 ;;
a23b9c51 1224sparc-*-rtems*)
fbb6f195 1225 tmake_file="$tmake_file sparc/t-elf sparc/t-softmul t-crtfm t-fdpbit"
237490bf 1226 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
894a47b4 1227 ;;
63abf89e 1228sparc*-*-solaris2*)
1229 tmake_file="$tmake_file t-crtfm"
1230 extra_parts="$extra_parts crtfastmath.o"
1e53920f 1231 md_unwind_header=sparc/sol2-unwind.h
894a47b4 1232 ;;
894a47b4 1233sparc64-*-elf*)
237490bf 1234 tmake_file="${tmake_file} t-crtfm"
1235 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
894a47b4 1236 ;;
a23b9c51 1237sparc64-*-rtems*)
00b706f9 1238 tmake_file="$tmake_file t-crtfm"
237490bf 1239 extra_parts="$extra_parts crti.o crtn.o crtfastmath.o"
a23b9c51 1240 ;;
723e1902 1241sparc-wrs-vxworks)
1242 ;;
894a47b4 1243sparc64-*-freebsd*|ultrasparc-*-freebsd*)
1125ba83 1244 tmake_file="$tmake_file t-crtfm"
237490bf 1245 extra_parts="$extra_parts crtfastmath.o"
894a47b4 1246 ;;
1247sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
1248 extra_parts="$extra_parts crtfastmath.o"
95de80bc 1249 tmake_file="${tmake_file} t-crtfm sparc/t-linux"
1250 if test "${host_address}" = 64; then
1251 tmake_file="${tmake_file} sparc/t-linux64"
1252 fi
1253 if test "${host_address}" = 32; then
1254 tmake_file="${tmake_file} sparc/t-softmul"
1255 fi
1e53920f 1256 md_unwind_header=sparc/linux-unwind.h
894a47b4 1257 ;;
1258sparc64-*-netbsd*)
1259 ;;
1260spu-*-elf*)
4dc4ff49 1261 tmake_file="$tmake_file spu/t-elf t-libgcc-pic t-fdpbit"
237490bf 1262 extra_parts="$extra_parts \
1263 libgcc_cachemgr.a libgcc_cachemgr_nonatomic.a \
1264 libgcc_cache8k.a libgcc_cache16k.a libgcc_cache32k.a \
1265 libgcc_cache64k.a libgcc_cache128k.a"
894a47b4 1266 ;;
a997b0d8 1267tic6x-*-uclinux)
adce431d 1268 tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp \
1269 c6x/t-elf c6x/t-uclinux t-crtstuff-pic t-libgcc-pic \
1270 t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver t-gnu-prefix"
022a2799 1271 tm_file="$tm_file c6x/c6x-abi.h"
adce431d 1272 extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
a997b0d8 1273 unwind_header=config/c6x/unwind-c6x.h
1274 ;;
237490bf 1275tic6x-*-elf)
1276 tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp t-gnu-prefix c6x/t-elf"
022a2799 1277 tm_file="$tm_file c6x/c6x-abi.h"
237490bf 1278 extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
7e5fc0c4 1279 unwind_header=config/c6x/unwind-c6x.h
5aa04b01 1280 ;;
2da35515 1281tilegx*-*-linux*)
d58f7073 1282 if test "${host_address}" = 64; then
1283 tmake_file="${tmake_file} tilegx/t-softfp"
1284 fi
1285 tmake_file="${tmake_file} tilegx/t-crtstuff t-softfp-sfdf t-softfp tilegx/t-tilegx"
7ce78e23 1286 md_unwind_header=tilepro/linux-unwind.h
1287 ;;
2da35515 1288tilepro*-*-linux*)
7ce78e23 1289 tmake_file="${tmake_file} tilepro/t-crtstuff t-softfp-sfdf t-softfp tilepro/t-tilepro"
1290 md_unwind_header=tilepro/linux-unwind.h
1291 ;;
707238af 1292v850*-*-*)
0cdefccf 1293 tmake_file="${tmake_file} v850/t-v850 t-fdpbit"
894a47b4 1294 ;;
63bfd172 1295vax-*-linux*)
9213d2eb 1296 tmake_file="$tmake_file vax/t-linux"
63bfd172 1297 ;;
894a47b4 1298vax-*-netbsdelf*)
1299 ;;
894a47b4 1300vax-*-openbsd*)
1301 ;;
8992df51 1302visium-*-elf*)
1303 extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o"
1304 tmake_file="visium/t-visium t-fdpbit"
1305 ;;
894a47b4 1306xstormy16-*-elf)
2219274c 1307 tmake_file="stormy16/t-stormy16 t-fdpbit"
894a47b4 1308 ;;
75c7ffbc 1309xtensa*-*-elf*)
237490bf 1310 tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-elf"
1311 extra_parts="$extra_parts crti.o crtn.o"
894a47b4 1312 ;;
75c7ffbc 1313xtensa*-*-linux*)
382e1a72 1314 tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-linux t-slibgcc-libgcc"
1e53920f 1315 md_unwind_header=xtensa/linux-unwind.h
894a47b4 1316 ;;
e3c15dbe 1317xtensa*-*-uclinux*)
1318 tmake_file="$tmake_file xtensa/t-xtensa xtensa/t-linux t-slibgcc-libgcc"
1319 md_unwind_header=xtensa/linux-unwind.h
1320 extra_parts="$extra_parts crtbeginS.o crtbeginT.o crtendS.o"
1321 ;;
894a47b4 1322am33_2.0-*-linux*)
237490bf 1323 # Don't need crtbeginT.o from *-*-linux* default.
894a47b4 1324 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
a997b0d8 1325 tmake_file="$tmake_file t-fdpbit"
894a47b4 1326 ;;
7eac0a4e 1327m32c-*-elf*|m32c-*-rtems*)
9213d2eb 1328 tmake_file="$tmake_file m32c/t-m32c"
894a47b4 1329 ;;
46222c18 1330mep*-*-*)
237490bf 1331 tmake_file="mep/t-mep t-fdpbit"
1332 extra_parts="crtbegin.o crtend.o"
46222c18 1333 ;;
8ce80784 1334nvptx-*)
1335 tmake_file="$tmake_file nvptx/t-nvptx"
1336 extra_parts="crt0.o"
1337 ;;
894a47b4 1338*)
1339 echo "*** Configuration ${host} not supported" 1>&2
1340 exit 1
1341 ;;
1342esac
e4cbe54f 1343
98c9b52b 1344case ${host} in
1345i[34567]86-*-* | x86_64-*-*)
1346 tmake_file="${tmake_file} i386/t-cpuinfo"
1347 ;;
1348esac
1349
e4cbe54f 1350case ${host} in
1eab96a6 1351i[34567]86-*-linux* | x86_64-*-linux* | \
a997b0d8 1352 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
1353 i[34567]86-*-knetbsd*-gnu | \
1eab96a6 1354 i[34567]86-*-gnu*)
4b5fb32a 1355 tmake_file="${tmake_file} t-tls i386/t-linux t-slibgcc-libgcc"
c9b3ebc5 1356 if test "$libgcc_cv_cfi" = "yes"; then
f2d9def0 1357 tmake_file="${tmake_file} t-stack i386/t-stack-i386"
c9b3ebc5 1358 fi
e4cbe54f 1359 ;;
1360esac
b3fd46a0 1361
1362case ${host} in
1363i[34567]86-*-darwin* | x86_64-*-darwin* | \
09ec66c8 1364 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
6471e33b 1365 i[34567]86-*-linux* | x86_64-*-linux* | \
444b6906 1366 i[34567]86-*-msdosdjgpp* | \
8a84c748 1367 i[34567]86-*-gnu* | \
14f27bc6 1368 i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]* | \
45d13ef4 1369 i[34567]86-*-cygwin* | x86_64-*-cygwin* | \
1370 i[34567]86-*-mingw* | x86_64-*-mingw* | \
463553db 1371 i[34567]86-*-dragonfly* | x86_64-*-dragonfly* | \
6e029611 1372 i[34567]86-*-freebsd* | x86_64-*-freebsd* | \
1373 i[34567]86-*-openbsd* | x86_64-*-openbsd*)
84600db5 1374 tmake_file="${tmake_file} t-softfp-tf"
144633f4 1375 if test "${host_address}" = 32; then
84600db5 1376 tmake_file="${tmake_file} i386/${host_address}/t-softfp"
144633f4 1377 fi
2c223cf2 1378 tmake_file="${tmake_file} i386/t-softfp t-softfp"
144633f4 1379 ;;
1380esac
1381
1382case ${host} in
1383i[34567]86-*-linux* | x86_64-*-linux*)
1384 # Provide backward binary compatibility for 64bit Linux/x86.
1385 if test "${host_address}" = 64; then
1386 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
1387 fi
022a2799 1388 tm_file="${tm_file} i386/value-unwind.h"
b3fd46a0 1389 ;;
1390esac