]> gcc.gnu.org Git - gcc.git/blame - gcc/config.gcc
re PR rtl-optimization/4382 (__builtin_{set,long}jmp with -O3 can crash the compiler)
[gcc.git] / gcc / config.gcc
CommitLineData
61ed06c3 1# GCC build-, host- and target-specific configuration file.
3bd6d4c4
AO
2# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003
3# Free Software Foundation, Inc.
61ed06c3 4
1322177d 5#This file is part of GCC.
61ed06c3 6
1322177d
LB
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 2, or (at your option) any later
10#version.
61ed06c3 11
1322177d
LB
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.
61ed06c3
HPN
16
17#You should have received a copy of the GNU General Public License
1322177d
LB
18#along with GCC; see the file COPYING. If not, write to the Free
19#Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20#02111-1307, USA.
61ed06c3
HPN
21
22# This is the GCC build-, host- and target-specific configuration file
23# where a configuration type, as recognized and generated by config.bfd,
24# is mapped to different system-specific definitions and files. This is
25# invoked by the autoconf-generated configure script, called for build,
26# host and target in that order, setting ${machine} to each. Putting it
27# in a separate shell file lets us skip running autoconf when modifying
28# build-, host- and target-specific information.
29
30# This file switches on the shell variable ${machine}, and also uses the
31# following shell variables:
32#
33# with_* Various variables as set by configure.
34#
35# enable_threads_flag Either the name, yes or no depending on whether
36# threads support was requested.
37#
38# gas_flag Either yes or no depending on whether GNU as was
39# requested.
40#
41# gnu_ld_flag Either yes or no depending on whether GNU ld was
42# requested.
43
44# This file sets the following shell variables for use by the
45# autoconf-generated configure script:
46#
47# cpu_type The name of the cpu, if different from machine.
48#
d5355cb2
JDA
49# tm_defines List of target macros to define for all compilations.
50#
61ed06c3 51# tm_file A list of target macro files, if different from
32fb7c9d
FS
52# "$cpu_type/$cpu_type.h". Usually it's constructed
53# per target in a way like this:
c40409ce 54# tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
32fb7c9d
FS
55# Note that the preferred order is:
56# - specific target header "${cpu_type}/${cpu_type.h}"
c40409ce 57# - generic headers like dbxelf.h elfos.h, netware.h, etc.
32fb7c9d
FS
58# - specializing target headers like ${cpu_type.h}/elf.h
59# This helps to keep OS specific stuff out of the CPU
60# defining header ${cpu_type}/${cpu_type.h}.
61ed06c3
HPN
61#
62# tm_p_file Location of file with declarations for functions
63# in $out_file.
64#
65# out_file The name of the machine description C support
66# file, if different from "$cpu_type/$cpu_type.c".
67#
68# md_file The name of the machine-description file, if
69# different from "$cpu_type/$cpu_type.md".
70#
71# tmake_file A list of machine-description-specific
72# makefile-fragments, if different from
73# "$cpu_type/t-$cpu_type".
74#
1c0ca89d
ZW
75# extra_modes The name of the file containing a list of extra
76# machine modes, if necessary and different from
77# "$cpu_type/$cpu_type-modes.def".
78#
61ed06c3
HPN
79# extra_objs List of extra objects that should be linked into
80# the compiler proper (cc1, cc1obj, cc1plus)
81# depending on target.
82#
83# extra_headers List of used header files from the directory
817e13c4 84# config/${cpu_type}.
61ed06c3
HPN
85#
86# host_xmake_file List of host-specific makefile-fragments.
87#
88# extra_passes List of extra executables compiled for this target
89# machine, used for compiling from source to object.
90#
91# extra_parts List of extra object files that should be compiled
92# for this target machine.
93#
94# extra_programs Like extra_passes, but these are used when linking.
95#
ff7cc307 96# host_extra_objs List of extra host-dependent objects that should
61ed06c3
HPN
97# be linked into the compiler proper.
98#
ff7cc307 99# host_extra_gcc_objs List of extra host-dependent objects that should
61ed06c3
HPN
100# be linked into the gcc driver.
101#
ff7cc307 102# c_target_objs List of extra target-dependent objects that be
aac69a49 103# linked into the C compiler only.
0e5a4ad8 104#
ff7cc307 105# cxx_target_objs List of extra target-dependent objects that be
aac69a49 106# linked into the C++ compiler only.
0e5a4ad8 107#
ef69da62
SS
108# target_gtfiles List of extra source files with type information.
109#
61ed06c3
HPN
110# build_xm_defines List of macros to define when compiling for the
111# build machine.
112#
113# build_xm_file List of files to include when compiling for the
114# build machine.
115#
116# host_xm_defines List of macros to define when compiling for the
117# host machine.
118#
119# host_xm_file List of files to include when compiling for the
120# host machine.
121#
122# xm_defines List of macros to define when compiling for the
123# target machine.
124#
125# xm_file List of files to include when compiling for the
126# target machine.
127#
128# use_collect2 Set to yes or no, depending on whether collect2
129# will be used.
130#
131# target_cpu_default Set to override the default target model.
132#
133# build_install_headers_dir
134# Target to use when installing header files.
135#
61ed06c3
HPN
136# host_truncate_target
137# Non-empty if the target name should be truncated
138# on this host, due to filename length issues.
139#
140# gdb_needs_out_file_path
141# Set to yes if gdb needs a dir command with
142# `dirname $out_file`.
143#
144# build_exeext Set to the suffix, if the build machine requires
145# executables to have a file name suffix.
146#
147# host_exeext Set to the suffix, if the host machine requires
148# executables to have a file name suffix.
149#
150# thread_file Set to control which thread package to use.
151#
152# gas Set to yes or no depending on whether the target
153# system normally uses GNU as.
4977bab6
ZW
154#
155# need_64bit_hwint Set to yes if HOST_WIDE_INT must be 64 bits wide
156# for this target. This is true iff
157# MAX_LONG_TYPE_SIZE is 64. (The code which
158# determines the underlying integral type for
159# HOST_WIDE_INT cannot see the definition of
160# MAX_LONG_TYPE_SIZE.)
61ed06c3
HPN
161
162# The following variables are used in each case-construct to build up the
163# outgoing variables:
164#
165# xmake_file Makefile-fragment when this system is as a host,
166# for host_xmake_file.
167#
168# extra_host_objs List of extra objects that should be linked into
169# the compiler proper when this system is a host,
170# for host_extra_objs.
171#
172# install_headers_dir Makefile-target for how the header file directory
173# is installed, when this system is a build system,
174# for build_install_headers_dir.
175#
176# truncate_target Non-empty if the target name should be truncated
177# when this system is a host, due to filename length
178# issues. For host_truncate_target.
179#
180# exeext The suffix for executables on this system.
181#
182# gnu_ld Set to yes or no depending on whether the target
183# system normally uses GNU ld.
184
185out_file=
186xmake_file=
187tmake_file=
188extra_headers=
189extra_passes=
190extra_parts=
191extra_programs=
192extra_objs=
193extra_host_objs=
194extra_gcc_objs=
aac69a49
NC
195c_target_objs=
196cxx_target_objs=
d5355cb2 197tm_defines=
61ed06c3 198xm_defines=
61ed06c3
HPN
199# Set this to force installation and use of collect2.
200use_collect2=
201# Set this to override the default target model.
202target_cpu_default=
203# Set this to control how the header file directory is installed.
204install_headers_dir=install-headers-tar
61ed06c3
HPN
205# Set this if directory names should be truncated to 14 characters.
206truncate_target=
207# Set this if gdb needs a dir command with `dirname $out_file`
208gdb_needs_out_file_path=
209# Set this if the build machine requires executables to have a
210# file name suffix.
211exeext=
212# Set this to control which thread package will be used.
213thread_file=
214# Reinitialize these from the flag values every loop pass, since some
215# configure entries modify them.
216gas="$gas_flag"
217gnu_ld="$gnu_ld_flag"
218enable_threads=$enable_threads_flag
6ab185d6 219target_gtfiles=
4977bab6 220need_64bit_hwint=
61ed06c3 221
9340544b 222# Obsolete configurations.
9340544b 223case $machine in
c7bdf0a6
ZW
224 m88k-*-aout* \
225 | m88k-*-openbsd* \
226 | m88k-*-sysv4* \
227 | mips-sni-sysv4 \
9c075570 228 | mn10200-*-* \
c7bdf0a6
ZW
229 | ns32k-*-openbsd* \
230 | romp-*-openbsd* \
231 )
8998d5bf 232 if test "x$enable_obsolete" != xyes; then
9340544b
ZW
233 echo "*** Configuration $machine is obsolete." >&2
234 echo "*** Specify --enable-obsolete to build it anyway." >&2
235 echo "*** Support will be REMOVED in the next major release of GCC," >&2
236 echo "*** unless a maintainer comes forward." >&2
237 exit 1
238 fi;;
9340544b
ZW
239esac
240
61ed06c3 241# Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
ba1e6c0b
JM
242# updated in each machine entry. Also set default extra_headers for some
243# machines.
61ed06c3
HPN
244tm_p_file=
245cpu_type=`echo $machine | sed 's/-.*$//'`
246case $machine in
247alpha*-*-*)
248 cpu_type=alpha
4977bab6 249 need_64bit_hwint=yes
61ed06c3
HPN
250 ;;
251strongarm*-*-*)
252 cpu_type=arm
253 ;;
254arm*-*-*)
255 cpu_type=arm
256 ;;
d19fb8e3
NC
257xscale-*-*)
258 cpu_type=arm
259 ;;
61ed06c3
HPN
260i[34567]86-*-*)
261 cpu_type=i386
6f1a6c5b 262 extra_headers="mmintrin.h xmmintrin.h"
61ed06c3 263 ;;
14f73b5a
JH
264x86_64-*-*)
265 cpu_type=i386
8559c8c0 266 extra_headers="mmintrin.h xmmintrin.h"
4977bab6 267 need_64bit_hwint=yes
14f73b5a 268 ;;
817e13c4
JM
269ia64-*-*)
270 extra_headers=ia64intrin.h
4977bab6 271 need_64bit_hwint=yes
817e13c4 272 ;;
c21a2372 273hppa*-*-* | parisc*-*-*)
61ed06c3
HPN
274 cpu_type=pa
275 ;;
2fd95d71 276m680[012]0-*-*)
61ed06c3 277 cpu_type=m68k
ba1e6c0b
JM
278 extra_headers=math-68881.h
279 ;;
280m68k-*-*)
281 extra_headers=math-68881.h
61ed06c3
HPN
282 ;;
283mips*-*-*)
284 cpu_type=mips
4977bab6 285 need_64bit_hwint=yes
61ed06c3 286 ;;
61ed06c3
HPN
287powerpc*-*-*)
288 cpu_type=rs6000
518878e1 289 extra_headers="ppc-asm.h altivec.h spe.h"
4977bab6
ZW
290 need_64bit_hwint=yes
291 ;;
292rs6000*-*-*)
293 need_64bit_hwint=yes
294 ;;
295sparc64*-*-*)
296 cpu_type=sparc
297 need_64bit_hwint=yes
61ed06c3 298 ;;
61ed06c3
HPN
299sparc*-*-*)
300 cpu_type=sparc
301 ;;
4977bab6
ZW
302s390*-*-*)
303 need_64bit_hwint=yes
304 ;;
b4eb03fe
JT
305# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
306sh[123456789l]*-*-*)
fa5322fa 307 cpu_type=sh
4977bab6 308 need_64bit_hwint=yes
fa5322fa 309 ;;
7f0db92a
SS
310tic4x-*-*)
311 cpu_type=c4x
312 ;;
61ed06c3
HPN
313esac
314
315tm_file=${cpu_type}/${cpu_type}.h
b6d7afec 316if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
61ed06c3 317then
b6d7afec
ZW
318 tm_p_file=${cpu_type}/${cpu_type}-protos.h
319fi
1c0ca89d
ZW
320extra_modes=
321if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
322then
323 extra_modes=${cpu_type}/${cpu_type}-modes.def
324fi
e564e618
DB
325
326case $machine in
327x86_64-*-*)
328 tm_file="i386/biarch64.h ${tm_file}"
329 ;;
330esac
331
61ed06c3
HPN
332# On a.out targets, we need to use collect2.
333case $machine in
334*-*-*aout*)
335 use_collect2=yes
336 ;;
0e5a4ad8 337esac
61ed06c3 338
4977bab6 339# Common parts for widely ported systems.
61ed06c3
HPN
340case $machine in
341*-*-linux*)
34f4f3a5 342 xm_defines=POSIX
609a87f3
JJ
343 case $machine in
344 *-*-linux*ecoff* | *-*-linux*libc1* | *-*-linux*oldld* | *-*-linux*aout*)
345 ;;
346 *)
66df2ac2
L
347 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
348 gas=yes gnu_ld=yes
609a87f3
JJ
349 case x${enable_threads} in
350 x | xyes | xposix) thread_file='posix'
351 ;;
352 esac
353 ;;
354 esac
61ed06c3 355 ;;
5eeab2e3
MK
356*-*-gnu*)
357 # On the Hurd, the setup is just about the same on
358 # each different CPU. The specific machines that we
359 # support are matched above and just set $cpu_type.
b19a539e 360 xm_defines=POSIX
f6e0c56c 361 tm_file="${cpu_type}/gnu.h"
275b60d6 362 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
5eeab2e3
MK
363 # GNU always uses ELF.
364 elf=yes
365 # GNU tools are the only tools.
366 gnu_ld=yes
367 gas=yes
368 # These details are the same as for Linux.
5eeab2e3 369 # But here we need a little extra magic.
7b3a4df5 370 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
f6e0c56c 371 case $machine in
83248d49
RM
372 alpha*)
373 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
374 ;;
f6e0c56c 375 i[34567]86-*-*)
39ed301b 376 tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
f6e0c56c 377 ;;
f6e0c56c 378 esac
5eeab2e3 379 ;;
61ed06c3
HPN
380*-*-openbsd*)
381 tm_file=${cpu_type}/openbsd.h
f1cf4606 382 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
b19a539e 383 xm_defines=POSIX
61ed06c3
HPN
384 if test x$enable_threads = xyes; then
385 thread_file='posix'
386 tmake_file="${tmake_file} t-openbsd-thread"
387 fi
388 ;;
f982f805 389*-*-netbsd*)
12345543 390 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd"
f982f805
JT
391 xm_defines=POSIX
392 gas=yes
393 gnu_ld=yes
a0494c05
JT
394 case x${enable_threads} in
395 xyes | xposix)
396 thread_file='posix'
ee3c755a 397 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
a0494c05
JT
398 ;;
399 esac
1169f9e0
JT
400
401 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
402 # ELF configurations. We will clear extra_parts in the
403 # a.out configurations.
404 case $machine in
4e85eada 405 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
1169f9e0
JT
406 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
407 ;;
408 esac
f982f805 409 ;;
9e405fe5
LR
410*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
411 # This is the place-holder for the generic a.out configuration
412 # of FreeBSD. No actual configuration resides here since
413 # there was only ever a bare-bones ix86 configuration for
414 # a.out and it exists solely in the machine-specific section.
415 # This place-holder must exist to avoid dropping into
416 # the generic ELF configuration of FreeBSD (i.e. it must be
417 # ordered before that section).
418 ;;
419*-*-freebsd*)
420 # This is the generic ELF configuration of FreeBSD. Later
421 # machine-specific sections may refine and add to this
422 # configuration.
423 #
424 # Due to tm_file entry ordering issues that vary between cpu
425 # architectures, we only define fbsd_tm_file to allow the
426 # machine-specific section to dictate the final order of all
427 # entries of tm_file with the minor exception that components
428 # of the tm_file set here will always be of the form:
429 #
b91da81f 430 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
9e405fe5
LR
431 #
432 # The machine-specific section should not tamper with this
433 # ordering but may order all other entries of tm_file as it
434 # pleases around the provided core setting.
435 gas=yes
436 gnu_ld=yes
437 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
438 case $machine in
439 *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
440 *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
441 *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
442 *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
443 *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
444 esac
bc3a44db 445 tmake_file="t-slibgcc-elf-ver t-freebsd"
243a7070 446 xmake_file=none
9e405fe5
LR
447 xm_defines=POSIX
448 case x${enable_threads} in
449 xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
450 x | xyes | xpthreads | xposix)
451 thread_file='posix'
452 tmake_file="${tmake_file} t-freebsd-thread"
bc3a44db
LR
453 # Before 5.0, FreeBSD can't bind shared libraries to -lc
454 # when "optionally" threaded via weak pthread_* checks.
455 case $machine in
456 *-*-freebsd[34] | *-*-freebsd[34].*)
457 tmake_file="${tmake_file} t-slibgcc-nolc-override";;
458 esac
9e405fe5
LR
459 ;;
460 *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
461 esac
b7e0196a 462 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
9e405fe5 463 ;;
40b4cdbf
GK
464*-*-darwin*)
465 tm_file="${tm_file} darwin.h"
466 tm_p_file="${tm_p_file} darwin-protos.h"
467 tmake_file="t-darwin"
468 target_gtfiles="\$(srcdir)/config/darwin.c"
469 c_target_objs="darwin-c.o"
470 cxx_target_objs="darwin-c.o"
471 extra_parts="crt2.o"
472 # Darwin linker does collect2 functionality
473 use_collect2=no
064b6c70 474 extra_objs="darwin.o"
40b4cdbf 475 ;;
4977bab6
ZW
476*-*-vxworks*)
477 tmake_file=t-vxworks
478 tm_file="${tm_file} elfos.h svr4.h vxworks.h"
479 thread_file='vxworks'
480 use_collect2=yes
481 xm_defines=POSIX
482 ;;
61ed06c3
HPN
483esac
484
485case $machine in
486# Support site-specific machine types.
487*local*)
61ed06c3 488 rest=`echo $machine | sed -e "s/$cpu_type-//"`
61ed06c3 489 tm_file=${cpu_type}/$rest.h
4dc0535b
ZW
490 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
491 then xm_file=${cpu_type}/xm-$rest.h
61ed06c3 492 fi
4dc0535b
ZW
493 if test -f $srcdir/config/${cpu_type}/x-$rest
494 then xmake_file=${cpu_type}/x-$rest
495 fi
496 if test -f $srcdir/config/${cpu_type}/t-$rest
497 then tmake_file=${cpu_type}/t-$rest
61ed06c3
HPN
498 fi
499 ;;
30102605
RH
500alpha*-*-unicosmk*)
501 use_collect2=yes
502 tm_file="${tm_file} alpha/unicosmk.h"
0e5a4ad8 503
30102605
RH
504 # Don't include t-ieee for now because we don't support that yet
505 # tmake_file="alpha/t-ieee"
506 tmake_file="alpha/t-unicosmk"
507 ;;
61ed06c3
HPN
508alpha-*-interix)
509 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
510
511 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
512 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
513
514 # GAS + IEEE_CONFORMANT
515 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
516
34f4f3a5 517 xm_defines=POSIX
14455c64 518 tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee"
61ed06c3
HPN
519 if test x$enable_threads = xyes ; then
520 thread_file='posix'
521 fi
522 if test x$stabs = xyes ; then
523 tm_file="${tm_file} dbxcoff.h"
524 fi
525 #prefix='$$INTERIX_ROOT'/usr/contrib
526 #local_prefix='$$INTERIX_ROOT'/usr/contrib
527 ;;
77a403e4
RH
528alpha*-*-linux*ecoff*)
529 echo "Configuration $machine no longer supported" 1>&2
530 exit 1
531 ;;
61ed06c3
HPN
532alpha*-*-linux*libc1*)
533 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
534 target_cpu_default="MASK_GAS"
cea3bd3e
RH
535 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtfm alpha/t-ieee"
536 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
537 gas=yes gnu_ld=yes
538 if test x$enable_threads = xyes; then
539 thread_file='posix'
540 fi
541 ;;
542alpha*-*-linux*)
543 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
544 target_cpu_default="MASK_GAS"
cea3bd3e 545 tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
61ed06c3 546 ;;
83248d49
RM
547alpha*-*-gnu*)
548 target_cpu_default="MASK_GAS"
549 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
550 ;;
61ed06c3 551alpha*-*-freebsd*)
9e405fe5 552 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
61ed06c3 553 target_cpu_default="MASK_GAS"
cea3bd3e
RH
554 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
555 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
556 ;;
557alpha*-*-netbsd*)
f982f805 558 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
61ed06c3 559 target_cpu_default="MASK_GAS"
cea3bd3e 560 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
61ed06c3
HPN
561 ;;
562
563alpha*-*-openbsd*)
cf0005c6 564 tm_file="${cpu_type}/${cpu_type}.h ${tm_file}"
61ed06c3
HPN
565 # default x-alpha is only appropriate for dec-osf.
566 target_cpu_default="MASK_GAS"
567 tmake_file="alpha/t-alpha alpha/t-ieee"
568 ;;
0e5a4ad8 569
c7bdf0a6 570alpha*-dec-osf[45]*)
b19a539e 571 xm_defines=POSIX
61ed06c3
HPN
572 if test x$stabs = xyes
573 then
574 tm_file="${tm_file} dbx.h"
575 fi
576 if test x$gas != xyes
577 then
578 extra_passes="mips-tfile mips-tdump"
579 fi
580 use_collect2=yes
c7bdf0a6
ZW
581 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
582 tm_file="${tm_file} alpha/osf.h"
817e13c4 583 extra_headers=va_list.h
61ed06c3 584 case $machine in
61ed06c3 585 *-*-osf4*)
61ed06c3
HPN
586 # Some versions of OSF4 (specifically X4.0-9 296.7) have
587 # a broken tar, so we use cpio instead.
588 install_headers_dir=install-headers-cpio
c7bdf0a6
ZW
589 # Set target_cpu_default except on 4.0a.
590 case $machine in
591 *-*-osf4.0a) ;;
592 *) target_cpu_default=MASK_SUPPORT_ARCH
593 esac
61ed06c3
HPN
594 ;;
595 *-*-osf5*)
c7bdf0a6 596 tm_file="${tm_file} alpha/osf5.h"
61ed06c3
HPN
597 target_cpu_default=MASK_SUPPORT_ARCH
598 ;;
599 esac
600 ;;
b6bfa876
DR
601alpha64-dec-*vms*)
602 xm_defines=POSIX
cf0005c6 603 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
4977bab6 604 xm_file="alpha/xm-vms.h"
b6bfa876
DR
605 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
606 xmake_file=alpha/x-vms
607 exeext=.exe
608 # This removes the cpu type and manufacturer components and
609 # replaces "." with "_" in the operating system version.
610 case $host in *-*-*vms*)
611 target_alias=`echo $host \
612 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
613 ;;
614 esac
ff3aaf17 615 install_headers_dir=install-headers-cp
b6bfa876
DR
616 prefix=/gnu
617 local_prefix=/gnu
618 ;;
ef057c45 619alpha*-dec-*vms*)
b19a539e 620 xm_defines=POSIX
cf0005c6 621 tm_file="${tm_file} alpha/vms.h"
4dc0535b 622 xm_file=alpha/xm-vms.h
61ed06c3 623 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
d133777f 624 xmake_file=alpha/x-vms
ef057c45
DR
625 exeext=.exe
626 # This removes the cpu type and manufacturer components and
627 # replaces "." with "_" in the operating system version.
628 case $host in *-*-*vms*)
629 target_alias=`echo $host \
630 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
631 ;;
632 esac
ff3aaf17 633 install_headers_dir=install-headers-cp
ef057c45
DR
634 prefix=/gnu
635 local_prefix=/gnu
61ed06c3 636 ;;
2cc07db4 637arc-*-elf*)
c40409ce 638 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2cc07db4
RH
639 extra_parts="crtinit.o crtfini.o"
640 ;;
61ed06c3 641arm-*-coff* | armel-*-coff*)
5059254f 642 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
61ed06c3
HPN
643 tmake_file=arm/t-arm-coff
644 ;;
61ed06c3 645arm-semi-aout | armel-semi-aout)
5059254f 646 tm_file="arm/semi.h arm/aout.h arm/arm.h"
61ed06c3
HPN
647 tmake_file=arm/t-semi
648 ;;
649arm-semi-aof | armel-semi-aof)
5059254f 650 tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
7857f134 651 tmake_file=arm/t-semi
61ed06c3 652 ;;
5742588d
DB
653arm*-*-freebsd*|strongarm*-*-freebsd*)
654 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
655 tmake_file="${tmake_file} arm/t-strongarm-elf"
656 ;;
69474c3c 657arm*-*-netbsdelf*)
ff3afb56
JT
658 tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
659 tmake_file="${tmake_file} arm/t-netbsd"
69474c3c 660 ;;
61ed06c3 661arm*-*-netbsd*)
f982f805 662 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
61ed06c3 663 tmake_file="t-netbsd arm/t-netbsd"
1169f9e0 664 extra_parts=""
5721cd84 665 use_collect2=yes
61ed06c3 666 ;;
14879e76 667arm*-*-linux*) # ARM GNU/Linux with ELF
c40409ce 668 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h"
7b3a4df5 669 tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
61ed06c3
HPN
670 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
671 gnu_ld=yes
672 case x${enable_threads} in
673 x | xyes | xpthreads | xposix)
674 thread_file='posix'
675 ;;
676 esac
677 ;;
678arm*-*-uclinux*) # ARM ucLinux
c40409ce 679 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h arm/uclinux-elf.h"
61ed06c3
HPN
680 tmake_file=arm/t-arm-elf
681 ;;
682arm*-*-aout)
f910b1bb 683 tm_file="arm/aout.h arm/arm.h"
61ed06c3
HPN
684 tmake_file=arm/t-arm-aout
685 ;;
686arm*-*-ecos-elf)
c40409ce 687 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
61ed06c3 688 tmake_file=arm/t-arm-elf
0e5a4ad8 689 ;;
f22b4bc4
JS
690arm*-*-rtems*)
691 xm_defines=POSIX
692 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/rtems-elf.h rtems.h"
693 tmake_file="arm/t-arm-elf t-rtems"
694 if test x$enable_threads = xyes; then
695 thread_file='rtems'
696 fi
697 ;;
61ed06c3 698arm*-*-elf)
c40409ce 699 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
61ed06c3
HPN
700 tmake_file=arm/t-arm-elf
701 ;;
702arm*-*-conix*)
c40409ce 703 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h arm/aout.h arm/arm.h"
61ed06c3
HPN
704 tmake_file=arm/t-arm-elf
705 ;;
706arm*-*-oabi)
c40409ce 707 tm_file="arm/unknown-elf-oabi.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
61ed06c3
HPN
708 tmake_file=arm/t-arm-elf
709 ;;
710arm-*-pe*)
f910b1bb 711 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
61ed06c3
HPN
712 tmake_file=arm/t-pe
713 extra_objs="pe.o"
714 ;;
715avr-*-*)
716 ;;
7f0db92a 717c4x-*-rtems* | tic4x-*-rtems*)
f22b4bc4 718 xm_defines=POSIX
bc98ef7f 719 tmake_file="c4x/t-c4x t-rtems"
fdc76b09 720 tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
bc98ef7f
JS
721 if test x$enable_threads = xyes; then
722 thread_file='rtems'
723 fi
51fabca5
NB
724 c_target_objs="c4x-c.o"
725 cxx_target_objs="c4x-c.o"
bc98ef7f 726 ;;
7f0db92a 727c4x-* | tic4x-*)
61ed06c3 728 tmake_file=c4x/t-c4x
51fabca5
NB
729 c_target_objs="c4x-c.o"
730 cxx_target_objs="c4x-c.o"
61ed06c3 731 ;;
0b85d816 732cris-*-aout)
32fb7c9d 733 tm_file="dbxelf.h ${tm_file} cris/aout.h"
0b85d816
HPN
734 gas=yes
735 tmake_file="cris/t-cris cris/t-aout"
736 ;;
737cris-*-elf | cris-*-none)
c40409ce 738 tm_file="dbxelf.h elfos.h ${tm_file}"
0b85d816
HPN
739 tmake_file="cris/t-cris cris/t-elfmulti"
740 gas=yes
741 ;;
742cris-*-linux*)
c40409ce 743 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
0b85d816 744 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
0b85d816 745 ;;
61ed06c3 746d30v-*)
c40409ce 747 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
748 ;;
749dsp16xx-*)
750 ;;
61ed06c3 751fr30-*-elf)
c40409ce 752 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
753 tmake_file=fr30/t-fr30
754 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
755 ;;
36a05131
BS
756frv-*-elf)
757 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
758 tmake_file=frv/t-frv
759 ;;
bc98ef7f 760h8300-*-rtems*)
f22b4bc4 761 xm_defines=POSIX
bc98ef7f 762 tmake_file="h8300/t-h8300 t-rtems"
f22b4bc4 763 tm_file="h8300/h8300.h h8300/rtems.h rtems.h"
bc98ef7f
JS
764 if test x$enable_threads = xyes; then
765 thread_file='rtems'
766 fi
bc98ef7f 767 ;;
9f5b774b
R
768h8300-*-elf*)
769 tmake_file="h8300/t-h8300 h8300/t-elf"
770 tm_file="h8300/h8300.h h8300/elf.h"
9f5b774b 771 ;;
61ed06c3 772h8300-*-*)
61ed06c3 773 ;;
c21a2372
AM
774hppa*64*-*-linux* | parisc*64*-*-linux*)
775 target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
581d9404
JDA
776 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
777 pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
c21a2372 778 tmake_file=pa/t-linux64
c21a2372 779 gas=yes gnu_ld=yes
4977bab6 780 need_64bit_hwint=yes
c21a2372
AM
781 ;;
782hppa*-*-linux* | parisc*-*-linux*)
783 target_cpu_default="MASK_PA_11"
c40409ce 784 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
c21a2372 785 pa/pa32-regs.h pa/pa32-linux.h"
7b3a4df5 786 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
61ed06c3
HPN
787 ;;
788hppa*-*-openbsd*)
789 target_cpu_default="MASK_PA_11"
14455c64 790 tmake_file=pa/t-bsd
61ed06c3
HPN
791 ;;
792hppa1.1-*-pro*)
793 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
c40409ce 794 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
14455c64 795 tmake_file="pa/t-bsd pa/t-pro"
ed9d6ff9 796 xmake_file="pa/x-ada"
61ed06c3
HPN
797 ;;
798hppa1.1-*-osf*)
799 target_cpu_default="MASK_PA_11"
800 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
14455c64 801 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 802 xmake_file="pa/x-ada"
61ed06c3
HPN
803 use_collect2=yes
804 ;;
805hppa1.1-*-rtems*)
f22b4bc4 806 xm_defines=POSIX
61ed06c3 807 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
f22b4bc4 808 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
14455c64 809 tmake_file="pa/t-bsd pa/t-pro"
ed9d6ff9 810 xmake_file="pa/x-ada"
61ed06c3
HPN
811 ;;
812hppa1.0-*-osf*)
813 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
14455c64 814 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 815 xmake_file="pa/x-ada"
61ed06c3
HPN
816 use_collect2=yes
817 ;;
818hppa1.1-*-bsd*)
819 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
820 target_cpu_default="MASK_PA_11"
14455c64 821 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 822 xmake_file="pa/x-ada"
61ed06c3
HPN
823 use_collect2=yes
824 ;;
825hppa1.0-*-bsd*)
826 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
14455c64 827 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 828 xmake_file="pa/x-ada"
61ed06c3
HPN
829 use_collect2=yes
830 ;;
831hppa1.0-*-hpux7*)
832 tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
34f4f3a5 833 xm_defines=POSIX
14455c64 834 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
835 install_headers_dir=install-headers-cpio
836 use_collect2=yes
837 ;;
838hppa1.0-*-hpux8.0[0-2]*)
839 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 840 xm_defines=POSIX
14455c64 841 tmake_file=pa/t-pa-hpux
c21a2372 842 if test x$gas != xyes
61ed06c3 843 then
61ed06c3
HPN
844 tm_file="pa/pa-oldas.h ${tm_file}"
845 fi
846 install_headers_dir=install-headers-cpio
847 use_collect2=yes
848 ;;
849hppa1.1-*-hpux8.0[0-2]*)
850 target_cpu_default="MASK_PA_11"
851 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 852 xm_defines=POSIX
14455c64 853 tmake_file=pa/t-pa-hpux
c21a2372 854 if test x$gas != xyes
61ed06c3 855 then
61ed06c3
HPN
856 tm_file="pa/pa-oldas.h ${tm_file}"
857 fi
858 install_headers_dir=install-headers-cpio
859 use_collect2=yes
860 ;;
861hppa1.1-*-hpux8*)
862 target_cpu_default="MASK_PA_11"
863 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 864 xm_defines=POSIX
14455c64 865 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
866 install_headers_dir=install-headers-cpio
867 use_collect2=yes
868 ;;
869hppa1.0-*-hpux8*)
870 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 871 xm_defines=POSIX
14455c64 872 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
873 install_headers_dir=install-headers-cpio
874 use_collect2=yes
875 ;;
876hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
877 target_cpu_default="MASK_PA_11"
878 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
34f4f3a5 879 xm_defines=POSIX
e4761274 880 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 881 xmake_file="pa/x-ada"
61ed06c3
HPN
882 if test x$enable_threads = x; then
883 enable_threads=$have_pthread_h
884 fi
885 case x${enable_threads} in
886 xyes | xdce)
887 tmake_file="${tmake_file} pa/t-dce-thr"
888 ;;
889 esac
890 install_headers_dir=install-headers-cpio
891 use_collect2=yes
892 ;;
893hppa1.0-*-hpux10*)
894 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
34f4f3a5 895 xm_defines=POSIX
e4761274 896 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 897 xmake_file="pa/x-ada"
61ed06c3
HPN
898 if test x$enable_threads = x; then
899 enable_threads=$have_pthread_h
900 fi
901 case x${enable_threads} in
902 xyes | xdce)
903 tmake_file="${tmake_file} pa/t-dce-thr"
904 ;;
905 esac
906 install_headers_dir=install-headers-cpio
907 use_collect2=yes
908 ;;
909hppa*64*-*-hpux11*)
34f4f3a5 910 xm_defines=POSIX
581d9404
JDA
911 if test x$gas = xyes
912 then
913 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
914 pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
915 pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
916 else
917 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
918 pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
919 pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
920 fi
4977bab6 921 need_64bit_hwint=yes
eab854f6 922 tmake_file="pa/t-pa64 pa/t-pa-hpux"
ed9d6ff9 923 xmake_file="pa/x-ada"
c81460e4 924 target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
35d434ed 925 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
83eb95f9
SE
926 if test x$gnu_ld = xyes
927 then
928 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
929 fi
61ed06c3
HPN
930# if [ x$enable_threads = x ]; then
931# enable_threads=$have_pthread_h
932# fi
933# if [ x$enable_threads = xyes ]; then
934# thread_file='dce'
935# tmake_file="${tmake_file} pa/t-dce-thr"
936# fi
937 install_headers_dir=install-headers-cpio
61ed06c3
HPN
938 ;;
939hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
940 target_cpu_default="MASK_PA_11"
941 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
34f4f3a5 942 xm_defines=POSIX
e4761274 943 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 944 xmake_file="pa/x-ada"
61ed06c3
HPN
945# if test x$enable_threads = x; then
946# enable_threads=$have_pthread_h
947# fi
948# if test x$enable_threads = xyes; then
949# thread_file='dce'
950# tmake_file="${tmake_file} pa/t-dce-thr"
951# fi
952 install_headers_dir=install-headers-cpio
953 use_collect2=yes
954 ;;
955hppa1.0-*-hpux11*)
956 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
34f4f3a5 957 xm_defines=POSIX
e4761274 958 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 959 xmake_file="pa/x-ada"
61ed06c3
HPN
960# if test x$enable_threads = x; then
961# enable_threads=$have_pthread_h
962# fi
963# if test x$enable_threads = xyes; then
964# thread_file='dce'
965# tmake_file="${tmake_file} pa/t-dce-thr"
966# fi
967 install_headers_dir=install-headers-cpio
968 use_collect2=yes
969 ;;
970hppa1.1-*-hpux* | hppa2*-*-hpux*)
971 target_cpu_default="MASK_PA_11"
972 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
34f4f3a5 973 xm_defines=POSIX
14455c64 974 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
975 install_headers_dir=install-headers-cpio
976 use_collect2=yes
977 ;;
978hppa1.0-*-hpux*)
979 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
34f4f3a5 980 xm_defines=POSIX
14455c64 981 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
982 install_headers_dir=install-headers-cpio
983 use_collect2=yes
984 ;;
985hppa1.1-*-hiux* | hppa2*-*-hiux*)
986 target_cpu_default="MASK_PA_11"
987 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
34f4f3a5 988 xm_defines=POSIX
14455c64 989 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
990 install_headers_dir=install-headers-cpio
991 use_collect2=yes
992 ;;
993hppa1.0-*-hiux*)
994 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
34f4f3a5 995 xm_defines=POSIX
14455c64 996 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
997 install_headers_dir=install-headers-cpio
998 use_collect2=yes
999 ;;
1000hppa*-*-lites*)
c40409ce 1001 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h"
61ed06c3 1002 target_cpu_default="MASK_PA_11"
14455c64 1003 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 1004 xmake_file="pa/x-ada"
61ed06c3
HPN
1005 use_collect2=yes
1006 ;;
1007hppa*-*-mpeix*)
1008 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h"
5dd8a9b1 1009 tmake_file=pa/t-mpeix
0e5a4ad8 1010 echo "You must use gas. Assuming it is already installed."
c21a2372 1011 gas=yes
61ed06c3 1012 install_headers_dir=install-headers-tar
0e5a4ad8
EC
1013 use_collect2=yes
1014 ;;
61ed06c3 1015i370-*-opened*) # IBM 360/370/390 Architecture
34f4f3a5 1016 xm_defines='POSIX FATAL_EXIT_CODE=12'
61ed06c3 1017 tm_file=i370/oe.h
14455c64 1018 tmake_file="i370/t-oe i370/t-i370"
51fabca5
NB
1019 c_target_objs="i370-c.o"
1020 cxx_target_objs="i370-c.o"
61ed06c3
HPN
1021 ;;
1022i370-*-mvs*)
34f4f3a5 1023 xm_defines='POSIX FATAL_EXIT_CODE=12'
61ed06c3 1024 tm_file=i370/mvs.h
51fabca5
NB
1025 tmake_file="i370/t-i370"
1026 c_target_objs="i370-c.o"
1027 cxx_target_objs="i370-c.o"
61ed06c3
HPN
1028 ;;
1029i370-*-linux*)
c40409ce 1030 tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
7b3a4df5 1031 tmake_file="t-slibgcc-elf-ver t-linux"
61ed06c3 1032 # broken_install=yes
61ed06c3 1033 elf=yes
61ed06c3 1034 ;;
b069de3b 1035i[34567]86-*-darwin*)
40b4cdbf 1036 tm_file="${tm_file} i386/darwin.h"
b069de3b 1037 ;;
61ed06c3 1038i[34567]86-*-elf*)
34f4f3a5 1039 xm_defines=POSIX
39ed301b 1040 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
14455c64 1041 tmake_file="i386/t-i386elf t-svr4"
61ed06c3 1042 ;;
61ed06c3 1043i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
34f4f3a5 1044 xm_defines="POSIX SMALL_ARG_MAX"
61ed06c3
HPN
1045 if test x$stabs = xyes -a x$gas = xyes
1046 then
1047 tm_file=i386/sysv4gdb.h
1048 else
3d05b15f 1049 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
61ed06c3
HPN
1050 fi
1051 extra_parts="crtbegin.o crtend.o"
1052 tmake_file=i386/t-crtpic
1053 ;;
61ed06c3 1054i[34567]86-*-netware) # Intel 80386's running netware
39ed301b 1055 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
61ed06c3
HPN
1056 tmake_file=i386/t-netware
1057 ;;
61ed06c3 1058i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
70305f2b
RH
1059 if test x$gas = xyes
1060 then
1061 tm_file="${tm_file} usegas.h"
1062 fi
34f4f3a5 1063 xm_defines="POSIX SMALL_ARG_MAX"
39ed301b 1064 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
61ed06c3
HPN
1065 tmake_file=t-svr4
1066 extra_parts="crtbegin.o crtend.o"
1067 install_headers_dir=install-headers-cpio
1068 ;;
c7bdf0a6
ZW
1069i[34567]86-sequent-sysv*) # would otherwise be caught by i?86-*-sysv*
1070 echo "*** Configuration $machine not supported" 1>&2
1071 exit 1
61ed06c3 1072 ;;
61ed06c3 1073i[34567]86-*-aout*)
39ed301b 1074 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
61ed06c3
HPN
1075 ;;
1076i[34567]86-*-beoself* | i[34567]86-*-beos*)
34f4f3a5 1077 xm_defines=POSIX
61ed06c3 1078 tmake_file='i386/t-beos i386/t-crtpic'
39ed301b 1079 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
61ed06c3
HPN
1080 extra_parts='crtbegin.o crtend.o'
1081 ;;
c7bdf0a6 1082i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
39ed301b 1083 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
61ed06c3
HPN
1084 tmake_file=t-freebsd
1085 ;;
1086i[34567]86-*-freebsd*)
39ed301b 1087 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
e564e618
DB
1088 ;;
1089x86_64-*-freebsd*)
39ed301b 1090 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/x86-64.h i386/freebsd.h i386/freebsd64.h"
61ed06c3 1091 ;;
6ea0279f 1092i[34567]86-*-netbsdelf*)
39ed301b 1093 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
6ea0279f 1094 ;;
61ed06c3 1095i[34567]86-*-netbsd*)
39ed301b 1096 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
61ed06c3 1097 tmake_file=t-netbsd
1169f9e0 1098 extra_parts=""
5721cd84 1099 use_collect2=yes
61ed06c3 1100 ;;
7c884404 1101x86_64-*-netbsd*)
39ed301b 1102 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h"
7c884404 1103 ;;
61ed06c3 1104i[34567]86-*-openbsd*)
39ed301b 1105 tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h ${tm_file}"
f1cf4606
ME
1106 # needed to unconfuse gdb
1107 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
61ed06c3
HPN
1108 # we need collect2 until our bug is fixed...
1109 use_collect2=yes
1110 ;;
1111i[34567]86-*-coff*)
39ed301b 1112 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
61ed06c3 1113 ;;
c7bdf0a6
ZW
1114i[34567]86-*-linux*oldld*) # would otherwise be caught by i?86-*-linux*
1115 echo "*** Configuration $machine not supported" 1>&2
1116 exit 1
61ed06c3
HPN
1117 ;;
1118i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux
1119 # with a.out format
61ed06c3 1120 tmake_file="t-linux-aout i386/t-crtstuff"
39ed301b 1121 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
61ed06c3 1122 gnu_ld=yes
61ed06c3
HPN
1123 ;;
1124i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux
1125 # with ELF format using the
1126 # GNU/Linux C library 5
39ed301b 1127 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
7b3a4df5 1128 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
61ed06c3
HPN
1129 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1130 gnu_ld=yes
61ed06c3
HPN
1131 if test x$enable_threads = xyes; then
1132 thread_file='single'
1133 fi
1134 ;;
1135i[34567]86-*-linux*) # Intel 80386's running GNU/Linux
1136 # with ELF format using glibc 2
1137 # aka GNU/Linux C library 6
39ed301b 1138 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
7b3a4df5 1139 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
61ed06c3 1140 ;;
14f73b5a 1141x86_64-*-linux*)
39ed301b 1142 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
32fb7c9d 1143 i386/x86-64.h i386/linux64.h"
17c04c5e 1144 tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64"
14f73b5a 1145 ;;
61ed06c3 1146i[34567]86-*-gnu*)
61ed06c3
HPN
1147 ;;
1148i[34567]86-go32-msdos | i[34567]86-*-go32*)
1149 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1150 exit 1
1151 ;;
1152i[34567]86-pc-msdosdjgpp*)
1153 xm_file=i386/xm-djgpp.h
39ed301b 1154 tm_file="dbxcoff.h ${tm_file} i386/djgpp.h"
5dd8a9b1 1155 tmake_file=i386/t-djgpp
61ed06c3
HPN
1156 gnu_ld=yes
1157 gas=yes
1158 exeext=.exe
61ed06c3
HPN
1159 case $host in *pc-msdosdjgpp*)
1160 target_alias=djgpp
1161 ;;
1162 esac
1163 ;;
1164i[34567]86-moss-msdos* | i[34567]86-*-moss*)
39ed301b 1165 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
61ed06c3
HPN
1166 tmake_file=t-libc-ok
1167 gnu_ld=yes
1168 gas=yes
1169 ;;
1170i[34567]86-*-lynxos*)
1171 if test x$gas = xyes
1172 then
39ed301b 1173 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h"
61ed06c3 1174 else
39ed301b 1175 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
61ed06c3 1176 fi
61ed06c3
HPN
1177 ;;
1178i[34567]86-*-mach*)
39ed301b 1179 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
61ed06c3
HPN
1180# tmake_file=t-libc-ok
1181 use_collect2=yes
1182 ;;
c7bdf0a6
ZW
1183i[34567]86-go32-rtems* | i[34567]86-*-rtemscoff*)
1184 # would otherwise be caught by i?86-*-rtems*
1185 echo "*** Configuration $machine not supported" 1>&2
1186 exit 1
61ed06c3 1187 ;;
c7bdf0a6 1188i[34567]86-*-rtems*)
f22b4bc4 1189 xm_defines=POSIX
39ed301b 1190 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
61ed06c3
HPN
1191 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1192 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
bc98ef7f
JS
1193 if test x$enable_threads = xyes; then
1194 thread_file='rtems'
1195 fi
61ed06c3
HPN
1196 ;;
1197i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
34f4f3a5 1198 xm_defines=POSIX
61ed06c3 1199 install_headers_dir=install-headers-cpio
39ed301b 1200 tm_file="${tm_file} i386/unix.h i386/att.h i386/sco5.h"
61ed06c3
HPN
1201 if test x$gas = xyes
1202 then
70305f2b 1203 tm_file="usegas.h ${tm_file}"
61ed06c3
HPN
1204 tmake_file=i386/t-sco5gas
1205 else
1206 tmake_file=i386/t-sco5
1207 fi
61ed06c3
HPN
1208 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1209 ;;
61ed06c3 1210i[34567]86-*-solaris2*)
34f4f3a5 1211 xm_defines="POSIX SMALL_ARG_MAX"
8433a25e 1212 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
14455c64 1213 tmake_file="i386/t-sol2 t-svr4"
7b3a4df5
RH
1214 if test x$gnu_ld = xyes; then
1215 tmake_file="$tmake_file t-slibgcc-elf-ver"
1216 else
1217 tmake_file="$tmake_file t-slibgcc-sld"
1218 fi
61ed06c3 1219 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
61ed06c3
HPN
1220 if test x${enable_threads} = x; then
1221 enable_threads=$have_pthread_h
1222 if test x${enable_threads} = x; then
1223 enable_threads=$have_thread_h
1224 fi
1225 fi
1226 if test x${enable_threads} = xyes; then
1227 if test x${have_pthread_h} = xyes; then
1228 thread_file='posix'
1229 else
1230 thread_file='solaris'
1231 fi
1232 fi
1233 ;;
23a535c4 1234i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
34f4f3a5 1235 xm_defines=POSIX
39ed301b 1236 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
61ed06c3
HPN
1237 if test x$stabs = xyes
1238 then
1239 tm_file="${tm_file} dbx.h"
1240 fi
14455c64 1241 tmake_file="i386/t-crtpic t-svr4"
61ed06c3
HPN
1242 extra_parts="crtbegin.o crtend.o"
1243 if test x$enable_threads = xyes; then
1244 thread_file='posix'
1245 fi
1246 ;;
1247i[34567]86-*-sysv4*) # Intel 80386's running system V.4
34f4f3a5 1248 xm_defines="POSIX SMALL_ARG_MAX"
3d05b15f 1249 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
61ed06c3
HPN
1250 if test x$stabs = xyes
1251 then
1252 tm_file="${tm_file} dbx.h"
1253 fi
14455c64 1254 tmake_file="i386/t-crtpic t-svr4"
61ed06c3
HPN
1255 extra_parts="crtbegin.o crtend.o"
1256 ;;
1257i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
34f4f3a5 1258 xm_defines=POSIX
39ed301b 1259 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
14455c64 1260 tmake_file="i386/t-crtpic i386/t-udk t-svr4"
61ed06c3
HPN
1261 extra_parts="crtbegin.o crtend.o"
1262 install_headers_dir=install-headers-cpio
1263 ;;
61ed06c3 1264i[34567]86-*-sysv*) # Intel 80386's running system V
34f4f3a5 1265 xm_defines=POSIX
61ed06c3
HPN
1266 if test x$gas = xyes
1267 then
1268 if test x$stabs = xyes
1269 then
39ed301b 1270 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
61ed06c3 1271 tmake_file=i386/t-svr3dbx
c7bdf0a6 1272 extra_parts="svr3.ifile svr3z.ifile"
61ed06c3 1273 else
39ed301b 1274 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
61ed06c3
HPN
1275 extra_parts="crtbegin.o crtend.o"
1276 tmake_file=i386/t-crtstuff
1277 fi
1278 else
39ed301b 1279 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
61ed06c3
HPN
1280 extra_parts="crtbegin.o crtend.o"
1281 tmake_file=i386/t-crtstuff
1282 fi
1283 tmake_file="$tmake_file i386/t-crtpic"
1284 ;;
1285i386-*-vsta) # Intel 80386's running VSTa kernel
39ed301b
DB
1286 xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h"
1287 tm_file="${tm_file} i386/vsta.h"
61ed06c3
HPN
1288 ;;
1289i[34567]86-*-win32)
b19a539e 1290 xm_defines=POSIX
4dc0535b 1291 xm_file=i386/xm-cygwin.h
61ed06c3 1292 tmake_file=i386/t-cygwin
39ed301b 1293 tm_file="${tm_file} i386/win32.h"
61ed06c3
HPN
1294 extra_objs=winnt.o
1295 if test x$enable_threads = xyes; then
1296 thread_file='win32'
1297 fi
1298 exeext=.exe
1299 ;;
1300i[34567]86-*-pe | i[34567]86-*-cygwin*)
b19a539e 1301 xm_defines=POSIX
4dc0535b 1302 xm_file=i386/xm-cygwin.h
61ed06c3
HPN
1303 tmake_file=i386/t-cygwin
1304 tm_file=i386/cygwin.h
61ed06c3
HPN
1305 extra_objs=winnt.o
1306 if test x$enable_threads = xyes; then
1307 thread_file='win32'
1308 fi
1309 exeext=.exe
1310 ;;
1311i[34567]86-*-mingw32*)
1312 tm_file=i386/mingw32.h
34f4f3a5 1313 xm_defines=POSIX
4dc0535b 1314 xm_file=i386/xm-mingw32.h
61ed06c3
HPN
1315 tmake_file="i386/t-cygwin i386/t-mingw32"
1316 extra_objs=winnt.o
61ed06c3
HPN
1317 if test x$enable_threads = xyes; then
1318 thread_file='win32'
1319 fi
1320 exeext=.exe
1321 case $machine in
09eaf5a5 1322 *mingw32crt*)
61ed06c3
HPN
1323 tm_file="${tm_file} i386/crtdll.h"
1324 ;;
09eaf5a5
DS
1325 *minwg32msv* | *mingw32*)
1326 ;;
61ed06c3
HPN
1327 esac
1328 ;;
1329i[34567]86-*-uwin*)
39ed301b 1330 tm_file="i386/cygwin.h i386/uwin.h"
61ed06c3
HPN
1331 tmake_file="i386/t-cygwin i386/t-uwin"
1332 extra_objs=winnt.o
61ed06c3
HPN
1333 if test x$enable_threads = xyes; then
1334 thread_file='win32'
1335 fi
1336 exeext=.exe
1337 ;;
04cec1a7 1338i[34567]86-*-interix3*)
39ed301b 1339 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h i386/i386-interix3.h interix.h interix3.h"
04cec1a7 1340 xm_defines=POSIX
5dd8a9b1 1341 tmake_file="t-interix i386/t-interix"
84512347 1342 extra_objs=winnt.o
5dd8a9b1 1343 xmake_file="x-interix"
04cec1a7
DR
1344 if test x$enable_threads = xyes ; then
1345 thread_file='posix'
1346 fi
1347 if test x$stabs = xyes ; then
1348 tm_file="${tm_file} dbxcoff.h"
1349 fi
1350 ;;
61ed06c3 1351i[34567]86-*-interix*)
39ed301b 1352 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
34f4f3a5 1353 xm_defines=POSIX
14455c64 1354 tmake_file="t-interix i386/t-interix"
84512347 1355 extra_objs=winnt.o
61ed06c3
HPN
1356 if test x$enable_threads = xyes ; then
1357 thread_file='posix'
1358 fi
1359 if test x$stabs = xyes ; then
1360 tm_file="${tm_file} dbxcoff.h"
1361 fi
1362 ;;
61ed06c3
HPN
1363i960-*-coff*)
1364 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1365 tmake_file=i960/t-960bare
43fabf7d
JW
1366 c_target_objs="i960-c.o"
1367 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1368 ;;
1369i960-*-rtems)
f22b4bc4 1370 xm_defines=POSIX
61ed06c3 1371 tmake_file="i960/t-960bare t-rtems"
f22b4bc4 1372 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
bc98ef7f
JS
1373 if test x$enable_threads = xyes; then
1374 thread_file='rtems'
1375 fi
43fabf7d
JW
1376 c_target_objs="i960-c.o"
1377 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1378 ;;
1379i960-*-*) # Default i960 environment.
1380 use_collect2=yes
5f37d07c 1381 tmake_file=i960/t-960bare
43fabf7d
JW
1382 c_target_objs="i960-c.o"
1383 cxx_target_objs="i960-c.o"
61ed06c3 1384 ;;
c177db4b 1385ia64*-*-aix*)
c40409ce 1386 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
c177db4b
TW
1387 tmake_file="ia64/t-ia64 ia64/t-aix"
1388 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
32b4f6f4 1389 extra_parts="crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
c177db4b 1390 ;;
61ed06c3 1391ia64*-*-elf*)
c40409ce 1392 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
61ed06c3
HPN
1393 tmake_file="ia64/t-ia64"
1394 target_cpu_default="0"
1395 if test x$gas = xyes
1396 then
1397 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1398 fi
1399 if test x$gnu_ld = xyes
1400 then
1401 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1402 fi
32b4f6f4 1403 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
61ed06c3 1404 ;;
243a7070 1405ia64*-*-freebsd*)
fee42cc1 1406 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
243a7070
DB
1407 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1408 tmake_file="${tmake_file} ia64/t-ia64"
32b4f6f4 1409 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
243a7070 1410 ;;
61ed06c3 1411ia64*-*-linux*)
c40409ce 1412 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
7b3a4df5 1413 tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
61ed06c3 1414 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
32b4f6f4 1415 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
4977bab6
ZW
1416 if test x"$use_libunwind_exceptions" = xyes; then
1417 tmake_file="$tmake_file t-libunwind"
1418 fi
61ed06c3 1419 ;;
7e5b9908 1420ia64*-*-hpux*)
c40409ce 1421 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
23c108af 1422 tmake_file="ia64/t-ia64 ia64/t-hpux"
7e5b9908
SE
1423 target_cpu_default="MASK_GNU_AS"
1424 if test x$enable_threads = xyes; then
1425 thread_file='posix'
1426 fi
cad61762 1427 use_collect2=no
34c1864f
SE
1428 c_target_objs="ia64-c.o"
1429 cxx_target_objs="ia64-c.o"
7e5b9908 1430 ;;
6d439235 1431ip2k-*-elf)
2f9021d3 1432 ;;
61ed06c3 1433m32r-*-elf*)
c40409ce 1434 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
1435 extra_parts="crtinit.o crtfini.o"
1436 ;;
1437# m68hc11 and m68hc12 share the same machine description.
1438m68hc11-*-*|m6811-*-*)
c40409ce 1439 tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
61ed06c3
HPN
1440 tm_p_file="m68hc11/m68hc11-protos.h"
1441 md_file="m68hc11/m68hc11.md"
1442 out_file="m68hc11/m68hc11.c"
1443 tmake_file="m68hc11/t-m68hc11-gas"
1444 ;;
1445m68hc12-*-*|m6812-*-*)
c40409ce 1446 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
61ed06c3 1447 tm_p_file="m68hc11/m68hc11-protos.h"
61ed06c3
HPN
1448 md_file="m68hc11/m68hc11.md"
1449 out_file="m68hc11/m68hc11.c"
1450 tmake_file="m68hc11/t-m68hc11-gas"
1451 ;;
61ed06c3
HPN
1452m68000-hp-bsd*) # HP 9000/200 running BSD
1453 tm_file=m68k/hp2bsd.h
61ed06c3 1454 use_collect2=yes
61ed06c3
HPN
1455 ;;
1456m68000-hp-hpux*) # HP 9000 series 300
34f4f3a5 1457 xm_defines=POSIX
61ed06c3
HPN
1458 if test x$gas = xyes
1459 then
61ed06c3
HPN
1460 tm_file=m68k/hp310g.h
1461 else
61ed06c3
HPN
1462 tm_file=m68k/hp310.h
1463 fi
14455c64 1464 tmake_file=m68k/t-hp320
61ed06c3
HPN
1465 install_headers_dir=install-headers-cpio
1466 use_collect2=yes
61ed06c3
HPN
1467 ;;
1468m68000-sun-sunos3*)
1469 tm_file=m68k/sun2.h
1470 use_collect2=yes
61ed06c3
HPN
1471 ;;
1472m68000-sun-sunos4*)
1473 tm_file=m68k/sun2o4.h
1474 use_collect2=yes
61ed06c3
HPN
1475 ;;
1476m68000-att-sysv*)
34f4f3a5 1477 xm_defines=POSIX
61ed06c3
HPN
1478 if test x$gas = xyes
1479 then
1480 tm_file=m68k/3b1g.h
1481 else
1482 tm_file=m68k/3b1.h
1483 fi
1484 use_collect2=yes
61ed06c3 1485 ;;
61ed06c3
HPN
1486m68k-atari-sysv4*) # Atari variant of V.4.
1487 tm_file=m68k/atari.h
34f4f3a5 1488 xm_defines=POSIX
61ed06c3
HPN
1489 tmake_file=t-svr4
1490 extra_parts="crtbegin.o crtend.o"
61ed06c3 1491 ;;
c7bdf0a6
ZW
1492m68k-apollo-sysv* | m68k-bull-sysv*)
1493 # can otherwise be caught by m68k-*-sysv4*
1494 echo "*** Configuration $machine not supported" 1>&2
1495 exit 1
1496 ;;
61ed06c3
HPN
1497m68k-motorola-sysv*)
1498 tm_file=m68k/mot3300.h
34f4f3a5 1499 xm_defines=POSIX
61ed06c3
HPN
1500 if test x$gas = xyes
1501 then
61ed06c3
HPN
1502 if test x$gnu_ld = xyes
1503 then
1504 tmake_file=m68k/t-mot3300-gald
1505 else
1506 tmake_file=m68k/t-mot3300-gas
1507 use_collect2=yes
1508 fi
1509 else
61ed06c3
HPN
1510 if test x$gnu_ld = xyes
1511 then
1512 tmake_file=m68k/t-mot3300-gld
1513 else
1514 tmake_file=m68k/t-mot3300
1515 use_collect2=yes
1516 fi
1517 fi
1518 gdb_needs_out_file_path=yes
1519 extra_parts="crt0.o mcrt0.o"
61ed06c3
HPN
1520 ;;
1521m68k-ncr-sysv*) # NCR Tower 32 SVR3
1522 tm_file=m68k/tower-as.h
34f4f3a5 1523 xm_defines=POSIX
61ed06c3 1524 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1525 ;;
1526m68k-plexus-sysv*)
1527 tm_file=m68k/plexus.h
34f4f3a5 1528 xm_defines=POSIX
61ed06c3 1529 use_collect2=yes
61ed06c3
HPN
1530 ;;
1531m68k-tti-*)
1532 tm_file=m68k/pbb.h
34f4f3a5 1533 xm_defines=POSIX
61ed06c3
HPN
1534 ;;
1535m68k-crds-unos*)
34f4f3a5 1536 xm_defines=POSIX
61ed06c3
HPN
1537 tm_file=m68k/crds.h
1538 use_collect2=yes
61ed06c3
HPN
1539 ;;
1540m68k-cbm-sysv4*) # Commodore variant of V.4.
1541 tm_file=m68k/amix.h
34f4f3a5 1542 xm_defines=POSIX
61ed06c3
HPN
1543 tmake_file=t-svr4
1544 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1545 ;;
1546m68k-ccur-rtu)
1547 tm_file=m68k/ccur-GAS.h
61ed06c3 1548 use_collect2=yes
61ed06c3
HPN
1549 ;;
1550m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
1551 tm_file=m68k/hp3bsd44.h
61ed06c3 1552 use_collect2=yes
61ed06c3
HPN
1553 ;;
1554m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
1555 tm_file=m68k/hp3bsd.h
1556 use_collect2=yes
61ed06c3 1557 ;;
61ed06c3 1558m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
34f4f3a5 1559 xm_defines=POSIX
61ed06c3
HPN
1560 if test x$gas = xyes
1561 then
1562 xmake_file=m68k/x-hp320g
1563 tm_file=m68k/hp320g.h
1564 else
1565 xmake_file=m68k/x-hp320
1566 tm_file=m68k/hpux7.h
1567 fi
1568 install_headers_dir=install-headers-cpio
1569 use_collect2=yes
61ed06c3
HPN
1570 ;;
1571m68k-hp-hpux*) # HP 9000 series 300
34f4f3a5 1572 xm_defines=POSIX
61ed06c3
HPN
1573 if test x$gas = xyes
1574 then
1575 xmake_file=m68k/x-hp320g
1576 tm_file=m68k/hp320g.h
1577 else
1578 xmake_file=m68k/x-hp320
1579 tm_file=m68k/hp320.h
1580 fi
1581 install_headers_dir=install-headers-cpio
1582 use_collect2=yes
61ed06c3
HPN
1583 ;;
1584m68k-sun-mach*)
1585 tm_file=m68k/sun3mach.h
1586 use_collect2=yes
61ed06c3 1587 ;;
61ed06c3
HPN
1588m68k-sun-sunos3*)
1589 if test x$with_fp = xno
1590 then
1591 tm_file=m68k/sun3n3.h
1592 else
1593 tm_file=m68k/sun3o3.h
61ed06c3
HPN
1594 fi
1595 use_collect2=yes
61ed06c3
HPN
1596 ;;
1597m68k-sun-sunos*) # For SunOS 4 (the default).
1598 if test x$with_fp = xno
1599 then
1600 tm_file=m68k/sun3n.h
1601 else
1602 tm_file=m68k/sun3.h
61ed06c3
HPN
1603 fi
1604 use_collect2=yes
61ed06c3 1605 ;;
61ed06c3
HPN
1606m68k-*-aout*)
1607 tmake_file=m68k/t-m68kbare
1608 tm_file="m68k/m68k-aout.h libgloss.h"
61ed06c3
HPN
1609 ;;
1610m68k-*-coff*)
1611 tmake_file=m68k/t-m68kbare
1612 tm_file="m68k/m68k-coff.h dbx.h"
61ed06c3
HPN
1613 ;;
1614m68020-*-elf* | m68k-*-elf*)
91171315 1615 tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
34f4f3a5 1616 xm_defines=POSIX
61ed06c3 1617 tmake_file=m68k/t-m68kelf
bb8602be 1618 extra_parts="crtbegin.o crtend.o"
61ed06c3 1619 ;;
2fd95d71
JT
1620m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1621 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1622 case $machine in
1623 m68010*)
1624 target_cpu_default="0"
1625 ;;
1626 *)
1627 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1628 ;;
1629 esac
2fd95d71 1630 ;;
61ed06c3
HPN
1631m68k*-*-netbsd*)
1632 tm_file=m68k/netbsd.h
1633 tmake_file=t-netbsd
1169f9e0 1634 extra_parts=""
5721cd84 1635 use_collect2=yes
61ed06c3
HPN
1636 ;;
1637m68k*-*-openbsd*)
f1cf4606
ME
1638 # needed to unconfuse gdb
1639 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
61ed06c3
HPN
1640 # we need collect2 until our bug is fixed...
1641 use_collect2=yes
1642 ;;
61ed06c3
HPN
1643m68k-*-sysv4*) # Motorola m68k's running system V.4
1644 tm_file=m68k/m68kv4.h
34f4f3a5 1645 xm_defines=POSIX
61ed06c3
HPN
1646 tmake_file=t-svr4
1647 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1648 ;;
1649m68k-*-linux*aout*) # Motorola m68k's running GNU/Linux
1650 # with a.out format
61ed06c3
HPN
1651 tm_file=m68k/linux-aout.h
1652 tmake_file="t-linux-aout m68k/t-linux-aout"
61ed06c3
HPN
1653 gnu_ld=yes
1654 ;;
1655m68k-*-linux*libc1) # Motorola m68k's running GNU/Linux
1656 # with ELF format using the
1657 # GNU/Linux C library 5
61ed06c3 1658 tm_file=m68k/linux.h
7b3a4df5 1659 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
61ed06c3 1660 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
61ed06c3
HPN
1661 gnu_ld=yes
1662 ;;
1663m68k-*-linux*) # Motorola m68k's running GNU/Linux
1664 # with ELF format using glibc 2
1665 # aka the GNU/Linux C library 6.
61ed06c3 1666 tm_file=m68k/linux.h
7b3a4df5 1667 tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
61ed06c3
HPN
1668 ;;
1669m68k-*-psos*)
1670 tmake_file=m68k/t-m68kbare
1671 tm_file=m68k/m68k-psos.h
61ed06c3 1672 ;;
c7bdf0a6
ZW
1673m68k-*-rtemscoff*) # would otherwise be caught by m68k-*-rtems*
1674 echo "*** Configuration $machine not supported" 1>&2
1675 exit 1
61ed06c3 1676 ;;
c7bdf0a6 1677m68k-*-rtems*)
f22b4bc4 1678 xm_defines=POSIX
61ed06c3 1679 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
f22b4bc4 1680 tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h"
bb8602be 1681 extra_parts="crtbegin.o crtend.o"
bc98ef7f
JS
1682 if test x$enable_threads = xyes; then
1683 thread_file='rtems'
1684 fi
61ed06c3 1685 ;;
61ed06c3 1686m88k-*-aout*)
34f4f3a5 1687 xm_defines=POSIX
61ed06c3
HPN
1688 tm_file=m88k/m88k-aout.h
1689 ;;
61ed06c3
HPN
1690m88k-*-openbsd*)
1691 tmake_file="${tmake_file} m88k/t-luna-gas"
1692 tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
61ed06c3 1693 ;;
61ed06c3 1694m88k-*-sysv4*)
34f4f3a5 1695 xm_defines=POSIX
c40409ce 1696 tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h"
61ed06c3 1697 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1698 tmake_file=m88k/t-sysv4
1699 ;;
1700mcore-*-elf)
c40409ce 1701 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
61ed06c3
HPN
1702 tmake_file=mcore/t-mcore
1703 ;;
1704mcore-*-pe*)
1705 tm_file=mcore/mcore-pe.h
1706 tmake_file=mcore/t-mcore-pe
1707 ;;
789b7de5
RO
1708mips-sgi-irix6*o32) # SGI System V.4., IRIX 6, O32 ABI
1709 if test x$gas = xyes
1710 then
59267987 1711 tm_file="mips/iris5.h mips/iris5gas.h mips/iris6-o32-gas.h"
789b7de5
RO
1712 if test x$stabs = xyes
1713 then
1714 tm_file="${tm_file} dbx.h"
1715 fi
59267987 1716 tmake_file=mips/t-iris5-gas
789b7de5
RO
1717 else
1718 tm_file="mips/iris5.h mips/iris6-o32-as.h"
1719 tmake_file=mips/t-iris5-as
1720 fi
1721 tm_file="${tm_file} mips/iris6-o32.h"
1722 tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1723 xm_defines=POSIX
1724 xm_file=mips/xm-iris5.h
1725 # mips-tfile doesn't work yet
1726 # See comment in mips/iris5.h file.
1727 use_collect2=yes
1728# if test x$enable_threads = xyes; then
1729# thread_file='irix'
1730# fi
1731 ;;
61ed06c3
HPN
1732mips-sgi-irix6*) # SGI System V.4., IRIX 6
1733 if test "x$gnu_ld" = xyes
1734 then
1735 tm_file="mips/iris6.h mips/iris6gld.h"
1736 else
1737 tm_file=mips/iris6.h
1738 fi
789b7de5 1739 tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
34f4f3a5 1740 xm_defines=POSIX
61ed06c3
HPN
1741# if test x$enable_threads = xyes; then
1742# thread_file='irix'
1743# fi
1744 ;;
61ed06c3
HPN
1745mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
1746 tm_file="mips/iris6.h mips/cross64.h"
34f4f3a5 1747 xm_defines=POSIX
84c041a1 1748 xm_file=mips/xm-iris5.h
14455c64 1749 tmake_file="mips/t-iris mips/t-cross64"
61ed06c3
HPN
1750 # See comment in mips/iris[56].h files.
1751 use_collect2=yes
1752# if test x$enable_threads = xyes; then
1753# thread_file='irix'
1754# fi
1755 ;;
1756mips-sni-sysv4)
1757 if test x$gas = xyes
1758 then
1759 if test x$stabs = xyes
1760 then
1761 tm_file=mips/iris5gdb.h
1762 else
1763 tm_file="mips/sni-svr4.h mips/sni-gas.h"
1764 fi
1765 else
1766 tm_file=mips/sni-svr4.h
1767 fi
34f4f3a5 1768 xm_defines=POSIX
61ed06c3
HPN
1769 if test x$gnu_ld != xyes
1770 then
1771 use_collect2=yes
1772 fi
1773 ;;
1774mips-sgi-irix5*) # SGI System V.4., IRIX 5
1775 if test x$gas = xyes
1776 then
1777 tm_file="mips/iris5.h mips/iris5gas.h"
1778 if test x$stabs = xyes
1779 then
1780 tm_file="${tm_file} dbx.h"
1781 fi
59267987 1782 tmake_file=mips/t-iris5-gas
61ed06c3
HPN
1783 else
1784 tm_file=mips/iris5.h
789b7de5 1785 tmake_file=mips/t-iris5-as
61ed06c3 1786 fi
789b7de5 1787 tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
34f4f3a5 1788 xm_defines=POSIX
84c041a1 1789 xm_file=mips/xm-iris5.h
61ed06c3 1790 # mips-tfile doesn't work yet
61ed06c3
HPN
1791 # See comment in mips/iris5.h file.
1792 use_collect2=yes
1793# if test x$enable_threads = xyes; then
1794# thread_file='irix'
1795# fi
1796 ;;
c7bdf0a6
ZW
1797mips-sgi-*) # would otherwise be caught by mips-*-elf*
1798 echo "*** Configuration $machine not supported" 1>&2
1799 exit 1
61ed06c3 1800 ;;
f982f805 1801mips*-*-netbsd*) # NetBSD/mips, either endian.
27f4b67e 1802 target_cpu_default="MASK_GAS|MASK_ABICALLS"
f3f268dd 1803 tm_file="elfos.h ${tm_file} mips/netbsd.h"
4977bab6 1804 tmake_file="${tmake_file}"
61ed06c3 1805 ;;
3bd6d4c4
AO
1806mips64*-*-linux*)
1807 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
1808 tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux mips/t-linux64"
1809
1810 # This default ABI is a partial lie: t-linux64 overrides the
1811 # DRIVER_SELF_SPEC that sets the default abi, in the spec file
1812 # that is installed. What GCC thinks of as the default must
1813 # remain as ABI_32 such that the SONAMEs of the libgcc shared
1814 # libraries remain compatible with those of mips-linux-gnu.
1815 tm_defines="MIPS_ISA_DEFAULT=1 MIPS_ABI_DEFAULT=ABI_32"
1816 target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1817 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1818 gnu_ld=yes
1819 gas=yes
1820 if test x$enable_threads = xyes; then
1821 thread_file='posix'
1822 fi
1823 ;;
61ed06c3 1824mips*-*-linux*) # Linux MIPS, either endian.
2017ed61 1825 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
61ed06c3 1826 case $machine in
009da785 1827 mipsisa32*-*)
009da785 1828 target_cpu_default="MASK_SOFT_FLOAT"
6d439235 1829 tm_defines="MIPS_ISA_DEFAULT=32"
009da785
EC
1830 ;;
1831 esac
4977bab6 1832 tmake_file="t-slibgcc-elf-ver t-linux"
61ed06c3
HPN
1833 ;;
1834mips*el-*-openbsd*) # mips little endian
1835 target_cpu_default="MASK_GAS|MASK_ABICALLS"
1836 ;;
1837mips*-*-openbsd*) # mips big endian
1838 target_cpu_default="MASK_GAS|MASK_ABICALLS"
1839 tm_file="mips/openbsd-be.h ${tm_file}"
1840 ;;
74826b0f 1841mips-*-ecoff* | mipsel-*-ecoff*)
61ed06c3
HPN
1842 if test x$stabs = xyes; then
1843 tm_file="${tm_file} dbx.h"
1844 fi
1845 tmake_file=mips/t-ecoff
1846 ;;
74826b0f 1847mipsisa32-*-elf* | mipsisa32el-*-elf*)
ac8ab9fe 1848 tm_file="${tm_file} mips/elf.h"
0e5a4ad8 1849 tmake_file=mips/t-isa3264
ef8dfae6 1850 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_EABI"
0e5a4ad8 1851 ;;
2d2a50c3
CD
1852mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
1853 tm_file="${tm_file} mips/elf.h"
1854 tmake_file=mips/t-isa3264
1855 tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_EABI"
1856 ;;
5c44e275 1857mipsisa64-*-elf* | mipsisa64el-*-elf*)
ac8ab9fe 1858 tm_file="${tm_file} mips/elf.h"
5c44e275
CD
1859 tmake_file=mips/t-isa3264
1860 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
6d439235 1861 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_MEABI"
5c44e275 1862 ;;
5ce6f47b
EC
1863mipsisa64sr71k-*-elf*)
1864 tm_file="${tm_file} mips/elf.h"
1865 tmake_file=mips/t-sr71k
1866 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1867 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_MEABI"
1868 ;;
3d41dbb0 1869mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
ac8ab9fe 1870 tm_file="${tm_file} mips/elf.h"
3d41dbb0
CD
1871 tmake_file=mips/t-elf
1872 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1873 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1874 ;;
74826b0f 1875mips-*-elf* | mipsel-*-elf*)
6d439235 1876 tm_file="${tm_file} mips/elf.h"
61ed06c3
HPN
1877 tmake_file=mips/t-elf
1878 ;;
74826b0f 1879mips64-*-elf* | mips64el-*-elf*)
6d439235 1880 tm_file="${tm_file} mips/elf64.h"
61ed06c3 1881 tmake_file=mips/t-elf
6d439235
EC
1882 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1883 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
61ed06c3 1884 ;;
5ce6f47b
EC
1885mips64vr-*-elf* | mips64vrel-*-elf*)
1886 tm_file="mips/vr.h ${tm_file} mips/elf64.h"
60bc2b4b 1887 tm_defines="MIPS_ABI_DEFAULT=ABI_O64 MIPS_MARCH_CONTROLS_SOFT_FLOAT=1"
5ce6f47b
EC
1888 tmake_file=mips/t-vr
1889 ;;
74826b0f 1890mips64orion-*-elf* | mips64orionel-*-elf*)
6d439235
EC
1891 tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1892 tmake_file=mips/t-elf
61ed06c3 1893 tmake_file=mips/t-elf
6d439235
EC
1894 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1895 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
61ed06c3
HPN
1896 ;;
1897mips64orion-*-rtems*)
f22b4bc4 1898 xm_defines=POSIX
6d439235 1899 tm_file="${tm_file} mips/elforion.h mips/elf64.h mips/rtems64.h rtems.h"
61ed06c3 1900 tmake_file="mips/t-elf t-rtems"
6d439235
EC
1901 tmake_file=mips/t-elf
1902 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1903 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
bc98ef7f
JS
1904 if test x$enable_threads = xyes; then
1905 thread_file='rtems'
1906 fi
1907 ;;
1908mips*-*-rtems*)
f22b4bc4 1909 xm_defines=POSIX
6d439235 1910 tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
bc98ef7f
JS
1911 tmake_file="mips/t-elf t-rtems"
1912 if test x$enable_threads = xyes; then
1913 thread_file='rtems'
1914 fi
61ed06c3 1915 ;;
74826b0f 1916mipstx39-*-elf* | mipstx39el-*-elf*)
ac8ab9fe 1917 tm_file="${tm_file} mips/r3900.h mips/elf.h"
61ed06c3
HPN
1918 tmake_file=mips/t-r3900
1919 ;;
bcf684c7 1920mmix-knuth-mmixware)
4977bab6 1921 need_64bit_hwint=yes
bcf684c7 1922 ;;
61ed06c3 1923mn10200-*-*)
c40409ce 1924 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
1925 if test x$stabs = xyes
1926 then
1927 tm_file="${tm_file} dbx.h"
1928 fi
1929 use_collect2=no
1930 ;;
1931mn10300-*-*)
c40409ce 1932 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
1933 if test x$stabs = xyes
1934 then
1935 tm_file="${tm_file} dbx.h"
1936 fi
1937 use_collect2=no
1938 ;;
69474c3c
JT
1939ns32k-*-netbsdelf*)
1940 echo "GCC does not yet support the ${machine} target"; exit 1
1941 ;;
61ed06c3 1942ns32k-*-netbsd*)
c8eb9785 1943 tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
61ed06c3 1944 # On NetBSD, the headers are already okay, except for math.h.
ac14c725 1945 tmake_file="t-netbsd ns32k/t-ns32k"
1169f9e0 1946 extra_parts=""
5721cd84 1947 use_collect2=yes
61ed06c3
HPN
1948 ;;
1949pdp11-*-bsd)
1950 tm_file="${tm_file} pdp11/2bsd.h"
1951 ;;
1952pdp11-*-*)
1953 ;;
1954avr-*-*)
1955 ;;
1956ns32k-*-openbsd*)
1957 # Nothing special
1958 ;;
61ed06c3
HPN
1959romp-*-openbsd*)
1960 # Nothing special
1961 ;;
1962powerpc-*-openbsd*)
40b4cdbf 1963 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-openbsd"
ba1e6c0b 1964 extra_headers=
61ed06c3 1965 ;;
2bfcf297 1966powerpc64-*-linux*)
c40409ce 1967 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h"
40b4cdbf 1968 tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-linux rs6000/t-linux64"
2bfcf297 1969 ;;
ddb28441
RM
1970powerpc64-*-gnu*)
1971 tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux64.h rs6000/gnu.h"
40b4cdbf 1972 tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
ddb28441 1973 ;;
61ed06c3 1974powerpc-*-beos*)
2bfcf297 1975 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
34f4f3a5 1976 xm_defines=POSIX
40b4cdbf 1977 tmake_file="rs6000/t-fprules rs6000/t-beos"
ba1e6c0b 1978 extra_headers=
61ed06c3 1979 ;;
18922061 1980powerpc-*-darwin*)
40b4cdbf
GK
1981 tm_file="${tm_file} rs6000/darwin.h"
1982 tmake_file="rs6000/t-fprules t-darwin rs6000/t-darwin"
5fb4cf24 1983 extra_headers=altivec.h
4977bab6
ZW
1984 # override ppc default
1985 need_64bit_hwint=
18922061 1986 ;;
b91da81f 1987powerpc*-*-freebsd*)
c40409ce 1988 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
40b4cdbf 1989 tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
b91da81f 1990 ;;
61ed06c3 1991powerpc-*-sysv*)
c40409ce 1992 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
34f4f3a5 1993 xm_defines=POSIX
40b4cdbf 1994 tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
61ed06c3 1995 ;;
edf1b3f3 1996powerpc-*-netbsd*)
a4967b8d
JT
1997 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1998 tmake_file="${tmake_file} rs6000/t-netbsd"
edf1b3f3 1999 ;;
8da6d80e 2000powerpc-*-chorusos*)
34f4f3a5 2001 xm_defines=POSIX
c40409ce 2002 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
40b4cdbf 2003 tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
8da6d80e
CC
2004 case x${enable_threads} in
2005 xyes | xpthreads | xposix)
2006 thread_file='posix'
2007 ;;
2008 esac
2009 ;;
61ed06c3 2010powerpc-*-eabiaix*)
34f4f3a5 2011 xm_defines=POSIX
c40409ce 2012 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
40b4cdbf 2013 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2014 ;;
518878e1
AH
2015powerpc-*-eabispe*)
2016 xm_defines=POSIX
2017 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
40b4cdbf 2018 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
518878e1 2019 ;;
cf6ede82
AH
2020powerpc-*-eabisimaltivec*)
2021 xm_defines=POSIX
2022 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h rs6000/eabialtivec.h"
40b4cdbf 2023 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
cf6ede82 2024 ;;
61ed06c3 2025powerpc-*-eabisim*)
34f4f3a5 2026 xm_defines=POSIX
c40409ce 2027 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
40b4cdbf 2028 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2029 ;;
2030powerpc-*-elf*)
34f4f3a5 2031 xm_defines=POSIX
c40409ce 2032 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
40b4cdbf 2033 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2034 ;;
10baca6b
AH
2035powerpc-*-eabialtivec*)
2036 xm_defines=POSIX
2037 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
40b4cdbf 2038 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
10baca6b 2039 ;;
61ed06c3 2040powerpc-*-eabi*)
34f4f3a5 2041 xm_defines=POSIX
c40409ce 2042 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
40b4cdbf 2043 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2044 ;;
2045powerpc-*-rtems*)
34f4f3a5 2046 xm_defines=POSIX
f22b4bc4 2047 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
40b4cdbf 2048 tmake_file="rs6000/t-fprules rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
bc98ef7f
JS
2049 if test x$enable_threads = xyes; then
2050 thread_file='rtems'
2051 fi
61ed06c3
HPN
2052 ;;
2053powerpc-*-linux*libc1)
c40409ce 2054 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
40b4cdbf 2055 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
61ed06c3
HPN
2056 if test x$enable_threads = xyes; then
2057 thread_file='posix'
2058 fi
2059 ;;
10baca6b
AH
2060powerpc-*-linux-gnualtivec*)
2061 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
40b4cdbf 2062 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
10baca6b 2063 ;;
61ed06c3 2064powerpc-*-linux*)
c40409ce 2065 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
40b4cdbf 2066 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
61ed06c3 2067 ;;
ddb28441
RM
2068powerpc-*-gnu-gnualtivec*)
2069 tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h rs6000/gnu.h"
40b4cdbf 2070 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
ddb28441
RM
2071 if test x$enable_threads = xyes; then
2072 thread_file='posix'
2073 fi
2074 ;;
2075powerpc-*-gnu*)
2076 tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/gnu.h"
40b4cdbf 2077 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
ddb28441
RM
2078 if test x$enable_threads = xyes; then
2079 thread_file='posix'
2080 fi
2081 ;;
61ed06c3 2082powerpc-wrs-vxworks*)
4977bab6
ZW
2083 # We want vxworks.h after rs6000/sysv4.h, which unfortunately
2084 # means we have to redo the tm_file list from scratch.
2085 tm_file="rs6000/rs6000.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2086 tm_file="${tm_file} vxworks.h rs6000/vxworks.h"
40b4cdbf 2087 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
4977bab6
ZW
2088 extra_headers=ppc-asm.h
2089 ;;
bce0deb2
MM
2090powerpc-wrs-windiss*)
2091 xm_defines=POSIX
2092 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
40b4cdbf 2093 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
bce0deb2
MM
2094 thread_file=""
2095 ;;
61ed06c3 2096powerpcle-*-sysv*)
c40409ce 2097 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
34f4f3a5 2098 xm_defines=POSIX
40b4cdbf 2099 tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
61ed06c3
HPN
2100 ;;
2101powerpcle-*-elf*)
34f4f3a5 2102 xm_defines=POSIX
c40409ce 2103 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
40b4cdbf 2104 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2105 ;;
2106powerpcle-*-eabisim*)
34f4f3a5 2107 xm_defines=POSIX
c40409ce 2108 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/eabisim.h"
40b4cdbf 2109 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2110 ;;
2111powerpcle-*-eabi*)
34f4f3a5 2112 xm_defines=POSIX
c40409ce 2113 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
40b4cdbf 2114 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2115 ;;
61ed06c3 2116rs6000-ibm-aix3.[01]*)
34f4f3a5 2117 xm_defines=POSIX
2bfcf297 2118 tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
61ed06c3
HPN
2119 use_collect2=yes
2120 ;;
2121rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
34f4f3a5 2122 xm_defines=POSIX
2bfcf297 2123 tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
40b4cdbf 2124 tmake_file="rs6000/t-fprules rs6000/t-newas"
61ed06c3 2125 use_collect2=yes
ba1e6c0b 2126 extra_headers=
61ed06c3
HPN
2127 ;;
2128rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
34f4f3a5 2129 xm_defines=POSIX
2bfcf297 2130 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
40b4cdbf 2131 tmake_file="rs6000/t-fprules rs6000/t-newas"
61ed06c3 2132 use_collect2=yes
ba1e6c0b 2133 extra_headers=
61ed06c3
HPN
2134 ;;
2135rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
34f4f3a5 2136 xm_defines=POSIX
2bfcf297 2137 tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
61ed06c3 2138 tmake_file=rs6000/t-aix43
61ed06c3
HPN
2139 use_collect2=yes
2140 thread_file='aix'
ba1e6c0b 2141 extra_headers=
61ed06c3 2142 ;;
5f5d5417 2143rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
34f4f3a5 2144 xm_defines=POSIX
2bfcf297 2145 tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
61ed06c3 2146 tmake_file=rs6000/t-aix43
61ed06c3
HPN
2147 use_collect2=yes
2148 thread_file='aix'
ba1e6c0b 2149 extra_headers=
61ed06c3 2150 ;;
5f5d5417
DE
2151rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
2152 xm_defines=POSIX
2153 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
2154 tmake_file=rs6000/t-aix52
2155 use_collect2=yes
2156 thread_file='aix'
2157 extra_headers=
2158 ;;
61ed06c3 2159rs6000-ibm-aix*)
34f4f3a5 2160 xm_defines=POSIX
2bfcf297 2161 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
61ed06c3
HPN
2162 use_collect2=yes
2163 ;;
2164rs6000-bull-bosx)
34f4f3a5 2165 xm_defines=POSIX
2bfcf297 2166 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
61ed06c3
HPN
2167 use_collect2=yes
2168 ;;
2169rs6000-*-mach*)
32fb7c9d 2170 tm_file="${tm_file} rs6000/mach.h"
34f4f3a5 2171 xm_defines=POSIX
61ed06c3
HPN
2172 use_collect2=yes
2173 ;;
2174rs6000-*-lynxos*)
b91da81f 2175 tm_file="lynx.h rs6000/lynx.h"
40b4cdbf 2176 tmake_file=rs6000/t-fprules
61ed06c3
HPN
2177 use_collect2=yes
2178 ;;
0e5a4ad8 2179s390-*-linux*)
c40409ce 2180 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
8ef34c0d 2181 tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff"
9628a767 2182 ;;
0e5a4ad8 2183s390x-*-linux*)
58d10f89 2184 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
70eeb10b
UW
2185 tm_p_file=s390/s390-protos.h
2186 md_file=s390/s390.md
1c0ca89d 2187 extra_modes=s390/s390-modes.def
70eeb10b 2188 out_file=s390/s390.c
8ef34c0d 2189 tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff s390/t-linux64"
9628a767 2190 ;;
8bc6e101 2191sh-*-elf* | sh[2346l]*-*-elf*)
61ed06c3 2192 tmake_file="sh/t-sh sh/t-elf"
dbf87f32
R
2193 case $machine in
2194 shl* | sh64l*)
2195 tm_file="sh/little.h ${tm_file}"
2196 tmake_file="${tmake_file} sh/t-le"
2197 ;;
2198 esac
f1a58d92 2199 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h"
dbf87f32
R
2200 case $machine in
2201 sh64*)
2202 tmake_file="${tmake_file} sh/t-sh64"
2203 tm_file="${tm_file} sh/sh64.h"
2204 extra_headers="shmedia.h ushmedia.h sshmedia.h"
dbf87f32 2205 ;;
8bc6e101
R
2206 sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
2207 sh4*) target_cpu_default="SELECT_SH4" ;;
2208 sh3e*) target_cpu_default="SELECT_SH3E" ;;
2209 sh3*) target_cpu_default="SELECT_SH3" ;;
3a8699c7 2210 sh2e*) target_cpu_default="SELECT_SH2E" ;;
8bc6e101
R
2211 sh2*) target_cpu_default="SELECT_SH2" ;;
2212 esac
2213 case $machine in
2214 sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
dbf87f32 2215 esac
fa5322fa 2216 ;;
61ed06c3 2217sh-*-rtemself*)
f22b4bc4 2218 xm_defines=POSIX
61ed06c3 2219 tmake_file="sh/t-sh sh/t-elf t-rtems"
f1a58d92 2220 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h sh/rtemself.h rtems.h"
bc98ef7f
JS
2221 if test x$enable_threads = xyes; then
2222 thread_file='rtems'
2223 fi
61ed06c3
HPN
2224 ;;
2225sh-*-rtems*)
f22b4bc4 2226 xm_defines=POSIX
61ed06c3 2227 tmake_file="sh/t-sh t-rtems"
f1a58d92 2228 tm_file="${tm_file} sh/coff.h sh/rtems.h rtems.h"
bc98ef7f
JS
2229 if test x$enable_threads = xyes; then
2230 thread_file='rtems'
2231 fi
61ed06c3 2232 ;;
8bc6e101 2233sh-*-linux* | sh[2346lbe]*-*-linux*)
4977bab6 2234 tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux sh/t-linux"
8bc6e101
R
2235 case $machine in
2236 sh*be-*-* | sh*eb-*-*) ;;
2237 *)
2238 tm_file="sh/little.h ${tm_file}"
2239 tmake_file="${tmake_file} sh/t-le"
2240 ;;
2241 esac
2242 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
8bc6e101
R
2243 case $machine in
2244 sh64*)
2245 tmake_file="${tmake_file} sh/t-sh64"
2246 tm_file="${tm_file} sh/sh64.h"
2247 extra_headers="shmedia.h ushmedia.h sshmedia.h"
8bc6e101
R
2248 ;;
2249 sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
2250 sh4*) target_cpu_default="SELECT_SH4" ;;
2251 sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
2252 sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
2253 sh3e*) target_cpu_default="SELECT_SH3E" ;;
2254 sh3*) target_cpu_default="SELECT_SH3" ;;
3a8699c7
AO
2255 sh2e[lb]e*) target_cpu_default="SELECT_SH2E" ;;
2256 sh2e[lb]*) target_cpu_default="SELECT_SH2" ;;
2257 sh2e*) target_cpu_default="SELECT_SH2E" ;;
8bc6e101
R
2258 sh2*) target_cpu_default="SELECT_SH2" ;;
2259 esac
2260 case $machine in
2261 sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
2262 esac
61ed06c3 2263 ;;
b655555e
JT
2264sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2265 sh64-*-netbsd* | sh64l*-*-netbsd*)
b4eb03fe
JT
2266 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2267 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2268 case $machine in
2269 sh*l*-*)
2270 tm_file="sh/little.h ${tm_file}"
2271 tmake_file="${tmake_file} sh/t-le"
2272 ;;
2273 *)
2274 tmake_file="${tmake_file} sh/t-be"
2275 ;;
2276 esac
b655555e
JT
2277 case $machine in
2278 sh5*-*)
2279 # SHmedia, 32-bit ABI
3a8699c7 2280 target_cpu_default="SH5_BIT|SH4_BIT|SH3_BIT|SH_E_BIT"
3fa1b448 2281 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
b655555e
JT
2282 ;;
2283 sh64*-*)
2284 # SHmedia, 64-bit ABI
2285 target_cpu_default="SH5_BIT|SH4_BIT"
3fa1b448 2286 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
b655555e
JT
2287 ;;
2288 *)
2289 # SH3, software floating point
2290 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
2291 tmake_file="${tmake_file} sh/t-netbsd"
2292 ;;
2293 esac
b4eb03fe 2294 ;;
61ed06c3 2295sh-*-*)
f1a58d92 2296 tm_file="${tm_file} sh/coff.h"
61ed06c3
HPN
2297 ;;
2298sparc-tti-*)
0f658c83 2299 tm_file="${tm_file} sparc/pbd.h"
34f4f3a5 2300 xm_defines=POSIX
61ed06c3 2301 ;;
61ed06c3
HPN
2302sparc-*-aout*)
2303 tmake_file=sparc/t-sparcbare
0f658c83 2304 tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
61ed06c3 2305 ;;
69474c3c 2306sparc-*-netbsdelf*)
4cb7482c 2307 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
69474c3c 2308 ;;
61ed06c3 2309sparc-*-netbsd*)
f982f805 2310 tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h"
61ed06c3 2311 tmake_file=t-netbsd
1169f9e0 2312 extra_parts=""
5721cd84 2313 use_collect2=yes
61ed06c3
HPN
2314 ;;
2315sparc-*-openbsd*)
0f7a7be7 2316 tm_file="sparc/sparc.h ${tm_file}"
f1cf4606
ME
2317 # needed to unconfuse gdb
2318 tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
61ed06c3
HPN
2319 # we need collect2 until our bug is fixed...
2320 use_collect2=yes
2321 ;;
91f0fcee
ME
2322sparc64-*-openbsd*)
2323 tm_file="sparc/openbsd1-64.h sparc/sparc.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
91f0fcee
ME
2324 gas=yes gnu_ld=yes
2325 with_cpu=ultrasparc
91f0fcee 2326 ;;
61ed06c3 2327sparc-*-bsd*)
910e231e 2328 tm_file="${tm_file} sparc/bsd.h"
61ed06c3 2329 ;;
8da6d80e 2330sparc-*-chorusos*)
8433a25e 2331 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h chorus.h"
2d69e3cb 2332 tmake_file="sparc/t-chorus-elf sparc/t-crtfm"
8da6d80e 2333 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
8da6d80e
CC
2334 case x${enable_threads} in
2335 xyes | xpthreads | xposix)
2336 thread_file='posix'
2337 ;;
2338 esac
2339 ;;
61ed06c3 2340sparc-*-elf*)
8433a25e 2341 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
a261e0cc 2342 tmake_file="sparc/t-elf sparc/t-crtfm"
61ed06c3 2343 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
61ed06c3 2344 ;;
981f6289 2345sparc-*-linux*aout*) # SPARC's running GNU/Linux, a.out
0f7a7be7 2346 tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h"
61ed06c3
HPN
2347 gnu_ld=yes
2348 ;;
981f6289 2349sparc-*-linux*libc1*) # SPARC's running GNU/Linux, libc5
c40409ce 2350 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
a261e0cc 2351 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 sparc/t-crtfm"
61ed06c3
HPN
2352 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2353 gnu_ld=yes
61ed06c3 2354 ;;
981f6289 2355sparc-*-linux*) # SPARC's running GNU/Linux, libc6
c40409ce 2356 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
a261e0cc 2357 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
61ed06c3
HPN
2358 ;;
2359sparc-*-lynxos*)
2360 if test x$gas = xyes
2361 then
0f7a7be7 2362 tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h"
61ed06c3 2363 else
0f7a7be7 2364 tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h"
61ed06c3 2365 fi
61ed06c3 2366 tmake_file=sparc/t-sunos41
61ed06c3 2367 ;;
c7bdf0a6
ZW
2368sparc-*-rtemsaout*) # would otherwise be caught by sparc-*-rtems*
2369 echo "*** Configuration $machine not supported" 1>&2
2370 exit 1
61ed06c3 2371 ;;
c7bdf0a6 2372sparc-*-rtems*)
f22b4bc4 2373 xm_defines=POSIX
8433a25e 2374 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
2d69e3cb 2375 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
61ed06c3 2376 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
bc98ef7f
JS
2377 if test x$enable_threads = xyes; then
2378 thread_file='rtems'
2379 fi
61ed06c3 2380 ;;
8947df0c 2381sparc64-*-solaris2* | sparcv9-*-solaris2*)
8433a25e 2382 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
3fc602a0
RH
2383 if test x$gnu_ld = xyes; then
2384 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
61ed06c3 2385 fi
f0871dfe
RH
2386 if test x$gas = xyes; then
2387 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2388 fi
34f4f3a5 2389 xm_defines=POSIX
a261e0cc 2390 tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
61ed06c3 2391 if test x$gnu_ld = xyes; then
7b3a4df5 2392 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 2393 else
7b3a4df5 2394 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 2395 fi
61ed06c3 2396 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
61ed06c3
HPN
2397 if test x${enable_threads} = x ; then
2398 enable_threads=$have_pthread_h
2399 if test x${enable_threads} = x ; then
2400 enable_threads=$have_thread_h
2401 fi
2402 fi
2403 if test x${enable_threads} = xyes ; then
2404 if test x${have_pthread_h} = xyes ; then
2405 thread_file='posix'
2406 else
2407 thread_file='solaris'
2408 fi
2409 fi
4977bab6 2410 need_64bit_hwint=yes
61ed06c3
HPN
2411 ;;
2412sparc-hal-solaris2*)
34f4f3a5 2413 xm_defines=POSIX
8433a25e 2414 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/hal.h"
a261e0cc 2415 tmake_file="sparc/t-halos sparc/t-sol2 sparc/t-crtfm"
61ed06c3 2416 if test x$gnu_ld = xyes; then
7a31a340 2417 tm_file="${tm_file} sparc/sol2-gld.h"
7b3a4df5 2418 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 2419 else
7b3a4df5 2420 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 2421 fi
61ed06c3 2422 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
61ed06c3
HPN
2423 thread_file='solaris'
2424 ;;
8947df0c 2425sparc-*-solaris2*)
8433a25e 2426 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
3fc602a0
RH
2427 if test x$gnu_ld = xyes; then
2428 tm_file="${tm_file} sparc/sol2-gld.h"
61ed06c3 2429 fi
a261e0cc 2430 tmake_file="sparc/t-sol2 sparc/t-crtfm"
61ed06c3 2431 if test x$gnu_ld = xyes; then
7b3a4df5 2432 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 2433 else
7b3a4df5 2434 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 2435 fi
7112135f 2436 case $machine in
8947df0c
RH
2437 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
2438 if test x$gnu_ld = xno; then
2439 tm_file="${tm_file} sparc/sol26-sld.h"
2440 fi
2441 ;;
2442 *-*-solaris2.[789])
3fc602a0
RH
2443 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
2444 if test x$gnu_ld = xyes; then
2445 tm_file="${tm_file} sparc/sol2-gld-bi.h"
7112135f 2446 fi
f0871dfe
RH
2447 if test x$gas = xyes; then
2448 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2449 fi
7112135f 2450 tmake_file="$tmake_file sparc/t-sol2-64"
4977bab6 2451 need_64bit_hwint=yes
7112135f
AO
2452 ;;
2453 esac
3fc602a0
RH
2454 xm_defines=POSIX
2455 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
61ed06c3
HPN
2456 if test x${enable_threads} = x; then
2457 enable_threads=$have_pthread_h
2458 if test x${enable_threads} = x; then
2459 enable_threads=$have_thread_h
2460 fi
2461 fi
2462 if test x${enable_threads} = xyes; then
2463 if test x${have_pthread_h} = xyes; then
2464 thread_file='posix'
2465 else
2466 thread_file='solaris'
2467 fi
2468 fi
2469 ;;
2470sparc-*-sunos4.0*)
0f7a7be7 2471 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
61ed06c3
HPN
2472 use_collect2=yes
2473 ;;
2474sparc-*-sunos4*)
0f7a7be7 2475 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
61ed06c3
HPN
2476 tmake_file=sparc/t-sunos41
2477 use_collect2=yes
2478 if test x$gas = xyes; then
2479 tm_file="${tm_file} sparc/sun4gas.h"
2480 fi
2481 ;;
2482sparc-*-sunos3*)
0f7a7be7 2483 tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h"
61ed06c3
HPN
2484 use_collect2=yes
2485 ;;
2486sparc-*-sysv4*)
c40409ce 2487 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h"
34f4f3a5 2488 xm_defines=POSIX
61ed06c3 2489 tmake_file=t-svr4
61ed06c3
HPN
2490 extra_parts="crtbegin.o crtend.o"
2491 ;;
61ed06c3 2492sparclet-*-aout*)
0f658c83 2493 tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h"
61ed06c3
HPN
2494 tmake_file=sparc/t-splet
2495 ;;
2496sparclite-*-coff*)
0f658c83 2497 tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
61ed06c3
HPN
2498 tmake_file=sparc/t-sparclite
2499 ;;
2500sparclite-*-aout*)
0f7a7be7 2501 tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h"
61ed06c3
HPN
2502 tmake_file=sparc/t-sparclite
2503 ;;
2504sparclite-*-elf*)
8433a25e 2505 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h"
2d69e3cb 2506 tmake_file="sparc/t-sparclite sparc/t-crtfm"
61ed06c3
HPN
2507 extra_parts="crtbegin.o crtend.o"
2508 ;;
2509sparc86x-*-aout*)
0f7a7be7 2510 tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h"
61ed06c3
HPN
2511 tmake_file=sparc/t-sp86x
2512 ;;
0e5a4ad8 2513sparc86x-*-elf*)
8433a25e 2514 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h"
2d69e3cb 2515 tmake_file="sparc/t-sp86x sparc/t-crtfm"
61ed06c3
HPN
2516 extra_parts="crtbegin.o crtend.o"
2517 ;;
2518sparc64-*-aout*)
0f7a7be7 2519 tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
61ed06c3
HPN
2520 ;;
2521sparc64-*-elf*)
8433a25e 2522 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
2d69e3cb 2523 tmake_file="${tmake_file} sparc/t-crtfm"
61ed06c3
HPN
2524 extra_parts="crtbegin.o crtend.o"
2525 ;;
c7240cbd
DB
2526sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2527 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2d69e3cb 2528 tmake_file="${tmake_file} sparc/t-crtfm"
c7240cbd
DB
2529 xmake_file=none
2530 case "x$with_cpu" in
e0054185 2531 xultrasparc) ;;
c7240cbd
DB
2532 x) with_cpu=ultrasparc ;;
2533 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2534 esac
4977bab6 2535 need_64bit_hwint=yes
c7240cbd 2536 ;;
981f6289 2537sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
19fe522a 2538 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
86f808dc 2539 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
61ed06c3 2540 ;;
4cb7482c
MG
2541sparc64-*-netbsd*)
2542 tmake_file="${tmake_file} sparc/t-netbsd64"
2543 tm_file="sparc/biarch64.h ${tm_file}"
2544 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
4cb7482c 2545 ;;
d19fb8e3 2546strongarm-*-elf*)
c40409ce 2547 tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
d19fb8e3
NC
2548 tmake_file=arm/t-strongarm-elf
2549 out_file=arm/arm.c
d19fb8e3 2550 md_file=arm/arm.md
1c0ca89d 2551 extra_modes=arm/arm-modes.def
d19fb8e3
NC
2552 ;;
2553strongarm-*-coff*)
f910b1bb 2554 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h"
d19fb8e3
NC
2555 tmake_file=arm/t-strongarm-coff
2556 out_file=arm/arm.c
d19fb8e3 2557 md_file=arm/arm.md
1c0ca89d 2558 extra_modes=arm/arm-modes.def
d19fb8e3
NC
2559 ;;
2560strongarm-*-pe)
f910b1bb 2561 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
d19fb8e3
NC
2562 tmake_file=arm/t-strongarm-pe
2563 out_file=arm/arm.c
d19fb8e3 2564 md_file=arm/arm.md
1c0ca89d 2565 extra_modes=arm/arm-modes.def
d19fb8e3
NC
2566 extra_objs=pe.o
2567 ;;
61ed06c3
HPN
2568thumb*-*-*)
2569 { echo "config.gcc: error:
9e8fc4b8 2570*** The Thumb targets have been deprecated. The equivalent
cfd1c7ea 2571*** ARM based toolchain can now generate Thumb instructions
61ed06c3
HPN
2572*** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
2573 ;;
2574v850-*-rtems*)
f22b4bc4
JS
2575 xm_defines=POSIX
2576 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/v850.h v850/rtems.h rtems.h"
61ed06c3
HPN
2577 tmake_file="v850/t-v850 t-rtems"
2578 if test x$stabs = xyes
2579 then
2580 tm_file="${tm_file} dbx.h"
2581 fi
2582 use_collect2=no
c3edd394
NC
2583 c_target_objs="v850-c.o"
2584 cxx_target_objs="v850-c.o"
61ed06c3 2585 ;;
b4378319
NC
2586v850e-*-*)
2587 target_cpu_default="TARGET_CPU_v850e"
2588 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2589 tm_p_file=v850/v850-protos.h
2590 tmake_file=v850/t-v850
2591 md_file=v850/v850.md
2592 out_file=v850/v850.c
2593 if test x$stabs = xyes
2594 then
2595 tm_file="${tm_file} dbx.h"
2596 fi
2597 use_collect2=no
2598 c_target_objs="v850-c.o"
2599 cxx_target_objs="v850-c.o"
2600 ;;
61ed06c3
HPN
2601v850-*-*)
2602 target_cpu_default="TARGET_CPU_generic"
c40409ce 2603 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
2604 tmake_file=v850/t-v850
2605 if test x$stabs = xyes
2606 then
2607 tm_file="${tm_file} dbx.h"
2608 fi
2609 use_collect2=no
c3edd394
NC
2610 c_target_objs="v850-c.o"
2611 cxx_target_objs="v850-c.o"
61ed06c3 2612 ;;
8aeea6e6 2613vax-*-bsd*) # VAXen running BSD
169274cd 2614 tm_file="${tm_file} vax/bsd.h"
61ed06c3 2615 use_collect2=yes
61ed06c3 2616 ;;
8aeea6e6 2617vax-*-sysv*) # VAXen running system V
61ed06c3 2618 tm_file="${tm_file} vax/vaxv.h"
34f4f3a5 2619 xm_defines=POSIX
61ed06c3 2620 ;;
69474c3c 2621vax-*-netbsdelf*)
ec20cffb
JT
2622 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2623 float_format=vax
69474c3c 2624 ;;
61ed06c3 2625vax-*-netbsd*)
f982f805 2626 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
61ed06c3 2627 tmake_file=t-netbsd
1169f9e0 2628 extra_parts=""
5721cd84 2629 use_collect2=yes
61ed06c3
HPN
2630 ;;
2631vax-*-openbsd*)
61ed06c3 2632 tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
61ed06c3
HPN
2633 use_collect2=yes
2634 ;;
8aeea6e6 2635vax-*-ultrix*) # VAXen running ultrix
61ed06c3 2636 tm_file="${tm_file} vax/ultrix.h"
61ed06c3 2637 ;;
8aeea6e6 2638vax-*-vms*) # VAXen running VMS
4977bab6
ZW
2639 echo "Configuration $machine no longer supported" 1>&2
2640 exit 1
61ed06c3 2641 ;;
8aeea6e6 2642vax-*-*) # VAX default entry
61ed06c3 2643 ;;
d19fb8e3 2644xscale-*-elf)
c40409ce 2645 tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
d19fb8e3
NC
2646 tmake_file=arm/t-xscale-elf
2647 out_file=arm/arm.c
d19fb8e3 2648 md_file=arm/arm.md
1c0ca89d 2649 extra_modes=arm/arm-modes.def
d19fb8e3
NC
2650 ;;
2651xscale-*-coff)
578316b9 2652 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
d19fb8e3
NC
2653 tmake_file=arm/t-xscale-coff
2654 out_file=arm/arm.c
d19fb8e3 2655 md_file=arm/arm.md
1c0ca89d 2656 extra_modes=arm/arm-modes.def
d19fb8e3 2657 ;;
14d269bb
GK
2658xstormy16-*-elf)
2659 # For historical reasons, the target files omit the 'x'.
c40409ce 2660 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
14d269bb
GK
2661 tm_p_file=stormy16/stormy16-protos.h
2662 md_file=stormy16/stormy16.md
2663 out_file=stormy16/stormy16.c
2664 tmake_file="stormy16/t-stormy16"
2665 extra_parts="crtbegin.o crtend.o"
2666 ;;
03984308
BW
2667xtensa-*-elf*)
2668 tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2669 with_newlib=yes
2670 tmake_file=xtensa/t-xtensa
2671 extra_parts="crtbegin.o crtend.o"
2672 fixincludes=Makefile.in # newlib headers should be OK
2673 ;;
2674xtensa-*-linux*)
2675 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2676 tmake_file="t-linux xtensa/t-xtensa"
03984308 2677 ;;
61ed06c3 2678*)
c7bdf0a6 2679 echo "*** Configuration $machine not supported" 1>&2
61ed06c3
HPN
2680 exit 1
2681 ;;
2682esac
2683
2684case $machine in
61ed06c3
HPN
2685*-*-sysv*)
2686 install_headers_dir=install-headers-cpio
2687 ;;
2688esac
2689
2690# Distinguish i[34567]86
2691# Also, do not run mips-tfile on MIPS if using gas.
2692# Process --with-cpu= for PowerPC/rs6000
2693target_cpu_default2=
2694case $machine in
2695i486-*-*)
e10e23ee 2696 target_cpu_default2=TARGET_CPU_DEFAULT_i486
61ed06c3
HPN
2697 ;;
2698i586-*-*)
2699 case $target_alias in
e10e23ee
JH
2700 k6_2-*)
2701 target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
2702 ;;
2703 k6_3-*)
2704 target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
2705 ;;
61ed06c3 2706 k6-*)
e10e23ee
JH
2707 target_cpu_default2=TARGET_CPU_DEFAULT_k6
2708 ;;
3780101d 2709 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
e10e23ee 2710 target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
61ed06c3
HPN
2711 ;;
2712 *)
e10e23ee 2713 target_cpu_default2=TARGET_CPU_DEFAULT_pentium
61ed06c3
HPN
2714 ;;
2715 esac
2716 ;;
2717i686-*-* | i786-*-*)
4ed47bea 2718 case $target_alias in
4977bab6
ZW
2719 k8-*)
2720 target_cpu_default2=TARGET_CPU_DEFAULT_k8
2721 ;;
e10e23ee
JH
2722 athlon_xp-*|athlon_mp-*|athlon_4-*)
2723 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
2724 ;;
2725 athlon_tbird-*|athlon-*)
2726 target_cpu_default2=TARGET_CPU_DEFAULT_athlon
2727 ;;
2728 pentium2-*)
2729 target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
2730 ;;
2731 pentium3-*)
2732 target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
2733 ;;
2734 pentium4-*)
2735 target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
4ed47bea
JM
2736 ;;
2737 *)
e10e23ee 2738 target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
4ed47bea
JM
2739 ;;
2740 esac
61ed06c3 2741 ;;
e10e23ee
JH
2742x86_64-*-*)
2743 # We should have hammer chip here, but it does not exist yet and
2744 # thus it is not supported. Athlon_SSE is probably equivalent feature
2745 # wise to hammer from our point of view except for 64bit mode.
4977bab6 2746 target_cpu_default2=TARGET_CPU_DEFAULT_k8
e10e23ee 2747 ;;
61ed06c3
HPN
2748alpha*-*-*)
2749 case $machine in
2750 alphaev6[78]*)
2751 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
2752 ;;
2753 alphaev6*)
2754 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
2755 ;;
2756 alphapca56*)
2757 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
2758 ;;
2759 alphaev56*)
2760 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
2761 ;;
2762 alphaev5*)
2763 target_cpu_default2="MASK_CPU_EV5"
2764 ;;
2765 esac
0e5a4ad8 2766
61ed06c3
HPN
2767 if test x$gas = xyes
2768 then
2769 if test "$target_cpu_default2" = ""
2770 then
2771 target_cpu_default2="MASK_GAS"
2772 else
2773 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
2774 fi
2775 fi
2776 ;;
2777arm*-*-*)
2778 case "x$with_cpu" in
2779 x)
2780 # The most generic
2781 target_cpu_default2="TARGET_CPU_generic"
2782 ;;
2783
2784 # Distinguish cores, and major variants
2785 # arm7m doesn't exist, but D & I don't affect code
70f24e49
NC
2786 xarm[236789] | xarm250 | xarm[67][01]0 \
2787 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
61ed06c3 2788 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
d19fb8e3 2789 | xxscale \
61ed06c3
HPN
2790 | xstrongarm | xstrongarm110 | xstrongarm1100)
2791 target_cpu_default2="TARGET_CPU_$with_cpu"
2792 ;;
2793
2794 xyes | xno)
2795 echo "--with-cpu must be passed a value" 1>&2
2796 exit 1
2797 ;;
2798
2799 *)
2800 if test x$pass2done = xyes
2801 then
2802 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2803 exit 1
2804 fi
2805 ;;
2806 esac
2807 ;;
2808
c21a2372
AM
2809hppa*-*-* | parisc*-*-*)
2810 if test x$gas = xyes
2811 then
2812 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2813 fi
806bf413 2814 case $machine in
d5355cb2
JDA
2815 hppa1* | parisc1*)
2816 tm_defines="TARGET_SCHED_DEFAULT=\\\"7100LC\\\""
806bf413
JDA
2817 ;;
2818 esac
c21a2372 2819 ;;
74826b0f
EC
2820mips*-*-*)
2821 case $machine in
2822 mips*-*-ecoff* | mips*-*-elf*)
2823 if test x$gas = xyes
2824 then
2825 if test x$gnu_ld = xyes
2826 then
2827 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2828 else
2829 target_cpu_default2="MASK_GAS"
2830 fi
2831 fi
2832 ;;
2833 mips*-*-*)
2834 if test x$gas = xyes
61ed06c3 2835 then
61ed06c3
HPN
2836 target_cpu_default2="MASK_GAS"
2837 fi
74826b0f
EC
2838 ;;
2839 esac
2840 case $machine in
2841 mips*el-*-*)
9bb46191 2842 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
74826b0f
EC
2843 ;;
2844 esac
4db83639
RS
2845 case $tm_file in
2846 *mips/elf.h* | *mips/elf64.h*)
2847 tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2848 ;;
2849 esac
6d439235
EC
2850 if test "x$enable_gofast" = xyes
2851 then
2852 tm_defines="INIT_SUBTARGET_OPTABS=INIT_GOFAST_OPTABS $tm_defines"
2853 tm_file="gofast.h $tm_file"
2854 tmake_file="mips/t-gofast $tmake_file"
2855 else
2856 tmake_file="mips/t-mips $tmake_file"
2857 fi
61ed06c3
HPN
2858 ;;
2859powerpc*-*-* | rs6000-*-*)
480f7f3a
AH
2860 if test x$enable_altivec = xyes
2861 then
5e505bc9 2862 tm_file="$tm_file rs6000/altivec-defs.h"
480f7f3a 2863 fi
61ed06c3
HPN
2864 case "x$with_cpu" in
2865 x)
2866 ;;
2867
94f1d97c
DJ
2868 xcommon | xpower | xpower2 | xpower3 | xpowerpc | xpowerpc64 \
2869 | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \
2870 | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \
2871 | x740 | x750 | x7400 | x7450 | x505)
ff25793c 2872 target_cpu_default2="\\\"$with_cpu\\\""
61ed06c3
HPN
2873 ;;
2874
94f1d97c 2875 x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860)
c19083d8 2876 target_cpu_default2="\\\"$with_cpu\\\""
c19083d8
DD
2877 ;;
2878
61ed06c3
HPN
2879 xyes | xno)
2880 echo "--with-cpu must be passed a value" 1>&2
2881 exit 1
2882 ;;
2883
2884 *)
2885 if test x$pass2done = xyes
2886 then
2887 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2888 exit 1
2889 fi
2890 ;;
2891 esac
b17bb466 2892 out_file=rs6000/rs6000.c
a6e2e53e
GK
2893 c_target_objs="${c_target_objs} rs6000-c.o"
2894 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
40b4cdbf 2895 tmake_file="rs6000/t-rs6000 ${tmake_file}"
61ed06c3
HPN
2896 ;;
2897sparc*-*-*)
2898 case ".$with_cpu" in
2899 .)
2900 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
2901 ;;
2902 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
2903 target_cpu_default2="TARGET_CPU_$with_cpu"
b4378319
NC
2904 ;;
2905 *)
2906 if test x$pass2done = xyes
2907 then
2908 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2909 exit 1
2910 fi
2911 ;;
2912 esac
2913 ;;
2914v850*-*-*)
2915 case "x$with_cpu" in
2916 x)
2917 ;;
09818236 2918 xv850e)
b4378319 2919 target_cpu_default2="TARGET_CPU_$with_cpu"
61ed06c3
HPN
2920 ;;
2921 *)
2922 if test x$pass2done = xyes
2923 then
2924 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2925 exit 1
2926 fi
2927 ;;
2928 esac
2929 ;;
2930esac
2931
2932if test "$target_cpu_default2" != ""
2933then
2934 if test "$target_cpu_default" != ""
2935 then
2936 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2937 else
2938 target_cpu_default=$target_cpu_default2
2939 fi
2940fi
2941
61ed06c3
HPN
2942# Save data on machine being used to compile GCC in build_xm_file.
2943# Save data on host machine in vars host_xm_file and host_xmake_file.
2944if test x$pass1done = x
2945then
4dc0535b
ZW
2946 if test x$xm_file != x
2947 then build_xm_file=$xm_file
61ed06c3
HPN
2948 fi
2949 build_xm_defines=$xm_defines
2950 build_install_headers_dir=$install_headers_dir
2951 build_exeext=$exeext
2952 pass1done=yes
2953else
2954 if test x$pass2done = x
2955 then
4dc0535b
ZW
2956 if test x$xm_file != x
2957 then host_xm_file=$xm_file
61ed06c3
HPN
2958 fi
2959 host_xm_defines=$xm_defines
61ed06c3
HPN
2960 host_xmake_file="$xmake_file"
2961 host_truncate_target=$truncate_target
2962 host_extra_gcc_objs=$extra_gcc_objs
2963 host_extra_objs=$extra_host_objs
2964 host_exeext=$exeext
2965 pass2done=yes
2966 fi
2967fi
This page took 0.973254 seconds and 5 git commands to generate.