]> gcc.gnu.org Git - gcc.git/blame - gcc/config.gcc
re PR bootstrap/6514 (3.1 irix6.5 bootstrap failure in libstdc++-v3/src/misc-inst.cc)
[gcc.git] / gcc / config.gcc
CommitLineData
61ed06c3 1# GCC build-, host- and target-specific configuration file.
817e13c4 2# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
61ed06c3 3
1322177d 4#This file is part of GCC.
61ed06c3 5
1322177d
LB
6#GCC is free software; you can redistribute it and/or modify it under
7#the terms of the GNU General Public License as published by the Free
8#Software Foundation; either version 2, or (at your option) any later
9#version.
61ed06c3 10
1322177d
LB
11#GCC is distributed in the hope that it will be useful, but WITHOUT
12#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14#for more details.
61ed06c3
HPN
15
16#You should have received a copy of the GNU General Public License
1322177d
LB
17#along with GCC; see the file COPYING. If not, write to the Free
18#Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19#02111-1307, USA.
61ed06c3
HPN
20
21# This is the GCC build-, host- and target-specific configuration file
22# where a configuration type, as recognized and generated by config.bfd,
23# is mapped to different system-specific definitions and files. This is
24# invoked by the autoconf-generated configure script, called for build,
25# host and target in that order, setting ${machine} to each. Putting it
26# in a separate shell file lets us skip running autoconf when modifying
27# build-, host- and target-specific information.
28
29# This file switches on the shell variable ${machine}, and also uses the
30# following shell variables:
31#
32# with_* Various variables as set by configure.
33#
34# enable_threads_flag Either the name, yes or no depending on whether
35# threads support was requested.
36#
37# gas_flag Either yes or no depending on whether GNU as was
38# requested.
39#
40# gnu_ld_flag Either yes or no depending on whether GNU ld was
41# requested.
42
43# This file sets the following shell variables for use by the
44# autoconf-generated configure script:
45#
46# cpu_type The name of the cpu, if different from machine.
47#
48# tm_file A list of target macro files, if different from
32fb7c9d
FS
49# "$cpu_type/$cpu_type.h". Usually it's constructed
50# per target in a way like this:
c40409ce 51# tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
32fb7c9d
FS
52# Note that the preferred order is:
53# - specific target header "${cpu_type}/${cpu_type.h}"
c40409ce 54# - generic headers like dbxelf.h elfos.h, netware.h, etc.
32fb7c9d
FS
55# - specializing target headers like ${cpu_type.h}/elf.h
56# This helps to keep OS specific stuff out of the CPU
57# defining header ${cpu_type}/${cpu_type.h}.
61ed06c3
HPN
58#
59# tm_p_file Location of file with declarations for functions
60# in $out_file.
61#
62# out_file The name of the machine description C support
63# file, if different from "$cpu_type/$cpu_type.c".
64#
65# md_file The name of the machine-description file, if
66# different from "$cpu_type/$cpu_type.md".
67#
68# tmake_file A list of machine-description-specific
69# makefile-fragments, if different from
70# "$cpu_type/t-$cpu_type".
71#
72# float_format Set to the symbolic name for the floating-point
73# formats used for this machine, if different from
74# "i64". Used to derive a header file name to
75# include, like "vax" for "float-vax.h". If no such
76# file is wanted, set to "none".
77#
78# extra_objs List of extra objects that should be linked into
79# the compiler proper (cc1, cc1obj, cc1plus)
80# depending on target.
81#
82# extra_headers List of used header files from the directory
817e13c4 83# config/${cpu_type}.
61ed06c3
HPN
84#
85# host_xmake_file List of host-specific makefile-fragments.
86#
87# extra_passes List of extra executables compiled for this target
88# machine, used for compiling from source to object.
89#
90# extra_parts List of extra object files that should be compiled
91# for this target machine.
92#
93# extra_programs Like extra_passes, but these are used when linking.
94#
ff7cc307 95# host_extra_objs List of extra host-dependent objects that should
61ed06c3
HPN
96# be linked into the compiler proper.
97#
ff7cc307 98# host_extra_gcc_objs List of extra host-dependent objects that should
61ed06c3
HPN
99# be linked into the gcc driver.
100#
ff7cc307 101# c_target_objs List of extra target-dependent objects that be
aac69a49 102# linked into the C compiler only.
0e5a4ad8 103#
ff7cc307 104# cxx_target_objs List of extra target-dependent objects that be
aac69a49 105# linked into the C++ compiler only.
0e5a4ad8 106#
61ed06c3
HPN
107# build_xm_defines List of macros to define when compiling for the
108# build machine.
109#
110# build_xm_file List of files to include when compiling for the
111# build machine.
112#
113# host_xm_defines List of macros to define when compiling for the
114# host machine.
115#
116# host_xm_file List of files to include when compiling for the
117# host machine.
118#
119# xm_defines List of macros to define when compiling for the
120# target machine.
121#
122# xm_file List of files to include when compiling for the
123# target machine.
124#
125# use_collect2 Set to yes or no, depending on whether collect2
126# will be used.
127#
128# target_cpu_default Set to override the default target model.
129#
130# build_install_headers_dir
131# Target to use when installing header files.
132#
61ed06c3
HPN
133# host_truncate_target
134# Non-empty if the target name should be truncated
135# on this host, due to filename length issues.
136#
137# gdb_needs_out_file_path
138# Set to yes if gdb needs a dir command with
139# `dirname $out_file`.
140#
141# build_exeext Set to the suffix, if the build machine requires
142# executables to have a file name suffix.
143#
144# host_exeext Set to the suffix, if the host machine requires
145# executables to have a file name suffix.
146#
147# thread_file Set to control which thread package to use.
148#
149# gas Set to yes or no depending on whether the target
150# system normally uses GNU as.
151
152# The following variables are used in each case-construct to build up the
153# outgoing variables:
154#
155# xmake_file Makefile-fragment when this system is as a host,
156# for host_xmake_file.
157#
158# extra_host_objs List of extra objects that should be linked into
159# the compiler proper when this system is a host,
160# for host_extra_objs.
161#
162# install_headers_dir Makefile-target for how the header file directory
163# is installed, when this system is a build system,
164# for build_install_headers_dir.
165#
166# truncate_target Non-empty if the target name should be truncated
167# when this system is a host, due to filename length
168# issues. For host_truncate_target.
169#
170# exeext The suffix for executables on this system.
171#
172# gnu_ld Set to yes or no depending on whether the target
173# system normally uses GNU ld.
174
175out_file=
176xmake_file=
177tmake_file=
178extra_headers=
179extra_passes=
180extra_parts=
181extra_programs=
182extra_objs=
183extra_host_objs=
184extra_gcc_objs=
aac69a49
NC
185c_target_objs=
186cxx_target_objs=
61ed06c3
HPN
187xm_defines=
188float_format=
189# Set this to force installation and use of collect2.
190use_collect2=
191# Set this to override the default target model.
192target_cpu_default=
193# Set this to control how the header file directory is installed.
194install_headers_dir=install-headers-tar
61ed06c3
HPN
195# Set this if directory names should be truncated to 14 characters.
196truncate_target=
197# Set this if gdb needs a dir command with `dirname $out_file`
198gdb_needs_out_file_path=
199# Set this if the build machine requires executables to have a
200# file name suffix.
201exeext=
202# Set this to control which thread package will be used.
203thread_file=
204# Reinitialize these from the flag values every loop pass, since some
205# configure entries modify them.
206gas="$gas_flag"
207gnu_ld="$gnu_ld_flag"
208enable_threads=$enable_threads_flag
209
9340544b
ZW
210# Obsolete configurations.
211# To avoid some tedious lists, we have a blacklist with a whitelist
212# embedded within it.
213case $machine in
214 1750a-* \
215 | a29k-* \
216 | alpha*-*-osf[123]* \
217 | arm-*-riscix* \
218 | c*-convex-* \
219 | clipper-* \
220 | elxsi-* \
221 | i860-* \
222 | i?86-*-aix* \
223 | i?86-*-bsd* \
224 | i?86-*-chorusos* \
225 | i?86-*-dgux* \
226 | i?86-*-freebsd1.* \
227 | i?86-*-isc* \
228 | i?86-*-linux*oldld* \
229 | i?86-*-osf1* \
230 | i?86-*-osfrose* \
231 | i?86-*-rtemscoff* \
232 | i?86-*-sunos* \
233 | i?86-go32-rtems* \
234 | i?86-next-* \
235 | i?86-sequent-bsd* \
236 | i?86-sequent-ptx[12]* \
237 | i?86-sequent-sysv3* \
238 | m68[k0]*-*-lynxos* \
239 | m68[k0]*-*-rtemscoff* \
240 | m68[k0]*-*-sysv3* \
241 | m68[k0]*-altos-* \
242 | m68[k0]*-apollo-* \
243 | m68[k0]*-apple-* \
244 | m68[k0]*-bull-* \
245 | m68[k0]*-convergent-* \
246 | m68[k0]*-isi-* \
247 | m68[k0]*-next-* \
248 | m68[k0]*-sony-* \
249 | m88k-* \
250 | mips-*-bsd* \
251 | mips-*-riscos* \
252 | mips-*-sysv* \
253 | mips-*-ultrix* \
254 | mips-dec-* \
255 | mips-sgi-irix[1234]* \
256 | mips-sony-* \
257 | mips-tandem-* \
258 | ns32k-* \
259 | pj-* \
260 | pjl-* \
261 | romp-* \
262 | sparc-*-rtemsaout* \
263 | we32k-* \
264)
265 case $machine in
266 a29k-*-udi | a29k-*-coff \
267 | mips-sni-sysv4 \
268 | m88k-*-aout* | m88k-*-openbsd* | m88k-*-sysv4* \
269 | ns32k-*-netbsd* | ns32k-*-openbsd* \
270 | romp-*-openbsd* \
271 )
272 # Whitelisted.
273 ;;
274 *)
275 if test "x$enable_obsolete" = x; then
276 echo "*** Configuration $machine is obsolete." >&2
277 echo "*** Specify --enable-obsolete to build it anyway." >&2
278 echo "*** Support will be REMOVED in the next major release of GCC," >&2
279 echo "*** unless a maintainer comes forward." >&2
280 exit 1
281 fi;;
282 esac
283esac
284
61ed06c3 285# Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
ba1e6c0b
JM
286# updated in each machine entry. Also set default extra_headers for some
287# machines.
61ed06c3
HPN
288tm_p_file=
289cpu_type=`echo $machine | sed 's/-.*$//'`
290case $machine in
291alpha*-*-*)
292 cpu_type=alpha
293 ;;
294strongarm*-*-*)
295 cpu_type=arm
296 ;;
297arm*-*-*)
298 cpu_type=arm
299 ;;
d19fb8e3
NC
300xscale-*-*)
301 cpu_type=arm
302 ;;
61ed06c3
HPN
303c*-convex-*)
304 cpu_type=convex
b31bbca2 305 extra_headers=proto.h
61ed06c3
HPN
306 ;;
307i[34567]86-*-*)
308 cpu_type=i386
6f1a6c5b 309 extra_headers="mmintrin.h xmmintrin.h"
61ed06c3 310 ;;
14f73b5a
JH
311x86_64-*-*)
312 cpu_type=i386
8559c8c0 313 extra_headers="mmintrin.h xmmintrin.h"
14f73b5a 314 ;;
817e13c4
JM
315ia64-*-*)
316 extra_headers=ia64intrin.h
317 ;;
c21a2372 318hppa*-*-* | parisc*-*-*)
61ed06c3
HPN
319 cpu_type=pa
320 ;;
2fd95d71 321m680[012]0-*-*)
61ed06c3 322 cpu_type=m68k
ba1e6c0b
JM
323 extra_headers=math-68881.h
324 ;;
325m68k-*-*)
326 extra_headers=math-68881.h
61ed06c3
HPN
327 ;;
328mips*-*-*)
329 cpu_type=mips
330 ;;
331pj*-*-*)
332 cpu_type=pj
333 ;;
334powerpc*-*-*)
335 cpu_type=rs6000
5fb4cf24 336 extra_headers="ppc-asm.h altivec.h"
61ed06c3 337 ;;
61ed06c3
HPN
338sparc*-*-*)
339 cpu_type=sparc
340 ;;
fa5322fa
AO
341sh64-*-*)
342 cpu_type=sh
343 ;;
61ed06c3
HPN
344esac
345
346tm_file=${cpu_type}/${cpu_type}.h
b6d7afec 347if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
61ed06c3 348then
b6d7afec
ZW
349 tm_p_file=${cpu_type}/${cpu_type}-protos.h
350fi
e564e618
DB
351
352case $machine in
353x86_64-*-*)
354 tm_file="i386/biarch64.h ${tm_file}"
355 ;;
356esac
357
61ed06c3
HPN
358# On a.out targets, we need to use collect2.
359case $machine in
360*-*-*aout*)
361 use_collect2=yes
362 ;;
0e5a4ad8 363esac
61ed06c3 364
f982f805 365# Common parts for GNU/Linux, GNU/Hurd, OpenBSD, NetBSD, and FreeBSD systems.
61ed06c3
HPN
366case $machine in
367*-*-linux*)
34f4f3a5 368 xm_defines=POSIX
61ed06c3 369 ;;
5eeab2e3
MK
370*-*-gnu*)
371 # On the Hurd, the setup is just about the same on
372 # each different CPU. The specific machines that we
373 # support are matched above and just set $cpu_type.
b19a539e 374 xm_defines=POSIX
f6e0c56c 375 tm_file="${cpu_type}/gnu.h"
275b60d6 376 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
5eeab2e3
MK
377 # GNU always uses ELF.
378 elf=yes
379 # GNU tools are the only tools.
380 gnu_ld=yes
381 gas=yes
382 # These details are the same as for Linux.
5eeab2e3 383 # But here we need a little extra magic.
7b3a4df5 384 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
f6e0c56c 385 case $machine in
83248d49
RM
386 alpha*)
387 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
388 ;;
f6e0c56c 389 i[34567]86-*-*)
39ed301b 390 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 391 ;;
f6e0c56c 392 esac
5eeab2e3 393 ;;
61ed06c3
HPN
394*-*-openbsd*)
395 tm_file=${cpu_type}/openbsd.h
f1cf4606 396 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
b19a539e 397 xm_defines=POSIX
61ed06c3
HPN
398 if test x$enable_threads = xyes; then
399 thread_file='posix'
400 tmake_file="${tmake_file} t-openbsd-thread"
401 fi
402 ;;
f982f805 403*-*-netbsd*)
12345543 404 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd"
f982f805
JT
405 xm_defines=POSIX
406 gas=yes
407 gnu_ld=yes
408 ;;
9e405fe5
LR
409*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
410 # This is the place-holder for the generic a.out configuration
411 # of FreeBSD. No actual configuration resides here since
412 # there was only ever a bare-bones ix86 configuration for
413 # a.out and it exists solely in the machine-specific section.
414 # This place-holder must exist to avoid dropping into
415 # the generic ELF configuration of FreeBSD (i.e. it must be
416 # ordered before that section).
417 ;;
418*-*-freebsd*)
419 # This is the generic ELF configuration of FreeBSD. Later
420 # machine-specific sections may refine and add to this
421 # configuration.
422 #
423 # Due to tm_file entry ordering issues that vary between cpu
424 # architectures, we only define fbsd_tm_file to allow the
425 # machine-specific section to dictate the final order of all
426 # entries of tm_file with the minor exception that components
427 # of the tm_file set here will always be of the form:
428 #
b91da81f 429 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
9e405fe5
LR
430 #
431 # The machine-specific section should not tamper with this
432 # ordering but may order all other entries of tm_file as it
433 # pleases around the provided core setting.
434 gas=yes
435 gnu_ld=yes
436 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
437 case $machine in
438 *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
439 *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
440 *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
441 *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
442 *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
443 esac
bc3a44db 444 tmake_file="t-slibgcc-elf-ver t-freebsd"
243a7070 445 xmake_file=none
9e405fe5
LR
446 xm_defines=POSIX
447 case x${enable_threads} in
448 xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
449 x | xyes | xpthreads | xposix)
450 thread_file='posix'
451 tmake_file="${tmake_file} t-freebsd-thread"
bc3a44db
LR
452 # Before 5.0, FreeBSD can't bind shared libraries to -lc
453 # when "optionally" threaded via weak pthread_* checks.
454 case $machine in
455 *-*-freebsd[34] | *-*-freebsd[34].*)
456 tmake_file="${tmake_file} t-slibgcc-nolc-override";;
457 esac
9e405fe5
LR
458 ;;
459 *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
460 esac
b7e0196a 461 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
9e405fe5 462 ;;
61ed06c3
HPN
463esac
464
465case $machine in
466# Support site-specific machine types.
467*local*)
61ed06c3 468 rest=`echo $machine | sed -e "s/$cpu_type-//"`
61ed06c3 469 tm_file=${cpu_type}/$rest.h
4dc0535b
ZW
470 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
471 then xm_file=${cpu_type}/xm-$rest.h
61ed06c3 472 fi
4dc0535b
ZW
473 if test -f $srcdir/config/${cpu_type}/x-$rest
474 then xmake_file=${cpu_type}/x-$rest
475 fi
476 if test -f $srcdir/config/${cpu_type}/t-$rest
477 then tmake_file=${cpu_type}/t-$rest
61ed06c3
HPN
478 fi
479 ;;
4801750a-*-*)
db009825
ZW
481 # 1750a is only supported as a target.
482 case "$build,$host" in 1750a*,* | *,1750a* )
483 echo "*** $machine is only supported as a target" >&2
484 exit 1
485 esac
61ed06c3
HPN
486 ;;
487a29k-*-bsd* | a29k-*-sym1*)
488 tm_file="${tm_file} a29k/unix.h"
34f4f3a5 489 xm_defines=POSIX
61ed06c3
HPN
490 use_collect2=yes
491 ;;
492a29k-*-udi | a29k-*-coff)
2cc07db4 493 tm_file="${tm_file} dbxcoff.h"
61ed06c3
HPN
494 tmake_file=a29k/t-a29kbare
495 ;;
bc98ef7f 496a29k*-*-rtems*)
f22b4bc4
JS
497 xm_defines=POSIX
498 tm_file="a29k/a29k.h a29k/rtems.h rtems.h"
bc98ef7f
JS
499 tmake_file="a29k/t-a29kbare t-rtems"
500 if test x$enable_threads = xyes; then
501 thread_file='rtems'
502 fi
503 ;;
61ed06c3 504a29k-wrs-vxworks*)
2cc07db4 505 tm_file="${tm_file} dbxcoff.h a29k/vx29k.h"
61ed06c3
HPN
506 tmake_file=a29k/t-vx29k
507 extra_parts="crtbegin.o crtend.o"
508 thread_file='vxworks'
509 ;;
510a29k-*-*) # Default a29k environment.
511 use_collect2=yes
512 ;;
30102605
RH
513alpha*-*-unicosmk*)
514 use_collect2=yes
515 tm_file="${tm_file} alpha/unicosmk.h"
0e5a4ad8 516
30102605
RH
517 # Don't include t-ieee for now because we don't support that yet
518 # tmake_file="alpha/t-ieee"
519 tmake_file="alpha/t-unicosmk"
520 ;;
61ed06c3
HPN
521alpha-*-interix)
522 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
523
524 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
525 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
526
527 # GAS + IEEE_CONFORMANT
528 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
529
34f4f3a5 530 xm_defines=POSIX
5dd8a9b1 531 xm_file="alpha/xm-alpha-interix.h"
14455c64 532 tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee"
61ed06c3
HPN
533 if test x$enable_threads = xyes ; then
534 thread_file='posix'
535 fi
536 if test x$stabs = xyes ; then
537 tm_file="${tm_file} dbxcoff.h"
538 fi
539 #prefix='$$INTERIX_ROOT'/usr/contrib
540 #local_prefix='$$INTERIX_ROOT'/usr/contrib
541 ;;
77a403e4
RH
542alpha*-*-linux*ecoff*)
543 echo "Configuration $machine no longer supported" 1>&2
544 exit 1
545 ;;
61ed06c3
HPN
546alpha*-*-linux*libc1*)
547 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
548 target_cpu_default="MASK_GAS"
cea3bd3e
RH
549 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtfm alpha/t-ieee"
550 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
551 gas=yes gnu_ld=yes
552 if test x$enable_threads = xyes; then
553 thread_file='posix'
554 fi
555 ;;
556alpha*-*-linux*)
557 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
558 target_cpu_default="MASK_GAS"
cea3bd3e
RH
559 tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
560 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
561 gas=yes gnu_ld=yes
562 if test x$enable_threads = xyes; then
563 thread_file='posix'
564 fi
565 ;;
83248d49
RM
566alpha*-*-gnu*)
567 target_cpu_default="MASK_GAS"
568 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
569 ;;
61ed06c3 570alpha*-*-freebsd*)
9e405fe5 571 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
61ed06c3 572 target_cpu_default="MASK_GAS"
cea3bd3e
RH
573 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
574 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
575 ;;
576alpha*-*-netbsd*)
f982f805 577 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
61ed06c3 578 target_cpu_default="MASK_GAS"
cea3bd3e
RH
579 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
580 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
581 ;;
582
583alpha*-*-openbsd*)
cf0005c6 584 tm_file="${cpu_type}/${cpu_type}.h ${tm_file}"
61ed06c3
HPN
585 # default x-alpha is only appropriate for dec-osf.
586 target_cpu_default="MASK_GAS"
587 tmake_file="alpha/t-alpha alpha/t-ieee"
588 ;;
0e5a4ad8 589
61ed06c3 590alpha*-dec-osf*)
b19a539e 591 xm_defines=POSIX
61ed06c3
HPN
592 if test x$stabs = xyes
593 then
594 tm_file="${tm_file} dbx.h"
595 fi
596 if test x$gas != xyes
597 then
598 extra_passes="mips-tfile mips-tdump"
599 fi
600 use_collect2=yes
817e13c4
JM
601 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm"
602 extra_headers=va_list.h
61ed06c3
HPN
603 case $machine in
604 *-*-osf1*)
605 tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
606 ;;
607 *-*-osf[23]*)
608 tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
609 ;;
610 *-*-osf4*)
611 tm_file="${tm_file} alpha/osf.h"
612 tmake_file="$tmake_file alpha/t-osf4"
613 # Some versions of OSF4 (specifically X4.0-9 296.7) have
614 # a broken tar, so we use cpio instead.
615 install_headers_dir=install-headers-cpio
616 ;;
617 *-*-osf5*)
618 tm_file="${tm_file} alpha/osf.h alpha/osf5.h"
619 tmake_file="$tmake_file alpha/t-osf4"
c3e5f9fa 620 float_format=i128
61ed06c3
HPN
621 ;;
622 esac
623 case $machine in
624 *-*-osf4.0[b-z] | *-*-osf4.[1-9]* | *-*-osf5*)
625 target_cpu_default=MASK_SUPPORT_ARCH
626 ;;
627 esac
628 ;;
629alpha*-*-vxworks*)
b19a539e 630 xm_defines=POSIX
61ed06c3
HPN
631 tm_file="${tm_file} dbx.h alpha/vxworks.h"
632 tmake_file="alpha/t-alpha alpha/t-ieee"
633 if [ x$gas != xyes ]
634 then
635 extra_passes="mips-tfile mips-tdump"
636 fi
637 use_collect2=yes
638 thread_file='vxworks'
639 ;;
b6bfa876
DR
640alpha64-dec-*vms*)
641 xm_defines=POSIX
cf0005c6 642 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
b6bfa876
DR
643 xm_file="alpha/xm-vms.h alpha/xm-vms64.h"
644 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
645 xmake_file=alpha/x-vms
646 exeext=.exe
647 # This removes the cpu type and manufacturer components and
648 # replaces "." with "_" in the operating system version.
649 case $host in *-*-*vms*)
650 target_alias=`echo $host \
651 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
652 ;;
653 esac
ff3aaf17 654 install_headers_dir=install-headers-cp
b6bfa876
DR
655 prefix=/gnu
656 local_prefix=/gnu
657 ;;
ef057c45 658alpha*-dec-*vms*)
b19a539e 659 xm_defines=POSIX
cf0005c6 660 tm_file="${tm_file} alpha/vms.h"
4dc0535b 661 xm_file=alpha/xm-vms.h
61ed06c3 662 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
d133777f 663 xmake_file=alpha/x-vms
ef057c45
DR
664 exeext=.exe
665 # This removes the cpu type and manufacturer components and
666 # replaces "." with "_" in the operating system version.
667 case $host in *-*-*vms*)
668 target_alias=`echo $host \
669 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
670 ;;
671 esac
ff3aaf17 672 install_headers_dir=install-headers-cp
ef057c45
DR
673 prefix=/gnu
674 local_prefix=/gnu
61ed06c3 675 ;;
2cc07db4 676arc-*-elf*)
c40409ce 677 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2cc07db4
RH
678 extra_parts="crtinit.o crtfini.o"
679 ;;
61ed06c3 680arm-*-coff* | armel-*-coff*)
5059254f 681 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
61ed06c3
HPN
682 tmake_file=arm/t-arm-coff
683 ;;
684arm-*-vxworks*)
5059254f 685 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/vxarm.h arm/arm.h"
61ed06c3
HPN
686 tmake_file=arm/t-arm-coff
687 thread_file='vxworks'
688 ;;
689arm-*-riscix1.[01]*) # Acorn RISC machine (early versions)
5059254f 690 tm_file="arm/riscix1-1.h arm/arm.h"
61ed06c3
HPN
691 use_collect2=yes
692 ;;
693arm-*-riscix*) # Acorn RISC machine
694 if test x$gas = xyes
695 then
5059254f 696 tm_file="arm/riscix.h arm/rix-gas.h arm/arm.h"
61ed06c3 697 else
5059254f 698 tm_file="arm/riscix.h arm/arm.h"
61ed06c3 699 fi
61ed06c3
HPN
700 tmake_file=arm/t-riscix
701 use_collect2=yes
702 ;;
703arm-semi-aout | armel-semi-aout)
5059254f 704 tm_file="arm/semi.h arm/aout.h arm/arm.h"
61ed06c3
HPN
705 tmake_file=arm/t-semi
706 ;;
707arm-semi-aof | armel-semi-aof)
5059254f 708 tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
7857f134 709 tmake_file=arm/t-semi
61ed06c3 710 ;;
5742588d
DB
711arm*-*-freebsd*|strongarm*-*-freebsd*)
712 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
713 tmake_file="${tmake_file} arm/t-strongarm-elf"
714 ;;
69474c3c
JT
715arm*-*-netbsdelf*)
716 echo "GCC does not yet support the ${machine} target"; exit 1
717 ;;
61ed06c3 718arm*-*-netbsd*)
f982f805 719 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
61ed06c3 720 tmake_file="t-netbsd arm/t-netbsd"
5721cd84 721 use_collect2=yes
61ed06c3 722 ;;
14879e76 723arm*-*-linux*) # ARM GNU/Linux with ELF
c40409ce 724 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 725 tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
61ed06c3
HPN
726 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
727 gnu_ld=yes
728 case x${enable_threads} in
729 x | xyes | xpthreads | xposix)
730 thread_file='posix'
731 ;;
732 esac
733 ;;
734arm*-*-uclinux*) # ARM ucLinux
c40409ce 735 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
736 tmake_file=arm/t-arm-elf
737 ;;
738arm*-*-aout)
f910b1bb 739 tm_file="arm/aout.h arm/arm.h"
61ed06c3
HPN
740 tmake_file=arm/t-arm-aout
741 ;;
742arm*-*-ecos-elf)
c40409ce 743 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
61ed06c3 744 tmake_file=arm/t-arm-elf
0e5a4ad8 745 ;;
f22b4bc4
JS
746arm*-*-rtems*)
747 xm_defines=POSIX
748 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"
749 tmake_file="arm/t-arm-elf t-rtems"
750 if test x$enable_threads = xyes; then
751 thread_file='rtems'
752 fi
753 ;;
61ed06c3 754arm*-*-elf)
c40409ce 755 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
61ed06c3
HPN
756 tmake_file=arm/t-arm-elf
757 ;;
758arm*-*-conix*)
c40409ce 759 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
760 tmake_file=arm/t-arm-elf
761 ;;
762arm*-*-oabi)
c40409ce 763 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
764 tmake_file=arm/t-arm-elf
765 ;;
766arm-*-pe*)
f910b1bb 767 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
61ed06c3
HPN
768 tmake_file=arm/t-pe
769 extra_objs="pe.o"
770 ;;
771avr-*-*)
772 ;;
773c1-convex-*) # Convex C1
774 target_cpu_default=1
775 use_collect2=yes
776 ;;
777c2-convex-*) # Convex C2
778 target_cpu_default=2
779 use_collect2=yes
780 ;;
781c32-convex-*)
782 target_cpu_default=4
783 use_collect2=yes
784 ;;
785c34-convex-*)
786 target_cpu_default=8
787 use_collect2=yes
788 ;;
789c38-convex-*)
0e5a4ad8 790 target_cpu_default=16
61ed06c3
HPN
791 use_collect2=yes
792 ;;
bc98ef7f 793c4x-*-rtems*)
f22b4bc4 794 xm_defines=POSIX
bc98ef7f 795 tmake_file="c4x/t-c4x t-rtems"
fdc76b09 796 tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
bc98ef7f
JS
797 if test x$enable_threads = xyes; then
798 thread_file='rtems'
799 fi
51fabca5
NB
800 c_target_objs="c4x-c.o"
801 cxx_target_objs="c4x-c.o"
bc98ef7f 802 ;;
61ed06c3 803c4x-*)
61ed06c3
HPN
804 float_format=c4x
805 tmake_file=c4x/t-c4x
51fabca5
NB
806 c_target_objs="c4x-c.o"
807 cxx_target_objs="c4x-c.o"
61ed06c3
HPN
808 ;;
809clipper-intergraph-clix*)
810 tm_file="${tm_file} svr3.h clipper/clix.h"
34f4f3a5 811 xm_defines=POSIX
61ed06c3
HPN
812 extra_parts="crtbegin.o crtend.o"
813 install_headers_dir=install-headers-cpio
814 ;;
0b85d816 815cris-*-aout)
32fb7c9d 816 tm_file="dbxelf.h ${tm_file} cris/aout.h"
0b85d816
HPN
817 gas=yes
818 tmake_file="cris/t-cris cris/t-aout"
819 ;;
820cris-*-elf | cris-*-none)
c40409ce 821 tm_file="dbxelf.h elfos.h ${tm_file}"
0b85d816
HPN
822 tmake_file="cris/t-cris cris/t-elfmulti"
823 gas=yes
824 ;;
825cris-*-linux*)
c40409ce 826 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
0b85d816 827 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
275b60d6 828 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
0b85d816
HPN
829 case x${enable_threads} in
830 x | xyes | xpthreads | xposix)
831 thread_file=posix
832 ;;
833 esac
834 gas=yes
835 ;;
61ed06c3 836d30v-*)
c40409ce 837 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
838 float_format=i64
839 ;;
840dsp16xx-*)
841 ;;
842elxsi-elxsi-*)
843 use_collect2=yes
844 ;;
845fr30-*-elf)
c40409ce 846 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
847 tmake_file=fr30/t-fr30
848 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
849 ;;
bc98ef7f 850h8300-*-rtems*)
f22b4bc4 851 xm_defines=POSIX
bc98ef7f 852 tmake_file="h8300/t-h8300 t-rtems"
f22b4bc4 853 tm_file="h8300/h8300.h h8300/rtems.h rtems.h"
bc98ef7f
JS
854 if test x$enable_threads = xyes; then
855 thread_file='rtems'
856 fi
857 float_format=i32
858 ;;
9f5b774b
R
859h8300-*-elf*)
860 tmake_file="h8300/t-h8300 h8300/t-elf"
861 tm_file="h8300/h8300.h h8300/elf.h"
862 float_format=i32
863 ;;
61ed06c3
HPN
864h8300-*-*)
865 float_format=i32
866 ;;
c21a2372
AM
867hppa*64*-*-linux* | parisc*64*-*-linux*)
868 target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
c40409ce 869 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
c21a2372
AM
870 pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
871 tmake_file=pa/t-linux64
c21a2372
AM
872 gas=yes gnu_ld=yes
873 ;;
874hppa*-*-linux* | parisc*-*-linux*)
875 target_cpu_default="MASK_PA_11"
c40409ce 876 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
c21a2372 877 pa/pa32-regs.h pa/pa32-linux.h"
7b3a4df5 878 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
275b60d6 879 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
61ed06c3
HPN
880 gas=yes gnu_ld=yes
881 if test x$enable_threads = xyes; then
882 thread_file='posix'
883 fi
884 ;;
885hppa*-*-openbsd*)
886 target_cpu_default="MASK_PA_11"
14455c64 887 tmake_file=pa/t-bsd
61ed06c3
HPN
888 ;;
889hppa1.1-*-pro*)
890 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
c40409ce 891 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
14455c64 892 tmake_file="pa/t-bsd pa/t-pro"
ed9d6ff9 893 xmake_file="pa/x-ada"
61ed06c3
HPN
894 ;;
895hppa1.1-*-osf*)
896 target_cpu_default="MASK_PA_11"
897 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
14455c64 898 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 899 xmake_file="pa/x-ada"
61ed06c3
HPN
900 use_collect2=yes
901 ;;
902hppa1.1-*-rtems*)
f22b4bc4 903 xm_defines=POSIX
61ed06c3 904 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
f22b4bc4 905 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 906 tmake_file="pa/t-bsd pa/t-pro"
ed9d6ff9 907 xmake_file="pa/x-ada"
61ed06c3
HPN
908 ;;
909hppa1.0-*-osf*)
910 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
14455c64 911 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 912 xmake_file="pa/x-ada"
61ed06c3
HPN
913 use_collect2=yes
914 ;;
915hppa1.1-*-bsd*)
916 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
917 target_cpu_default="MASK_PA_11"
14455c64 918 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 919 xmake_file="pa/x-ada"
61ed06c3
HPN
920 use_collect2=yes
921 ;;
922hppa1.0-*-bsd*)
923 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
14455c64 924 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 925 xmake_file="pa/x-ada"
61ed06c3
HPN
926 use_collect2=yes
927 ;;
928hppa1.0-*-hpux7*)
929 tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
34f4f3a5 930 xm_defines=POSIX
14455c64 931 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
932 install_headers_dir=install-headers-cpio
933 use_collect2=yes
934 ;;
935hppa1.0-*-hpux8.0[0-2]*)
936 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 937 xm_defines=POSIX
14455c64 938 tmake_file=pa/t-pa-hpux
c21a2372 939 if test x$gas != xyes
61ed06c3 940 then
61ed06c3
HPN
941 tm_file="pa/pa-oldas.h ${tm_file}"
942 fi
943 install_headers_dir=install-headers-cpio
944 use_collect2=yes
945 ;;
946hppa1.1-*-hpux8.0[0-2]*)
947 target_cpu_default="MASK_PA_11"
948 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 949 xm_defines=POSIX
14455c64 950 tmake_file=pa/t-pa-hpux
c21a2372 951 if test x$gas != xyes
61ed06c3 952 then
61ed06c3
HPN
953 tm_file="pa/pa-oldas.h ${tm_file}"
954 fi
955 install_headers_dir=install-headers-cpio
956 use_collect2=yes
957 ;;
958hppa1.1-*-hpux8*)
959 target_cpu_default="MASK_PA_11"
960 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 961 xm_defines=POSIX
14455c64 962 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
963 install_headers_dir=install-headers-cpio
964 use_collect2=yes
965 ;;
966hppa1.0-*-hpux8*)
967 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
34f4f3a5 968 xm_defines=POSIX
14455c64 969 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
970 install_headers_dir=install-headers-cpio
971 use_collect2=yes
972 ;;
973hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
974 target_cpu_default="MASK_PA_11"
975 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
976 float_format=i128
34f4f3a5 977 xm_defines=POSIX
e4761274 978 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 979 xmake_file="pa/x-ada"
61ed06c3
HPN
980 if test x$enable_threads = x; then
981 enable_threads=$have_pthread_h
982 fi
983 case x${enable_threads} in
984 xyes | xdce)
985 tmake_file="${tmake_file} pa/t-dce-thr"
986 ;;
987 esac
988 install_headers_dir=install-headers-cpio
989 use_collect2=yes
990 ;;
991hppa1.0-*-hpux10*)
992 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
993 float_format=i128
34f4f3a5 994 xm_defines=POSIX
e4761274 995 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 996 xmake_file="pa/x-ada"
61ed06c3
HPN
997 if test x$enable_threads = x; then
998 enable_threads=$have_pthread_h
999 fi
1000 case x${enable_threads} in
1001 xyes | xdce)
1002 tmake_file="${tmake_file} pa/t-dce-thr"
1003 ;;
1004 esac
1005 install_headers_dir=install-headers-cpio
1006 use_collect2=yes
1007 ;;
1008hppa*64*-*-hpux11*)
34f4f3a5 1009 xm_defines=POSIX
38010927 1010 tm_file="pa/pa64-start.h ${tm_file} pa/pa64-regs.h pa/long_double.h pa/elf.h pa/pa-hpux.h pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
61ed06c3 1011 float_format=i128
eab854f6 1012 tmake_file="pa/t-pa64 pa/t-pa-hpux"
ed9d6ff9 1013 xmake_file="pa/x-ada"
c81460e4 1014 target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
61ed06c3 1015
61ed06c3
HPN
1016# if [ x$enable_threads = x ]; then
1017# enable_threads=$have_pthread_h
1018# fi
1019# if [ x$enable_threads = xyes ]; then
1020# thread_file='dce'
1021# tmake_file="${tmake_file} pa/t-dce-thr"
1022# fi
1023 install_headers_dir=install-headers-cpio
1024 use_collect2=yes
1025 ;;
1026hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
1027 target_cpu_default="MASK_PA_11"
1028 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1029 float_format=i128
34f4f3a5 1030 xm_defines=POSIX
e4761274 1031 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 1032 xmake_file="pa/x-ada"
61ed06c3
HPN
1033# if test x$enable_threads = x; then
1034# enable_threads=$have_pthread_h
1035# fi
1036# if test x$enable_threads = xyes; then
1037# thread_file='dce'
1038# tmake_file="${tmake_file} pa/t-dce-thr"
1039# fi
1040 install_headers_dir=install-headers-cpio
1041 use_collect2=yes
1042 ;;
1043hppa1.0-*-hpux11*)
1044 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1045 float_format=i128
34f4f3a5 1046 xm_defines=POSIX
e4761274 1047 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
ed9d6ff9 1048 xmake_file="pa/x-ada"
61ed06c3
HPN
1049# if test x$enable_threads = x; then
1050# enable_threads=$have_pthread_h
1051# fi
1052# if test x$enable_threads = xyes; then
1053# thread_file='dce'
1054# tmake_file="${tmake_file} pa/t-dce-thr"
1055# fi
1056 install_headers_dir=install-headers-cpio
1057 use_collect2=yes
1058 ;;
1059hppa1.1-*-hpux* | hppa2*-*-hpux*)
1060 target_cpu_default="MASK_PA_11"
1061 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
34f4f3a5 1062 xm_defines=POSIX
14455c64 1063 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
1064 install_headers_dir=install-headers-cpio
1065 use_collect2=yes
1066 ;;
1067hppa1.0-*-hpux*)
1068 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
34f4f3a5 1069 xm_defines=POSIX
14455c64 1070 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
1071 install_headers_dir=install-headers-cpio
1072 use_collect2=yes
1073 ;;
1074hppa1.1-*-hiux* | hppa2*-*-hiux*)
1075 target_cpu_default="MASK_PA_11"
1076 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
34f4f3a5 1077 xm_defines=POSIX
14455c64 1078 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
1079 install_headers_dir=install-headers-cpio
1080 use_collect2=yes
1081 ;;
1082hppa1.0-*-hiux*)
1083 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
34f4f3a5 1084 xm_defines=POSIX
14455c64 1085 tmake_file=pa/t-pa-hpux
61ed06c3
HPN
1086 install_headers_dir=install-headers-cpio
1087 use_collect2=yes
1088 ;;
1089hppa*-*-lites*)
c40409ce 1090 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h"
61ed06c3 1091 target_cpu_default="MASK_PA_11"
14455c64 1092 tmake_file="pa/t-bsd pa/t-pa"
ed9d6ff9 1093 xmake_file="pa/x-ada"
61ed06c3
HPN
1094 use_collect2=yes
1095 ;;
1096hppa*-*-mpeix*)
1097 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h"
5dd8a9b1 1098 tmake_file=pa/t-mpeix
0e5a4ad8 1099 echo "You must use gas. Assuming it is already installed."
c21a2372 1100 gas=yes
61ed06c3 1101 install_headers_dir=install-headers-tar
0e5a4ad8
EC
1102 use_collect2=yes
1103 ;;
61ed06c3 1104i370-*-opened*) # IBM 360/370/390 Architecture
34f4f3a5 1105 xm_defines='POSIX FATAL_EXIT_CODE=12'
61ed06c3 1106 tm_file=i370/oe.h
14455c64 1107 tmake_file="i370/t-oe i370/t-i370"
51fabca5
NB
1108 c_target_objs="i370-c.o"
1109 cxx_target_objs="i370-c.o"
61ed06c3
HPN
1110 ;;
1111i370-*-mvs*)
34f4f3a5 1112 xm_defines='POSIX FATAL_EXIT_CODE=12'
61ed06c3 1113 tm_file=i370/mvs.h
51fabca5
NB
1114 tmake_file="i370/t-i370"
1115 c_target_objs="i370-c.o"
1116 cxx_target_objs="i370-c.o"
61ed06c3
HPN
1117 ;;
1118i370-*-linux*)
c40409ce 1119 tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
7b3a4df5 1120 tmake_file="t-slibgcc-elf-ver t-linux"
61ed06c3 1121 # broken_install=yes
275b60d6 1122 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
61ed06c3
HPN
1123 # extra_parts="crtbegin.o crtend.o"
1124 gnu_ld=yes
1125 gas=yes
1126 elf=yes
1127 if test x$enable_threads = xyes; then
1128 thread_file='posix'
1129 fi
1130 ;;
8da6d80e 1131i[34567]86-*-chorusos*)
34f4f3a5 1132 xm_defines=POSIX
39ed301b 1133 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h chorus.h"
14455c64 1134 tmake_file="i386/t-i386elf t-svr4"
8da6d80e
CC
1135 case x${enable_threads} in
1136 xyes | xpthreads | xposix)
1137 thread_file='posix'
1138 ;;
1139 esac
1140 ;;
61ed06c3 1141i[34567]86-*-elf*)
34f4f3a5 1142 xm_defines=POSIX
39ed301b 1143 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
14455c64 1144 tmake_file="i386/t-i386elf t-svr4"
61ed06c3
HPN
1145 ;;
1146i[34567]86-ibm-aix*) # IBM PS/2 running AIX
1147 if test x$gas = xyes
1148 then
39ed301b 1149 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/aix386.h"
61ed06c3
HPN
1150 extra_parts="crtbegin.o crtend.o"
1151 tmake_file=i386/t-crtstuff
1152 else
39ed301b 1153 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/aix386ng.h"
61ed06c3
HPN
1154 use_collect2=yes
1155 fi
34f4f3a5 1156 xm_defines=POSIX
61ed06c3
HPN
1157 ;;
1158i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
34f4f3a5 1159 xm_defines="POSIX SMALL_ARG_MAX"
61ed06c3
HPN
1160 if test x$stabs = xyes -a x$gas = xyes
1161 then
1162 tm_file=i386/sysv4gdb.h
1163 else
39ed301b 1164 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h"
61ed06c3
HPN
1165 fi
1166 extra_parts="crtbegin.o crtend.o"
1167 tmake_file=i386/t-crtpic
1168 ;;
1169i[34567]86-next-*)
15bc166f 1170 tm_p_file="${tm_p_file} nextstep-protos.h"
39ed301b 1171 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h nextstep.h i386/next.h"
61ed06c3 1172 tmake_file=i386/t-next
61ed06c3
HPN
1173 extra_objs=nextstep.o
1174 extra_parts="crtbegin.o crtend.o"
1175 if test x$enable_threads = xyes; then
1176 thread_file='mach'
1177 fi
1178 ;;
1179i[34567]86-*-netware) # Intel 80386's running netware
39ed301b 1180 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
1181 tmake_file=i386/t-netware
1182 ;;
1183i[34567]86-sequent-bsd*) # 80386 from Sequent
1184 use_collect2=yes
1185 if test x$gas = xyes
1186 then
39ed301b 1187 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/sequent.h i386/seq-gas.h"
61ed06c3 1188 else
39ed301b 1189 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/sequent.h"
61ed06c3
HPN
1190 fi
1191 ;;
1192i[34567]86-sequent-ptx1*)
34f4f3a5 1193 xm_defines=POSIX
39ed301b 1194 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/seq-sysv3.h"
61ed06c3
HPN
1195 tmake_file=i386/t-crtstuff
1196 extra_parts="crtbegin.o crtend.o"
1197 install_headers_dir=install-headers-cpio
1198 ;;
1199i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
34f4f3a5 1200 xm_defines=POSIX
39ed301b 1201 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/seq-sysv3.h i386/seq2-sysv3.h"
61ed06c3
HPN
1202 tmake_file=i386/t-crtstuff
1203 extra_parts="crtbegin.o crtend.o"
1204 install_headers_dir=install-headers-cpio
1205 ;;
1206i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
70305f2b
RH
1207 if test x$gas = xyes
1208 then
1209 tm_file="${tm_file} usegas.h"
1210 fi
34f4f3a5 1211 xm_defines="POSIX SMALL_ARG_MAX"
39ed301b 1212 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
61ed06c3
HPN
1213 tmake_file=t-svr4
1214 extra_parts="crtbegin.o crtend.o"
1215 install_headers_dir=install-headers-cpio
1216 ;;
1217i386-sun-sunos*) # Sun i386 roadrunner
34f4f3a5 1218 xm_defines=POSIX
39ed301b 1219 tm_file="${tm_file} i386/unix.h i386/sun386.h i386/sun.h"
61ed06c3
HPN
1220 use_collect2=yes
1221 ;;
1222i[34567]86-wrs-vxworks*)
39ed301b 1223 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h i386/vxi386.h"
61ed06c3
HPN
1224 thread_file='vxworks'
1225 ;;
1226i[34567]86-*-aout*)
39ed301b 1227 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
61ed06c3
HPN
1228 ;;
1229i[34567]86-*-beoself* | i[34567]86-*-beos*)
34f4f3a5 1230 xm_defines=POSIX
61ed06c3 1231 tmake_file='i386/t-beos i386/t-crtpic'
39ed301b 1232 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
61ed06c3
HPN
1233 extra_parts='crtbegin.o crtend.o'
1234 ;;
1235i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
39ed301b 1236 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/386bsd.h i386/bsd386.h"
61ed06c3
HPN
1237# tmake_file=t-libc-ok
1238 ;;
1239i[34567]86-*-bsd*)
39ed301b 1240 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/386bsd.h"
61ed06c3
HPN
1241# tmake_file=t-libc-ok
1242# Next line turned off because both 386BSD and BSD/386 use GNU ld.
1243# use_collect2=yes
1244 ;;
1245i[34567]86-*-freebsd[12] | i[34567]86-*-freebsd[12].* | i[34567]86-*-freebsd*aout*)
39ed301b 1246 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
61ed06c3
HPN
1247 tmake_file=t-freebsd
1248 ;;
1249i[34567]86-*-freebsd*)
39ed301b 1250 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
e564e618
DB
1251 ;;
1252x86_64-*-freebsd*)
39ed301b 1253 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 1254 ;;
6ea0279f 1255i[34567]86-*-netbsdelf*)
39ed301b 1256 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
6ea0279f
MG
1257 float_format=i386
1258 ;;
61ed06c3 1259i[34567]86-*-netbsd*)
39ed301b 1260 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 1261 tmake_file=t-netbsd
5721cd84 1262 use_collect2=yes
61ed06c3 1263 ;;
7c884404 1264x86_64-*-netbsd*)
39ed301b 1265 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
JT
1266 float_format=i386
1267 ;;
61ed06c3 1268i[34567]86-*-openbsd*)
39ed301b 1269 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
1270 # needed to unconfuse gdb
1271 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
61ed06c3
HPN
1272 # we need collect2 until our bug is fixed...
1273 use_collect2=yes
1274 ;;
1275i[34567]86-*-coff*)
39ed301b 1276 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
61ed06c3
HPN
1277 ;;
1278i[34567]86-*-isc*) # 80386 running ISC system
34f4f3a5 1279 xm_defines=POSIX
61ed06c3
HPN
1280 if test x$gas = xyes -a x$stabs = xyes
1281 then
39ed301b 1282 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h i386/iscdbx.h"
61ed06c3
HPN
1283 tmake_file=i386/t-svr3dbx
1284 extra_parts="svr3.ifile svr3z.ifile"
1285 else
39ed301b 1286 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/isc.h"
61ed06c3
HPN
1287 tmake_file=i386/t-crtstuff
1288 extra_parts="crtbegin.o crtend.o"
1289 fi
61ed06c3
HPN
1290 install_headers_dir=install-headers-cpio
1291 ;;
1292i[34567]86-*-linux*oldld*) # Intel 80386's running GNU/Linux
1293 # with a.out format using
1294 # pre BFD linkers
61ed06c3 1295 tmake_file="t-linux-aout i386/t-crtstuff"
39ed301b 1296 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-oldld.h"
61ed06c3
HPN
1297 gnu_ld=yes
1298 float_format=i386
1299 ;;
1300i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux
1301 # with a.out format
61ed06c3 1302 tmake_file="t-linux-aout i386/t-crtstuff"
39ed301b 1303 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
61ed06c3
HPN
1304 gnu_ld=yes
1305 float_format=i386
1306 ;;
1307i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux
1308 # with ELF format using the
1309 # GNU/Linux C library 5
39ed301b 1310 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
7b3a4df5 1311 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
61ed06c3
HPN
1312 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1313 gnu_ld=yes
1314 float_format=i386
1315 if test x$enable_threads = xyes; then
1316 thread_file='single'
1317 fi
1318 ;;
1319i[34567]86-*-linux*) # Intel 80386's running GNU/Linux
1320 # with ELF format using glibc 2
1321 # aka GNU/Linux C library 6
39ed301b 1322 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
7b3a4df5 1323 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
275b60d6 1324 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
61ed06c3
HPN
1325 gnu_ld=yes
1326 float_format=i386
1327 if test x$enable_threads = xyes; then
1328 thread_file='posix'
1329 fi
1330 ;;
14f73b5a 1331x86_64-*-linux*)
39ed301b 1332 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
32fb7c9d 1333 i386/x86-64.h i386/linux64.h"
56547299 1334 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff i386/t-linux64"
275b60d6 1335 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
14f73b5a
JH
1336 gnu_ld=yes
1337 float_format=i386
1338 if test x$enable_threads = xyes; then
1339 thread_file='posix'
1340 fi
1341 ;;
61ed06c3
HPN
1342i[34567]86-*-gnu*)
1343 float_format=i386
1344 ;;
1345i[34567]86-go32-msdos | i[34567]86-*-go32*)
1346 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1347 exit 1
1348 ;;
1349i[34567]86-pc-msdosdjgpp*)
1350 xm_file=i386/xm-djgpp.h
39ed301b 1351 tm_file="dbxcoff.h ${tm_file} i386/djgpp.h"
5dd8a9b1 1352 tmake_file=i386/t-djgpp
61ed06c3
HPN
1353 gnu_ld=yes
1354 gas=yes
1355 exeext=.exe
1356 float_format=none
1357 case $host in *pc-msdosdjgpp*)
1358 target_alias=djgpp
1359 ;;
1360 esac
1361 ;;
1362i[34567]86-moss-msdos* | i[34567]86-*-moss*)
39ed301b 1363 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
1364 tmake_file=t-libc-ok
1365 gnu_ld=yes
1366 gas=yes
1367 ;;
1368i[34567]86-*-lynxos*)
1369 if test x$gas = xyes
1370 then
39ed301b 1371 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h"
61ed06c3 1372 else
39ed301b 1373 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
61ed06c3 1374 fi
61ed06c3
HPN
1375 ;;
1376i[34567]86-*-mach*)
39ed301b 1377 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
61ed06c3
HPN
1378# tmake_file=t-libc-ok
1379 use_collect2=yes
1380 ;;
1381i[34567]86-*-osfrose*) # 386 using OSF/rose
1382 if test x$elf = xyes
1383 then
39ed301b 1384 tm_file="${tm_file} halfpic.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/osfrose.h i386/osfelf.h"
61ed06c3
HPN
1385 use_collect2=
1386 else
39ed301b 1387 tm_file="${tm_file} halfpic.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/osfrose.h"
61ed06c3
HPN
1388 use_collect2=yes
1389 fi
61ed06c3
HPN
1390 tmake_file=i386/t-osf
1391 extra_objs=halfpic.o
1392 ;;
1393i[34567]86-go32-rtems*)
f22b4bc4 1394 xm_defines=POSIX
39ed301b 1395 tm_file="dbxcoff.h ${tm_file} i386/djgpp.h i386/djgpp-rtems.h rtems.h"
db009825 1396 tmake_file=t-rtems
bc98ef7f
JS
1397 if test x$enable_threads = xyes; then
1398 thread_file='rtems'
1399 fi
61ed06c3
HPN
1400 ;;
1401i[34567]86-*-rtemscoff*)
f22b4bc4 1402 xm_defines=POSIX
39ed301b 1403 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h i386/rtems.h rtems.h"
7857f134 1404 tmake_file=t-rtems
bc98ef7f
JS
1405 if test x$enable_threads = xyes; then
1406 thread_file='rtems'
1407 fi
61ed06c3
HPN
1408 ;;
1409i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
f22b4bc4 1410 xm_defines=POSIX
39ed301b 1411 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
61ed06c3
HPN
1412 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1413 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
bc98ef7f
JS
1414 if test x$enable_threads = xyes; then
1415 thread_file='rtems'
1416 fi
61ed06c3
HPN
1417 ;;
1418i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
34f4f3a5 1419 xm_defines=POSIX
61ed06c3 1420 install_headers_dir=install-headers-cpio
39ed301b 1421 tm_file="${tm_file} i386/unix.h i386/att.h i386/sco5.h"
61ed06c3
HPN
1422 if test x$gas = xyes
1423 then
70305f2b 1424 tm_file="usegas.h ${tm_file}"
61ed06c3
HPN
1425 tmake_file=i386/t-sco5gas
1426 else
1427 tmake_file=i386/t-sco5
1428 fi
61ed06c3
HPN
1429 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1430 ;;
61ed06c3 1431i[34567]86-*-solaris2*)
34f4f3a5 1432 xm_defines="POSIX SMALL_ARG_MAX"
39ed301b 1433 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sol2.h"
61ed06c3 1434 if test x$gas = xyes; then
61ed06c3
HPN
1435 tm_file="i386/sol2gas.h ${tm_file}"
1436 fi
14455c64 1437 tmake_file="i386/t-sol2 t-svr4"
7b3a4df5
RH
1438 if test x$gnu_ld = xyes; then
1439 tmake_file="$tmake_file t-slibgcc-elf-ver"
1440 else
1441 tmake_file="$tmake_file t-slibgcc-sld"
1442 fi
61ed06c3 1443 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
61ed06c3
HPN
1444 if test x${enable_threads} = x; then
1445 enable_threads=$have_pthread_h
1446 if test x${enable_threads} = x; then
1447 enable_threads=$have_thread_h
1448 fi
1449 fi
1450 if test x${enable_threads} = xyes; then
1451 if test x${have_pthread_h} = xyes; then
1452 thread_file='posix'
1453 else
1454 thread_file='solaris'
1455 fi
1456 fi
1457 ;;
23a535c4 1458i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
34f4f3a5 1459 xm_defines=POSIX
39ed301b 1460 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
61ed06c3
HPN
1461 if test x$stabs = xyes
1462 then
1463 tm_file="${tm_file} dbx.h"
1464 fi
14455c64 1465 tmake_file="i386/t-crtpic t-svr4"
61ed06c3
HPN
1466 extra_parts="crtbegin.o crtend.o"
1467 if test x$enable_threads = xyes; then
1468 thread_file='posix'
1469 fi
1470 ;;
1471i[34567]86-*-sysv4*) # Intel 80386's running system V.4
34f4f3a5 1472 xm_defines="POSIX SMALL_ARG_MAX"
39ed301b 1473 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h"
61ed06c3
HPN
1474 if test x$stabs = xyes
1475 then
1476 tm_file="${tm_file} dbx.h"
1477 fi
14455c64 1478 tmake_file="i386/t-crtpic t-svr4"
61ed06c3
HPN
1479 extra_parts="crtbegin.o crtend.o"
1480 ;;
1481i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
34f4f3a5 1482 xm_defines=POSIX
39ed301b 1483 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 1484 tmake_file="i386/t-crtpic i386/t-udk t-svr4"
61ed06c3
HPN
1485 extra_parts="crtbegin.o crtend.o"
1486 install_headers_dir=install-headers-cpio
1487 ;;
1488i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+
34f4f3a5 1489 xm_defines='POSIX USE_C_ALLOCA SMALL_ARG_MAX'
61ed06c3
HPN
1490 if test x$stabs = xyes
1491 then
39ed301b 1492 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h i386/osf1elfgdb.h"
61ed06c3 1493 else
39ed301b 1494 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h"
61ed06c3
HPN
1495 fi
1496 tmake_file=i386/t-osf1elf
61ed06c3
HPN
1497 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1498 ;;
1499i[34567]86-*-sysv*) # Intel 80386's running system V
34f4f3a5 1500 xm_defines=POSIX
61ed06c3
HPN
1501 if test x$gas = xyes
1502 then
1503 if test x$stabs = xyes
1504 then
39ed301b 1505 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
61ed06c3
HPN
1506 tmake_file=i386/t-svr3dbx
1507 extra_parts="svr3.ifile svr3z.rfile"
1508 else
39ed301b 1509 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
61ed06c3
HPN
1510 extra_parts="crtbegin.o crtend.o"
1511 tmake_file=i386/t-crtstuff
1512 fi
1513 else
39ed301b 1514 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
61ed06c3
HPN
1515 extra_parts="crtbegin.o crtend.o"
1516 tmake_file=i386/t-crtstuff
1517 fi
1518 tmake_file="$tmake_file i386/t-crtpic"
1519 ;;
1520i386-*-vsta) # Intel 80386's running VSTa kernel
39ed301b
DB
1521 xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h"
1522 tm_file="${tm_file} i386/vsta.h"
61ed06c3
HPN
1523 ;;
1524i[34567]86-*-win32)
b19a539e 1525 xm_defines=POSIX
4dc0535b 1526 xm_file=i386/xm-cygwin.h
60a8ab96 1527 float_format=i386
61ed06c3 1528 tmake_file=i386/t-cygwin
39ed301b 1529 tm_file="${tm_file} i386/win32.h"
61ed06c3
HPN
1530 extra_objs=winnt.o
1531 if test x$enable_threads = xyes; then
1532 thread_file='win32'
1533 fi
1534 exeext=.exe
1535 ;;
1536i[34567]86-*-pe | i[34567]86-*-cygwin*)
b19a539e 1537 xm_defines=POSIX
4dc0535b 1538 xm_file=i386/xm-cygwin.h
60a8ab96 1539 float_format=i386
61ed06c3
HPN
1540 tmake_file=i386/t-cygwin
1541 tm_file=i386/cygwin.h
61ed06c3
HPN
1542 extra_objs=winnt.o
1543 if test x$enable_threads = xyes; then
1544 thread_file='win32'
1545 fi
1546 exeext=.exe
1547 ;;
1548i[34567]86-*-mingw32*)
1549 tm_file=i386/mingw32.h
60a8ab96 1550 float_format=i386
34f4f3a5 1551 xm_defines=POSIX
4dc0535b 1552 xm_file=i386/xm-mingw32.h
61ed06c3
HPN
1553 tmake_file="i386/t-cygwin i386/t-mingw32"
1554 extra_objs=winnt.o
61ed06c3
HPN
1555 if test x$enable_threads = xyes; then
1556 thread_file='win32'
1557 fi
1558 exeext=.exe
1559 case $machine in
09eaf5a5 1560 *mingw32crt*)
61ed06c3
HPN
1561 tm_file="${tm_file} i386/crtdll.h"
1562 ;;
09eaf5a5
DS
1563 *minwg32msv* | *mingw32*)
1564 ;;
61ed06c3
HPN
1565 esac
1566 ;;
1567i[34567]86-*-uwin*)
39ed301b 1568 tm_file="i386/cygwin.h i386/uwin.h"
61ed06c3
HPN
1569 tmake_file="i386/t-cygwin i386/t-uwin"
1570 extra_objs=winnt.o
61ed06c3
HPN
1571 if test x$enable_threads = xyes; then
1572 thread_file='win32'
1573 fi
1574 exeext=.exe
1575 ;;
04cec1a7 1576i[34567]86-*-interix3*)
39ed301b 1577 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"
5dd8a9b1 1578 xm_file="i386/xm-i386-interix.h"
04cec1a7 1579 xm_defines=POSIX
5dd8a9b1 1580 tmake_file="t-interix i386/t-interix"
04cec1a7 1581 extra_objs=interix.o
5dd8a9b1 1582 xmake_file="x-interix"
04cec1a7
DR
1583 if test x$enable_threads = xyes ; then
1584 thread_file='posix'
1585 fi
1586 if test x$stabs = xyes ; then
1587 tm_file="${tm_file} dbxcoff.h"
1588 fi
1589 ;;
61ed06c3 1590i[34567]86-*-interix*)
39ed301b 1591 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
5dd8a9b1 1592 xm_file="i386/xm-i386-interix.h"
34f4f3a5 1593 xm_defines=POSIX
14455c64 1594 tmake_file="t-interix i386/t-interix"
61ed06c3 1595 extra_objs=interix.o
61ed06c3
HPN
1596 if test x$enable_threads = xyes ; then
1597 thread_file='posix'
1598 fi
1599 if test x$stabs = xyes ; then
1600 tm_file="${tm_file} dbxcoff.h"
1601 fi
1602 ;;
61ed06c3 1603i[34567]86-dg-dgux*)
34f4f3a5 1604 xm_defines=POSIX
39ed301b 1605 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/dgux.h"
61ed06c3 1606 tmake_file=i386/t-dgux
61ed06c3
HPN
1607 install_headers_dir=install-headers-cpio
1608 ;;
1609i860-alliant-*) # Alliant FX/2800
c40409ce 1610 tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h i860/fx2800.h"
61ed06c3
HPN
1611 tmake_file=i860/t-fx2800
1612 extra_parts="crtbegin.o crtend.o"
1613 ;;
1614i860-*-bsd*)
1615 tm_file="${tm_file} i860/bsd.h"
1616 if test x$gas = xyes
1617 then
1618 tm_file="${tm_file} i860/bsd-gas.h"
1619 fi
1620 use_collect2=yes
1621 ;;
1622i860-*-mach*)
1623 tm_file="${tm_file} i860/mach.h"
1624 tmake_file=t-libc-ok
1625 ;;
1626i860-*-osf*) # Intel Paragon XP/S, OSF/1AD
1627 tm_file="${tm_file} svr3.h i860/paragon.h"
34f4f3a5 1628 xm_defines=POSIX
61ed06c3
HPN
1629 ;;
1630i860-*-sysv3*)
1631 tm_file="${tm_file} svr3.h i860/sysv3.h"
34f4f3a5 1632 xm_defines=POSIX
61ed06c3
HPN
1633 extra_parts="crtbegin.o crtend.o"
1634 ;;
1635i860-*-sysv4*)
c40409ce 1636 tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h"
34f4f3a5 1637 xm_defines=POSIX
61ed06c3
HPN
1638 tmake_file=t-svr4
1639 extra_parts="crtbegin.o crtend.o"
1640 ;;
1641i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1642 tm_file="${tm_file} i960/vx960.h"
1643 tmake_file=i960/t-vxworks960
1644 use_collect2=yes
1645 thread_file='vxworks'
43fabf7d
JW
1646 c_target_objs="i960-c.o"
1647 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1648 ;;
1649i960-wrs-vxworks5* | i960-wrs-vxworks)
1650 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1651 tmake_file=i960/t-vxworks960
1652 use_collect2=yes
1653 thread_file='vxworks'
43fabf7d
JW
1654 c_target_objs="i960-c.o"
1655 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1656 ;;
1657i960-wrs-vxworks*)
1658 tm_file="${tm_file} i960/vx960.h"
1659 tmake_file=i960/t-vxworks960
1660 use_collect2=yes
1661 thread_file='vxworks'
43fabf7d
JW
1662 c_target_objs="i960-c.o"
1663 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1664 ;;
1665i960-*-coff*)
1666 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1667 tmake_file=i960/t-960bare
43fabf7d
JW
1668 c_target_objs="i960-c.o"
1669 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1670 ;;
1671i960-*-rtems)
f22b4bc4 1672 xm_defines=POSIX
61ed06c3 1673 tmake_file="i960/t-960bare t-rtems"
f22b4bc4 1674 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
bc98ef7f
JS
1675 if test x$enable_threads = xyes; then
1676 thread_file='rtems'
1677 fi
43fabf7d
JW
1678 c_target_objs="i960-c.o"
1679 cxx_target_objs="i960-c.o"
61ed06c3
HPN
1680 ;;
1681i960-*-*) # Default i960 environment.
1682 use_collect2=yes
5f37d07c 1683 tmake_file=i960/t-960bare
43fabf7d
JW
1684 c_target_objs="i960-c.o"
1685 cxx_target_objs="i960-c.o"
61ed06c3 1686 ;;
c177db4b 1687ia64*-*-aix*)
c40409ce 1688 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
c177db4b
TW
1689 tmake_file="ia64/t-ia64 ia64/t-aix"
1690 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1691 ;;
61ed06c3 1692ia64*-*-elf*)
c40409ce 1693 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
61ed06c3
HPN
1694 tmake_file="ia64/t-ia64"
1695 target_cpu_default="0"
1696 if test x$gas = xyes
1697 then
1698 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1699 fi
1700 if test x$gnu_ld = xyes
1701 then
1702 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1703 fi
1704 float_format=i386
1705 ;;
243a7070 1706ia64*-*-freebsd*)
fee42cc1 1707 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
243a7070
DB
1708 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1709 tmake_file="${tmake_file} ia64/t-ia64"
1710 float_format=i386
1711 ;;
61ed06c3 1712ia64*-*-linux*)
c40409ce 1713 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
7b3a4df5 1714 tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
61ed06c3
HPN
1715 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1716 if test x$enable_threads = xyes; then
1717 thread_file='posix'
1718 fi
1719 float_format=i386
1720 ;;
7e5b9908 1721ia64*-*-hpux*)
c40409ce 1722 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
23c108af 1723 tmake_file="ia64/t-ia64 ia64/t-hpux"
7e5b9908
SE
1724 target_cpu_default="MASK_GNU_AS"
1725 if test x$enable_threads = xyes; then
1726 thread_file='posix'
1727 fi
1728 float_format=i386
1729 ;;
61ed06c3 1730m32r-*-elf*)
c40409ce 1731 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
1732 extra_parts="crtinit.o crtfini.o"
1733 ;;
1734# m68hc11 and m68hc12 share the same machine description.
1735m68hc11-*-*|m6811-*-*)
c40409ce 1736 tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
61ed06c3
HPN
1737 tm_p_file="m68hc11/m68hc11-protos.h"
1738 md_file="m68hc11/m68hc11.md"
1739 out_file="m68hc11/m68hc11.c"
1740 tmake_file="m68hc11/t-m68hc11-gas"
1741 ;;
1742m68hc12-*-*|m6812-*-*)
c40409ce 1743 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
61ed06c3 1744 tm_p_file="m68hc11/m68hc11-protos.h"
61ed06c3
HPN
1745 md_file="m68hc11/m68hc11.md"
1746 out_file="m68hc11/m68hc11.c"
1747 tmake_file="m68hc11/t-m68hc11-gas"
1748 ;;
1749m68000-convergent-sysv*)
1750 tm_file=m68k/ctix.h
34f4f3a5 1751 xm_defines=POSIX
61ed06c3 1752 use_collect2=yes
61ed06c3
HPN
1753 ;;
1754m68000-hp-bsd*) # HP 9000/200 running BSD
1755 tm_file=m68k/hp2bsd.h
61ed06c3 1756 use_collect2=yes
61ed06c3
HPN
1757 ;;
1758m68000-hp-hpux*) # HP 9000 series 300
34f4f3a5 1759 xm_defines=POSIX
61ed06c3
HPN
1760 if test x$gas = xyes
1761 then
61ed06c3
HPN
1762 tm_file=m68k/hp310g.h
1763 else
61ed06c3
HPN
1764 tm_file=m68k/hp310.h
1765 fi
14455c64 1766 tmake_file=m68k/t-hp320
61ed06c3
HPN
1767 install_headers_dir=install-headers-cpio
1768 use_collect2=yes
61ed06c3
HPN
1769 ;;
1770m68000-sun-sunos3*)
1771 tm_file=m68k/sun2.h
1772 use_collect2=yes
61ed06c3
HPN
1773 ;;
1774m68000-sun-sunos4*)
1775 tm_file=m68k/sun2o4.h
1776 use_collect2=yes
61ed06c3
HPN
1777 ;;
1778m68000-att-sysv*)
34f4f3a5 1779 xm_defines=POSIX
61ed06c3
HPN
1780 if test x$gas = xyes
1781 then
1782 tm_file=m68k/3b1g.h
1783 else
1784 tm_file=m68k/3b1.h
1785 fi
1786 use_collect2=yes
61ed06c3
HPN
1787 ;;
1788m68k-apple-aux*) # Apple Macintosh running A/UX
34f4f3a5 1789 xm_defines=POSIX
61ed06c3
HPN
1790 tmake_file=m68k/t-aux
1791 install_headers_dir=install-headers-cpio
61ed06c3
HPN
1792 extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1793 tm_file=
1794 if test "$gnu_ld" = yes
1795 then
1796 tm_file="${tm_file} m68k/auxgld.h"
1797 else
1798 tm_file="${tm_file} m68k/auxld.h"
1799 fi
1800 if test "$gas" = yes
1801 then
1802 tm_file="${tm_file} m68k/auxgas.h"
1803 else
1804 tm_file="${tm_file} m68k/auxas.h"
1805 fi
1806 tm_file="${tm_file} m68k/a-ux.h"
1807 float_format=m68k
1808 ;;
1809m68k-apollo-*)
1810 tm_file=m68k/apollo68.h
61ed06c3 1811 use_collect2=yes
61ed06c3
HPN
1812 float_format=m68k
1813 ;;
1814m68k-altos-sysv*) # Altos 3068
1815 if test x$gas = xyes
1816 then
1817 tm_file=m68k/altos3068.h
34f4f3a5 1818 xm_defines=POSIX
61ed06c3
HPN
1819 else
1820 echo "The Altos is supported only with the GNU assembler" 1>&2
1821 exit 1
1822 fi
61ed06c3
HPN
1823 ;;
1824m68k-bull-sysv*) # Bull DPX/2
1825 if test x$gas = xyes
1826 then
1827 if test x$stabs = xyes
1828 then
1829 tm_file=m68k/dpx2cdbx.h
1830 else
1831 tm_file=m68k/dpx2g.h
1832 fi
1833 else
1834 tm_file=m68k/dpx2.h
1835 fi
34f4f3a5 1836 xm_defines=POSIX
61ed06c3 1837 use_collect2=yes
61ed06c3
HPN
1838 ;;
1839m68k-atari-sysv4*) # Atari variant of V.4.
1840 tm_file=m68k/atari.h
34f4f3a5 1841 xm_defines=POSIX
61ed06c3
HPN
1842 tmake_file=t-svr4
1843 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1844 float_format=m68k
1845 ;;
1846m68k-motorola-sysv*)
1847 tm_file=m68k/mot3300.h
34f4f3a5 1848 xm_defines=POSIX
61ed06c3
HPN
1849 if test x$gas = xyes
1850 then
61ed06c3
HPN
1851 if test x$gnu_ld = xyes
1852 then
1853 tmake_file=m68k/t-mot3300-gald
1854 else
1855 tmake_file=m68k/t-mot3300-gas
1856 use_collect2=yes
1857 fi
1858 else
61ed06c3
HPN
1859 if test x$gnu_ld = xyes
1860 then
1861 tmake_file=m68k/t-mot3300-gld
1862 else
1863 tmake_file=m68k/t-mot3300
1864 use_collect2=yes
1865 fi
1866 fi
1867 gdb_needs_out_file_path=yes
1868 extra_parts="crt0.o mcrt0.o"
61ed06c3
HPN
1869 float_format=m68k
1870 ;;
1871m68k-ncr-sysv*) # NCR Tower 32 SVR3
1872 tm_file=m68k/tower-as.h
34f4f3a5 1873 xm_defines=POSIX
61ed06c3 1874 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1875 ;;
1876m68k-plexus-sysv*)
1877 tm_file=m68k/plexus.h
34f4f3a5 1878 xm_defines=POSIX
61ed06c3 1879 use_collect2=yes
61ed06c3
HPN
1880 ;;
1881m68k-tti-*)
1882 tm_file=m68k/pbb.h
34f4f3a5 1883 xm_defines=POSIX
61ed06c3
HPN
1884 ;;
1885m68k-crds-unos*)
34f4f3a5 1886 xm_defines=POSIX
61ed06c3
HPN
1887 tm_file=m68k/crds.h
1888 use_collect2=yes
61ed06c3
HPN
1889 ;;
1890m68k-cbm-sysv4*) # Commodore variant of V.4.
1891 tm_file=m68k/amix.h
34f4f3a5 1892 xm_defines=POSIX
61ed06c3
HPN
1893 tmake_file=t-svr4
1894 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1895 float_format=m68k
1896 ;;
1897m68k-ccur-rtu)
1898 tm_file=m68k/ccur-GAS.h
61ed06c3
HPN
1899 use_collect2=yes
1900 float_format=m68k
1901 ;;
1902m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
1903 tm_file=m68k/hp3bsd44.h
61ed06c3 1904 use_collect2=yes
61ed06c3
HPN
1905 float_format=m68k
1906 ;;
1907m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
1908 tm_file=m68k/hp3bsd.h
1909 use_collect2=yes
61ed06c3
HPN
1910 float_format=m68k
1911 ;;
1912m68k-isi-bsd*)
1913 if test x$with_fp = xno
1914 then
1915 tm_file=m68k/isi-nfp.h
1916 else
1917 tm_file=m68k/isi.h
1918 float_format=m68k
1919 fi
1920 use_collect2=yes
61ed06c3
HPN
1921 ;;
1922m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
34f4f3a5 1923 xm_defines=POSIX
61ed06c3
HPN
1924 if test x$gas = xyes
1925 then
1926 xmake_file=m68k/x-hp320g
1927 tm_file=m68k/hp320g.h
1928 else
1929 xmake_file=m68k/x-hp320
1930 tm_file=m68k/hpux7.h
1931 fi
1932 install_headers_dir=install-headers-cpio
1933 use_collect2=yes
61ed06c3
HPN
1934 float_format=m68k
1935 ;;
1936m68k-hp-hpux*) # HP 9000 series 300
34f4f3a5 1937 xm_defines=POSIX
61ed06c3
HPN
1938 if test x$gas = xyes
1939 then
1940 xmake_file=m68k/x-hp320g
1941 tm_file=m68k/hp320g.h
1942 else
1943 xmake_file=m68k/x-hp320
1944 tm_file=m68k/hp320.h
1945 fi
1946 install_headers_dir=install-headers-cpio
1947 use_collect2=yes
61ed06c3
HPN
1948 float_format=m68k
1949 ;;
1950m68k-sun-mach*)
1951 tm_file=m68k/sun3mach.h
1952 use_collect2=yes
61ed06c3
HPN
1953 float_format=m68k
1954 ;;
1955m68k-sony-newsos3*)
1956 if test x$gas = xyes
1957 then
1958 tm_file=m68k/news3gas.h
1959 else
1960 tm_file=m68k/news3.h
1961 fi
1962 use_collect2=yes
61ed06c3
HPN
1963 float_format=m68k
1964 ;;
1965m68k-sony-bsd* | m68k-sony-newsos*)
1966 if test x$gas = xyes
1967 then
1968 tm_file=m68k/newsgas.h
1969 else
1970 tm_file=m68k/news.h
1971 fi
1972 use_collect2=yes
61ed06c3
HPN
1973 float_format=m68k
1974 ;;
1975m68k-next-nextstep2*)
15bc166f 1976 tm_p_file="${tm_p_file} nextstep-protos.h"
61ed06c3 1977 tm_file=m68k/next21.h
61ed06c3
HPN
1978 tmake_file=m68k/t-next
1979 xmake_file=m68k/x-next
1980 extra_objs=nextstep.o
61ed06c3
HPN
1981 use_collect2=yes
1982 float_format=m68k
1983 ;;
1984m68k-next-nextstep[34]*)
15bc166f 1985 tm_p_file="${tm_p_file} nextstep-protos.h"
61ed06c3 1986 tm_file=m68k/next.h
61ed06c3
HPN
1987 tmake_file=m68k/t-next
1988 xmake_file=m68k/x-next
1989 extra_objs=nextstep.o
1990 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
1991 float_format=m68k
1992 if test x$enable_threads = xyes; then
1993 thread_file='mach'
1994 fi
1995 ;;
1996m68k-sun-sunos3*)
1997 if test x$with_fp = xno
1998 then
1999 tm_file=m68k/sun3n3.h
2000 else
2001 tm_file=m68k/sun3o3.h
2002 float_format=m68k
2003 fi
2004 use_collect2=yes
61ed06c3
HPN
2005 ;;
2006m68k-sun-sunos*) # For SunOS 4 (the default).
2007 if test x$with_fp = xno
2008 then
2009 tm_file=m68k/sun3n.h
2010 else
2011 tm_file=m68k/sun3.h
2012 float_format=m68k
2013 fi
2014 use_collect2=yes
61ed06c3
HPN
2015 ;;
2016m68k-wrs-vxworks*)
2017 tm_file=m68k/vxm68k.h
2018 tmake_file=m68k/t-vxworks68
61ed06c3
HPN
2019 thread_file='vxworks'
2020 float_format=m68k
2021 ;;
2022m68k-*-aout*)
2023 tmake_file=m68k/t-m68kbare
2024 tm_file="m68k/m68k-aout.h libgloss.h"
61ed06c3
HPN
2025 float_format=m68k
2026 ;;
2027m68k-*-coff*)
2028 tmake_file=m68k/t-m68kbare
2029 tm_file="m68k/m68k-coff.h dbx.h"
61ed06c3
HPN
2030 float_format=m68k
2031 ;;
2032m68020-*-elf* | m68k-*-elf*)
91171315 2033 tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
34f4f3a5 2034 xm_defines=POSIX
61ed06c3 2035 tmake_file=m68k/t-m68kelf
bb8602be 2036 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
2037 ;;
2038m68k-*-lynxos*)
2039 if test x$gas = xyes
2040 then
2041 tm_file=m68k/lynx.h
2042 else
2043 tm_file=m68k/lynx-ng.h
2044 fi
61ed06c3 2045 tmake_file=m68k/t-lynx
61ed06c3
HPN
2046 float_format=m68k
2047 ;;
2fd95d71
JT
2048m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
2049 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
2050 case $machine in
2051 m68010*)
2052 target_cpu_default="0"
2053 ;;
2054 *)
2055 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
2056 ;;
2057 esac
2058 float_format=m68k
2059 ;;
61ed06c3
HPN
2060m68k*-*-netbsd*)
2061 tm_file=m68k/netbsd.h
2062 tmake_file=t-netbsd
2063 float_format=m68k
5721cd84 2064 use_collect2=yes
61ed06c3
HPN
2065 ;;
2066m68k*-*-openbsd*)
f1cf4606
ME
2067 # needed to unconfuse gdb
2068 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
61ed06c3
HPN
2069 float_format=m68k
2070 # we need collect2 until our bug is fixed...
2071 use_collect2=yes
2072 ;;
2073m68k-*-sysv3*) # Motorola m68k's running system V.3
34f4f3a5 2074 xm_defines=POSIX
61ed06c3 2075 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
2076 float_format=m68k
2077 ;;
2078m68k-*-sysv4*) # Motorola m68k's running system V.4
2079 tm_file=m68k/m68kv4.h
34f4f3a5 2080 xm_defines=POSIX
61ed06c3
HPN
2081 tmake_file=t-svr4
2082 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
2083 float_format=m68k
2084 ;;
2085m68k-*-linux*aout*) # Motorola m68k's running GNU/Linux
2086 # with a.out format
61ed06c3
HPN
2087 tm_file=m68k/linux-aout.h
2088 tmake_file="t-linux-aout m68k/t-linux-aout"
61ed06c3
HPN
2089 float_format=m68k
2090 gnu_ld=yes
2091 ;;
2092m68k-*-linux*libc1) # Motorola m68k's running GNU/Linux
2093 # with ELF format using the
2094 # GNU/Linux C library 5
61ed06c3 2095 tm_file=m68k/linux.h
7b3a4df5 2096 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
61ed06c3 2097 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
61ed06c3
HPN
2098 float_format=m68k
2099 gnu_ld=yes
2100 ;;
2101m68k-*-linux*) # Motorola m68k's running GNU/Linux
2102 # with ELF format using glibc 2
2103 # aka the GNU/Linux C library 6.
61ed06c3 2104 tm_file=m68k/linux.h
7b3a4df5 2105 tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
61ed06c3 2106 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
61ed06c3
HPN
2107 float_format=m68k
2108 gnu_ld=yes
2109 if test x$enable_threads = xyes; then
2110 thread_file='posix'
2111 fi
2112 ;;
2113m68k-*-psos*)
2114 tmake_file=m68k/t-m68kbare
2115 tm_file=m68k/m68k-psos.h
61ed06c3
HPN
2116 float_format=m68k
2117 ;;
2118m68k-*-rtemscoff*)
f22b4bc4 2119 xm_defines=POSIX
61ed06c3 2120 tmake_file="m68k/t-m68kbare t-rtems"
f22b4bc4 2121 tm_file="m68k/m68k-coff.h m68k/rtems.h rtems.h"
61ed06c3 2122 float_format=m68k
bc98ef7f
JS
2123 if test x$enable_threads = xyes; then
2124 thread_file='rtems'
2125 fi
61ed06c3
HPN
2126 ;;
2127m68k-*-rtemself*|m68k-*-rtems*)
f22b4bc4 2128 xm_defines=POSIX
61ed06c3 2129 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
f22b4bc4 2130 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"
61ed06c3 2131 float_format=m68k
bb8602be 2132 extra_parts="crtbegin.o crtend.o"
bc98ef7f
JS
2133 if test x$enable_threads = xyes; then
2134 thread_file='rtems'
2135 fi
61ed06c3
HPN
2136 ;;
2137m88k-dg-dgux*)
34f4f3a5 2138 xm_defines=POSIX
61ed06c3
HPN
2139 case $machine in
2140 m88k-dg-dguxbcs*)
c40409ce 2141 tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h m88k/dguxbcs.h"
14455c64 2142 tmake_file="m88k/t-dgux m88k/t-dguxbcs"
61ed06c3
HPN
2143 ;;
2144 *)
c40409ce 2145 tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h"
61ed06c3
HPN
2146 tmake_file=m88k/t-dgux
2147 ;;
2148 esac
2149 extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
61ed06c3
HPN
2150 if test x$gas = xyes
2151 then
2152 tmake_file=m88k/t-dgux-gas
2153 fi
2154 ;;
2155m88k-dolphin-sysv3*)
34f4f3a5 2156 xm_defines=POSIX
61ed06c3
HPN
2157 tm_file=m88k/dolph.h
2158 extra_parts="crtbegin.o crtend.o"
5dd8a9b1 2159 tmake_file=m88k/t-dolph
61ed06c3
HPN
2160 if test x$gas = xyes
2161 then
2162 tmake_file=m88k/t-m88k-gas
2163 fi
2164 ;;
2165m88k-tektronix-sysv3)
34f4f3a5 2166 xm_defines=POSIX
61ed06c3
HPN
2167 tm_file=m88k/tekXD88.h
2168 extra_parts="crtbegin.o crtend.o"
5dd8a9b1 2169 tmake_file=m88k/t-tekXD88
61ed06c3
HPN
2170 if test x$gas = xyes
2171 then
2172 tmake_file=m88k/t-m88k-gas
2173 fi
2174 ;;
2175m88k-*-aout*)
34f4f3a5 2176 xm_defines=POSIX
61ed06c3
HPN
2177 tm_file=m88k/m88k-aout.h
2178 ;;
2179m88k-*-coff*)
34f4f3a5 2180 xm_defines=POSIX
61ed06c3
HPN
2181 tm_file=m88k/m88k-coff.h
2182 tmake_file=m88k/t-bug
2183 ;;
2184m88k-*-luna*)
2185 tm_file=m88k/luna.h
2186 extra_parts="crtbegin.o crtend.o"
2187 if test x$gas = xyes
2188 then
2189 tmake_file=m88k/t-luna-gas
2190 else
2191 tmake_file=m88k/t-luna
2192 fi
2193 ;;
2194m88k-*-openbsd*)
2195 tmake_file="${tmake_file} m88k/t-luna-gas"
2196 tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
61ed06c3
HPN
2197 ;;
2198m88k-*-sysv3*)
34f4f3a5 2199 xm_defines=POSIX
61ed06c3
HPN
2200 tm_file=m88k/sysv3.h
2201 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
2202 if test x$gas = xyes
2203 then
2204 tmake_file=m88k/t-m88k-gas
2205 fi
2206 ;;
2207m88k-*-sysv4*)
34f4f3a5 2208 xm_defines=POSIX
c40409ce 2209 tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h"
61ed06c3 2210 extra_parts="crtbegin.o crtend.o"
61ed06c3
HPN
2211 tmake_file=m88k/t-sysv4
2212 ;;
2213mcore-*-elf)
c40409ce 2214 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
61ed06c3
HPN
2215 tmake_file=mcore/t-mcore
2216 ;;
2217mcore-*-pe*)
2218 tm_file=mcore/mcore-pe.h
2219 tmake_file=mcore/t-mcore-pe
2220 ;;
2221mips-sgi-irix6*) # SGI System V.4., IRIX 6
2222 if test "x$gnu_ld" = xyes
2223 then
2224 tm_file="mips/iris6.h mips/iris6gld.h"
2225 else
2226 tm_file=mips/iris6.h
2227 fi
14455c64 2228 tmake_file="mips/t-iris mips/t-iris6"
34f4f3a5 2229 xm_defines=POSIX
61ed06c3
HPN
2230# if test x$enable_threads = xyes; then
2231# thread_file='irix'
2232# fi
2233 ;;
2234mips-wrs-vxworks)
2235 tm_file="mips/elf.h mips/vxworks.h"
2236 tmake_file=mips/t-ecoff
2237 gas=yes
2238 gnu_ld=yes
2239 extra_parts="crtbegin.o crtend.o"
2240 thread_file='vxworks'
2241 ;;
2242mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
2243 tm_file="mips/iris6.h mips/cross64.h"
34f4f3a5 2244 xm_defines=POSIX
84c041a1 2245 xm_file=mips/xm-iris5.h
14455c64 2246 tmake_file="mips/t-iris mips/t-cross64"
61ed06c3
HPN
2247 # See comment in mips/iris[56].h files.
2248 use_collect2=yes
2249# if test x$enable_threads = xyes; then
2250# thread_file='irix'
2251# fi
2252 ;;
2253mips-sni-sysv4)
2254 if test x$gas = xyes
2255 then
2256 if test x$stabs = xyes
2257 then
2258 tm_file=mips/iris5gdb.h
2259 else
2260 tm_file="mips/sni-svr4.h mips/sni-gas.h"
2261 fi
2262 else
2263 tm_file=mips/sni-svr4.h
2264 fi
34f4f3a5 2265 xm_defines=POSIX
61ed06c3
HPN
2266 if test x$gnu_ld != xyes
2267 then
2268 use_collect2=yes
2269 fi
2270 ;;
2271mips-sgi-irix5*) # SGI System V.4., IRIX 5
2272 if test x$gas = xyes
2273 then
2274 tm_file="mips/iris5.h mips/iris5gas.h"
2275 if test x$stabs = xyes
2276 then
2277 tm_file="${tm_file} dbx.h"
2278 fi
2279 else
2280 tm_file=mips/iris5.h
2281 fi
14455c64 2282 tmake_file=mips/t-iris
34f4f3a5 2283 xm_defines=POSIX
84c041a1 2284 xm_file=mips/xm-iris5.h
61ed06c3 2285 # mips-tfile doesn't work yet
61ed06c3
HPN
2286 # See comment in mips/iris5.h file.
2287 use_collect2=yes
2288# if test x$enable_threads = xyes; then
2289# thread_file='irix'
2290# fi
2291 ;;
2292mips-sgi-irix4loser*) # Mostly like a MIPS.
2293 tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
2294 if test x$stabs = xyes; then
2295 tm_file="${tm_file} dbx.h"
2296 fi
14455c64 2297 tmake_file=mips/t-iris
34f4f3a5 2298 xm_defines=POSIX
61ed06c3 2299 if test x$gas = xyes
7857f134 2300 then :
61ed06c3
HPN
2301 else
2302 extra_passes="mips-tfile mips-tdump"
2303 fi
2304 if test x$gnu_ld != xyes
2305 then
2306 use_collect2=yes
2307 fi
2308# if test x$enable_threads = xyes; then
2309# thread_file='irix'
2310# fi
2311 ;;
2312mips-sgi-irix4*) # Mostly like a MIPS.
2313 tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
2314 if test x$stabs = xyes; then
2315 tm_file="${tm_file} dbx.h"
2316 fi
14455c64 2317 tmake_file=mips/t-iris
34f4f3a5 2318 xm_defines=POSIX
61ed06c3 2319 if test x$gas = xyes
7857f134 2320 then :
61ed06c3
HPN
2321 else
2322 extra_passes="mips-tfile mips-tdump"
2323 fi
2324 if test x$gnu_ld != xyes
2325 then
2326 use_collect2=yes
2327 fi
2328# if test x$enable_threads = xyes; then
2329# thread_file='irix'
2330# fi
2331 ;;
2332mips-sgi-*) # Mostly like a MIPS.
2333 tm_file="mips/iris3.h ${tm_file}"
2334 if test x$stabs = xyes; then
2335 tm_file="${tm_file} dbx.h"
2336 fi
34f4f3a5 2337 xm_defines=POSIX
61ed06c3 2338 if test x$gas = xyes
7857f134 2339 then :
61ed06c3
HPN
2340 else
2341 extra_passes="mips-tfile mips-tdump"
2342 fi
2343 if test x$gnu_ld != xyes
2344 then
2345 use_collect2=yes
2346 fi
2347 ;;
2348mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose.
2349 tm_file="mips/osfrose.h ${tm_file}"
61ed06c3
HPN
2350 extra_objs=halfpic.o
2351 use_collect2=yes
2352 ;;
2353mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL
2354 tm_file=mips/dec-osf1.h
2355 if test x$stabs = xyes; then
2356 tm_file="${tm_file} dbx.h"
2357 fi
61ed06c3 2358 if test x$gas = xyes
7857f134 2359 then :
61ed06c3
HPN
2360 else
2361 tmake_file=mips/t-ultrix
2362 extra_passes="mips-tfile mips-tdump"
2363 fi
2364 if test x$gnu_ld != xyes
2365 then
2366 use_collect2=yes
2367 fi
2368 ;;
2369mips-dec-bsd*) # Decstation running 4.4 BSD
2370 tm_file=mips/dec-bsd.h
2371 if test x$gas = xyes
7857f134 2372 then :
61ed06c3
HPN
2373 else
2374 tmake_file=mips/t-ultrix
2375 extra_passes="mips-tfile mips-tdump"
2376 fi
2377 if test x$gnu_ld != xyes
2378 then
2379 use_collect2=yes
2380 fi
2381 ;;
f982f805
JT
2382mips*-*-netbsd*) # NetBSD/mips, either endian.
2383 tm_file="elfos.h mips/netbsd.h"
2384 case $machine in
2385 mips*el-*)
2386 tm_file="mips/little.h $tm_file"
2387 ;;
2388 esac
61ed06c3
HPN
2389 ;;
2390mips*-*-linux*) # Linux MIPS, either endian.
c40409ce 2391 tm_file="dbxelf.h elfos.h svr4.h linux.h mips/linux.h"
61ed06c3 2392 case $machine in
009da785
EC
2393 mipsisa32*-*)
2394 tm_file="$tm_file mips/isa32-linux.h"
2395 target_cpu_default="MASK_SOFT_FLOAT"
2396 ;;
2397 esac
2398 case $machine in
2399 mips*el-*)
2400 tm_file="mips/little.h $tm_file"
2401 ;;
61ed06c3 2402 esac
5f083b72 2403 tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux"
275b60d6 2404 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
61ed06c3
HPN
2405 gnu_ld=yes
2406 gas=yes
2407 if test x$enable_threads = xyes; then
2408 thread_file='posix'
2409 fi
2410 ;;
2411mips*el-*-openbsd*) # mips little endian
2412 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2413 ;;
2414mips*-*-openbsd*) # mips big endian
2415 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2416 tm_file="mips/openbsd-be.h ${tm_file}"
2417 ;;
2418mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
2419 tm_file="mips/news4.h ${tm_file}"
2420 if test x$stabs = xyes; then
2421 tm_file="${tm_file} dbx.h"
2422 fi
2423 if test x$gas = xyes
7857f134 2424 then :
61ed06c3
HPN
2425 else
2426 extra_passes="mips-tfile mips-tdump"
2427 fi
2428 if test x$gnu_ld != xyes
2429 then
2430 use_collect2=yes
2431 fi
61ed06c3
HPN
2432 ;;
2433mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0.
2434 # That is based on svr4.
2435 # t-svr4 is not right because this system doesn't use ELF.
2436 tm_file="mips/news5.h ${tm_file}"
2437 if test x$stabs = xyes; then
2438 tm_file="${tm_file} dbx.h"
2439 fi
34f4f3a5 2440 xm_defines=POSIX
61ed06c3 2441 if test x$gas = xyes
7857f134 2442 then :
61ed06c3
HPN
2443 else
2444 extra_passes="mips-tfile mips-tdump"
2445 fi
2446 if test x$gnu_ld != xyes
2447 then
2448 use_collect2=yes
2449 fi
2450 ;;
2451mips-tandem-sysv4*) # Tandem S2 running NonStop UX
2452 tm_file="mips/svr4-5.h mips/svr4-t.h"
2453 if test x$stabs = xyes; then
2454 tm_file="${tm_file} dbx.h"
2455 fi
34f4f3a5 2456 xm_defines=POSIX
61ed06c3
HPN
2457 if test x$gas = xyes
2458 then
61ed06c3
HPN
2459 extra_parts="crtbegin.o crtend.o"
2460 else
61ed06c3
HPN
2461 extra_passes="mips-tfile mips-tdump"
2462 fi
2463 if test x$gnu_ld != xyes
2464 then
2465 use_collect2=yes
2466 fi
2467 ;;
2468mips-*-ultrix* | mips-dec-mach3) # Decstation.
2469 tm_file="mips/ultrix.h ${tm_file}"
2470 if test x$stabs = xyes; then
2471 tm_file="${tm_file} dbx.h"
2472 fi
61ed06c3 2473 if test x$gas = xyes
7857f134 2474 then :
61ed06c3
HPN
2475 else
2476 tmake_file=mips/t-ultrix
2477 extra_passes="mips-tfile mips-tdump"
2478 fi
2479 if test x$gnu_ld != xyes
2480 then
2481 use_collect2=yes
2482 fi
2483 ;;
2484mips-*-riscos[56789]bsd*)
2485 tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0
2486 if test x$stabs = xyes; then
2487 tm_file="${tm_file} dbx.h"
2488 fi
2489 if test x$gas = xyes
2490 then
2491 tmake_file=mips/t-bsd-gas
2492 else
2493 tmake_file=mips/t-bsd
2494 extra_passes="mips-tfile mips-tdump"
2495 fi
2496 if test x$gnu_ld != xyes
2497 then
2498 use_collect2=yes
2499 fi
2500 ;;
2501mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2502 tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
2503 if test x$stabs = xyes; then
2504 tm_file="${tm_file} dbx.h"
2505 fi
2506 if test x$gas = xyes
2507 then
2508 tmake_file=mips/t-bsd-gas
2509 else
2510 tmake_file=mips/t-bsd
2511 extra_passes="mips-tfile mips-tdump"
2512 fi
2513 if test x$gnu_ld != xyes
2514 then
2515 use_collect2=yes
2516 fi
2517 ;;
2518mips-*-riscos[56789]sysv4*)
2519 tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0
2520 if test x$stabs = xyes; then
2521 tm_file="${tm_file} dbx.h"
2522 fi
61ed06c3
HPN
2523 if test x$gas = xyes
2524 then
2525 tmake_file=mips/t-svr4-gas
2526 else
2527 tmake_file=mips/t-svr4
2528 extra_passes="mips-tfile mips-tdump"
2529 fi
2530 if test x$gnu_ld != xyes
2531 then
2532 use_collect2=yes
2533 fi
2534 ;;
2535mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2536 tm_file="mips/svr4-4.h ${tm_file}"
2537 if test x$stabs = xyes; then
2538 tm_file="${tm_file} dbx.h"
2539 fi
34f4f3a5 2540 xm_defines=POSIX
61ed06c3
HPN
2541 if test x$gas = xyes
2542 then
2543 tmake_file=mips/t-svr4-gas
2544 else
2545 tmake_file=mips/t-svr4
2546 extra_passes="mips-tfile mips-tdump"
2547 fi
2548 if test x$gnu_ld != xyes
2549 then
2550 use_collect2=yes
2551 fi
2552 ;;
2553mips-*-riscos[56789]sysv*)
2554 tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0
2555 if test x$stabs = xyes; then
2556 tm_file="${tm_file} dbx.h"
2557 fi
34f4f3a5 2558 xm_defines=POSIX
61ed06c3
HPN
2559 if test x$gas = xyes
2560 then
2561 tmake_file=mips/t-svr3-gas
2562 else
2563 tmake_file=mips/t-svr3
2564 extra_passes="mips-tfile mips-tdump"
2565 fi
2566 if test x$gnu_ld != xyes
2567 then
2568 use_collect2=yes
2569 fi
2570 ;;
2571mips-*-sysv* | mips-*-riscos*sysv*)
2572 tm_file="mips/svr3-4.h ${tm_file}"
2573 if test x$stabs = xyes; then
2574 tm_file="${tm_file} dbx.h"
2575 fi
34f4f3a5 2576 xm_defines=POSIX
61ed06c3
HPN
2577 if test x$gas = xyes
2578 then
2579 tmake_file=mips/t-svr3-gas
2580 else
2581 tmake_file=mips/t-svr3
2582 extra_passes="mips-tfile mips-tdump"
2583 fi
2584 if test x$gnu_ld != xyes
2585 then
2586 use_collect2=yes
2587 fi
2588 ;;
2589mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0.
2590 tm_file=mips/mips-5.h
2591 if test x$stabs = xyes; then
2592 tm_file="${tm_file} dbx.h"
2593 fi
2594 if test x$gas = xyes
7857f134 2595 then :
61ed06c3
HPN
2596 else
2597 extra_passes="mips-tfile mips-tdump"
2598 fi
2599 if test x$gnu_ld != xyes
2600 then
2601 use_collect2=yes
2602 fi
2603 ;;
61ed06c3
HPN
2604mipsel-*-ecoff*)
2605 tm_file=mips/ecoffl.h
2606 if test x$stabs = xyes; then
2607 tm_file="${tm_file} dbx.h"
2608 fi
2609 tmake_file=mips/t-ecoff
2610 ;;
2611mips-*-ecoff*)
2612 tm_file="gofast.h mips/ecoff.h"
2613 if test x$stabs = xyes; then
2614 tm_file="${tm_file} dbx.h"
2615 fi
2616 tmake_file=mips/t-ecoff
2617 ;;
0e5a4ad8
EC
2618mipsisa32-*-elf*)
2619 tm_file="mips/isa3264.h mips/abi64.h"
2620 tmake_file=mips/t-isa3264
3054eeed 2621 target_cpu_default="MASK_SOFT_FLOAT"
0e5a4ad8 2622 ;;
61ed06c3
HPN
2623mipsel-*-elf*)
2624 tm_file="mips/elfl.h"
2625 tmake_file=mips/t-elf
2626 ;;
2627mips-*-elf*)
2628 tm_file="mips/elf.h"
2629 tmake_file=mips/t-elf
2630 ;;
2631mips64el-*-elf*)
2632 tm_file="mips/elfl64.h"
2633 tmake_file=mips/t-elf
2634 ;;
2635mips64orionel-*-elf*)
2636 tm_file="mips/elforion.h mips/elfl64.h"
2637 tmake_file=mips/t-elf
2638 ;;
2639mips64-*-elf*)
2640 tm_file="mips/elf64.h"
2641 tmake_file=mips/t-elf
2642 ;;
2643mips64orion-*-elf*)
2644 tm_file="mips/elforion.h mips/elf64.h"
2645 tmake_file=mips/t-elf
2646 ;;
2647mips64orion-*-rtems*)
f22b4bc4
JS
2648 xm_defines=POSIX
2649 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h rtems.h"
61ed06c3 2650 tmake_file="mips/t-elf t-rtems"
bc98ef7f
JS
2651 if test x$enable_threads = xyes; then
2652 thread_file='rtems'
2653 fi
2654 ;;
2655mips*-*-rtems*)
f22b4bc4
JS
2656 xm_defines=POSIX
2657 tm_file="mips/elf.h mips/rtems.h rtems.h"
bc98ef7f
JS
2658 tmake_file="mips/t-elf t-rtems"
2659 if test x$enable_threads = xyes; then
2660 thread_file='rtems'
2661 fi
61ed06c3
HPN
2662 ;;
2663mipstx39el-*-elf*)
2664 tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
2665 tmake_file=mips/t-r3900
3054eeed 2666 target_cpu_default="MASK_SOFT_FLOAT"
61ed06c3
HPN
2667 ;;
2668mipstx39-*-elf*)
2669 tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
2670 tmake_file=mips/t-r3900
2671 ;;
2672mips-*-*) # Default MIPS RISC-OS 4.0.
2673 if test x$stabs = xyes; then
2674 tm_file="${tm_file} dbx.h"
2675 fi
2676 if test x$gas = xyes
7857f134 2677 then :
61ed06c3
HPN
2678 else
2679 extra_passes="mips-tfile mips-tdump"
2680 fi
2681 if test x$gnu_ld != xyes
2682 then
2683 use_collect2=yes
2684 fi
2685 ;;
bcf684c7
HPN
2686mmix-knuth-mmixware)
2687 ;;
61ed06c3
HPN
2688mn10200-*-*)
2689 float_format=i32
c40409ce 2690 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
2691 if test x$stabs = xyes
2692 then
2693 tm_file="${tm_file} dbx.h"
2694 fi
2695 use_collect2=no
2696 ;;
2697mn10300-*-*)
c40409ce 2698 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
2699 if test x$stabs = xyes
2700 then
2701 tm_file="${tm_file} dbx.h"
2702 fi
2703 use_collect2=no
2704 ;;
2705ns32k-encore-bsd*)
2706 tm_file=ns32k/encore.h
2707 use_collect2=yes
2708 ;;
2709ns32k-sequent-bsd*)
2710 tm_file=ns32k/sequent.h
2711 use_collect2=yes
2712 ;;
2713ns32k-tek6100-bsd*)
2714 tm_file=ns32k/tek6100.h
2715 use_collect2=yes
2716 ;;
2717ns32k-tek6200-bsd*)
2718 tm_file=ns32k/tek6200.h
2719 use_collect2=yes
2720 ;;
2721ns32k-merlin-*)
2722 tm_file=ns32k/merlin.h
2723 use_collect2=yes
2724 ;;
2725ns32k-pc532-mach*)
2726 tm_file=ns32k/pc532-mach.h
2727 use_collect2=yes
2728 ;;
2729ns32k-pc532-minix*)
2730 tm_file=ns32k/pc532-min.h
34f4f3a5 2731 xm_defines='POSIX HZ=60'
61ed06c3
HPN
2732 use_collect2=yes
2733 ;;
69474c3c
JT
2734ns32k-*-netbsdelf*)
2735 echo "GCC does not yet support the ${machine} target"; exit 1
2736 ;;
61ed06c3
HPN
2737ns32k-*-netbsd*)
2738 tm_file=ns32k/netbsd.h
61ed06c3
HPN
2739 # On NetBSD, the headers are already okay, except for math.h.
2740 tmake_file=t-netbsd
5721cd84 2741 use_collect2=yes
61ed06c3
HPN
2742 ;;
2743pdp11-*-bsd)
2744 tm_file="${tm_file} pdp11/2bsd.h"
2745 ;;
2746pdp11-*-*)
2747 ;;
2748avr-*-*)
2749 ;;
2750ns32k-*-openbsd*)
2751 # Nothing special
2752 ;;
2753pj*-linux*)
c40409ce 2754 tm_file="dbxelf.h elfos.h svr4.h pj/linux.h ${tm_file}"
61ed06c3
HPN
2755 ;;
2756pj-*)
2757 ;;
2758pjl-*)
c40409ce 2759 tm_file="dbxelf.h elfos.h svr4.h pj/pjl.h ${tm_file}"
61ed06c3
HPN
2760 ;;
2761
2762romp-*-aos*)
2763 use_collect2=yes
2764 ;;
2765romp-*-mach*)
61ed06c3
HPN
2766 use_collect2=yes
2767 ;;
2768romp-*-openbsd*)
2769 # Nothing special
2770 ;;
2771powerpc-*-openbsd*)
e1b71de9 2772 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
ba1e6c0b 2773 extra_headers=
61ed06c3 2774 ;;
2bfcf297 2775powerpc64-*-linux*)
c40409ce 2776 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h"
2bfcf297 2777 out_file=rs6000/rs6000.c
2a78758b 2778 tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-linux rs6000/t-linux64"
2bfcf297 2779 ;;
ddb28441
RM
2780powerpc64-*-gnu*)
2781 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"
2782 out_file=rs6000/rs6000.c
2a78758b 2783 tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
ddb28441 2784 ;;
61ed06c3 2785powerpc-*-beos*)
2bfcf297 2786 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
34f4f3a5 2787 xm_defines=POSIX
61ed06c3 2788 tmake_file=rs6000/t-beos
ba1e6c0b 2789 extra_headers=
61ed06c3 2790 ;;
18922061 2791powerpc-*-darwin*)
ee890fe2
SS
2792 tm_file="${tm_file} darwin.h rs6000/darwin.h"
2793 tm_p_file="${tm_p_file} darwin-protos.h"
2794 tmake_file=rs6000/t-darwin
ee890fe2 2795 extra_objs="darwin.o"
0168a849
SS
2796 c_target_objs="darwin-c.o"
2797 cxx_target_objs="darwin-c.o"
ee890fe2
SS
2798 # Darwin linker does collect2 functionality
2799 use_collect2=no
5fb4cf24 2800 extra_headers=altivec.h
18922061 2801 ;;
b91da81f 2802powerpc*-*-freebsd*)
c40409ce 2803 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
b91da81f
DB
2804 xm_file=rs6000/xm-sysv4.h
2805 out_file=rs6000/rs6000.c
f3465a44 2806 tmake_file="rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
b91da81f 2807 ;;
61ed06c3 2808powerpc-*-sysv*)
c40409ce 2809 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
34f4f3a5 2810 xm_defines=POSIX
61ed06c3 2811 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
61ed06c3 2812 ;;
edf1b3f3 2813powerpc-*-netbsd*)
c40409ce 2814 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
edf1b3f3 2815 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
edf1b3f3 2816 ;;
8da6d80e 2817powerpc-*-chorusos*)
34f4f3a5 2818 xm_defines=POSIX
c40409ce 2819 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
8da6d80e 2820 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
8da6d80e
CC
2821 case x${enable_threads} in
2822 xyes | xpthreads | xposix)
2823 thread_file='posix'
2824 ;;
2825 esac
2826 ;;
61ed06c3 2827powerpc-*-eabiaix*)
34f4f3a5 2828 xm_defines=POSIX
c40409ce 2829 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
61ed06c3 2830 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2831 ;;
cf6ede82
AH
2832powerpc-*-eabisimaltivec*)
2833 xm_defines=POSIX
2834 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"
3b7d0e98 2835 tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
cf6ede82 2836 ;;
61ed06c3 2837powerpc-*-eabisim*)
34f4f3a5 2838 xm_defines=POSIX
c40409ce 2839 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
61ed06c3 2840 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2841 ;;
2842powerpc-*-elf*)
34f4f3a5 2843 xm_defines=POSIX
c40409ce 2844 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
61ed06c3 2845 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2846 ;;
10baca6b
AH
2847powerpc-*-eabialtivec*)
2848 xm_defines=POSIX
2849 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
3b7d0e98 2850 tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
10baca6b 2851 ;;
61ed06c3 2852powerpc-*-eabi*)
34f4f3a5 2853 xm_defines=POSIX
c40409ce 2854 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
61ed06c3 2855 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2856 ;;
2857powerpc-*-rtems*)
34f4f3a5 2858 xm_defines=POSIX
f22b4bc4 2859 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
61ed06c3 2860 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
bc98ef7f
JS
2861 if test x$enable_threads = xyes; then
2862 thread_file='rtems'
2863 fi
61ed06c3
HPN
2864 ;;
2865powerpc-*-linux*libc1)
c40409ce 2866 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
61ed06c3 2867 out_file=rs6000/rs6000.c
7b3a4df5 2868 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
61ed06c3
HPN
2869 if test x$enable_threads = xyes; then
2870 thread_file='posix'
2871 fi
2872 ;;
10baca6b
AH
2873powerpc-*-linux-gnualtivec*)
2874 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
2875 out_file=rs6000/rs6000.c
2876 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
10baca6b
AH
2877 if test x$enable_threads = xyes; then
2878 thread_file='posix'
2879 fi
2880 ;;
61ed06c3 2881powerpc-*-linux*)
c40409ce 2882 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
61ed06c3 2883 out_file=rs6000/rs6000.c
7b3a4df5 2884 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
61ed06c3
HPN
2885 if test x$enable_threads = xyes; then
2886 thread_file='posix'
2887 fi
2888 ;;
ddb28441
RM
2889powerpc-*-gnu-gnualtivec*)
2890 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"
2891 out_file=rs6000/rs6000.c
2892 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2893 if test x$enable_threads = xyes; then
2894 thread_file='posix'
2895 fi
2896 ;;
2897powerpc-*-gnu*)
2898 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"
2899 out_file=rs6000/rs6000.c
2900 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2901 if test x$enable_threads = xyes; then
2902 thread_file='posix'
2903 fi
2904 ;;
61ed06c3 2905powerpc-wrs-vxworks*)
34f4f3a5 2906 xm_defines=POSIX
c40409ce 2907 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/vxppc.h"
61ed06c3 2908 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2909 thread_file='vxworks'
2910 ;;
2911powerpcle-wrs-vxworks*)
34f4f3a5 2912 xm_defines=POSIX
c40409ce 2913 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h"
61ed06c3 2914 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2915 thread_file='vxworks'
2916 ;;
2917powerpcle-*-sysv*)
c40409ce 2918 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
34f4f3a5 2919 xm_defines=POSIX
61ed06c3 2920 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
61ed06c3
HPN
2921 ;;
2922powerpcle-*-elf*)
34f4f3a5 2923 xm_defines=POSIX
c40409ce 2924 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
61ed06c3 2925 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2926 ;;
2927powerpcle-*-eabisim*)
34f4f3a5 2928 xm_defines=POSIX
c40409ce 2929 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"
61ed06c3 2930 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
2931 ;;
2932powerpcle-*-eabi*)
34f4f3a5 2933 xm_defines=POSIX
c40409ce 2934 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
61ed06c3 2935 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2936 ;;
61ed06c3 2937rs6000-ibm-aix3.[01]*)
34f4f3a5 2938 xm_defines=POSIX
2bfcf297 2939 tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
61ed06c3
HPN
2940 float_format=none
2941 use_collect2=yes
2942 ;;
2943rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
34f4f3a5 2944 xm_defines=POSIX
2bfcf297 2945 tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
db009825 2946 tmake_file=rs6000/t-newas
61ed06c3
HPN
2947 float_format=none
2948 use_collect2=yes
ba1e6c0b 2949 extra_headers=
61ed06c3
HPN
2950 ;;
2951rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
34f4f3a5 2952 xm_defines=POSIX
2bfcf297 2953 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
db009825 2954 tmake_file=rs6000/t-newas
61ed06c3
HPN
2955 float_format=none
2956 use_collect2=yes
ba1e6c0b 2957 extra_headers=
61ed06c3
HPN
2958 ;;
2959rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
34f4f3a5 2960 xm_defines=POSIX
2bfcf297 2961 tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
61ed06c3 2962 tmake_file=rs6000/t-aix43
61ed06c3
HPN
2963 float_format=none
2964 use_collect2=yes
2965 thread_file='aix'
ba1e6c0b 2966 extra_headers=
61ed06c3
HPN
2967 ;;
2968rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
34f4f3a5 2969 xm_defines=POSIX
2bfcf297 2970 tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
61ed06c3 2971 tmake_file=rs6000/t-aix43
61ed06c3
HPN
2972 float_format=none
2973 use_collect2=yes
2974 thread_file='aix'
ba1e6c0b 2975 extra_headers=
61ed06c3
HPN
2976 ;;
2977rs6000-ibm-aix*)
34f4f3a5 2978 xm_defines=POSIX
2bfcf297 2979 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
61ed06c3
HPN
2980 float_format=none
2981 use_collect2=yes
2982 ;;
2983rs6000-bull-bosx)
34f4f3a5 2984 xm_defines=POSIX
2bfcf297 2985 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
61ed06c3
HPN
2986 float_format=none
2987 use_collect2=yes
2988 ;;
2989rs6000-*-mach*)
32fb7c9d 2990 tm_file="${tm_file} rs6000/mach.h"
34f4f3a5 2991 xm_defines=POSIX
61ed06c3
HPN
2992 use_collect2=yes
2993 ;;
2994rs6000-*-lynxos*)
b91da81f 2995 tm_file="lynx.h rs6000/lynx.h"
61ed06c3 2996 tmake_file=rs6000/t-rs6000
61ed06c3
HPN
2997 use_collect2=yes
2998 ;;
0e5a4ad8 2999s390-*-linux*)
c40409ce 3000 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
050e4ca2 3001 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
275b60d6 3002 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
9628a767
HP
3003 if test x$enable_threads = xyes; then
3004 thread_file='posix'
3005 fi
3006 ;;
0e5a4ad8 3007s390x-*-linux*)
58d10f89 3008 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
70eeb10b
UW
3009 tm_p_file=s390/s390-protos.h
3010 md_file=s390/s390.md
3011 out_file=s390/s390.c
e8487c04 3012 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux s390/t-linux64"
275b60d6 3013 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
9628a767
HP
3014 if test x$enable_threads = xyes; then
3015 thread_file='posix'
3016 fi
3017 ;;
61ed06c3
HPN
3018sh-*-elf*)
3019 tmake_file="sh/t-sh sh/t-elf"
1951818c 3020 tm_file="${tm_file} sh/embed-elf.h"
61ed06c3
HPN
3021 float_format=sh
3022 ;;
fa5322fa
AO
3023sh64-*-elf*)
3024 tmake_file="sh/t-sh sh/t-elf sh/t-sh64"
1951818c 3025 tm_file="${tm_file} sh/sh.h sh/embed-elf.h sh/sh64.h"
fa5322fa
AO
3026 float_format=sh
3027 extra_headers="../../config/sh/shmedia.h ../../config/sh/ushmedia.h ../../config/sh/sshmedia.h"
3028 # Not strictly necessary to check this, but a good idea anyway.
3029 if test $machine = $target; then
3030 target_requires_64bit_host_wide_int=yes
3031 fi
3032 ;;
61ed06c3 3033sh-*-rtemself*)
f22b4bc4 3034 xm_defines=POSIX
61ed06c3 3035 tmake_file="sh/t-sh sh/t-elf t-rtems"
1951818c 3036 tm_file="${tm_file} sh/embed-elf.h sh/rtemself.h rtems.h"
61ed06c3 3037 float_format=sh
bc98ef7f
JS
3038 if test x$enable_threads = xyes; then
3039 thread_file='rtems'
3040 fi
61ed06c3
HPN
3041 ;;
3042sh-*-rtems*)
f22b4bc4 3043 xm_defines=POSIX
61ed06c3 3044 tmake_file="sh/t-sh t-rtems"
f22b4bc4 3045 tm_file="${tm_file} sh/rtems.h rtems.h"
61ed06c3 3046 float_format=sh
bc98ef7f
JS
3047 if test x$enable_threads = xyes; then
3048 thread_file='rtems'
3049 fi
61ed06c3
HPN
3050 ;;
3051sh-*-linux*)
32fb7c9d 3052 tm_file="${tm_file} sh/elf.h sh/linux.h"
61ed06c3 3053 tmake_file="sh/t-sh sh/t-elf sh/t-linux"
61ed06c3
HPN
3054 gas=yes gnu_ld=yes
3055 if test x$enable_threads = xyes; then
3056 thread_file='posix'
3057 fi
3058 float_format=sh
3059 ;;
3060sh-*-*)
3061 float_format=sh
3062 ;;
3063sparc-tti-*)
0f658c83 3064 tm_file="${tm_file} sparc/pbd.h"
34f4f3a5 3065 xm_defines=POSIX
61ed06c3 3066 ;;
e428b937 3067sparc64-wrs-vxworks*)
86f808dc 3068 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/biarch64.h gofast.h sparc/vxsparc64.h"
2d69e3cb 3069 tmake_file="sparc/t-vxsparc64 sparc/t-crtfm"
e428b937
RK
3070 use_collect2=yes
3071 ;;
61ed06c3 3072sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
0f658c83 3073 tm_file="${tm_file} aoutos.h sparc/aout.h gofast.h sparc/vxsparc.h"
61ed06c3
HPN
3074 tmake_file=sparc/t-vxsparc
3075 use_collect2=yes
3076 thread_file='vxworks'
3077 ;;
3078sparc-*-aout*)
3079 tmake_file=sparc/t-sparcbare
0f658c83 3080 tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
61ed06c3 3081 ;;
69474c3c 3082sparc-*-netbsdelf*)
4cb7482c 3083 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
69474c3c 3084 ;;
61ed06c3 3085sparc-*-netbsd*)
f982f805 3086 tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h"
61ed06c3 3087 tmake_file=t-netbsd
5721cd84 3088 use_collect2=yes
61ed06c3
HPN
3089 ;;
3090sparc-*-openbsd*)
0f7a7be7 3091 tm_file="sparc/sparc.h ${tm_file}"
f1cf4606
ME
3092 # needed to unconfuse gdb
3093 tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
61ed06c3
HPN
3094 # we need collect2 until our bug is fixed...
3095 use_collect2=yes
3096 ;;
3097sparc-*-bsd*)
910e231e 3098 tm_file="${tm_file} sparc/bsd.h"
61ed06c3 3099 ;;
8da6d80e 3100sparc-*-chorusos*)
c40409ce 3101 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h chorus.h"
2d69e3cb 3102 tmake_file="sparc/t-chorus-elf sparc/t-crtfm"
8da6d80e
CC
3103 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3104 float_format=i64
3105 case x${enable_threads} in
3106 xyes | xpthreads | xposix)
3107 thread_file='posix'
3108 ;;
3109 esac
3110 ;;
61ed06c3 3111sparc-*-elf*)
c40409ce 3112 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h"
a261e0cc 3113 tmake_file="sparc/t-elf sparc/t-crtfm"
61ed06c3
HPN
3114 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3115 #float_format=i128
3116 float_format=i64
3117 ;;
3118sparc-*-linux*aout*) # Sparc's running GNU/Linux, a.out
0f7a7be7 3119 tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h"
61ed06c3
HPN
3120 gnu_ld=yes
3121 ;;
3122sparc-*-linux*libc1*) # Sparc's running GNU/Linux, libc5
c40409ce 3123 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
a261e0cc 3124 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 sparc/t-crtfm"
61ed06c3
HPN
3125 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3126 gnu_ld=yes
3127 float_format=sparc
3128 ;;
3129sparc-*-linux*) # Sparc's running GNU/Linux, libc6
c40409ce 3130 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
a261e0cc 3131 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
275b60d6 3132 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
61ed06c3
HPN
3133 gnu_ld=yes
3134 if test x$enable_threads = xyes; then
3135 thread_file='posix'
3136 fi
3137 float_format=sparc
3138 ;;
3139sparc-*-lynxos*)
3140 if test x$gas = xyes
3141 then
0f7a7be7 3142 tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h"
61ed06c3 3143 else
0f7a7be7 3144 tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h"
61ed06c3 3145 fi
61ed06c3 3146 tmake_file=sparc/t-sunos41
61ed06c3
HPN
3147 ;;
3148sparc-*-rtemsaout*)
f22b4bc4 3149 xm_defines=POSIX
61ed06c3 3150 tmake_file="sparc/t-sparcbare t-rtems"
0f658c83 3151 tm_file="${tm_file} aoutos.h sparc/aout.h sparc/rtems.h rtems.h"
bc98ef7f
JS
3152 if test x$enable_threads = xyes; then
3153 thread_file='rtems'
3154 fi
61ed06c3
HPN
3155 ;;
3156sparc-*-rtems*|sparc-*-rtemself*)
f22b4bc4 3157 xm_defines=POSIX
c40409ce 3158 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
2d69e3cb 3159 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
61ed06c3
HPN
3160 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3161 #float_format=i128
3162 float_format=i64
bc98ef7f
JS
3163 if test x$enable_threads = xyes; then
3164 thread_file='rtems'
3165 fi
61ed06c3 3166 ;;
8947df0c
RH
3167sparc64-*-solaris2* | sparcv9-*-solaris2*)
3168 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
3fc602a0
RH
3169 if test x$gnu_ld = xyes; then
3170 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
61ed06c3 3171 fi
f0871dfe
RH
3172 if test x$gas = xyes; then
3173 tm_file="${tm_file} sparc/sol2-gas-bi.h"
3174 fi
34f4f3a5 3175 xm_defines=POSIX
a261e0cc 3176 tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
61ed06c3 3177 if test x$gnu_ld = xyes; then
7b3a4df5 3178 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 3179 else
7b3a4df5 3180 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 3181 fi
61ed06c3 3182 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
300d4093 3183 float_format=sparc
61ed06c3
HPN
3184 if test x${enable_threads} = x ; then
3185 enable_threads=$have_pthread_h
3186 if test x${enable_threads} = x ; then
3187 enable_threads=$have_thread_h
3188 fi
3189 fi
3190 if test x${enable_threads} = xyes ; then
3191 if test x${have_pthread_h} = xyes ; then
3192 thread_file='posix'
3193 else
3194 thread_file='solaris'
3195 fi
3196 fi
3197 ;;
3198sparc-hal-solaris2*)
34f4f3a5 3199 xm_defines=POSIX
c40409ce 3200 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/hal.h"
a261e0cc 3201 tmake_file="sparc/t-halos sparc/t-sol2 sparc/t-crtfm"
61ed06c3 3202 if test x$gnu_ld = xyes; then
7a31a340 3203 tm_file="${tm_file} sparc/sol2-gld.h"
7b3a4df5 3204 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 3205 else
7b3a4df5 3206 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 3207 fi
61ed06c3
HPN
3208 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
3209 case $machine in
3210 *-*-solaris2.[0-4])
3211 float_format=i128
3212 ;;
3213 *)
300d4093 3214 float_format=sparc
61ed06c3
HPN
3215 ;;
3216 esac
3217 thread_file='solaris'
3218 ;;
8947df0c 3219sparc-*-solaris2*)
3fc602a0
RH
3220 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h"
3221 if test x$gnu_ld = xyes; then
3222 tm_file="${tm_file} sparc/sol2-gld.h"
61ed06c3 3223 fi
a261e0cc 3224 tmake_file="sparc/t-sol2 sparc/t-crtfm"
61ed06c3 3225 if test x$gnu_ld = xyes; then
7b3a4df5 3226 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 3227 else
7b3a4df5 3228 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 3229 fi
7112135f 3230 case $machine in
8947df0c
RH
3231 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
3232 if test x$gnu_ld = xno; then
3233 tm_file="${tm_file} sparc/sol26-sld.h"
3234 fi
3235 ;;
3236 *-*-solaris2.[789])
3fc602a0
RH
3237 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
3238 if test x$gnu_ld = xyes; then
3239 tm_file="${tm_file} sparc/sol2-gld-bi.h"
7112135f 3240 fi
f0871dfe
RH
3241 if test x$gas = xyes; then
3242 tm_file="${tm_file} sparc/sol2-gas-bi.h"
3243 fi
7112135f
AO
3244 tmake_file="$tmake_file sparc/t-sol2-64"
3245 ;;
3246 esac
3fc602a0
RH
3247 xm_defines=POSIX
3248 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
61ed06c3
HPN
3249 case $machine in
3250 *-*-solaris2.[0-4])
3251 float_format=i128
3252 ;;
3253 *)
300d4093 3254 float_format=sparc
61ed06c3
HPN
3255 ;;
3256 esac
3257 if test x${enable_threads} = x; then
3258 enable_threads=$have_pthread_h
3259 if test x${enable_threads} = x; then
3260 enable_threads=$have_thread_h
3261 fi
3262 fi
3263 if test x${enable_threads} = xyes; then
3264 if test x${have_pthread_h} = xyes; then
3265 thread_file='posix'
3266 else
3267 thread_file='solaris'
3268 fi
3269 fi
3270 ;;
3271sparc-*-sunos4.0*)
0f7a7be7 3272 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
61ed06c3
HPN
3273 use_collect2=yes
3274 ;;
3275sparc-*-sunos4*)
0f7a7be7 3276 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
61ed06c3
HPN
3277 tmake_file=sparc/t-sunos41
3278 use_collect2=yes
3279 if test x$gas = xyes; then
3280 tm_file="${tm_file} sparc/sun4gas.h"
3281 fi
3282 ;;
3283sparc-*-sunos3*)
0f7a7be7 3284 tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h"
61ed06c3
HPN
3285 use_collect2=yes
3286 ;;
3287sparc-*-sysv4*)
c40409ce 3288 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h"
34f4f3a5 3289 xm_defines=POSIX
61ed06c3 3290 tmake_file=t-svr4
61ed06c3
HPN
3291 extra_parts="crtbegin.o crtend.o"
3292 ;;
3293sparc-*-vxsim*)
34f4f3a5 3294 xm_defines=POSIX
c40409ce 3295 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/vxsim.h"
61ed06c3 3296 tmake_file=sparc/t-vxsparc
61ed06c3
HPN
3297 ;;
3298sparclet-*-aout*)
0f658c83 3299 tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h"
61ed06c3
HPN
3300 tmake_file=sparc/t-splet
3301 ;;
3302sparclite-*-coff*)
0f658c83 3303 tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
61ed06c3
HPN
3304 tmake_file=sparc/t-sparclite
3305 ;;
3306sparclite-*-aout*)
0f7a7be7 3307 tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h"
61ed06c3
HPN
3308 tmake_file=sparc/t-sparclite
3309 ;;
3310sparclite-*-elf*)
c40409ce 3311 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h"
2d69e3cb 3312 tmake_file="sparc/t-sparclite sparc/t-crtfm"
61ed06c3
HPN
3313 extra_parts="crtbegin.o crtend.o"
3314 ;;
3315sparc86x-*-aout*)
0f7a7be7 3316 tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h"
61ed06c3
HPN
3317 tmake_file=sparc/t-sp86x
3318 ;;
0e5a4ad8 3319sparc86x-*-elf*)
c40409ce 3320 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h"
2d69e3cb 3321 tmake_file="sparc/t-sp86x sparc/t-crtfm"
61ed06c3
HPN
3322 extra_parts="crtbegin.o crtend.o"
3323 ;;
3324sparc64-*-aout*)
0f7a7be7 3325 tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
61ed06c3
HPN
3326 ;;
3327sparc64-*-elf*)
c40409ce 3328 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h"
2d69e3cb 3329 tmake_file="${tmake_file} sparc/t-crtfm"
61ed06c3
HPN
3330 extra_parts="crtbegin.o crtend.o"
3331 ;;
c7240cbd
DB
3332sparc64-*-freebsd*|ultrasparc-*-freebsd*)
3333 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2d69e3cb 3334 tmake_file="${tmake_file} sparc/t-crtfm"
c7240cbd
DB
3335 xmake_file=none
3336 case "x$with_cpu" in
e0054185 3337 xultrasparc) ;;
c7240cbd
DB
3338 x) with_cpu=ultrasparc ;;
3339 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
3340 esac
3341 ;;
61ed06c3 3342sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux
19fe522a 3343 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
86f808dc 3344 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
275b60d6 3345 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
61ed06c3
HPN
3346 gnu_ld=yes
3347 if test x$enable_threads = xyes; then
3348 thread_file='posix'
3349 fi
3350 float_format=sparc
3351 ;;
4cb7482c
MG
3352sparc64-*-netbsd*)
3353 tmake_file="${tmake_file} sparc/t-netbsd64"
3354 tm_file="sparc/biarch64.h ${tm_file}"
3355 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
3356 float_format=sparc
3357 ;;
d19fb8e3 3358strongarm-*-elf*)
c40409ce 3359 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
3360 tmake_file=arm/t-strongarm-elf
3361 out_file=arm/arm.c
d19fb8e3
NC
3362 md_file=arm/arm.md
3363 ;;
3364strongarm-*-coff*)
f910b1bb 3365 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h"
d19fb8e3
NC
3366 tmake_file=arm/t-strongarm-coff
3367 out_file=arm/arm.c
d19fb8e3
NC
3368 md_file=arm/arm.md
3369 ;;
3370strongarm-*-pe)
f910b1bb 3371 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
3372 tmake_file=arm/t-strongarm-pe
3373 out_file=arm/arm.c
d19fb8e3
NC
3374 md_file=arm/arm.md
3375 extra_objs=pe.o
3376 ;;
61ed06c3
HPN
3377thumb*-*-*)
3378 { echo "config.gcc: error:
9e8fc4b8 3379*** The Thumb targets have been deprecated. The equivalent
cfd1c7ea 3380*** ARM based toolchain can now generate Thumb instructions
61ed06c3
HPN
3381*** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
3382 ;;
3383v850-*-rtems*)
f22b4bc4
JS
3384 xm_defines=POSIX
3385 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/v850.h v850/rtems.h rtems.h"
61ed06c3
HPN
3386 tmake_file="v850/t-v850 t-rtems"
3387 if test x$stabs = xyes
3388 then
3389 tm_file="${tm_file} dbx.h"
3390 fi
3391 use_collect2=no
c3edd394
NC
3392 c_target_objs="v850-c.o"
3393 cxx_target_objs="v850-c.o"
61ed06c3
HPN
3394 ;;
3395v850-*-*)
3396 target_cpu_default="TARGET_CPU_generic"
c40409ce 3397 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
3398 tmake_file=v850/t-v850
3399 if test x$stabs = xyes
3400 then
3401 tm_file="${tm_file} dbx.h"
3402 fi
3403 use_collect2=no
c3edd394
NC
3404 c_target_objs="v850-c.o"
3405 cxx_target_objs="v850-c.o"
61ed06c3 3406 ;;
8aeea6e6 3407vax-*-bsd*) # VAXen running BSD
61ed06c3
HPN
3408 use_collect2=yes
3409 float_format=vax
3410 ;;
8aeea6e6 3411vax-*-sysv*) # VAXen running system V
61ed06c3 3412 tm_file="${tm_file} vax/vaxv.h"
34f4f3a5 3413 xm_defines=POSIX
61ed06c3
HPN
3414 float_format=vax
3415 ;;
69474c3c
JT
3416vax-*-netbsdelf*)
3417 echo "GCC does not yet support the ${machine} target"; exit 1
3418 ;;
61ed06c3 3419vax-*-netbsd*)
f982f805 3420 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
61ed06c3
HPN
3421 tmake_file=t-netbsd
3422 float_format=vax
5721cd84 3423 use_collect2=yes
61ed06c3
HPN
3424 ;;
3425vax-*-openbsd*)
61ed06c3 3426 tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
61ed06c3
HPN
3427 float_format=vax
3428 use_collect2=yes
3429 ;;
8aeea6e6 3430vax-*-ultrix*) # VAXen running ultrix
61ed06c3
HPN
3431 tm_file="${tm_file} vax/ultrix.h"
3432 float_format=vax
3433 ;;
8aeea6e6 3434vax-*-vms*) # VAXen running VMS
61ed06c3
HPN
3435 xm_file=vax/xm-vms.h
3436 tm_file=vax/vms.h
3437 float_format=vax
3438 ;;
8aeea6e6 3439vax-*-*) # VAX default entry
61ed06c3
HPN
3440 float_format=vax
3441 ;;
3442we32k-att-sysv*)
34f4f3a5 3443 xm_defines=POSIX
61ed06c3
HPN
3444 use_collect2=yes
3445 ;;
d19fb8e3 3446xscale-*-elf)
c40409ce 3447 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
3448 tmake_file=arm/t-xscale-elf
3449 out_file=arm/arm.c
d19fb8e3
NC
3450 md_file=arm/arm.md
3451 ;;
3452xscale-*-coff)
578316b9 3453 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
d19fb8e3
NC
3454 tmake_file=arm/t-xscale-coff
3455 out_file=arm/arm.c
d19fb8e3
NC
3456 md_file=arm/arm.md
3457 ;;
14d269bb
GK
3458xstormy16-*-elf)
3459 # For historical reasons, the target files omit the 'x'.
c40409ce 3460 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
14d269bb
GK
3461 tm_p_file=stormy16/stormy16-protos.h
3462 md_file=stormy16/stormy16.md
3463 out_file=stormy16/stormy16.c
3464 tmake_file="stormy16/t-stormy16"
3465 extra_parts="crtbegin.o crtend.o"
3466 ;;
03984308
BW
3467xtensa-*-elf*)
3468 tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
3469 with_newlib=yes
3470 tmake_file=xtensa/t-xtensa
3471 extra_parts="crtbegin.o crtend.o"
3472 fixincludes=Makefile.in # newlib headers should be OK
3473 ;;
3474xtensa-*-linux*)
3475 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
3476 tmake_file="t-linux xtensa/t-xtensa"
3477 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
3478 gas=yes gnu_ld=yes
3479 if test x$enable_threads = xyes; then
3480 thread_file='posix'
3481 fi
3482 ;;
61ed06c3
HPN
3483*)
3484 echo "Configuration $machine not supported" 1>&2
3485 exit 1
3486 ;;
3487esac
3488
3489case $machine in
61ed06c3
HPN
3490*-*-sysv*)
3491 install_headers_dir=install-headers-cpio
3492 ;;
3493esac
3494
3495# Distinguish i[34567]86
3496# Also, do not run mips-tfile on MIPS if using gas.
3497# Process --with-cpu= for PowerPC/rs6000
3498target_cpu_default2=
3499case $machine in
3500i486-*-*)
e10e23ee 3501 target_cpu_default2=TARGET_CPU_DEFAULT_i486
61ed06c3
HPN
3502 ;;
3503i586-*-*)
3504 case $target_alias in
e10e23ee
JH
3505 k6_2-*)
3506 target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
3507 ;;
3508 k6_3-*)
3509 target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
3510 ;;
61ed06c3 3511 k6-*)
e10e23ee
JH
3512 target_cpu_default2=TARGET_CPU_DEFAULT_k6
3513 ;;
3514 pentium_mmx-*)
3515 target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
61ed06c3
HPN
3516 ;;
3517 *)
e10e23ee 3518 target_cpu_default2=TARGET_CPU_DEFAULT_pentium
61ed06c3
HPN
3519 ;;
3520 esac
3521 ;;
3522i686-*-* | i786-*-*)
4ed47bea 3523 case $target_alias in
e10e23ee
JH
3524 athlon_xp-*|athlon_mp-*|athlon_4-*)
3525 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
3526 ;;
3527 athlon_tbird-*|athlon-*)
3528 target_cpu_default2=TARGET_CPU_DEFAULT_athlon
3529 ;;
3530 pentium2-*)
3531 target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
3532 ;;
3533 pentium3-*)
3534 target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
3535 ;;
3536 pentium4-*)
3537 target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
4ed47bea
JM
3538 ;;
3539 *)
e10e23ee 3540 target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
4ed47bea
JM
3541 ;;
3542 esac
61ed06c3 3543 ;;
e10e23ee
JH
3544x86_64-*-*)
3545 # We should have hammer chip here, but it does not exist yet and
3546 # thus it is not supported. Athlon_SSE is probably equivalent feature
3547 # wise to hammer from our point of view except for 64bit mode.
3548 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
3549 ;;
61ed06c3
HPN
3550alpha*-*-*)
3551 case $machine in
3552 alphaev6[78]*)
3553 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
3554 ;;
3555 alphaev6*)
3556 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
3557 ;;
3558 alphapca56*)
3559 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
3560 ;;
3561 alphaev56*)
3562 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
3563 ;;
3564 alphaev5*)
3565 target_cpu_default2="MASK_CPU_EV5"
3566 ;;
3567 esac
0e5a4ad8 3568
61ed06c3
HPN
3569 if test x$gas = xyes
3570 then
3571 if test "$target_cpu_default2" = ""
3572 then
3573 target_cpu_default2="MASK_GAS"
3574 else
3575 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
3576 fi
3577 fi
3578 ;;
3579arm*-*-*)
3580 case "x$with_cpu" in
3581 x)
3582 # The most generic
3583 target_cpu_default2="TARGET_CPU_generic"
3584 ;;
3585
3586 # Distinguish cores, and major variants
3587 # arm7m doesn't exist, but D & I don't affect code
70f24e49
NC
3588 xarm[236789] | xarm250 | xarm[67][01]0 \
3589 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
61ed06c3 3590 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
d19fb8e3 3591 | xxscale \
61ed06c3
HPN
3592 | xstrongarm | xstrongarm110 | xstrongarm1100)
3593 target_cpu_default2="TARGET_CPU_$with_cpu"
3594 ;;
3595
3596 xyes | xno)
3597 echo "--with-cpu must be passed a value" 1>&2
3598 exit 1
3599 ;;
3600
3601 *)
3602 if test x$pass2done = xyes
3603 then
3604 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3605 exit 1
3606 fi
3607 ;;
3608 esac
3609 ;;
3610
c21a2372
AM
3611hppa*-*-* | parisc*-*-*)
3612 if test x$gas = xyes
3613 then
3614 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
3615 fi
3616 ;;
3617
61ed06c3
HPN
3618mips*-*-ecoff* | mips*-*-elf*)
3619 if test x$gas = xyes
3620 then
3621 if test x$gnu_ld = xyes
3622 then
3623 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
3624 else
3625 target_cpu_default2="MASK_GAS"
3626 fi
3627 fi
3628 ;;
3629mips*-*-*)
3630 if test x$gas = xyes
3631 then
3632 target_cpu_default2="MASK_GAS"
3633 fi
3634 ;;
3635powerpc*-*-* | rs6000-*-*)
480f7f3a
AH
3636 if test x$enable_altivec = xyes
3637 then
5e505bc9 3638 tm_file="$tm_file rs6000/altivec-defs.h"
480f7f3a 3639 fi
61ed06c3
HPN
3640 case "x$with_cpu" in
3641 x)
3642 ;;
3643
94f1d97c
DJ
3644 xcommon | xpower | xpower2 | xpower3 | xpowerpc | xpowerpc64 \
3645 | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \
3646 | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \
3647 | x740 | x750 | x7400 | x7450 | x505)
ff25793c 3648 target_cpu_default2="\\\"$with_cpu\\\""
61ed06c3
HPN
3649 ;;
3650
94f1d97c 3651 x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860)
c19083d8
DD
3652 target_cpu_default2="\\\"$with_cpu\\\""
3653 tm_file="$tm_file rs6000/softfloat.h"
3654 ;;
3655
61ed06c3
HPN
3656 xyes | xno)
3657 echo "--with-cpu must be passed a value" 1>&2
3658 exit 1
3659 ;;
3660
3661 *)
3662 if test x$pass2done = xyes
3663 then
3664 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3665 exit 1
3666 fi
3667 ;;
3668 esac
3669 ;;
3670sparc*-*-*)
3671 case ".$with_cpu" in
3672 .)
3673 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3674 ;;
3675 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
3676 target_cpu_default2="TARGET_CPU_$with_cpu"
3677 ;;
3678 *)
3679 if test x$pass2done = xyes
3680 then
3681 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3682 exit 1
3683 fi
3684 ;;
3685 esac
3686 ;;
3687esac
3688
3689if test "$target_cpu_default2" != ""
3690then
3691 if test "$target_cpu_default" != ""
3692 then
3693 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3694 else
3695 target_cpu_default=$target_cpu_default2
3696 fi
3697fi
3698
61ed06c3
HPN
3699# Save data on machine being used to compile GCC in build_xm_file.
3700# Save data on host machine in vars host_xm_file and host_xmake_file.
3701if test x$pass1done = x
3702then
4dc0535b
ZW
3703 if test x$xm_file != x
3704 then build_xm_file=$xm_file
61ed06c3
HPN
3705 fi
3706 build_xm_defines=$xm_defines
3707 build_install_headers_dir=$install_headers_dir
3708 build_exeext=$exeext
3709 pass1done=yes
3710else
3711 if test x$pass2done = x
3712 then
4dc0535b
ZW
3713 if test x$xm_file != x
3714 then host_xm_file=$xm_file
61ed06c3
HPN
3715 fi
3716 host_xm_defines=$xm_defines
61ed06c3
HPN
3717 host_xmake_file="$xmake_file"
3718 host_truncate_target=$truncate_target
3719 host_extra_gcc_objs=$extra_gcc_objs
3720 host_extra_objs=$extra_host_objs
3721 host_exeext=$exeext
3722 pass2done=yes
3723 fi
3724fi
This page took 0.883222 seconds and 5 git commands to generate.