]> gcc.gnu.org Git - gcc.git/blame - gcc/config.gcc
* MAINTAINERS (Register allocation reviewer): Add myself.
[gcc.git] / gcc / config.gcc
CommitLineData
a89ea0df 1# GCC target-specific configuration file.
eca0d5e8 2# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3bd6d4c4 3# Free Software Foundation, Inc.
61ed06c3 4
1322177d 5#This file is part of GCC.
61ed06c3 6
1322177d
LB
7#GCC is free software; you can redistribute it and/or modify it under
8#the terms of the GNU General Public License as published by the Free
9dcd6f09 9#Software Foundation; either version 3, or (at your option) any later
1322177d 10#version.
61ed06c3 11
1322177d
LB
12#GCC is distributed in the hope that it will be useful, but WITHOUT
13#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15#for more details.
61ed06c3
HPN
16
17#You should have received a copy of the GNU General Public License
9dcd6f09
NC
18#along with GCC; see the file COPYING3. If not see
19#<http://www.gnu.org/licenses/>.
61ed06c3 20
a89ea0df
NN
21# This is the GCC target-specific configuration file
22# where a configuration type is mapped to different system-specific
23# definitions and files. This is invoked by the autoconf-generated
24# configure script. Putting it in a separate shell file lets us skip
25# running autoconf when modifying target-specific information.
61ed06c3 26
fa958513
DJ
27# When you change the cases in the OS or target switches, consider
28# updating ../libgcc/config.host also.
29
b01bc573 30# This file switches on the shell variable ${target}, and also uses the
61ed06c3
HPN
31# following shell variables:
32#
33# with_* Various variables as set by configure.
34#
615be2cf 35# enable_threads Either the name, yes or no depending on whether
61ed06c3
HPN
36# threads support was requested.
37#
2121a768 38# default_use_cxa_atexit
c5dde55b
NC
39# The default value for the $enable___cxa_atexit
40# variable. enable___cxa_atexit needs to be set to
41# "yes" for the correct operation of C++ destructors
42# but it relies upon the presence of a non-standard C
43# library function called __cxa_atexit.
44# Since not all C libraries provide __cxa_atexit the
45# default value of $default_use_cxa_atexit is set to
46# "no" except for targets which are known to be OK.
2121a768 47#
61ed06c3
HPN
48# gas_flag Either yes or no depending on whether GNU as was
49# requested.
50#
51# gnu_ld_flag Either yes or no depending on whether GNU ld was
52# requested.
53
54# This file sets the following shell variables for use by the
55# autoconf-generated configure script:
56#
b01bc573
NN
57# cpu_type The name of the cpu, if different from the first
58# chunk of the canonical target name.
61ed06c3 59#
d5355cb2
JDA
60# tm_defines List of target macros to define for all compilations.
61#
61ed06c3 62# tm_file A list of target macro files, if different from
32fb7c9d
FS
63# "$cpu_type/$cpu_type.h". Usually it's constructed
64# per target in a way like this:
c40409ce 65# tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
32fb7c9d
FS
66# Note that the preferred order is:
67# - specific target header "${cpu_type}/${cpu_type.h}"
a4a4b1d3 68# - generic headers like dbxelf.h elfos.h, etc.
32fb7c9d
FS
69# - specializing target headers like ${cpu_type.h}/elf.h
70# This helps to keep OS specific stuff out of the CPU
71# defining header ${cpu_type}/${cpu_type.h}.
61ed06c3
HPN
72#
73# tm_p_file Location of file with declarations for functions
74# in $out_file.
75#
76# out_file The name of the machine description C support
77# file, if different from "$cpu_type/$cpu_type.c".
78#
79# md_file The name of the machine-description file, if
80# different from "$cpu_type/$cpu_type.md".
81#
82# tmake_file A list of machine-description-specific
83# makefile-fragments, if different from
84# "$cpu_type/t-$cpu_type".
85#
1c0ca89d
ZW
86# extra_modes The name of the file containing a list of extra
87# machine modes, if necessary and different from
88# "$cpu_type/$cpu_type-modes.def".
89#
61ed06c3
HPN
90# extra_objs List of extra objects that should be linked into
91# the compiler proper (cc1, cc1obj, cc1plus)
92# depending on target.
93#
30500d84
KC
94# extra_gcc_objs List of extra objects that should be linked into
95# the compiler driver (gcc) depending on target.
96#
61ed06c3 97# extra_headers List of used header files from the directory
817e13c4 98# config/${cpu_type}.
61ed06c3 99#
1617e5ee
GK
100# use_gcc_tgmath If set, add tgmath.h to the list of used header
101# files.
102#
61ed06c3
HPN
103# extra_passes List of extra executables compiled for this target
104# machine, used for compiling from source to object.
105#
106# extra_parts List of extra object files that should be compiled
107# for this target machine.
108#
109# extra_programs Like extra_passes, but these are used when linking.
110#
75685792
RS
111# extra_options List of target-dependent .opt files.
112#
ff7cc307 113# c_target_objs List of extra target-dependent objects that be
aac69a49 114# linked into the C compiler only.
0e5a4ad8 115#
ff7cc307 116# cxx_target_objs List of extra target-dependent objects that be
aac69a49 117# linked into the C++ compiler only.
0e5a4ad8 118#
ef69da62
SS
119# target_gtfiles List of extra source files with type information.
120#
61ed06c3
HPN
121# xm_defines List of macros to define when compiling for the
122# target machine.
123#
124# xm_file List of files to include when compiling for the
125# target machine.
126#
127# use_collect2 Set to yes or no, depending on whether collect2
128# will be used.
129#
130# target_cpu_default Set to override the default target model.
131#
61ed06c3
HPN
132# gdb_needs_out_file_path
133# Set to yes if gdb needs a dir command with
134# `dirname $out_file`.
135#
61ed06c3
HPN
136# thread_file Set to control which thread package to use.
137#
138# gas Set to yes or no depending on whether the target
139# system normally uses GNU as.
4977bab6
ZW
140#
141# need_64bit_hwint Set to yes if HOST_WIDE_INT must be 64 bits wide
1197924d
KH
142# for this target. This is true iff this target
143# supports "long" or "wchar_t" wider than 32 bits.
7816bea0
DJ
144#
145# configure_default_options
146# Set to an initializer for configure_default_options
147# in configargs.h, based on --with-cpu et cetera.
587dc9c6
NN
148#
149# use_fixproto Set to "yes" if fixproto should be run normally,
150# "no" if fixproto should never be run.
61ed06c3
HPN
151
152# The following variables are used in each case-construct to build up the
153# outgoing variables:
154#
61ed06c3
HPN
155# gnu_ld Set to yes or no depending on whether the target
156# system normally uses GNU ld.
157
158out_file=
61ed06c3
HPN
159tmake_file=
160extra_headers=
1617e5ee 161use_gcc_tgmath=yes
61ed06c3
HPN
162extra_passes=
163extra_parts=
164extra_programs=
165extra_objs=
61ed06c3 166extra_gcc_objs=
75685792 167extra_options=
aac69a49
NC
168c_target_objs=
169cxx_target_objs=
d5355cb2 170tm_defines=
61ed06c3 171xm_defines=
61ed06c3
HPN
172# Set this to force installation and use of collect2.
173use_collect2=
174# Set this to override the default target model.
175target_cpu_default=
61ed06c3
HPN
176# Set this if gdb needs a dir command with `dirname $out_file`
177gdb_needs_out_file_path=
61ed06c3
HPN
178# Set this to control which thread package will be used.
179thread_file=
180# Reinitialize these from the flag values every loop pass, since some
181# configure entries modify them.
182gas="$gas_flag"
183gnu_ld="$gnu_ld_flag"
2121a768 184default_use_cxa_atexit=no
6ab185d6 185target_gtfiles=
4977bab6 186need_64bit_hwint=
61ed06c3 187
ec2a60b0
NN
188# Default to not using fixproto. Targets which need fixproto should
189# specifically set this to 'yes'.
190use_fixproto=no
587dc9c6 191
6a38414a
NN
192# Don't carry these over build->host->target. Please.
193xm_file=
194md_file=
195
9340544b 196# Obsolete configurations.
b01bc573 197case ${target} in
fdda361d 198 c4x-* \
c261cca9 199 | tic4x-* \
fe15407d 200 )
8998d5bf 201 if test "x$enable_obsolete" != xyes; then
b01bc573 202 echo "*** Configuration ${target} is obsolete." >&2
9340544b
ZW
203 echo "*** Specify --enable-obsolete to build it anyway." >&2
204 echo "*** Support will be REMOVED in the next major release of GCC," >&2
205 echo "*** unless a maintainer comes forward." >&2
206 exit 1
207 fi;;
9340544b
ZW
208esac
209
7c942e17
ZW
210# Unsupported targets list. Do not put an entry in this list unless
211# it would otherwise be caught by a more permissive pattern. The list
212# should be in alphabetical order.
b01bc573 213case ${target} in
7c942e17 214 alpha*-*-linux*libc1* \
8e3a7070 215 | i[34567]86-sequent-sysv \
2d3359eb 216 | i[34567]86-sequent-sysv[123]* \
7c942e17
ZW
217 | i[34567]86-go32-* \
218 | i[34567]86-*-go32* \
219 | m68k-*-linux*aout* \
220 | m68k-*-linux*libc1* \
221 | mips64orion*-*-rtems* \
222 | powerpc-*-linux*libc1* \
223 | sparc-*-linux*aout* \
224 | sparc-*-linux*libc1* \
225 | sparc-hal-solaris2* \
226 | thumb-*-* \
227 | *-*-linux*coff* \
228 | *-*-linux*oldld* \
229 | *-*-rtemsaout* \
230 | *-*-rtemscoff* \
9ab346a1 231 | vax-*-vms* \
7c942e17 232 )
b01bc573 233 echo "*** Configuration ${target} not supported" 1>&2
7c942e17
ZW
234 exit 1
235 ;;
236esac
237
61ed06c3 238# Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
ba1e6c0b
JM
239# updated in each machine entry. Also set default extra_headers for some
240# machines.
61ed06c3 241tm_p_file=
b01bc573 242cpu_type=`echo ${target} | sed 's/-.*$//'`
a8e04fe6 243cpu_is_64bit=
b01bc573 244case ${target} in
38b2d076
DD
245m32c*-*-*)
246 cpu_type=m32c
247 tmake_file=m32c/t-m32c
248 ;;
61ed06c3
HPN
249alpha*-*-*)
250 cpu_type=alpha
4977bab6 251 need_64bit_hwint=yes
61ed06c3 252 ;;
2beef00e
AO
253am33_2.0-*-linux*)
254 cpu_type=mn10300
255 ;;
150b72ed
DJ
256strongarm*-*-*)
257 cpu_type=arm
258 ;;
259arm*-*-*)
260 cpu_type=arm
88f77cba 261 extra_headers="mmintrin.h arm_neon.h"
150b72ed 262 ;;
0d4a78eb
BS
263bfin*-*)
264 cpu_type=bfin
265 ;;
150b72ed
DJ
266ep9312*-*-*)
267 cpu_type=arm
268 ;;
faf9ab98
AH
269frv*) cpu_type=frv
270 ;;
7d33c31d
KH
271fido-*-*)
272 cpu_type=m68k
273 extra_headers=math-68881.h
274 ;;
150b72ed 275xscale-*-*)
d19fb8e3 276 cpu_type=arm
5a9335ef 277 extra_headers="mmintrin.h"
d19fb8e3 278 ;;
61ed06c3
HPN
279i[34567]86-*-*)
280 cpu_type=i386
b3172cab 281 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
3b8dd071 282 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
04e1d06b 283 nmmintrin.h bmmintrin.h mmintrin-common.h"
61ed06c3 284 ;;
14f73b5a
JH
285x86_64-*-*)
286 cpu_type=i386
b3172cab 287 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
3b8dd071 288 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
04e1d06b 289 nmmintrin.h bmmintrin.h mmintrin-common.h"
4977bab6 290 need_64bit_hwint=yes
14f73b5a 291 ;;
817e13c4
JM
292ia64-*-*)
293 extra_headers=ia64intrin.h
4977bab6 294 need_64bit_hwint=yes
817e13c4 295 ;;
c21a2372 296hppa*-*-* | parisc*-*-*)
61ed06c3
HPN
297 cpu_type=pa
298 ;;
ad126521
KI
299m32r*-*-*)
300 cpu_type=m32r
301 ;;
2fd95d71 302m680[012]0-*-*)
61ed06c3 303 cpu_type=m68k
ba1e6c0b
JM
304 extra_headers=math-68881.h
305 ;;
306m68k-*-*)
307 extra_headers=math-68881.h
61ed06c3
HPN
308 ;;
309mips*-*-*)
310 cpu_type=mips
4977bab6 311 need_64bit_hwint=yes
61ed06c3 312 ;;
61ed06c3
HPN
313powerpc*-*-*)
314 cpu_type=rs6000
437cc56a 315 extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h spu2vmx.h vec_types.h si2vmx.h"
4977bab6 316 need_64bit_hwint=yes
a8e04fe6 317 case x$with_cpu in
44cd321e 318 xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456]|xpower6x|xrs64a)
a8e04fe6
AM
319 cpu_is_64bit=yes
320 ;;
321 esac
4977bab6
ZW
322 ;;
323rs6000*-*-*)
324 need_64bit_hwint=yes
325 ;;
bdcee471
CL
326score*-*-*)
327 cpu_type=score
328 ;;
4977bab6
ZW
329sparc64*-*-*)
330 cpu_type=sparc
331 need_64bit_hwint=yes
61ed06c3 332 ;;
61ed06c3
HPN
333sparc*-*-*)
334 cpu_type=sparc
335 ;;
85d9c13c
TS
336spu*-*-*)
337 cpu_type=spu
338 need_64bit_hwint=yes
339 ;;
4977bab6 340s390*-*-*)
6cecb0aa 341 cpu_type=s390
4977bab6
ZW
342 need_64bit_hwint=yes
343 ;;
b4eb03fe 344# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
da28a3b9 345sh[123456789lbe]*-*-*)
fa5322fa 346 cpu_type=sh
4977bab6 347 need_64bit_hwint=yes
fa5322fa 348 ;;
7f0db92a
SS
349tic4x-*-*)
350 cpu_type=c4x
351 ;;
61ed06c3
HPN
352esac
353
354tm_file=${cpu_type}/${cpu_type}.h
b6d7afec 355if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
61ed06c3 356then
b6d7afec
ZW
357 tm_p_file=${cpu_type}/${cpu_type}-protos.h
358fi
1c0ca89d
ZW
359extra_modes=
360if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
361then
362 extra_modes=${cpu_type}/${cpu_type}-modes.def
363fi
75685792
RS
364if test -f ${srcdir}/config/${cpu_type}/${cpu_type}.opt
365then
366 extra_options="${extra_options} ${cpu_type}/${cpu_type}.opt"
367fi
e564e618 368
b01bc573 369case ${target} in
e564e618
DB
370x86_64-*-*)
371 tm_file="i386/biarch64.h ${tm_file}"
372 ;;
373esac
374
61ed06c3 375# On a.out targets, we need to use collect2.
b01bc573 376case ${target} in
61ed06c3
HPN
377*-*-*aout*)
378 use_collect2=yes
379 ;;
0e5a4ad8 380esac
61ed06c3 381
4977bab6 382# Common parts for widely ported systems.
b01bc573 383case ${target} in
4d6d5bb2 384*-*-darwin*)
80c85ca2
MS
385 tm_file="${tm_file} darwin.h"
386 case ${target} in
387 *-*-darwin9*)
388 tm_file="${tm_file} darwin9.h"
389 ;;
390 esac
391 tm_file="${tm_file} ${cpu_type}/darwin.h"
4d6d5bb2 392 tm_p_file="${tm_p_file} darwin-protos.h"
040b1c5a 393 tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
4d6d5bb2 394 target_gtfiles="\$(srcdir)/config/darwin.c"
6ac49599 395 extra_options="${extra_options} darwin.opt"
4d6d5bb2
NN
396 c_target_objs="darwin-c.o"
397 cxx_target_objs="darwin-c.o"
4d6d5bb2 398 extra_objs="darwin.o"
e46b55d0 399 extra_gcc_objs="darwin-driver.o"
747b9f55 400 default_use_cxa_atexit=yes
4d6d5bb2
NN
401 case ${enable_threads} in
402 "" | yes | posix) thread_file='posix' ;;
403 esac
404 ;;
405*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
406 # This is the place-holder for the generic a.out configuration
407 # of FreeBSD. No actual configuration resides here since
408 # there was only ever a bare-bones ix86 configuration for
409 # a.out and it exists solely in the machine-specific section.
410 # This place-holder must exist to avoid dropping into
411 # the generic ELF configuration of FreeBSD (i.e. it must be
412 # ordered before that section).
413 ;;
414*-*-freebsd*)
415 # This is the generic ELF configuration of FreeBSD. Later
416 # machine-specific sections may refine and add to this
417 # configuration.
418 #
419 # Due to tm_file entry ordering issues that vary between cpu
420 # architectures, we only define fbsd_tm_file to allow the
421 # machine-specific section to dictate the final order of all
422 # entries of tm_file with the minor exception that components
423 # of the tm_file set here will always be of the form:
424 #
425 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
426 #
427 # The machine-specific section should not tamper with this
428 # ordering but may order all other entries of tm_file as it
429 # pleases around the provided core setting.
430 gas=yes
431 gnu_ld=yes
432 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
433 case ${target} in
bc9b32c2
NN
434 *-*-freebsd3 | *-*-freebsd[3].*)
435 tm_defines="${tm_defines} FBSD_MAJOR=3" ;;
436 *-*-freebsd4 | *-*-freebsd[4].*)
437 tm_defines="${tm_defines} FBSD_MAJOR=4" ;;
438 *-*-freebsd5 | *-*-freebsd[5].*)
439 tm_defines="${tm_defines} FBSD_MAJOR=5" ;;
440 *-*-freebsd6 | *-*-freebsd[6].*)
441 tm_defines="${tm_defines} FBSD_MAJOR=6" ;;
0219cf3d
GP
442 *-*-freebsd7 | *-*-freebsd[7].*)
443 tm_defines="${tm_defines} FBSD_MAJOR=7" ;;
444 *-*-freebsd8 | *-*-freebsd[8].*)
445 tm_defines="${tm_defines} FBSD_MAJOR=8" ;;
446 *-*-freebsd9 | *-*-freebsd[9].*)
447 tm_defines="${tm_defines} FBSD_MAJOR=9" ;;
bc9b32c2
NN
448 *)
449 echo 'Please update *-*-freebsd* in gcc/config.gcc'
450 exit 1
451 ;;
4d6d5bb2
NN
452 esac
453 tmake_file="t-slibgcc-elf-ver t-freebsd"
454 case ${enable_threads} in
455 no)
456 fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
457 ;;
769e49eb 458 "" | yes | posix)
4d6d5bb2
NN
459 thread_file='posix'
460 tmake_file="${tmake_file} t-freebsd-thread"
461 # Before 5.0, FreeBSD can't bind shared libraries to -lc
462 # when "optionally" threaded via weak pthread_* checks.
463 case ${target} in
464 *-*-freebsd[34] | *-*-freebsd[34].*)
465 tmake_file="${tmake_file} t-slibgcc-nolc-override"
466 ;;
467 esac
468 ;;
f7288899 469 *)
4d6d5bb2
NN
470 echo 'Unknown thread configuration for FreeBSD'
471 exit 1
472 ;;
473 esac
474 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
475 ;;
e3029773
NN
476*-*-linux*libc1* | *-*-linux*aout*)
477 # Avoid the generic linux case.
478 ;;
cfafe973 479*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu)
4d6d5bb2 480 # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
e3029773 481 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
464aea98 482 extra_options="${extra_options} linux.opt"
e3029773
NN
483 gas=yes
484 gnu_ld=yes
485 case ${enable_threads} in
486 "" | yes | posix) thread_file='posix' ;;
487 esac
65d151a7 488 tmake_file="t-slibgcc-elf-ver t-linux"
464aea98
JM
489 case ${target} in
490 *-*-*uclibc*)
7bd85ce0
JM
491 tm_defines="${tm_defines} UCLIBC_DEFAULT=1"
492 ;;
493 *)
494 tm_defines="${tm_defines} UCLIBC_DEFAULT=0"
464aea98
JM
495 ;;
496 esac
c5dde55b
NC
497 # Assume that glibc or uClibc are being used and so __cxa_atexit is provided.
498 default_use_cxa_atexit=yes
1617e5ee 499 use_gcc_tgmath=no
e3029773 500 ;;
5eeab2e3 501*-*-gnu*)
e3029773
NN
502 # On the Hurd, the setup is just about the same on
503 # each different CPU. The specific machines that we
504 # support are matched above and just set $cpu_type.
505 tm_file="${cpu_type}/gnu.h"
506 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
507 # GNU tools are the only tools.
508 gas=yes
509 gnu_ld=yes
510 # These details are the same as for Linux.
511 # But here we need a little extra magic.
512 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
513 case ${target} in
514 alpha*)
515 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
516 ;;
517 i[34567]86-*-*)
518 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}"
519 ;;
520 esac
c5dde55b
NC
521 # Assume that glibc is being used and so __cxa_atexit is provided.
522 default_use_cxa_atexit=yes
1617e5ee 523 use_gcc_tgmath=no
e3029773 524 ;;
f982f805 525*-*-netbsd*)
e3029773
NN
526 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
527 gas=yes
528 gnu_ld=yes
51b7c247 529
e3029773
NN
530 # NetBSD 2.0 and later get POSIX threads enabled by default.
531 # Allow them to be explicitly enabled on any other version.
532 case ${enable_threads} in
533 "")
534 case ${target} in
535 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
536 thread_file='posix'
537 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
538 ;;
539 esac
540 ;;
541 yes | posix)
542 thread_file='posix'
543 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
544 ;;
545 esac
1169f9e0 546
e3029773
NN
547 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
548 # ELF configurations. We will clear extra_parts in the
549 # a.out configurations.
550 case ${target} in
551 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
552 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
553 ;;
554 esac
2121a768 555
e3029773
NN
556 # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
557 # default (unless overridden by --disable-__cxa_atexit).
558 case ${target} in
559 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
560 default_use_cxa_atexit=yes
561 ;;
562 esac
563 ;;
4d6d5bb2
NN
564*-*-openbsd*)
565 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
e3029773 566 case ${enable_threads} in
4d6d5bb2 567 yes)
e3029773 568 thread_file='posix'
4d6d5bb2 569 tmake_file="${tmake_file} t-openbsd-thread"
e3029773
NN
570 ;;
571 esac
378b66d4
ME
572 case ${target} in
573 *-*-openbsd2.*|*-*-openbsd3.[012])
574 tm_defines="${tm_defines} HAS_LIBC_R=1" ;;
575 esac
e3029773 576 ;;
8179b3c8
NN
577*-*-rtems*)
578 case ${enable_threads} in
579 yes) thread_file='rtems' ;;
580 esac
581 ;;
4977bab6 582*-*-vxworks*)
e3029773 583 tmake_file=t-vxworks
2eab15c9
PE
584 xm_defines=POSIX
585 extra_options="${extra_options} vxworks.opt"
b2f4bed8 586 extra_objs=vxworks.o
55047c9d
PE
587 case ${enable_threads} in
588 no) ;;
589 "" | yes | vxworks) thread_file='vxworks' ;;
590 *) echo 'Unknown thread configuration for VxWorks'; exit 1 ;;
591 esac
e3029773 592 ;;
c5dde55b
NC
593*-*-elf)
594 # Assume that newlib is being used and so __cxa_atexit is provided.
595 default_use_cxa_atexit=yes
596 ;;
61ed06c3
HPN
597esac
598
b01bc573 599case ${target} in
61ed06c3
HPN
600# Support site-specific machine types.
601*local*)
b01bc573 602 rest=`echo ${target} | sed -e "s/$cpu_type-//"`
61ed06c3 603 tm_file=${cpu_type}/$rest.h
4dc0535b
ZW
604 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
605 then xm_file=${cpu_type}/xm-$rest.h
61ed06c3 606 fi
4dc0535b
ZW
607 if test -f $srcdir/config/${cpu_type}/t-$rest
608 then tmake_file=${cpu_type}/t-$rest
61ed06c3
HPN
609 fi
610 ;;
30102605
RH
611alpha*-*-unicosmk*)
612 use_collect2=yes
613 tm_file="${tm_file} alpha/unicosmk.h"
0e5a4ad8 614
30102605
RH
615 # Don't include t-ieee for now because we don't support that yet
616 # tmake_file="alpha/t-ieee"
617 tmake_file="alpha/t-unicosmk"
ec2a60b0 618 use_fixproto=yes
30102605 619 ;;
61ed06c3
HPN
620alpha*-*-linux*)
621 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
622 target_cpu_default="MASK_GAS"
fbf2ca7b 623 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee alpha/t-linux"
61ed06c3 624 ;;
83248d49
RM
625alpha*-*-gnu*)
626 target_cpu_default="MASK_GAS"
627 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
628 ;;
61ed06c3 629alpha*-*-freebsd*)
9e405fe5 630 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
61ed06c3 631 target_cpu_default="MASK_GAS"
cea3bd3e
RH
632 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
633 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
61ed06c3
HPN
634 ;;
635alpha*-*-netbsd*)
f982f805 636 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
61ed06c3 637 target_cpu_default="MASK_GAS"
cea3bd3e 638 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
61ed06c3 639 ;;
61ed06c3 640alpha*-*-openbsd*)
620b87b3 641 tm_defines="${tm_defines} OBSD_NO_DYNAMIC_LIBRARIES OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
ca11c37c 642 tm_file="alpha/alpha.h openbsd.h alpha/openbsd.h"
61ed06c3
HPN
643 # default x-alpha is only appropriate for dec-osf.
644 target_cpu_default="MASK_GAS"
645 tmake_file="alpha/t-alpha alpha/t-ieee"
646 ;;
c7bdf0a6 647alpha*-dec-osf[45]*)
61ed06c3
HPN
648 if test x$stabs = xyes
649 then
650 tm_file="${tm_file} dbx.h"
651 fi
652 if test x$gas != xyes
653 then
654 extra_passes="mips-tfile mips-tdump"
655 fi
656 use_collect2=yes
c7bdf0a6
ZW
657 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
658 tm_file="${tm_file} alpha/osf.h"
817e13c4 659 extra_headers=va_list.h
b01bc573 660 case ${target} in
61ed06c3 661 *-*-osf4*)
d432c7a5 662 # Define TARGET_SUPPORT_ARCH except on 4.0a.
b01bc573 663 case ${target} in
c7bdf0a6 664 *-*-osf4.0a) ;;
620b87b3 665 *) tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
c7bdf0a6 666 esac
61ed06c3
HPN
667 ;;
668 *-*-osf5*)
c7bdf0a6 669 tm_file="${tm_file} alpha/osf5.h"
620b87b3 670 tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
61ed06c3
HPN
671 ;;
672 esac
769e49eb
NN
673 case ${enable_threads} in
674 "" | yes | posix)
2a4e8ebc
RO
675 thread_file='posix'
676 tmake_file="${tmake_file} alpha/t-osf-pthread"
677 ;;
678 esac
61ed06c3 679 ;;
b6bfa876 680alpha64-dec-*vms*)
cf0005c6 681 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
4977bab6 682 xm_file="alpha/xm-vms.h"
b6bfa876 683 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
b6bfa876
DR
684 prefix=/gnu
685 local_prefix=/gnu
686 ;;
ef057c45 687alpha*-dec-*vms*)
cf0005c6 688 tm_file="${tm_file} alpha/vms.h"
4dc0535b 689 xm_file=alpha/xm-vms.h
61ed06c3 690 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
ef057c45
DR
691 prefix=/gnu
692 local_prefix=/gnu
61ed06c3 693 ;;
2cc07db4 694arc-*-elf*)
c40409ce 695 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2cc07db4 696 extra_parts="crtinit.o crtfini.o"
ec2a60b0 697 use_fixproto=yes
2cc07db4 698 ;;
61ed06c3 699arm-*-coff* | armel-*-coff*)
ca11c37c 700 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h"
315cd6b5 701 tmake_file="arm/t-arm arm/t-arm-coff"
61ed06c3 702 ;;
55047c9d 703arm-wrs-vxworks)
c447f774 704 tm_file="elfos.h arm/elf.h arm/aout.h ${tm_file} vx-common.h vxworks.h arm/vxworks.h"
2f71a20a 705 tmake_file="${tmake_file} arm/t-arm arm/t-vxworks"
55047c9d 706 ;;
5742588d
DB
707arm*-*-freebsd*|strongarm*-*-freebsd*)
708 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
2f71a20a 709 tmake_file="${tmake_file} arm/t-arm arm/t-strongarm-elf"
5742588d 710 ;;
69474c3c 711arm*-*-netbsdelf*)
ff3afb56 712 tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
2f71a20a 713 tmake_file="${tmake_file} arm/t-arm arm/t-netbsd"
69474c3c 714 ;;
61ed06c3 715arm*-*-netbsd*)
f982f805 716 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
2f71a20a 717 tmake_file="t-netbsd arm/t-arm arm/t-netbsd"
1169f9e0 718 extra_parts=""
5721cd84 719 use_collect2=yes
61ed06c3 720 ;;
14879e76 721arm*-*-linux*) # ARM GNU/Linux with ELF
f7288899 722 tm_file="dbxelf.h elfos.h linux.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
077fc835 723 tmake_file="${tmake_file} t-linux arm/t-arm"
077fc835 724 case ${target} in
464aea98 725 arm*-*-linux-*eabi)
077fc835
KH
726 tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h"
727 tmake_file="$tmake_file arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
f7288899 728 # The BPABI long long divmod functions return a 128-bit value in
077fc835
KH
729 # registers r0-r3. Correctly modeling that requires the use of
730 # TImode.
731 need_64bit_hwint=yes
732 # The EABI requires the use of __cxa_atexit.
733 default_use_cxa_atexit=yes
734 ;;
735 *)
736 tmake_file="$tmake_file arm/t-linux"
737 ;;
738 esac
739 tm_file="$tm_file arm/aout.h arm/arm.h"
61ed06c3
HPN
740 ;;
741arm*-*-uclinux*) # ARM ucLinux
c147eacb 742 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h arm/uclinux-elf.h"
2f71a20a 743 tmake_file="arm/t-arm arm/t-arm-elf"
c147eacb
PB
744 case ${target} in
745 arm*-*-uclinux-*eabi)
746 tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h"
747 tmake_file="$tmake_file arm/t-bpabi"
748 # The BPABI long long divmod functions return a 128-bit value in
749 # registers r0-r3. Correctly modeling that requires the use of
750 # TImode.
751 need_64bit_hwint=yes
752 # The EABI requires the use of __cxa_atexit.
753 default_use_cxa_atexit=yes
754 esac
755 tm_file="$tm_file arm/aout.h arm/arm.h"
61ed06c3 756 ;;
61ed06c3 757arm*-*-ecos-elf)
c40409ce 758 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
315cd6b5 759 tmake_file="arm/t-arm arm/t-arm-elf"
0e5a4ad8 760 ;;
b3f8d95d 761arm*-*-eabi* | arm*-*-symbianelf* )
f7288899 762 # The BPABI long long divmod functions return a 128-bit value in
b3f8d95d
MM
763 # registers r0-r3. Correctly modeling that requires the use of
764 # TImode.
765 need_64bit_hwint=yes
e6fc6c9b 766 default_use_cxa_atexit=yes
b3f8d95d 767 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
0393a68a 768 tmake_file="arm/t-arm arm/t-arm-elf"
b3f8d95d 769 case ${target} in
f9a02408
MM
770 arm*-*-eabi*)
771 tmake_file="${tmake_file} arm/t-bpabi"
772 ;;
b3f8d95d
MM
773 arm*-*-symbianelf*)
774 tm_file="${tm_file} arm/symbian.h"
f9a02408
MM
775 # We do not include t-bpabi for Symbian OS because the system
776 # provides its own implementation of the BPABI functions.
c0354bf4 777 tmake_file="${tmake_file} arm/t-symbian"
b3f8d95d
MM
778 ;;
779 esac
780 tm_file="${tm_file} arm/aout.h arm/arm.h"
336bd6ac 781 ;;
f22b4bc4 782arm*-*-rtems*)
f22b4bc4 783 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"
70d64189 784 tmake_file="arm/t-arm arm/t-arm-elf t-rtems arm/t-rtems"
f22b4bc4 785 ;;
9b6b54e2 786arm*-*-elf | ep9312-*-elf)
c40409ce 787 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2f71a20a 788 tmake_file="arm/t-arm arm/t-arm-elf"
61ed06c3 789 ;;
52f97a3b 790arm*-wince-pe*)
ca11c37c 791 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
2f71a20a 792 tmake_file="arm/t-arm arm/t-wince-pe"
c54c7322 793 extra_options="${extra_options} arm/pe.opt"
52f97a3b
NC
794 extra_objs="pe.o"
795 ;;
61ed06c3 796arm-*-pe*)
ca11c37c 797 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h"
2f71a20a 798 tmake_file="arm/t-arm arm/t-pe"
c54c7322 799 extra_options="${extra_options} arm/pe.opt"
61ed06c3
HPN
800 extra_objs="pe.o"
801 ;;
6b3a0b34
US
802arm*-*-kaos*)
803 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h kaos.h arm/kaos-arm.h"
2f71a20a 804 tmake_file="arm/t-arm arm/t-arm-elf"
6b3a0b34 805 ;;
63933fc3
RC
806avr-*-rtems*)
807 tm_file="avr/avr.h dbxelf.h avr/rtems.h rtems.h"
91ff9507 808 tmake_file="avr/t-avr t-rtems avr/t-rtems"
63933fc3 809 ;;
61ed06c3 810avr-*-*)
ca11c37c 811 tm_file="avr/avr.h dbxelf.h"
ec2a60b0 812 use_fixproto=yes
61ed06c3 813 ;;
0d4a78eb
BS
814bfin*-elf*)
815 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
816 tmake_file=bfin/t-bfin-elf
817 use_collect2=no
1f4174d4
JZ
818 ;;
819bfin*-uclinux*)
cfb6473a 820 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h linux.h bfin/uclinux.h"
344189f9 821 tmake_file=bfin/t-bfin-uclinux
cfb6473a
JZ
822 tm_defines="${tm_defines} UCLIBC_DEFAULT=1"
823 extra_options="${extra_options} linux.opt"
344189f9
BS
824 use_collect2=no
825 ;;
826bfin*-linux-uclibc*)
ea2382be 827 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h linux.h bfin/linux.h ./linux-sysroot-suffix.h"
344189f9 828 tmake_file="t-slibgcc-elf-ver bfin/t-bfin-linux"
1f4174d4
JZ
829 use_collect2=no
830 ;;
152167d5
RC
831bfin*-rtems*)
832 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h"
833 tmake_file="bfin/t-bfin t-rtems bfin/t-rtems"
834 ;;
0d4a78eb
BS
835bfin*-*)
836 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
837 tmake_file=bfin/t-bfin
838 use_collect2=no
1f4174d4 839 ;;
7f0db92a 840c4x-*-rtems* | tic4x-*-rtems*)
491982a0 841 tmake_file="c4x/t-c4x t-rtems c4x/t-rtems"
fdc76b09 842 tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
51fabca5
NB
843 c_target_objs="c4x-c.o"
844 cxx_target_objs="c4x-c.o"
bc98ef7f 845 ;;
7f0db92a 846c4x-* | tic4x-*)
61ed06c3 847 tmake_file=c4x/t-c4x
51fabca5
NB
848 c_target_objs="c4x-c.o"
849 cxx_target_objs="c4x-c.o"
61ed06c3 850 ;;
0b85d816 851cris-*-aout)
32fb7c9d 852 tm_file="dbxelf.h ${tm_file} cris/aout.h"
0b85d816
HPN
853 gas=yes
854 tmake_file="cris/t-cris cris/t-aout"
2a186d97 855 extra_options="${extra_options} cris/aout.opt"
0b85d816
HPN
856 ;;
857cris-*-elf | cris-*-none)
c40409ce 858 tm_file="dbxelf.h elfos.h ${tm_file}"
0b85d816
HPN
859 tmake_file="cris/t-cris cris/t-elfmulti"
860 gas=yes
2a186d97 861 extra_options="${extra_options} cris/elf.opt"
0b85d816
HPN
862 ;;
863cris-*-linux*)
c40409ce 864 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
65d151a7 865 # We need to avoid using t-linux, so override default tmake_file
3fc87ac1 866 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
2a186d97 867 extra_options="${extra_options} cris/linux.opt"
0b85d816 868 ;;
db869733
PW
869crx-*-elf)
870 tm_file="elfos.h ${tm_file}"
871 extra_parts="crtbegin.o crtend.o"
872 use_collect2=no
873 ;;
61ed06c3 874fr30-*-elf)
c40409ce 875 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
876 tmake_file=fr30/t-fr30
877 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
ec2a60b0 878 use_fixproto=yes
61ed06c3 879 ;;
36a05131
BS
880frv-*-elf)
881 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
882 tmake_file=frv/t-frv
ec2a60b0 883 use_fixproto=yes
36a05131 884 ;;
34208acf
AO
885frv-*-*linux*)
886 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} \
887 linux.h frv/linux.h frv/frv-abi.h"
65d151a7 888 tmake_file="${tmake_file} frv/t-frv frv/t-linux"
34208acf 889 ;;
4c5bf198 890h8300-*-rtemscoff*)
402fbd4d 891 tmake_file="h8300/t-h8300 t-rtems h8300/t-rtems"
ca11c37c 892 tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h h8300/rtems.h rtems.h"
bc98ef7f 893 ;;
4c5bf198
RC
894h8300-*-rtems*)
895 tmake_file="h8300/t-h8300 h8300/t-elf t-rtems h8300/t-rtems"
896 tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h h8300/rtems.h rtems.h"
897 ;;
9f5b774b
R
898h8300-*-elf*)
899 tmake_file="h8300/t-h8300 h8300/t-elf"
ca11c37c 900 tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h"
ec2a60b0 901 use_fixproto=yes
9f5b774b 902 ;;
61ed06c3 903h8300-*-*)
ca11c37c 904 tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h"
ec2a60b0 905 use_fixproto=yes
61ed06c3 906 ;;
c21a2372 907hppa*64*-*-linux* | parisc*64*-*-linux*)
d711cf67 908 target_cpu_default="MASK_PA_11|MASK_PA_20"
581d9404
JDA
909 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
910 pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
65d151a7 911 tmake_file="${tmake_file} pa/t-linux64"
c21a2372 912 gas=yes gnu_ld=yes
4977bab6 913 need_64bit_hwint=yes
c21a2372
AM
914 ;;
915hppa*-*-linux* | parisc*-*-linux*)
d711cf67 916 target_cpu_default="MASK_PA_11|MASK_NO_SPACE_REGS"
c40409ce 917 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
c21a2372 918 pa/pa32-regs.h pa/pa32-linux.h"
65d151a7 919 tmake_file="${tmake_file} pa/t-linux"
4720d5ca
JDA
920 # Set the libgcc version number
921 if test x$sjlj = x1; then
922 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
923 else
924 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
8c958ed2 925 fi
61ed06c3 926 ;;
ca11c37c
ZW
927# port not yet contributed.
928#hppa*-*-openbsd*)
d711cf67 929# target_cpu_default="MASK_PA_11"
ca11c37c 930# ;;
61ed06c3 931hppa1.1-*-pro*)
d711cf67
JDA
932 target_cpu_default="MASK_PORTABLE_RUNTIME|MASK_NO_SPACE_REGS|MASK_SOFT_FLOAT"
933 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h \
934 pa/pa-pro-end.h libgloss.h"
587dc9c6 935 tmake_file="pa/t-pro"
61ed06c3
HPN
936 ;;
937hppa1.1-*-osf*)
d711cf67 938 target_cpu_default="MASK_PA_11"
ca11c37c 939 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-osf.h"
587dc9c6 940 tmake_file="pa/t-pa"
61ed06c3
HPN
941 use_collect2=yes
942 ;;
61ed06c3 943hppa1.1-*-bsd*)
d711cf67 944 target_cpu_default="MASK_PA_11"
ca11c37c 945 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h"
587dc9c6 946 tmake_file="pa/t-pa"
61ed06c3
HPN
947 use_collect2=yes
948 ;;
d711cf67
JDA
949hppa[12]*-*-hpux10*)
950 case ${target} in
951 hppa1.1-*-* | hppa2*-*-*)
952 target_cpu_default="MASK_PA_11"
953 ;;
954 esac
955 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
956 pa/pa-hpux.h pa/pa-hpux10.h"
66617831 957 extra_options="${extra_options} pa/pa-hpux.opt"
d711cf67
JDA
958 case ${target} in
959 *-*-hpux10.[1-9]*)
960 tm_file="${tm_file} pa/pa-hpux1010.h"
66617831 961 extra_options="${extra_options} pa/pa-hpux1010.opt"
d711cf67 962 ;;
61ed06c3 963 esac
5a1a4450 964 tmake_file="pa/t-pa-hpux10 pa/t-pa-hpux pa/t-hpux-shlib"
615be2cf
NN
965 case ${enable_threads} in
966 "")
967 if test x$have_pthread_h = xyes ; then
968 tmake_file="${tmake_file} pa/t-dce-thr"
969 fi
970 ;;
971 yes | dce)
972 tmake_file="${tmake_file} pa/t-dce-thr"
973 ;;
61ed06c3 974 esac
4720d5ca
JDA
975 # Set the libgcc version number
976 if test x$sjlj = x1; then
977 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
978 else
979 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
9fb1c9db 980 fi
61ed06c3 981 use_collect2=yes
ec2a60b0 982 use_fixproto=yes
543b6009 983 gas=yes
61ed06c3
HPN
984 ;;
985hppa*64*-*-hpux11*)
d711cf67 986 target_cpu_default="MASK_PA_11|MASK_PA_20"
7b79fe71
JDA
987 if test x$gnu_ld = xyes
988 then
d711cf67 989 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
7b79fe71 990 fi
543b6009
SE
991 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
992 pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \
993 pa/pa-hpux11.h"
d711cf67 994 case ${target} in
1fb641a1 995 *-*-hpux11.[1-9]*)
d711cf67 996 tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h"
66617831 997 extra_options="${extra_options} pa/pa-hpux1111.opt"
d711cf67
JDA
998 ;;
999 *)
1000 tm_file="${tm_file} pa/pa-64.h pa/pa64-hpux.h"
1001 ;;
1002 esac
66617831
RS
1003 extra_options="${extra_options} pa/pa-hpux.opt \
1004 pa/pa-hpux1010.opt pa/pa64-hpux.opt"
4977bab6 1005 need_64bit_hwint=yes
3f0b8b66 1006 tmake_file="pa/t-pa64 pa/t-pa-hpux pa/t-hpux-shlib"
4720d5ca
JDA
1007 # Set the libgcc version number
1008 if test x$sjlj = x1; then
1009 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1010 else
1011 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
9fb1c9db 1012 fi
8b89a26a
JDA
1013 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
1014 libgcc_stub.a"
7e2055ec 1015 case x${enable_threads} in
27ca3a61 1016 x | xyes | xposix )
f7288899 1017 thread_file=posix
7e2055ec
ZW
1018 ;;
1019 esac
543b6009 1020 gas=yes
61ed06c3 1021 ;;
d711cf67
JDA
1022hppa[12]*-*-hpux11*)
1023 case ${target} in
1024 hppa1.1-*-* | hppa2*-*-*)
1025 target_cpu_default="MASK_PA_11"
1026 ;;
1027 esac
1028 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
66617831
RS
1029 pa/pa-hpux.h pa/pa-hpux1010.h pa/pa-hpux11.h"
1030 extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux1010.opt"
d711cf67
JDA
1031 case ${target} in
1032 *-*-hpux11.[1-9]*)
1033 tm_file="${tm_file} pa/pa-hpux1111.h"
66617831 1034 extra_options="${extra_options} pa/pa-hpux1111.opt"
7e2055ec
ZW
1035 ;;
1036 esac
5a1a4450 1037 tmake_file="pa/t-pa-hpux11 pa/t-pa-hpux pa/t-hpux-shlib"
4720d5ca
JDA
1038 # Set the libgcc version number
1039 if test x$sjlj = x1; then
1040 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1041 else
1042 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
9fb1c9db 1043 fi
7e2055ec 1044 case x${enable_threads} in
27ca3a61 1045 x | xyes | xposix )
f7288899 1046 thread_file=posix
7e2055ec
ZW
1047 ;;
1048 esac
61ed06c3 1049 use_collect2=yes
543b6009 1050 gas=yes
61ed06c3 1051 ;;
b069de3b 1052i[34567]86-*-darwin*)
f7288899 1053 need_64bit_hwint=yes
703706d7
GK
1054
1055 # This is so that '.../configure && make' doesn't fail due to
1056 # config.guess deciding that the configuration is i386-*-darwin* and
1057 # then this file using that to set --with-cpu=i386 which has no -m64
1058 # support.
703706d7 1059 with_cpu=${with_cpu:-generic}
1d2b1d91 1060 tmake_file="${tmake_file} i386/t-fprules-softfp64 soft-fp/t-softfp i386/t-crtpc i386/t-crtfm"
b069de3b 1061 ;;
9519e677 1062x86_64-*-darwin*)
9519e677 1063 with_cpu=${with_cpu:-generic}
1d2b1d91 1064 tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin i386/t-fprules-softfp64 soft-fp/t-softfp i386/t-crtpc i386/t-crtfm"
9519e677
EC
1065 tm_file="${tm_file} ${cpu_type}/darwin64.h"
1066 ;;
61ed06c3 1067i[34567]86-*-elf*)
39ed301b 1068 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
14455c64 1069 tmake_file="i386/t-i386elf t-svr4"
a10dc289
HK
1070 use_fixproto=yes
1071 ;;
1072x86_64-*-elf*)
1073 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/x86-64.h"
1074 tmake_file="i386/t-i386elf t-svr4"
ec2a60b0 1075 use_fixproto=yes
61ed06c3 1076 ;;
61ed06c3 1077i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
70305f2b
RH
1078 if test x$gas = xyes
1079 then
1080 tm_file="${tm_file} usegas.h"
1081 fi
39ed301b 1082 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
61ed06c3
HPN
1083 tmake_file=t-svr4
1084 extra_parts="crtbegin.o crtend.o"
ec2a60b0 1085 use_fixproto=yes
61ed06c3 1086 ;;
61ed06c3 1087i[34567]86-*-aout*)
39ed301b 1088 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
ec2a60b0 1089 use_fixproto=yes
61ed06c3
HPN
1090 ;;
1091i[34567]86-*-beoself* | i[34567]86-*-beos*)
61ed06c3 1092 tmake_file='i386/t-beos i386/t-crtpic'
39ed301b 1093 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
61ed06c3
HPN
1094 extra_parts='crtbegin.o crtend.o'
1095 ;;
61ed06c3 1096i[34567]86-*-freebsd*)
39ed301b 1097 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
e564e618
DB
1098 ;;
1099x86_64-*-freebsd*)
39ed301b 1100 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"
d3ef67ea 1101 tmake_file="${tmake_file} i386/t-crtstuff"
61ed06c3 1102 ;;
6ea0279f 1103i[34567]86-*-netbsdelf*)
39ed301b 1104 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
6ea0279f 1105 ;;
61ed06c3 1106i[34567]86-*-netbsd*)
39ed301b 1107 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 1108 tmake_file=t-netbsd
1169f9e0 1109 extra_parts=""
5721cd84 1110 use_collect2=yes
61ed06c3 1111 ;;
7c884404 1112x86_64-*-netbsd*)
39ed301b 1113 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"
d3ef67ea 1114 tmake_file="${tmake_file} i386/t-crtstuff"
7c884404 1115 ;;
378b66d4 1116i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
ca11c37c 1117 tm_file="i386/i386.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h i386/openbsd.h"
f1cf4606
ME
1118 # needed to unconfuse gdb
1119 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
61ed06c3
HPN
1120 # we need collect2 until our bug is fixed...
1121 use_collect2=yes
1122 ;;
378b66d4 1123i[34567]86-*-openbsd*)
75a3bd9d 1124 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
378b66d4
ME
1125 tm_file="${tm_file} openbsd.h i386/openbsdelf.h"
1126 gas=yes
1127 gnu_ld=yes
378b66d4 1128 ;;
61ed06c3 1129i[34567]86-*-coff*)
39ed301b 1130 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
ec2a60b0 1131 use_fixproto=yes
61ed06c3 1132 ;;
cfafe973
RM
1133i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu)
1134 # Intel 80386's running GNU/*
61ed06c3 1135 # with ELF format using glibc 2
0f45f0f5 1136 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h"
cfafe973 1137 case ${target} in
0f45f0f5
JM
1138 i[34567]86-*-linux*)
1139 if test x$enable_targets = xall; then
1140 tm_file="${tm_file} i386/x86-64.h i386/linux64.h"
1141 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
27735edb 1142 tmake_file="${tmake_file} i386/t-linux64 i386/t-fprules-softfp64 soft-fp/t-softfp"
0f45f0f5
JM
1143 need_64bit_hwint=yes
1144 # FIXME: -m64 for i[34567]86-*-* should be allowed just
1145 # like -m32 for x86_64-*-*.
1146 case X"${with_cpu}" in
aafc814c 1147 Xgeneric|Xcore2|Xnocona|Xx86-64|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx)
0f45f0f5
JM
1148 ;;
1149 X)
1150 with_cpu=generic
1151 ;;
1152 *)
1153 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
aafc814c 1154 echo "generic core2 nocona x86-64 amdfam10 barcelona k8 opteron athlon64 athlon-fx" 1>&2
0f45f0f5
JM
1155 exit 1
1156 ;;
1157 esac
1158 else
1159 tm_file="${tm_file} i386/linux.h"
1160 fi
1161 ;;
1162 i[34567]86-*-knetbsd*-gnu) tm_file="${tm_file} i386/linux.h knetbsd-gnu.h i386/knetbsd-gnu.h" ;;
1163 i[34567]86-*-kfreebsd*-gnu) tm_file="${tm_file} i386/linux.h kfreebsd-gnu.h i386/kfreebsd-gnu.h" ;;
cfafe973 1164 esac
577565f9 1165 tmake_file="${tmake_file} i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
61ed06c3 1166 ;;
44379973 1167x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
39ed301b 1168 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
32fb7c9d 1169 i386/x86-64.h i386/linux64.h"
44379973
RM
1170 case ${target} in
1171 x86_64-*-kfreebsd*-gnu) tm_file="${tm_file} kfreebsd-gnu.h" ;;
1172 x86_64-*-knetbsd*-gnu) tm_file="${tm_file} knetbsd-gnu.h" ;;
1173 esac
d3ef67ea 1174 tmake_file="${tmake_file} i386/t-linux64 i386/t-crtstuff i386/t-crtpc i386/t-crtfm i386/t-fprules-softfp64 soft-fp/t-softfp t-dfprules"
14f73b5a 1175 ;;
61ed06c3 1176i[34567]86-*-gnu*)
61ed06c3 1177 ;;
61ed06c3
HPN
1178i[34567]86-pc-msdosdjgpp*)
1179 xm_file=i386/xm-djgpp.h
267409e8 1180 tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
5dd8a9b1 1181 tmake_file=i386/t-djgpp
6ac49599 1182 extra_options="${extra_options} i386/djgpp.opt"
61ed06c3
HPN
1183 gnu_ld=yes
1184 gas=yes
61ed06c3 1185 ;;
61ed06c3 1186i[34567]86-*-lynxos*)
4f587cb0
AN
1187 xm_defines=POSIX
1188 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
1189 tmake_file="i386/t-crtstuff t-lynx"
1190 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
6ac49599 1191 extra_options="${extra_options} lynx.opt"
4f587cb0
AN
1192 thread_file=lynx
1193 gnu_ld=yes
1194 gas=yes
61ed06c3 1195 ;;
61fec9ff 1196i[3456x]86-*-netware*)
f199d860 1197 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h tm-dwarf2.h i386/netware.h"
61fec9ff
JB
1198 tmake_file=i386/t-netware
1199 extra_objs=netware.o
1200 case /${with_ld} in
1201 */nwld)
1202 extra_objs="$extra_objs nwld.o"
1203 tm_file="${tm_file} i386/nwld.h"
1204 tmake_file="${tmake_file} i386/t-nwld"
1205 extra_parts="crt0.o libgcc.def libc.def libcpre.def posixpre.def"
1206 ;;
1207 esac
1208 case x${enable_threads} in
1209 x | xyes | xposix) thread_file='posix';;
1210 xnks) thread_file='nks';;
1211 xno) ;;
1212 *) echo 'Unknown thread configuration for NetWare' >&2; exit 1;;
1213 esac
1214 ;;
f2feed2c 1215i[34567]86-*-nto-qnx*)
ca11c37c 1216 tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
f2feed2c
GP
1217 tmake_file=i386/t-nto
1218 gnu_ld=yes
1219 gas=yes
1220 ;;
c7bdf0a6 1221i[34567]86-*-rtems*)
39ed301b 1222 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
61ed06c3
HPN
1223 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1224 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1225 ;;
1226i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
ac24fc99 1227 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sco5.h"
61ed06c3
HPN
1228 if test x$gas = xyes
1229 then
70305f2b 1230 tm_file="usegas.h ${tm_file}"
61ed06c3 1231 fi
ac24fc99
KJ
1232 tmake_file=i386/t-sco5
1233 extra_parts="crtbegin.o crtend.o"
6ac49599 1234 extra_options="${extra_options} i386/sco5.opt"
ec2a60b0 1235 use_fixproto=yes
61ed06c3 1236 ;;
61ed06c3 1237i[34567]86-*-solaris2*)
18167442
EB
1238 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h"
1239 case ${target} in
1240 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
ec23ed60
EB
1241 tm_file="${tm_file} sol2-6.h"
1242 ;;
1243 *-*-solaris2.1[0-9]*)
1244 tm_file="${tm_file} sol2-10.h"
1245 ;;
18167442
EB
1246 esac
1247 tm_file="${tm_file} i386/sol2.h"
a2bec818
DJ
1248 tmake_file="t-sol2 i386/t-sol2 t-svr4"
1249 c_target_objs="sol2-c.o"
1250 cxx_target_objs="sol2-c.o"
07a43492
DJ
1251 extra_objs="sol2.o"
1252 tm_p_file="${tm_p_file} sol2-protos.h"
7b3a4df5
RH
1253 if test x$gnu_ld = xyes; then
1254 tmake_file="$tmake_file t-slibgcc-elf-ver"
a8e68029 1255 tm_defines="${tm_defines} TARGET_GNU_LD=1"
7b3a4df5
RH
1256 else
1257 tmake_file="$tmake_file t-slibgcc-sld"
1258 fi
79387e57
RS
1259 if test x$gas = xyes; then
1260 tm_file="usegas.h ${tm_file}"
1261 fi
04db08db 1262 case ${target} in
f42eccdb 1263 *-*-solaris2.[789] | *-*-solaris2.1[0-9]*)
04db08db
RO
1264 tm_file="$tm_file tm-dwarf2.h"
1265 ;;
1266 esac
a8e68029 1267 case ${target} in
f42eccdb 1268 *-*-solaris2.1[0-9]*)
a8e68029
DJ
1269 tm_file="${tm_file} i386/x86-64.h i386/sol2-10.h"
1270 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
d3ef67ea 1271 tmake_file="$tmake_file i386/t-crtstuff i386/t-sol2-10"
a8e68029 1272 need_64bit_hwint=yes
28a026d9
L
1273 # FIXME: -m64 for i[34567]86-*-* should be allowed just
1274 # like -m32 for x86_64-*-*.
1275 case X"${with_cpu}" in
aafc814c 1276 Xgeneric|Xcore2|Xnocona|Xx86-64|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx)
28a026d9
L
1277 ;;
1278 X)
1279 with_cpu=generic
1280 ;;
1281 *)
1282 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
aafc814c 1283 echo "generic core2 nocona x86-64 amdfam10 barcelona k8 opteron athlon64 athlon-fx" 1>&2
28a026d9
L
1284 exit 1
1285 ;;
1286 esac
f7288899 1287 # Solaris 2.10 provides crt1.o, crti.o, crtn.o, and gcrt1.o as
a8e68029
DJ
1288 # part of the base system.
1289 extra_parts="gmon.o crtbegin.o crtend.o"
1290 ;;
1291 *)
1292 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1293 ;;
1294 esac
615be2cf 1295 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
18167442
EB
1296 "":yes:* | yes:yes:* )
1297 case ${target} in
1298 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
1299 thread_file=posix95
1300 ;;
1301 *)
1302 thread_file=posix
1303 ;;
1304 esac
1305 ;;
1306 "":*:yes | yes:*:yes )
1307 thread_file=solaris
1308 ;;
615be2cf 1309 esac
61ed06c3 1310 ;;
23a535c4 1311i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
39ed301b 1312 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
61ed06c3
HPN
1313 if test x$stabs = xyes
1314 then
1315 tm_file="${tm_file} dbx.h"
1316 fi
14455c64 1317 tmake_file="i386/t-crtpic t-svr4"
61ed06c3
HPN
1318 extra_parts="crtbegin.o crtend.o"
1319 if test x$enable_threads = xyes; then
1320 thread_file='posix'
1321 fi
ec2a60b0 1322 use_fixproto=yes
61ed06c3
HPN
1323 ;;
1324i[34567]86-*-sysv4*) # Intel 80386's running system V.4
3d05b15f 1325 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
61ed06c3
HPN
1326 if test x$stabs = xyes
1327 then
1328 tm_file="${tm_file} dbx.h"
1329 fi
14455c64 1330 tmake_file="i386/t-crtpic t-svr4"
61ed06c3 1331 extra_parts="crtbegin.o crtend.o"
ec2a60b0 1332 use_fixproto=yes
61ed06c3 1333 ;;
d442d7d9 1334i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
f4de8ba6 1335 tm_file="${tm_file} i386/unix.h i386/att.h elfos.h svr4.h vx-common.h"
d442d7d9
PE
1336 case ${target} in
1337 *-vxworksae*)
f4de8ba6 1338 tm_file="${tm_file} vxworksae.h i386/vx-common.h i386/vxworksae.h"
d442d7d9
PE
1339 tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
1340 ;;
1341 *)
f4de8ba6 1342 tm_file="${tm_file} vxworks.h i386/vx-common.h i386/vxworks.h"
d442d7d9
PE
1343 tmake_file="${tmake_file} i386/t-vxworks"
1344 ;;
1345 esac
55047c9d 1346 ;;
61ed06c3 1347i[34567]86-*-pe | i[34567]86-*-cygwin*)
70e5e841 1348 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
4dc0535b 1349 xm_file=i386/xm-cygwin.h
dc4a2f32 1350 tmake_file="i386/t-cygwin i386/t-cygming"
90aa6719 1351 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
6ac49599 1352 extra_options="${extra_options} i386/cygming.opt"
43d9ad1d 1353 extra_objs="winnt.o winnt-stubs.o"
70e5e841 1354 c_target_objs=cygwin2.o
43d9ad1d 1355 cxx_target_objs="cygwin2.o winnt-cxx.o"
30500d84 1356 extra_gcc_objs=cygwin1.o
61ed06c3 1357 if test x$enable_threads = xyes; then
70e5e841 1358 thread_file='posix'
61ed06c3 1359 fi
61ed06c3 1360 ;;
ccf8e764 1361i[34567]86-*-mingw32* | x86_64-*-mingw32*)
70e5e841 1362 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
4dc0535b 1363 xm_file=i386/xm-mingw32.h
70e5e841 1364 tmake_file="i386/t-cygming i386/t-mingw32"
90aa6719 1365 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
6ac49599 1366 extra_options="${extra_options} i386/cygming.opt"
43d9ad1d
DS
1367 extra_objs="winnt.o winnt-stubs.o"
1368 cxx_target_objs=winnt-cxx.o
97388150 1369 default_use_cxa_atexit=yes
50c0d3fd 1370 case ${enable_threads} in
e1a1c424
NC
1371 "" | yes | win32)
1372 thread_file='win32'
1373 tmake_file="${tmake_file} i386/t-gthr-win32"
1374 ;;
50c0d3fd 1375 esac
b01bc573 1376 case ${target} in
09eaf5a5 1377 *mingw32crt*)
61ed06c3
HPN
1378 tm_file="${tm_file} i386/crtdll.h"
1379 ;;
70e5e841 1380 *mingw32msv* | *mingw32*)
09eaf5a5 1381 ;;
61ed06c3
HPN
1382 esac
1383 ;;
1384i[34567]86-*-uwin*)
3eae722d 1385 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h"
61ed06c3
HPN
1386 tmake_file="i386/t-cygwin i386/t-uwin"
1387 extra_objs=winnt.o
6ac49599 1388 extra_options="${extra_options} i386/cygming.opt"
90aa6719 1389 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
61ed06c3
HPN
1390 if test x$enable_threads = xyes; then
1391 thread_file='win32'
1392 fi
ec2a60b0 1393 use_fixproto=yes
61ed06c3 1394 ;;
04cec1a7 1395i[34567]86-*-interix3*)
39ed301b 1396 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"
587dc9c6 1397 tmake_file="i386/t-interix"
84512347 1398 extra_objs=winnt.o
90aa6719 1399 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
04cec1a7
DR
1400 if test x$enable_threads = xyes ; then
1401 thread_file='posix'
1402 fi
1403 if test x$stabs = xyes ; then
1404 tm_file="${tm_file} dbxcoff.h"
1405 fi
1406 ;;
6b3a0b34
US
1407i[34567]86-*-kaos*)
1408 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h kaos.h i386/kaos-i386.h"
1409 tmake_file="i386/t-i386elf t-svr4"
1410 ;;
61ed06c3 1411ia64*-*-elf*)
c40409ce 1412 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
61ed06c3
HPN
1413 tmake_file="ia64/t-ia64"
1414 target_cpu_default="0"
1415 if test x$gas = xyes
1416 then
1417 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1418 fi
1419 if test x$gnu_ld = xyes
1420 then
1421 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1422 fi
32b4f6f4 1423 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
ec2a60b0 1424 use_fixproto=yes
61ed06c3 1425 ;;
243a7070 1426ia64*-*-freebsd*)
fee42cc1 1427 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
243a7070
DB
1428 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1429 tmake_file="${tmake_file} ia64/t-ia64"
32b4f6f4 1430 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
243a7070 1431 ;;
61ed06c3 1432ia64*-*-linux*)
c40409ce 1433 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
443728bb
L
1434 tmake_file="${tmake_file} ia64/t-ia64 t-libunwind ia64/t-glibc"
1435 if test x$with_system_libunwind != xyes ; then
1436 tmake_file="${tmake_file} t-libunwind-elf ia64/t-glibc-libunwind"
1437 fi
61ed06c3 1438 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
32b4f6f4 1439 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
61ed06c3 1440 ;;
7e5b9908 1441ia64*-*-hpux*)
c15c90bb 1442 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h"
23c108af 1443 tmake_file="ia64/t-ia64 ia64/t-hpux"
7e5b9908 1444 target_cpu_default="MASK_GNU_AS"
7e2055ec 1445 case x$enable_threads in
79e8b6c0 1446 x | xyes | xposix )
7e2055ec
ZW
1447 thread_file=posix
1448 ;;
1449 esac
cad61762 1450 use_collect2=no
34c1864f
SE
1451 c_target_objs="ia64-c.o"
1452 cxx_target_objs="ia64-c.o"
dbdd120f 1453 extra_options="${extra_options} ia64/ilp32.opt"
587dc9c6
NN
1454 # If we decide to run fixproto we should define FIXPROTO_DEFINES
1455 # in ia64/t-hpux, and also fix the definition of putenv in
1456 # sys-protos.h (const char not char).
7e5b9908 1457 ;;
6b3d1e47 1458iq2000*-*-elf*)
ca11c37c 1459 tm_file="svr4.h elfos.h iq2000/iq2000.h"
6b3d1e47
SC
1460 tmake_file=iq2000/t-iq2000
1461 out_file=iq2000/iq2000.c
6b3d1e47 1462 md_file=iq2000/iq2000.md
ec2a60b0 1463 use_fixproto=yes
6b3d1e47 1464 ;;
61ed06c3 1465m32r-*-elf*)
c40409ce 1466 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
3a30516d 1467 extra_parts="crtinit.o crtfini.o"
ec2a60b0 1468 use_fixproto=yes
37ec8b7a 1469 ;;
ad126521
KI
1470m32rle-*-elf*)
1471 tm_file="dbxelf.h elfos.h svr4.h m32r/little.h ${tm_file}"
1472 extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
1473 use_fixproto=yes
1474 ;;
1475m32r-*-linux*)
1476 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} m32r/linux.h"
65d151a7 1477 # We override the tmake_file for linux -- why?
986ce408 1478 tmake_file="t-slibgcc-elf-ver m32r/t-linux"
ad126521
KI
1479 gnu_ld=yes
1480 use_fixproto=yes
1481 if test x$enable_threads = xyes; then
1482 thread_file='posix'
1483 fi
1484 ;;
1485m32rle-*-linux*)
1486 tm_file="dbxelf.h elfos.h svr4.h linux.h m32r/little.h ${tm_file} m32r/linux.h"
65d151a7 1487 # We override the tmake_file for linux -- why?
986ce408 1488 tmake_file="t-slibgcc-elf-ver m32r/t-linux"
ad126521
KI
1489 gnu_ld=yes
1490 use_fixproto=yes
1491 if test x$enable_threads = xyes; then
1492 thread_file='posix'
1493 fi
1494 ;;
61ed06c3
HPN
1495# m68hc11 and m68hc12 share the same machine description.
1496m68hc11-*-*|m6811-*-*)
c40409ce 1497 tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
61ed06c3
HPN
1498 tm_p_file="m68hc11/m68hc11-protos.h"
1499 md_file="m68hc11/m68hc11.md"
1500 out_file="m68hc11/m68hc11.c"
1501 tmake_file="m68hc11/t-m68hc11-gas"
ec2a60b0 1502 use_fixproto=yes
61ed06c3
HPN
1503 ;;
1504m68hc12-*-*|m6812-*-*)
c40409ce 1505 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
61ed06c3 1506 tm_p_file="m68hc11/m68hc11-protos.h"
61ed06c3
HPN
1507 md_file="m68hc11/m68hc11.md"
1508 out_file="m68hc11/m68hc11.c"
1509 tmake_file="m68hc11/t-m68hc11-gas"
df3a97a8 1510 extra_options="${extra_options} m68hc11/m68hc11.opt"
ec2a60b0 1511 use_fixproto=yes
61ed06c3 1512 ;;
61ed06c3 1513m68k-*-aout*)
59fbf3cb 1514 default_m68k_cpu=68020
10e96df4
NS
1515 default_cf_cpu=5206
1516 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-mlibs"
a96533d5 1517 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h"
61ed06c3
HPN
1518 ;;
1519m68k-*-coff*)
59fbf3cb 1520 default_m68k_cpu=68020
10e96df4
NS
1521 default_cf_cpu=5206
1522 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-mlibs"
a96533d5
NS
1523 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS"
1524 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h"
ec2a60b0 1525 use_fixproto=yes
61ed06c3 1526 ;;
7d33c31d
KH
1527m68020-*-elf* | m68k-*-elf* | fido-*-elf*)
1528 case ${target} in
1529 fido-*-elf*)
1530 # Check that $with_cpu makes sense.
1531 case $with_cpu in
1532 "" | "fidoa")
1533 ;;
1534 *)
1535 echo "Cannot accept --with-cpu=$with_cpu"
1536 exit 1
1537 ;;
1538 esac
1539 with_cpu=fidoa
1540 ;;
1541 *)
1542 default_m68k_cpu=68020
1543 default_cf_cpu=5206
1544 ;;
1545 esac
a96533d5
NS
1546 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1547 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS"
7d33c31d
KH
1548 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
1549 # Add multilibs for targets other than fido.
1550 case ${target} in
1551 fido-*-elf*)
1552 ;;
1553 *)
1554 tmake_file="$tmake_file m68k/t-mlibs"
1555 ;;
1556 esac
bb8602be 1557 extra_parts="crtbegin.o crtend.o"
61ed06c3 1558 ;;
2fd95d71 1559m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
59fbf3cb 1560 default_m68k_cpu=68020
10e96df4 1561 default_cf_cpu=5475
2fd95d71 1562 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
a96533d5 1563 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS"
2fd95d71 1564 ;;
7ea98c5a 1565m68k*-*-openbsd*)
59fbf3cb 1566 default_m68k_cpu=68020
10e96df4 1567 default_cf_cpu=5475
7ea98c5a 1568 # needed to unconfuse gdb
59fbf3cb 1569 tm_defines="${tm_defines} OBSD_OLD_GAS"
a96533d5 1570 tm_file="${tm_file} openbsd.h m68k/openbsd.h"
7ea98c5a
GN
1571 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1572 # we need collect2 until our bug is fixed...
1573 use_collect2=yes
1574 ;;
4529dbf1
RS
1575m68k-*-uclinuxoldabi*) # Motorola m68k/ColdFire running uClinux
1576 # with uClibc, using the original
1577 # m68k-elf-based ABI
1578 default_m68k_cpu=68020
10e96df4 1579 default_cf_cpu=5206
a96533d5
NS
1580 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/uclinux-oldabi.h"
1581 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS"
47b41fa3 1582 tmake_file="m68k/t-floatlib m68k/t-uclinux"
4529dbf1
RS
1583 use_fixproto=no
1584 ;;
1585m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux
1586 # with uClibc, using the new GNU/Linux-style
1587 # ABI.
59fbf3cb 1588 default_m68k_cpu=68020
10e96df4 1589 default_cf_cpu=5206
3ca43df7 1590 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h flat.h m68k/linux.h m68k/uclinux.h ./sysroot-suffix.h"
a96533d5 1591 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS UCLIBC_DEFAULT=1"
78218d89 1592 extra_options="${extra_options} linux.opt"
10e96df4 1593 tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
ba591f5a
BI
1594 use_fixproto=no
1595 ;;
61ed06c3
HPN
1596m68k-*-linux*) # Motorola m68k's running GNU/Linux
1597 # with ELF format using glibc 2
1598 # aka the GNU/Linux C library 6.
59fbf3cb 1599 default_m68k_cpu=68020
10e96df4 1600 default_cf_cpu=5475
a96533d5 1601 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h m68k/linux.h"
4af06170 1602 extra_options="${extra_options} m68k/ieee.opt"
a96533d5 1603 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS"
8c958ed2
MK
1604 # if not configured with --enable-sjlj-exceptions, bump the
1605 # libgcc version number
1606 if test x$sjlj != x1; then
1607 tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
1608 fi
61ed06c3 1609 ;;
c7bdf0a6 1610m68k-*-rtems*)
59fbf3cb 1611 default_m68k_cpu=68020
10e96df4
NS
1612 default_cf_cpu=5206
1613 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems m68k/t-mlibs"
a96533d5
NS
1614 tm_file="${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"
1615 tm_defines="${tm_defines} MOTOROLA=1 USE_GAS"
bb8602be 1616 extra_parts="crtbegin.o crtend.o"
61ed06c3 1617 ;;
61ed06c3 1618mcore-*-elf)
c40409ce 1619 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
61ed06c3 1620 tmake_file=mcore/t-mcore
ec2a60b0 1621 use_fixproto=yes
61ed06c3
HPN
1622 ;;
1623mcore-*-pe*)
ca11c37c 1624 tm_file="svr3.h dbxcoff.h ${tm_file} mcore/mcore-pe.h"
61ed06c3 1625 tmake_file=mcore/t-mcore-pe
ec2a60b0 1626 use_fixproto=yes
61ed06c3 1627 ;;
82563d35
RS
1628mips-sgi-irix[56]*)
1629 tm_file="elfos.h ${tm_file} mips/iris.h"
1630 tmake_file="mips/t-iris mips/t-slibgcc-irix"
5811cb27 1631 target_cpu_default="MASK_ABICALLS"
82563d35
RS
1632 case ${target} in
1633 *-*-irix5*)
1634 tm_file="${tm_file} mips/iris5.h"
1635 ;;
1636
1637 *-*-irix6*)
1638 tm_file="${tm_file} mips/iris6.h"
1639 tmake_file="${tmake_file} mips/t-iris6"
620b87b3 1640 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
82563d35
RS
1641 ;;
1642 esac
1643 if test "x$stabs" = xyes
61ed06c3 1644 then
82563d35 1645 tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
61ed06c3 1646 fi
3e35cb0c
RO
1647 if test "x$gnu_ld" = xyes
1648 then
82563d35 1649 tm_defines="${tm_defines} IRIX_USING_GNU_LD"
3e35cb0c 1650 fi
40f5cc95
RO
1651 case ${enable_threads}:${have_pthread_h} in
1652 "":yes | yes:yes ) thread_file=posix ;;
1653 esac
ec2a60b0 1654 use_fixproto=yes
61ed06c3 1655 ;;
f982f805 1656mips*-*-netbsd*) # NetBSD/mips, either endian.
5811cb27 1657 target_cpu_default="MASK_ABICALLS"
ca11c37c 1658 tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
61ed06c3 1659 ;;
3bd6d4c4
AO
1660mips64*-*-linux*)
1661 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
65d151a7 1662 tmake_file="${tmake_file} mips/t-linux64"
5d2a73d5 1663 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32"
3bd6d4c4
AO
1664 gnu_ld=yes
1665 gas=yes
66471b47 1666 test x$with_llsc != x || with_llsc=yes
3bd6d4c4 1667 ;;
61ed06c3 1668mips*-*-linux*) # Linux MIPS, either endian.
2017ed61 1669 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
b01bc573 1670 case ${target} in
9303e5df
NS
1671 mipsisa32r2*)
1672 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
009da785 1673 ;;
9303e5df
NS
1674 mipsisa32*)
1675 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
009da785 1676 esac
66471b47 1677 test x$with_llsc != x || with_llsc=yes
61ed06c3 1678 ;;
ca11c37c 1679mips*-*-openbsd*)
620b87b3 1680 tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
5811cb27 1681 target_cpu_default="MASK_ABICALLS"
ca11c37c 1682 tm_file="mips/mips.h openbsd.h mips/openbsd.h mips/sdb.h"
b01bc573 1683 case ${target} in
f7288899 1684 mips*el-*-openbsd*)
ca11c37c
ZW
1685 tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1686 *) tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1687 esac
61ed06c3 1688 ;;
0ea339ea
NS
1689mips*-sde-elf*)
1690 tm_file="elfos.h ${tm_file} mips/elf.h mips/sde.h"
1691 tmake_file="mips/t-sde mips/t-libgcc-mips16"
d9dced13
RS
1692 case "${with_newlib}" in
1693 yes)
1694 # newlib / libgloss.
1695 ;;
1696 *)
1697 # MIPS toolkit libraries.
1698 tm_file="$tm_file mips/sdemtk.h"
1699 tmake_file="$tmake_file mips/t-sdemtk"
1700 extra_options="$extra_options mips/sdemtk.opt"
1701 case ${enable_threads} in
1702 "" | yes | mipssde)
1703 thread_file='mipssde'
1704 ;;
1705 esac
1706 ;;
1707 esac
0ea339ea
NS
1708 case ${target} in
1709 mipsisa32r2*)
1710 tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
1711 ;;
1712 mipsisa32*)
1713 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
1714 ;;
1715 mipsisa64*)
1716 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
1717 ;;
1718 esac
1719 ;;
e2c14f5d
RS
1720mipsisa32-*-elf* | mipsisa32el-*-elf* | \
1721mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
5c44e275 1722mipsisa64-*-elf* | mipsisa64el-*-elf*)
e9475fa3 1723 tm_file="elfos.h ${tm_file} mips/elf.h"
0ea339ea 1724 tmake_file="mips/t-isa3264 mips/t-libgcc-mips16"
e2c14f5d
RS
1725 case ${target} in
1726 mipsisa32r2*)
1727 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1728 ;;
1729 mipsisa32*)
1730 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1731 ;;
1732 mipsisa64*)
1733 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
1734 ;;
1735 esac
1736 case ${target} in
1737 mipsisa32*-*-elfoabi*)
1738 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
1739 tm_file="${tm_file} mips/elfoabi.h"
1740 ;;
1741 mipsisa64*-*-elfoabi*)
1742 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
1743 tm_file="${tm_file} mips/elfoabi.h"
1744 ;;
1745 *-*-elf*)
1746 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
1747 ;;
1748 esac
5c44e275 1749 ;;
5ce6f47b 1750mipsisa64sr71k-*-elf*)
e9475fa3 1751 tm_file="elfos.h ${tm_file} mips/elf.h"
5ce6f47b 1752 tmake_file=mips/t-sr71k
5811cb27 1753 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
620b87b3 1754 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
ec2a60b0 1755 use_fixproto=yes
5ce6f47b 1756 ;;
3d41dbb0 1757mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
e9475fa3 1758 tm_file="elfos.h ${tm_file} mips/elf.h"
0ea339ea 1759 tmake_file="mips/t-elf mips/t-libgcc-mips16 mips/t-sb1"
5811cb27 1760 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
620b87b3 1761 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
ec2a60b0 1762 use_fixproto=yes
3d41dbb0 1763 ;;
74826b0f 1764mips-*-elf* | mipsel-*-elf*)
e9475fa3 1765 tm_file="elfos.h ${tm_file} mips/elf.h"
0ea339ea 1766 tmake_file="mips/t-elf mips/t-libgcc-mips16"
ec2a60b0 1767 use_fixproto=yes
61ed06c3 1768 ;;
74826b0f 1769mips64-*-elf* | mips64el-*-elf*)
e9475fa3 1770 tm_file="elfos.h ${tm_file} mips/elf.h"
0ea339ea 1771 tmake_file="mips/t-elf mips/t-libgcc-mips16"
5811cb27 1772 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
620b87b3 1773 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
ec2a60b0 1774 use_fixproto=yes
61ed06c3 1775 ;;
5ce6f47b 1776mips64vr-*-elf* | mips64vrel-*-elf*)
e9475fa3 1777 tm_file="mips/vr.h elfos.h ${tm_file} mips/elf.h"
5ce6f47b 1778 tmake_file=mips/t-vr
ec2a60b0 1779 use_fixproto=yes
5ce6f47b 1780 ;;
74826b0f 1781mips64orion-*-elf* | mips64orionel-*-elf*)
e9475fa3 1782 tm_file="elfos.h ${tm_file} mips/elforion.h mips/elf.h"
0ea339ea 1783 tmake_file="mips/t-elf mips/t-libgcc-mips16"
5811cb27 1784 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
620b87b3 1785 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
ec2a60b0 1786 use_fixproto=yes
61ed06c3 1787 ;;
bc98ef7f 1788mips*-*-rtems*)
e9475fa3 1789 tm_file="elfos.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
0ea339ea 1790 tmake_file="mips/t-elf mips/t-libgcc-mips16 t-rtems mips/t-rtems"
61ed06c3 1791 ;;
55047c9d 1792mips-wrs-vxworks)
f4de8ba6 1793 tm_file="elfos.h ${tm_file} svr4.h mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
55047c9d 1794 tmake_file="${tmake_file} mips/t-vxworks"
55047c9d
PE
1795 ;;
1796mips-wrs-windiss) # Instruction-level simulator for VxWorks.
1797 xm_defines=POSIX
1798 tm_file="elfos.h mips/mips.h svr4.h mips/elf.h windiss.h mips/windiss.h"
0ea339ea 1799 tmake_file="${tmake_file} mips/t-elf mips/t-libgcc-mips16"
55047c9d
PE
1800 thread_file=
1801 ;;
74826b0f 1802mipstx39-*-elf* | mipstx39el-*-elf*)
e9475fa3 1803 tm_file="elfos.h ${tm_file} mips/r3900.h mips/elf.h"
0ea339ea 1804 tmake_file="mips/t-r3900 mips/t-libgcc-mips16"
ec2a60b0 1805 use_fixproto=yes
61ed06c3 1806 ;;
bcf684c7 1807mmix-knuth-mmixware)
4977bab6 1808 need_64bit_hwint=yes
bcf684c7 1809 ;;
61ed06c3 1810mn10300-*-*)
c40409ce 1811 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
1812 if test x$stabs = xyes
1813 then
1814 tm_file="${tm_file} dbx.h"
1815 fi
1816 use_collect2=no
ec2a60b0 1817 use_fixproto=yes
61ed06c3 1818 ;;
a3fafcb0 1819mt-*-elf)
c85ba4fb 1820 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
a3fafcb0 1821 tmake_file="${tmake_file} mt/t-mt"
c85ba4fb
AH
1822 ;;
1823ns32k-*-netbsdelf*)
1824 echo "GCC does not yet support the ${target} target"; exit 1
1825 ;;
1826ns32k-*-netbsd*)
1827 tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1828 # On NetBSD, the headers are already okay, except for math.h.
1829 tmake_file="t-netbsd ns32k/t-ns32k"
1830 extra_parts=""
1831 use_collect2=yes
1832 ;;
61ed06c3
HPN
1833pdp11-*-bsd)
1834 tm_file="${tm_file} pdp11/2bsd.h"
ec2a60b0 1835 use_fixproto=yes
61ed06c3
HPN
1836 ;;
1837pdp11-*-*)
ec2a60b0 1838 use_fixproto=yes
61ed06c3 1839 ;;
ca11c37c
ZW
1840# port not yet contributed
1841#powerpc-*-openbsd*)
49721058 1842# tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit "
ca11c37c
ZW
1843# extra_headers=
1844# ;;
2bfcf297 1845powerpc64-*-linux*)
a8e04fe6
AM
1846 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1847 test x$with_cpu != x || cpu_is_64bit=yes
1848 test x$cpu_is_64bit != xyes || tm_file="${tm_file} rs6000/default64.h"
1849 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h"
7f970b70
AM
1850 if test x${enable_secureplt} = xyes; then
1851 tm_file="rs6000/secureplt.h ${tm_file}"
1852 fi
78f5898b 1853 extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
49721058 1854 tmake_file="t-dfprules rs6000/t-fprules ${tmake_file} rs6000/t-ppccomm rs6000/t-linux64 rs6000/t-fprules-softfp soft-fp/t-softfp"
2bfcf297 1855 ;;
ddb28441
RM
1856powerpc64-*-gnu*)
1857 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"
78f5898b 1858 extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
49721058 1859 tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64 rs6000/t-fprules-softfp soft-fp/t-softfp"
ddb28441 1860 ;;
61ed06c3 1861powerpc-*-beos*)
2bfcf297 1862 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
49721058 1863 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-beos"
ba1e6c0b 1864 extra_headers=
ec2a60b0 1865 use_fixproto=yes
61ed06c3 1866 ;;
18922061 1867powerpc-*-darwin*)
78f5898b 1868 extra_options="${extra_options} rs6000/darwin.opt"
747b9f55 1869 extra_parts="crt2.o"
f0b81cbc 1870 case ${target} in
ed5b9f96 1871 *-darwin1[0-9]* | *-darwin[8-9]*)
f7288899 1872 tmake_file="${tmake_file} rs6000/t-darwin8"
ed5b9f96
GK
1873 tm_file="${tm_file} rs6000/darwin8.h"
1874 ;;
1875 *-darwin7*)
1876 tm_file="${tm_file} rs6000/darwin7.h"
1877 ;;
1878 *-darwin[0-6]*)
1879 ;;
f0b81cbc 1880 esac
5fb4cf24 1881 extra_headers=altivec.h
18922061 1882 ;;
b8ec3cc8
EC
1883powerpc64-*-darwin*)
1884 tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
1885 extra_options="${extra_options} ${cpu_type}/darwin.opt"
1886 # We're omitting t-darwin8 to avoid building any multilibs
1887 extra_headers=altivec.h
1888 ;;
b91da81f 1889powerpc*-*-freebsd*)
c40409ce 1890 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
49721058 1891 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
78f5898b 1892 extra_options="${extra_options} rs6000/sysv4.opt"
b91da81f 1893 ;;
edf1b3f3 1894powerpc-*-netbsd*)
a4967b8d
JT
1895 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1896 tmake_file="${tmake_file} rs6000/t-netbsd"
78f5898b 1897 extra_options="${extra_options} rs6000/sysv4.opt"
edf1b3f3 1898 ;;
8da6d80e 1899powerpc-*-chorusos*)
c40409ce 1900 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
49721058 1901 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos rs6000/t-ppccomm"
78f5898b 1902 extra_options="${extra_options} rs6000/sysv4.opt"
769e49eb
NN
1903 case ${enable_threads} in
1904 yes | posix)
1905 thread_file='posix'
1906 ;;
8da6d80e 1907 esac
ec2a60b0 1908 use_fixproto=yes
8da6d80e 1909 ;;
518878e1 1910powerpc-*-eabispe*)
eca0d5e8 1911 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabispe.h"
78f5898b 1912 extra_options="${extra_options} rs6000/sysv4.opt"
00c060a4 1913 tmake_file="rs6000/t-spe rs6000/t-ppccomm"
518878e1 1914 ;;
cf6ede82 1915powerpc-*-eabisimaltivec*)
eca0d5e8 1916 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h rs6000/eabialtivec.h"
78f5898b 1917 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1918 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
cf6ede82 1919 ;;
61ed06c3 1920powerpc-*-eabisim*)
eca0d5e8 1921 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
78f5898b 1922 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1923 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
1924 ;;
1925powerpc-*-elf*)
c40409ce 1926 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
78f5898b 1927 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1928 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
ec2a60b0 1929 use_fixproto=yes
61ed06c3 1930 ;;
10baca6b 1931powerpc-*-eabialtivec*)
eca0d5e8 1932 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabialtivec.h"
78f5898b 1933 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1934 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
10baca6b 1935 ;;
61ed06c3 1936powerpc-*-eabi*)
eca0d5e8 1937 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h"
78f5898b 1938 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1939 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3
HPN
1940 ;;
1941powerpc-*-rtems*)
eca0d5e8 1942 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/rtems.h rtems.h"
78f5898b 1943 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1944 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm"
61ed06c3 1945 ;;
7c942e17 1946powerpc-*-linux*altivec*)
10baca6b 1947 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
78f5898b 1948 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1949 tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
10baca6b 1950 ;;
7c942e17 1951powerpc-*-linux*spe*)
eca0d5e8 1952 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h rs6000/e500.h"
78f5898b 1953 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1954 tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2f3f95e9 1955 ;;
96038623
DE
1956powerpc-*-linux*paired*)
1957 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/750cl.h"
1958 extra_options="${extra_options} rs6000/sysv4.opt"
1959 tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1960 ;;
61ed06c3 1961powerpc-*-linux*)
a8e04fe6 1962 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
78f5898b 1963 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1964 tmake_file="t-dfprules rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
a8e04fe6
AM
1965 case ${enable_targets}:${cpu_is_64bit} in
1966 *powerpc64* | all:* | *:yes)
1967 if test x$cpu_is_64bit = xyes; then
1968 tm_file="${tm_file} rs6000/default64.h"
1969 fi
1970 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h"
1971 tmake_file="$tmake_file rs6000/t-linux64"
f75aac9e 1972 extra_options="${extra_options} rs6000/linux64.opt"
a8e04fe6
AM
1973 ;;
1974 *)
1975 tm_file="${tm_file} rs6000/linux.h"
1976 ;;
1977 esac
7f970b70
AM
1978 if test x${enable_secureplt} = xyes; then
1979 tm_file="rs6000/secureplt.h ${tm_file}"
1980 fi
61ed06c3 1981 ;;
ddb28441
RM
1982powerpc-*-gnu-gnualtivec*)
1983 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"
78f5898b 1984 extra_options="${extra_options} rs6000/sysv4.opt"
49721058 1985 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
ddb28441
RM
1986 if test x$enable_threads = xyes; then
1987 thread_file='posix'
1988 fi
1989 ;;
1990powerpc-*-gnu*)
1991 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"
49721058 1992 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
78f5898b 1993 extra_options="${extra_options} rs6000/sysv4.opt"
ddb28441
RM
1994 if test x$enable_threads = xyes; then
1995 thread_file='posix'
1996 fi
1997 ;;
2eab15c9 1998powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
f4de8ba6 1999 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
49721058 2000 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppccomm rs6000/t-vxworks"
78f5898b 2001 extra_options="${extra_options} rs6000/sysv4.opt"
4977bab6 2002 extra_headers=ppc-asm.h
2eab15c9
PE
2003 case ${target} in
2004 *-vxworksae*)
eca0d5e8 2005 tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksae.h"
2eab15c9
PE
2006 tmake_file="${tmake_file} rs6000/t-vxworksae"
2007 ;;
2008 *-vxworks*)
eca0d5e8 2009 tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
2eab15c9
PE
2010 ;;
2011 esac
4977bab6 2012 ;;
2eab15c9 2013powerpc-wrs-windiss*) # Instruction-level simulator for VxWorks.
bce0deb2 2014 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
49721058 2015 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2016 extra_options="${extra_options} rs6000/sysv4.opt"
2eab15c9 2017 thread_file=""
ec2a60b0 2018 use_fixproto=yes
2eab15c9 2019 ;;
4f587cb0
AN
2020powerpc-*-lynxos*)
2021 xm_defines=POSIX
2022 tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
2023 tmake_file="t-lynx rs6000/t-lynx"
78f5898b 2024 extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
4f587cb0 2025 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
6ac49599 2026 extra_options="${extra_options} lynx.opt"
4f587cb0
AN
2027 thread_file=lynx
2028 gnu_ld=yes
2029 gas=yes
2030 ;;
61ed06c3 2031powerpcle-*-sysv*)
c40409ce 2032 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
49721058 2033 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos rs6000/t-ppccomm"
78f5898b 2034 extra_options="${extra_options} rs6000/sysv4.opt"
ec2a60b0 2035 use_fixproto=yes
61ed06c3
HPN
2036 ;;
2037powerpcle-*-elf*)
c40409ce 2038 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
49721058 2039 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2040 extra_options="${extra_options} rs6000/sysv4.opt"
ec2a60b0 2041 use_fixproto=yes
61ed06c3
HPN
2042 ;;
2043powerpcle-*-eabisim*)
eca0d5e8 2044 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
49721058 2045 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2046 extra_options="${extra_options} rs6000/sysv4.opt"
61ed06c3
HPN
2047 ;;
2048powerpcle-*-eabi*)
eca0d5e8 2049 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h"
49721058 2050 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2051 extra_options="${extra_options} rs6000/sysv4.opt"
61ed06c3 2052 ;;
6b3a0b34
US
2053powerpc-*-kaos*)
2054 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h kaos.h rs6000/kaos-ppc.h"
49721058 2055 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2056 extra_options="${extra_options} rs6000/sysv4.opt"
6b3a0b34
US
2057 ;;
2058powerpcle-*-kaos*)
2059 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h kaos.h rs6000/kaos-ppc.h"
49721058 2060 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2061 extra_options="${extra_options} rs6000/sysv4.opt"
6b3a0b34 2062 ;;
61ed06c3 2063rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
2bfcf297 2064 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
49721058 2065 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-newas"
432218ba 2066 extra_options="${extra_options} rs6000/aix41.opt"
61ed06c3 2067 use_collect2=yes
ba1e6c0b 2068 extra_headers=
ec2a60b0 2069 use_fixproto=yes
61ed06c3
HPN
2070 ;;
2071rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
9739c90c 2072 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
61ed06c3 2073 tmake_file=rs6000/t-aix43
432218ba 2074 extra_options="${extra_options} rs6000/aix64.opt"
61ed06c3
HPN
2075 use_collect2=yes
2076 thread_file='aix'
ba1e6c0b 2077 extra_headers=
61ed06c3 2078 ;;
5f5d5417 2079rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
9739c90c 2080 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
432218ba 2081 extra_options="${extra_options} rs6000/aix64.opt"
61ed06c3 2082 tmake_file=rs6000/t-aix43
61ed06c3
HPN
2083 use_collect2=yes
2084 thread_file='aix'
ba1e6c0b 2085 extra_headers=
61ed06c3 2086 ;;
5f5d5417 2087rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
5f5d5417
DE
2088 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
2089 tmake_file=rs6000/t-aix52
432218ba 2090 extra_options="${extra_options} rs6000/aix64.opt"
5f5d5417
DE
2091 use_collect2=yes
2092 thread_file='aix'
2093 extra_headers=
2094 ;;
0e5a4ad8 2095s390-*-linux*)
c40409ce 2096 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
4dc19cc0 2097 tmake_file="${tmake_file} t-dfprules s390/t-crtstuff s390/t-linux"
9628a767 2098 ;;
0e5a4ad8 2099s390x-*-linux*)
58d10f89 2100 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
70eeb10b
UW
2101 tm_p_file=s390/s390-protos.h
2102 md_file=s390/s390.md
1c0ca89d 2103 extra_modes=s390/s390-modes.def
70eeb10b 2104 out_file=s390/s390.c
4dc19cc0 2105 tmake_file="${tmake_file} t-dfprules s390/t-crtstuff s390/t-linux s390/t-linux64"
9628a767 2106 ;;
24fe22c9 2107s390x-ibm-tpf*)
a8ba31f2
EC
2108 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h s390/tpf.h"
2109 tm_p_file=s390/s390-protos.h
2110 md_file=s390/s390.md
2111 extra_modes=s390/s390-modes.def
2112 out_file=s390/s390.c
2113 extra_parts="crtbeginS.o crtendS.o"
2114 tmake_file="s390/t-crtstuff s390/t-tpf"
2115 thread_file='tpf'
2116 extra_options="${extra_options} s390/tpf.opt"
24fe22c9 2117 ;;
bdcee471
CL
2118score-*-elf)
2119 tm_file="dbxelf.h elfos.h score/elf.h score/score.h"
2120 tmake_file=score/t-score-elf
2121 extra_objs="score-mdaux.o"
2122 ;;
da28a3b9 2123sh-*-elf* | sh[12346l]*-*-elf* | sh*-*-kaos* | \
b55e3aad 2124sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
da28a3b9
JR
2125 sh-*-linux* | sh[346lbe]*-*-linux* | \
2126 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2127 sh64-*-netbsd* | sh64l*-*-netbsd*)
2128 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2129 if test x${with_endian} = x; then
2130 case ${target} in
2131 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2132 shbe-*-* | sheb-*-*) with_endian=big,little ;;
2133 sh[1234]l* | sh[34]*-*-linux*) with_endian=little ;;
2134 shl* | sh64l* | sh*-*-linux* | \
2135 sh5l* | sh-superh-elf) with_endian=little,big ;;
2136 sh[1234]*-*-*) with_endian=big ;;
2137 *) with_endian=big,little ;;
2138 esac
2139 fi
2140 case ${with_endian} in
2141 big|little) tmake_file="${tmake_file} sh/t-1e" ;;
2142 big,little|little,big) ;;
2143 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
2144 esac
2145 case ${with_endian} in
2146 little*) tm_file="sh/little.h ${tm_file}" ;;
2147 esac
2148 tm_file="${tm_file} dbxelf.h elfos.h"
b01bc573 2149 case ${target} in
da28a3b9
JR
2150 sh*-*-netbsd*) ;;
2151 *) tm_file="${tm_file} svr4.h" ;;
dbf87f32 2152 esac
da28a3b9 2153 tm_file="${tm_file} sh/elf.h"
b01bc573 2154 case ${target} in
da28a3b9 2155 sh*-*-linux*) tmake_file="${tmake_file} sh/t-linux"
65f527e0 2156 tm_file="${tm_file} linux.h sh/linux.h" ;;
da28a3b9
JR
2157 sh*-*-kaos*) tm_file="${tm_file} sh/embed-elf.h kaos.h sh/kaos-sh.h"
2158 ;;
2159 sh*-*-netbsd*) tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h" ;;
8c1aaf26
R
2160 sh*-superh-elf) if test x$with_libgloss != xno; then
2161 with_libgloss=yes
2162 tm_file="${tm_file} sh/newlib.h"
2163 fi
8999fdc7
R
2164 tm_file="${tm_file} sh/embed-elf.h sh/superh.h"
2165 tmake_file="${tmake_file} sh/t-superh"
25e651ca 2166 extra_options="${extra_options} sh/superh.opt" ;;
8c1aaf26
R
2167 *) if test x$with_newlib = xyes \
2168 && test x$with_libgloss = xyes; then
2169 tm_file="${tm_file} sh/newlib.h"
2170 fi
2171 tm_file="${tm_file} sh/embed-elf.h" ;;
da28a3b9
JR
2172 esac
2173 case ${target} in
2174 sh5*-*-netbsd*)
2175 # SHmedia, 32-bit ABI
2176 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
2177 ;;
2178 sh64*-netbsd*)
2179 # SHmedia, 64-bit ABI
2180 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
2181 ;;
2182 *-*-netbsd)
2183 tmake_file="${tmake_file} sh/t-netbsd"
2184 ;;
2185 sh64*-*-linux*)
2186 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
2187 tm_file="${tm_file} sh/sh64.h"
2188 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2189 ;;
dbf87f32
R
2190 sh64*)
2191 tmake_file="${tmake_file} sh/t-sh64"
2192 tm_file="${tm_file} sh/sh64.h"
2193 extra_headers="shmedia.h ushmedia.h sshmedia.h"
dbf87f32 2194 ;;
b55e3aad
NC
2195 *-*-symbianelf*)
2196 tmake_file="sh/t-symbian"
2197 tm_file="sh/symbian-pre.h sh/little.h ${tm_file} sh/symbian-post.h"
2198 extra_objs="symbian.o"
2199 extra_parts="crt1.o crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
f7288899 2200 ;;
8bc6e101 2201 esac
da28a3b9
JR
2202 # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2203 case `echo ${target} | sed 's/e[lb]-/-/'` in
2204 sh64*-*-netbsd*) sh_cpu_target=sh5-64media ;;
2205 sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
312209c6
AO
2206 sh4a_single_only*) sh_cpu_target=sh4a-single-only ;;
2207 sh4a_single*) sh_cpu_target=sh4a-single ;;
2208 sh4a_nofpu*) sh_cpu_target=sh4a-nofpu ;;
2209 sh4al) sh_cpu_target=sh4al ;;
2210 sh4a*) sh_cpu_target=sh4a ;;
da28a3b9
JR
2211 sh4_single_only*) sh_cpu_target=sh4-single-only ;;
2212 sh4_single*) sh_cpu_target=sh4-single ;;
2213 sh4_nofpu*) sh_cpu_target=sh4-nofpu ;;
2214 sh4* | sh-superh-*) sh_cpu_target=sh4 ;;
2215 sh3e*) sh_cpu_target=sh3e ;;
2216 sh*-*-netbsd* | sh3*) sh_cpu_target=sh3 ;;
157371cf
AO
2217 sh2a_single_only*) sh_cpu_target=sh2a-single-only ;;
2218 sh2a_single*) sh_cpu_target=sh2a-single ;;
2219 sh2a_nofpu*) sh_cpu_target=sh2a-nofpu ;;
2220 sh2a*) sh_cpu_target=sh2a ;;
da28a3b9
JR
2221 sh2e*) sh_cpu_target=sh2e ;;
2222 sh2*) sh_cpu_target=sh2 ;;
2223 *) sh_cpu_target=sh1 ;;
8f48afc1 2224 esac
8c1aaf26
R
2225 # did the user say --without-fp ?
2226 if test x$with_fp = xno; then
2227 case ${sh_cpu_target} in
2228 sh5-*media) sh_cpu_target=${sh_cpu_target}-nofpu ;;
2229 sh4al | sh1) ;;
2230 sh4a* ) sh_cpu_target=sh4a-nofpu ;;
2231 sh4*) sh_cpu_target=sh4-nofpu ;;
2232 sh3*) sh_cpu_target=sh3 ;;
2233 sh2a*) sh_cpu_target=sh2a-nofpu ;;
2234 sh2*) sh_cpu_target=sh2 ;;
2235 *) echo --without-fp not available for $target: ignored
2236 esac
2237 tm_defines="$tm_defines STRICT_NOFPU=1"
2238 fi
da28a3b9
JR
2239 sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2240 case $sh_cpu_default in
2241 sh5-64media-nofpu | sh5-64media | \
2242 sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
157371cf 2243 sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
312209c6 2244 sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
27a0ce7d 2245 sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
bf09b512 2246 sh3e | sh3 | sh2e | sh2 | sh1) ;;
da28a3b9
JR
2247 "") sh_cpu_default=${sh_cpu_target} ;;
2248 *) echo "with_cpu=$with_cpu not supported"; exit 1 ;;
dbf87f32 2249 esac
da28a3b9
JR
2250 sh_multilibs=${with_multilib_list}
2251 if test x${sh_multilibs} = x ; then
2252 case ${target} in
8c1aaf26 2253 sh64-superh-linux* | \
da28a3b9
JR
2254 sh[1234]*) sh_multilibs=${sh_cpu_target} ;;
2255 sh64* | sh5*) sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
2256 sh-superh-*) sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2257 sh*-*-linux*) sh_multilibs=m1,m3e,m4 ;;
2258 sh*-*-netbsd*) sh_multilibs=m3,m3e,m4 ;;
157371cf 2259 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
da28a3b9 2260 esac
8c1aaf26
R
2261 if test x$with_fp = xno; then
2262 sh_multilibs="`echo $sh_multilibs|sed -e s/m4/sh4-nofpu/ -e s/,m4-[^,]*//g -e s/,m[23]e// -e s/m2a,m2a-single/m2a-nofpu/ -e s/m5-..m....,//g`"
2263 fi
da28a3b9 2264 fi
25e651ca 2265 target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
da28a3b9 2266 tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
25e651ca 2267 sh_multilibs=`echo $sh_multilibs,$sh_cpu_default | sed -e 's/[ ,/][ ,]*/ /g' -e 's/ $//' -e 's/^m/sh/' -e 's/ m/ sh/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
da28a3b9
JR
2268 for sh_multilib in ${sh_multilibs}; do
2269 case ${sh_multilib} in
2270 sh1 | sh2 | sh2e | sh3 | sh3e | \
27a0ce7d 2271 sh4 | sh4-single | sh4-single-only | sh4-nofpu | sh4-300 |\
312209c6 2272 sh4a | sh4a-single | sh4a-single-only | sh4a-nofpu | sh4al | \
157371cf 2273 sh2a | sh2a-single | sh2a-single-only | sh2a-nofpu | \
da28a3b9
JR
2274 sh5-64media | sh5-64media-nofpu | \
2275 sh5-32media | sh5-32media-nofpu | \
2276 sh5-compact | sh5-compact-nofpu)
2277 tmake_file="${tmake_file} sh/t-mlib-${sh_multilib}"
25e651ca 2278 tm_defines="$tm_defines SUPPORT_`echo $sh_multilib|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
da28a3b9
JR
2279 ;;
2280 *)
2281 echo "with_multilib_list=${sh_multilib} not supported."
2282 exit 1
2283 ;;
2284 esac
2285 done
25e651ca 2286 if test x${enable_incomplete_targets} = xyes ; then
c0fb94d7 2287 tm_defines="$tm_defines SUPPORT_SH1=1 SUPPORT_SH2E=1 SUPPORT_SH4=1 SUPPORT_SH4_SINGLE=1 SUPPORT_SH2A=1 SUPPORT_SH2A_SINGLE=1 SUPPORT_SH5_32MEDIA=1 SUPPORT_SH5_32MEDIA_NOFPU=1 SUPPORT_SH5_64MEDIA=1 SUPPORT_SH5_64MEDIA_NOFPU=1"
da28a3b9 2288 fi
ec2a60b0 2289 use_fixproto=yes
fa5322fa 2290 ;;
314733e2 2291sh-*-rtemscoff*)
be33b729 2292 tmake_file="sh/t-sh t-rtems sh/t-rtems"
10d6ea27 2293 tm_file="${tm_file} dbxcoff.h sh/coff.h sh/rtems.h rtems.h"
61ed06c3 2294 ;;
314733e2 2295sh-*-rtems*)
be33b729 2296 tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
314733e2
RC
2297 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h"
2298 ;;
55047c9d
PE
2299sh-wrs-vxworks)
2300 tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
f5c7290e 2301 tm_file="${tm_file} elfos.h svr4.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
55047c9d 2302 ;;
61ed06c3 2303sh-*-*)
10d6ea27 2304 tm_file="${tm_file} dbxcoff.h sh/coff.h"
ec2a60b0 2305 use_fixproto=yes
61ed06c3 2306 ;;
69474c3c 2307sparc-*-netbsdelf*)
0b85af22 2308 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
fe609b0f 2309 extra_options="${extra_options} sparc/long-double-switch.opt"
69474c3c 2310 ;;
91f0fcee 2311sparc64-*-openbsd*)
0b85af22 2312 tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
fe609b0f 2313 extra_options="${extra_options} sparc/little-endian.opt"
91f0fcee
ME
2314 gas=yes gnu_ld=yes
2315 with_cpu=ultrasparc
91f0fcee 2316 ;;
61ed06c3 2317sparc-*-elf*)
81b47219 2318 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp-elf.h"
a261e0cc 2319 tmake_file="sparc/t-elf sparc/t-crtfm"
61ed06c3 2320 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
ec2a60b0 2321 use_fixproto=yes
61ed06c3 2322 ;;
981f6289 2323sparc-*-linux*) # SPARC's running GNU/Linux, libc6
c40409ce 2324 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
fe609b0f 2325 extra_options="${extra_options} sparc/long-double-switch.opt"
fbf2ca7b 2326 tmake_file="${tmake_file} sparc/t-linux sparc/t-crtfm"
61ed06c3 2327 ;;
c7bdf0a6 2328sparc-*-rtems*)
81b47219 2329 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h"
2d69e3cb 2330 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
61ed06c3 2331 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
61ed06c3 2332 ;;
8947df0c 2333sparc64-*-solaris2* | sparcv9-*-solaris2*)
ec23ed60
EB
2334 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h"
2335 case ${target} in
2336 *-*-solaris2.1[0-9]*)
2337 tm_file="${tm_file} sol2-10.h"
2338 ;;
2339 esac
2340 tm_file="${tm_file} sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
3fc602a0
RH
2341 if test x$gnu_ld = xyes; then
2342 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
61ed06c3 2343 fi
f0871dfe 2344 if test x$gas = xyes; then
5d865dac 2345 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
f0871dfe 2346 fi
fdbe66f2 2347 tm_file="${tm_file} tm-dwarf2.h"
a2bec818 2348 tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
61ed06c3 2349 if test x$gnu_ld = xyes; then
7b3a4df5 2350 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 2351 else
7b3a4df5 2352 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 2353 fi
a2bec818
DJ
2354 c_target_objs="sol2-c.o"
2355 cxx_target_objs="sol2-c.o"
07a43492
DJ
2356 extra_objs="sol2.o"
2357 tm_p_file="${tm_p_file} sol2-protos.h"
61ed06c3 2358 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
615be2cf 2359 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
fe7378d2
EB
2360 "":yes:* | yes:yes:* ) thread_file=posix ;;
2361 "":*:yes | yes:*:yes ) thread_file=solaris ;;
615be2cf 2362 esac
4977bab6 2363 need_64bit_hwint=yes
61ed06c3 2364 ;;
8947df0c 2365sparc-*-solaris2*)
18167442
EB
2366 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h"
2367 case ${target} in
2368 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
ec23ed60
EB
2369 tm_file="${tm_file} sol2-6.h"
2370 ;;
2371 *-*-solaris2.1[0-9]*)
2372 tm_file="${tm_file} sol2-10.h"
2373 ;;
18167442
EB
2374 esac
2375 tm_file="${tm_file} sparc/sol2.h"
3fc602a0
RH
2376 if test x$gnu_ld = xyes; then
2377 tm_file="${tm_file} sparc/sol2-gld.h"
61ed06c3 2378 fi
5d865dac
EB
2379 if test x$gas = xyes; then
2380 tm_file="${tm_file} sparc/sol2-gas.h"
2381 fi
a2bec818 2382 tmake_file="t-sol2 sparc/t-sol2 sparc/t-crtfm"
61ed06c3 2383 if test x$gnu_ld = xyes; then
7b3a4df5 2384 tmake_file="$tmake_file t-slibgcc-elf-ver"
61ed06c3 2385 else
7b3a4df5 2386 tmake_file="$tmake_file t-slibgcc-sld"
61ed06c3 2387 fi
b01bc573 2388 case ${target} in
8947df0c
RH
2389 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
2390 if test x$gnu_ld = xno; then
2391 tm_file="${tm_file} sparc/sol26-sld.h"
2392 fi
2393 ;;
f42eccdb 2394 *-*-solaris2.[789] | *-*-solaris2.1[0-9]*)
fdbe66f2 2395 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
3fc602a0
RH
2396 if test x$gnu_ld = xyes; then
2397 tm_file="${tm_file} sparc/sol2-gld-bi.h"
7112135f 2398 fi
f0871dfe
RH
2399 if test x$gas = xyes; then
2400 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2401 fi
fdbe66f2 2402 tm_file="${tm_file} tm-dwarf2.h"
7112135f 2403 tmake_file="$tmake_file sparc/t-sol2-64"
4977bab6 2404 need_64bit_hwint=yes
69bdb292 2405 test x$with_cpu != x || with_cpu=v9
7112135f
AO
2406 ;;
2407 esac
a2bec818
DJ
2408 c_target_objs="sol2-c.o"
2409 cxx_target_objs="sol2-c.o"
07a43492
DJ
2410 extra_objs="sol2.o"
2411 tm_p_file="${tm_p_file} sol2-protos.h"
3fc602a0 2412 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
615be2cf 2413 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
18167442
EB
2414 "":yes:* | yes:yes:* )
2415 case ${target} in
2416 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
2417 thread_file=posix95
2418 ;;
2419 *)
2420 thread_file=posix
2421 ;;
2422 esac
2423 ;;
2424 "":*:yes | yes:*:yes )
2425 thread_file=solaris
2426 ;;
615be2cf 2427 esac
61ed06c3 2428 ;;
61ed06c3 2429sparc-*-sysv4*)
9b8466f4 2430 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sysv4-only.h"
61ed06c3 2431 tmake_file=t-svr4
61ed06c3 2432 extra_parts="crtbegin.o crtend.o"
ec2a60b0 2433 use_fixproto=yes
61ed06c3 2434 ;;
1910440e
RS
2435sparc-wrs-vxworks)
2436 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
2437 tmake_file="${tmake_file} sparc/t-vxworks"
2438 ;;
61ed06c3 2439sparc64-*-elf*)
81b47219 2440 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp64-elf.h"
fe609b0f 2441 extra_options="${extra_options} sparc/little-endian.opt"
2d69e3cb 2442 tmake_file="${tmake_file} sparc/t-crtfm"
61ed06c3 2443 extra_parts="crtbegin.o crtend.o"
ec2a60b0 2444 use_fixproto=yes
61ed06c3 2445 ;;
c7240cbd
DB
2446sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2447 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
fe609b0f 2448 extra_options="${extra_options} sparc/long-double-switch.opt"
2d69e3cb 2449 tmake_file="${tmake_file} sparc/t-crtfm"
c7240cbd 2450 case "x$with_cpu" in
e0054185 2451 xultrasparc) ;;
c7240cbd
DB
2452 x) with_cpu=ultrasparc ;;
2453 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2454 esac
4977bab6 2455 need_64bit_hwint=yes
c7240cbd 2456 ;;
981f6289 2457sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
86f808dc 2458 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
fe609b0f 2459 extra_options="${extra_options} sparc/long-double-switch.opt"
fbf2ca7b 2460 tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
61ed06c3 2461 ;;
4cb7482c 2462sparc64-*-netbsd*)
4cb7482c
MG
2463 tm_file="sparc/biarch64.h ${tm_file}"
2464 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
fe609b0f
EB
2465 extra_options="${extra_options} sparc/long-double-switch.opt"
2466 tmake_file="${tmake_file} sparc/t-netbsd64"
4cb7482c 2467 ;;
85d9c13c
TS
2468spu-*-elf*)
2469 tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h"
2470 tmake_file="spu/t-spu-elf"
2471 extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h"
2472 extra_modes=spu/spu-modes.def
2473 c_target_objs="${c_target_objs} spu-c.o"
2474 cxx_target_objs="${cxx_target_objs} spu-c.o"
2475 ;;
d19fb8e3 2476strongarm-*-elf*)
c40409ce 2477 tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
315cd6b5 2478 tmake_file="arm/t-arm arm/t-strongarm-elf"
d19fb8e3 2479 out_file=arm/arm.c
d19fb8e3 2480 md_file=arm/arm.md
1c0ca89d 2481 extra_modes=arm/arm-modes.def
ec2a60b0 2482 use_fixproto=yes
d19fb8e3 2483 ;;
d19fb8e3 2484strongarm-*-pe)
ca11c37c 2485 tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
315cd6b5 2486 tmake_file="arm/t-arm arm/t-strongarm-pe"
d19fb8e3 2487 out_file=arm/arm.c
d19fb8e3 2488 md_file=arm/arm.md
1c0ca89d 2489 extra_modes=arm/arm-modes.def
c54c7322 2490 extra_options="${extra_options} arm/pe.opt"
d19fb8e3 2491 extra_objs=pe.o
ec2a60b0 2492 use_fixproto=yes
d19fb8e3 2493 ;;
6b3a0b34
US
2494strongarm-*-kaos*)
2495 tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h kaos.h arm/kaos-strongarm.h"
315cd6b5 2496 tmake_file="arm/t-arm arm/t-strongarm-elf"
6b3a0b34
US
2497 out_file=arm/arm.c
2498 md_file=arm/arm.md
2499 extra_modes=arm/arm-modes.def
2500 ;;
70d65164
NC
2501v850e1-*-*)
2502 target_cpu_default="TARGET_CPU_v850e1"
2503 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2504 tm_p_file=v850/v850-protos.h
2505 tmake_file=v850/t-v850e
2506 md_file=v850/v850.md
2507 out_file=v850/v850.c
df3a97a8 2508 extra_options="${extra_options} v850/v850.opt"
70d65164
NC
2509 if test x$stabs = xyes
2510 then
2511 tm_file="${tm_file} dbx.h"
2512 fi
2513 use_collect2=no
2514 c_target_objs="v850-c.o"
2515 cxx_target_objs="v850-c.o"
ec2a60b0 2516 use_fixproto=yes
70d65164 2517 ;;
b4378319
NC
2518v850e-*-*)
2519 target_cpu_default="TARGET_CPU_v850e"
2520 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2521 tm_p_file=v850/v850-protos.h
c490cc89 2522 tmake_file=v850/t-v850e
b4378319
NC
2523 md_file=v850/v850.md
2524 out_file=v850/v850.c
df3a97a8 2525 extra_options="${extra_options} v850/v850.opt"
b4378319
NC
2526 if test x$stabs = xyes
2527 then
2528 tm_file="${tm_file} dbx.h"
2529 fi
2530 use_collect2=no
2531 c_target_objs="v850-c.o"
2532 cxx_target_objs="v850-c.o"
ec2a60b0 2533 use_fixproto=yes
b4378319 2534 ;;
61ed06c3
HPN
2535v850-*-*)
2536 target_cpu_default="TARGET_CPU_generic"
c40409ce 2537 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
61ed06c3
HPN
2538 tmake_file=v850/t-v850
2539 if test x$stabs = xyes
2540 then
2541 tm_file="${tm_file} dbx.h"
2542 fi
2543 use_collect2=no
c3edd394
NC
2544 c_target_objs="v850-c.o"
2545 cxx_target_objs="v850-c.o"
ec2a60b0 2546 use_fixproto=yes
61ed06c3 2547 ;;
8aeea6e6 2548vax-*-bsd*) # VAXen running BSD
169274cd 2549 tm_file="${tm_file} vax/bsd.h"
8f99553f 2550 tmake_file=vax/t-memfuncs
61ed06c3 2551 use_collect2=yes
ec2a60b0 2552 use_fixproto=yes
61ed06c3 2553 ;;
8aeea6e6 2554vax-*-sysv*) # VAXen running system V
61ed06c3 2555 tm_file="${tm_file} vax/vaxv.h"
8f99553f 2556 tmake_file=vax/t-memfuncs
ec2a60b0 2557 use_fixproto=yes
61ed06c3 2558 ;;
69474c3c 2559vax-*-netbsdelf*)
ec20cffb 2560 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
69474c3c 2561 ;;
61ed06c3 2562vax-*-netbsd*)
f982f805 2563 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
61ed06c3 2564 tmake_file=t-netbsd
1169f9e0 2565 extra_parts=""
5721cd84 2566 use_collect2=yes
61ed06c3
HPN
2567 ;;
2568vax-*-openbsd*)
ca11c37c 2569 tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
61ed06c3
HPN
2570 use_collect2=yes
2571 ;;
8aeea6e6 2572vax-*-ultrix*) # VAXen running ultrix
61ed06c3 2573 tm_file="${tm_file} vax/ultrix.h"
8f99553f 2574 tmake_file=vax/t-memfuncs
ec2a60b0 2575 use_fixproto=yes
61ed06c3 2576 ;;
d19fb8e3 2577xscale-*-elf)
c40409ce 2578 tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
315cd6b5 2579 tmake_file="arm/t-arm arm/t-xscale-elf"
d19fb8e3 2580 out_file=arm/arm.c
d19fb8e3 2581 md_file=arm/arm.md
1c0ca89d 2582 extra_modes=arm/arm-modes.def
ec2a60b0 2583 use_fixproto=yes
d19fb8e3
NC
2584 ;;
2585xscale-*-coff)
ca11c37c 2586 tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
315cd6b5 2587 tmake_file="arm/t-arm arm/t-xscale-coff"
d19fb8e3 2588 out_file=arm/arm.c
d19fb8e3 2589 md_file=arm/arm.md
1c0ca89d 2590 extra_modes=arm/arm-modes.def
ec2a60b0 2591 use_fixproto=yes
d19fb8e3 2592 ;;
14d269bb
GK
2593xstormy16-*-elf)
2594 # For historical reasons, the target files omit the 'x'.
c40409ce 2595 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
14d269bb
GK
2596 tm_p_file=stormy16/stormy16-protos.h
2597 md_file=stormy16/stormy16.md
2598 out_file=stormy16/stormy16.c
d45d2353 2599 extra_options=stormy16/stormy16.opt
14d269bb
GK
2600 tmake_file="stormy16/t-stormy16"
2601 extra_parts="crtbegin.o crtend.o"
ec2a60b0 2602 use_fixproto=yes
14d269bb 2603 ;;
03984308
BW
2604xtensa-*-elf*)
2605 tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
1f37a5b2 2606 tmake_file="xtensa/t-xtensa xtensa/t-elf"
03984308
BW
2607 ;;
2608xtensa-*-linux*)
2609 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
65d151a7 2610 tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
03984308 2611 ;;
2beef00e
AO
2612am33_2.0-*-linux*)
2613 tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h mn10300/linux.h"
65d151a7 2614 tmake_file="${tmake_file} mn10300/t-linux"
2beef00e 2615 gas=yes gnu_ld=yes
2beef00e
AO
2616 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2617 use_collect2=no
2618 ;;
38b2d076
DD
2619m32c-*-elf*)
2620 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2621 c_target_objs="m32c-pragma.o"
2622 cxx_target_objs="m32c-pragma.o"
2623 use_fixproto=yes
2624 ;;
61ed06c3 2625*)
b01bc573 2626 echo "*** Configuration ${target} not supported" 1>&2
61ed06c3
HPN
2627 exit 1
2628 ;;
2629esac
2630
f6bc51cb
L
2631case ${target} in
2632i[34567]86-*-linux*aout* | i[34567]86-*-linux*libc1)
2633 tmake_file="${tmake_file} i386/t-gmm_malloc"
2634 ;;
2635i[34567]86-*-linux* | x86_64-*-linux*)
2636 tmake_file="${tmake_file} i386/t-pmm_malloc"
2637 ;;
2638i[34567]86-*-* | x86_64-*-*)
2639 tmake_file="${tmake_file} i386/t-gmm_malloc"
2640 ;;
2641esac
2642
73f09c99 2643# Support for --with-cpu and related options (and a few unrelated options,
a89ea0df 2644# too).
35341073
NN
2645case ${with_cpu} in
2646 yes | no)
2647 echo "--with-cpu must be passed a value" 1>&2
2648 exit 1
2649 ;;
2650esac
83079d89 2651
35341073
NN
2652# If there is no $with_cpu option, try to infer one from ${target}.
2653# This block sets nothing except for with_cpu.
2654if test x$with_cpu = x ; then
2655 case ${target} in
2656 ep9312-*-*)
2657 # A Cirrus ARM variant.
2658 with_cpu="ep9312"
2659 ;;
d326eaf0
JH
2660 i386-*-*)
2661 with_cpu=i386
2662 ;;
35341073
NN
2663 i486-*-*)
2664 with_cpu=i486
2665 ;;
2666 i586-*-*)
43aba518 2667 case ${target_noncanonical} in
35341073
NN
2668 k6_2-*)
2669 with_cpu=k6-2
2670 ;;
2671 k6_3-*)
2672 with_cpu=k6-3
2673 ;;
2674 k6-*)
2675 with_cpu=k6
2676 ;;
2677 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2678 with_cpu=pentium-mmx
2679 ;;
2680 *)
2681 with_cpu=pentium
2682 ;;
2683 esac
2684 ;;
2685 i686-*-* | i786-*-*)
43aba518 2686 case ${target_noncanonical} in
aafc814c 2687 amdfam10-*|barcelona-*)
21efb4d4
HJ
2688 with_cpu=amdfam10
2689 ;;
9a609388 2690 k8-*|opteron-*|athlon_64-*)
35341073
NN
2691 with_cpu=k8
2692 ;;
2693 athlon_xp-*|athlon_mp-*|athlon_4-*)
2694 with_cpu=athlon-4
2695 ;;
2696 athlon_tbird-*|athlon-*)
2697 with_cpu=athlon
2698 ;;
537bbabd
EC
2699 geode-*)
2700 with_cpu=geode
2701 ;;
35341073
NN
2702 pentium2-*)
2703 with_cpu=pentium2
2704 ;;
5bbeea44 2705 pentium3-*|pentium3m-*)
35341073
NN
2706 with_cpu=pentium3
2707 ;;
5bbeea44 2708 pentium4-*|pentium4m-*)
35341073
NN
2709 with_cpu=pentium4
2710 ;;
5bbeea44
JH
2711 prescott-*)
2712 with_cpu=prescott
2713 ;;
2714 nocona-*)
2715 with_cpu=nocona
2716 ;;
30fd45a0
EC
2717 core2-*)
2718 with_cpu=core2
2719 ;;
5bbeea44
JH
2720 pentium_m-*)
2721 with_cpu=pentium-m
2722 ;;
d326eaf0 2723 pentiumpro-*)
35341073
NN
2724 with_cpu=pentiumpro
2725 ;;
d326eaf0
JH
2726 *)
2727 with_cpu=generic
2728 ;;
35341073
NN
2729 esac
2730 ;;
2731 x86_64-*-*)
d326eaf0 2732 case ${target_noncanonical} in
aafc814c 2733 amdfam10-*|barcelona-*)
21efb4d4
HJ
2734 with_cpu=amdfam10
2735 ;;
d326eaf0
JH
2736 k8-*|opteron-*|athlon_64-*)
2737 with_cpu=k8
2738 ;;
2739 nocona-*)
2740 with_cpu=nocona
2741 ;;
30fd45a0
EC
2742 core2-*)
2743 with_cpu=core2
2744 ;;
d326eaf0
JH
2745 *)
2746 with_cpu=generic
2747 ;;
2748 esac
35341073
NN
2749 ;;
2750 alphaev6[78]*-*-*)
2751 with_cpu=ev67
2752 ;;
2753 alphaev6*-*-*)
2754 with_cpu=ev6
2755 ;;
2756 alphapca56*-*-*)
2757 with_cpu=pca56
2758 ;;
2759 alphaev56*-*-*)
2760 with_cpu=ev56
2761 ;;
2762 alphaev5*-*-*)
2763 with_cpu=ev5
2764 ;;
faf9ab98 2765 frv-*-*linux* | frv400-*-*linux*)
34208acf
AO
2766 with_cpu=fr400
2767 ;;
faf9ab98
AH
2768 frv550-*-*linux*)
2769 with_cpu=fr550
2770 ;;
59fbf3cb
NS
2771 m680[012]0-*-*)
2772 with_cpu=`echo ${target} | sed 's/-.*$//'`
2773 ;;
2774 m68k*-*-*)
10e96df4
NS
2775 case "$with_arch" in
2776 "cf")
2777 with_cpu=${default_cf_cpu}
2778 ;;
2779 "" | "m68k")
2780 with_cpu=m${default_m68k_cpu}
2781 ;;
2782 esac
59fbf3cb 2783 ;;
9200d6c8
RS
2784 mips*-*-vxworks)
2785 with_arch=mips2
2786 ;;
35341073
NN
2787 sparc*-*-*)
2788 with_cpu="`echo ${target} | sed 's/-.*$//'`"
35341073
NN
2789 ;;
2790 esac
2791fi
83079d89 2792
78011587 2793# Similarly for --with-float
2d84a437 2794if test x$with_float = x; then
78011587
PB
2795 case ${target} in
2796 ep9312-*-*)
2797 with_float=hard
2798 ;;
2799 esac
2800fi
2801
fe3e7450
AM
2802# Similarly for --with-schedule.
2803if test x$with_schedule = x; then
2804 case ${target} in
2805 hppa1* | parisc1*)
2806 # Override default PA8000 scheduling model.
2807 with_schedule=7100LC
2808 ;;
2809 esac
2810fi
83079d89 2811
fe3e7450
AM
2812# Validate and mark as valid any --with options supported
2813# by this target. In order to use a particular --with option
2814# you must list it in supported_defaults; validating the value
2815# is optional. This case statement should set nothing besides
2816# supported_defaults.
7816bea0 2817
fe3e7450
AM
2818supported_defaults=
2819case "${target}" in
83079d89 2820 alpha*-*-*)
7816bea0
DJ
2821 supported_defaults="cpu tune"
2822 for which in cpu tune; do
2823 eval "val=\$with_$which"
b597bfd8
NN
2824 case "$val" in
2825 "" \
2826 | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
2827 | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
2828 | 21264a)
7816bea0
DJ
2829 ;;
2830 *)
2831 echo "Unknown CPU used in --with-$which=$val" 1>&2
2832 exit 1
2833 ;;
2834 esac
2835 done
2836 ;;
2837
2838 arm*-*-*)
3cf94279 2839 supported_defaults="arch cpu float tune fpu abi mode"
7816bea0 2840 for which in cpu tune; do
2682e19f 2841 # See if it matches any of the entries in arm-cores.def
7816bea0 2842 eval "val=\$with_$which"
b73f075a 2843 if [ x"$val" = x ] \
d98a72fd 2844 || grep "^ARM_CORE(\"$val\"," \
b73f075a
PB
2845 ${srcdir}/config/arm/arm-cores.def \
2846 > /dev/null; then
2847 # Ok
d98a72fd
RE
2848 new_val=`grep "^ARM_CORE(\"$val\"," \
2849 ${srcdir}/config/arm/arm-cores.def | \
2850 sed -e 's/^[^,]*,[ ]*//' | \
2851 sed -e 's/,.*$//'`
32078532 2852 eval "target_${which}_cname=$new_val"
d98a72fd 2853 echo "For $val real value is $new_val"
b73f075a
PB
2854 true
2855 else
2856 echo "Unknown CPU used in --with-$which=$val" 1>&2
2857 exit 1
2682e19f 2858 fi
7816bea0
DJ
2859 done
2860
b597bfd8
NN
2861 case "$with_arch" in
2862 "" \
9b66ebb1 2863 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
fa91adc6
PB
2864 | armv5te | armv6j |armv6k | armv6z | armv6zk \
2865 | iwmmxt | ep9312)
83079d89 2866 # OK
4ed47bea
JM
2867 ;;
2868 *)
7816bea0 2869 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
83079d89 2870 exit 1
73f09c99
DJ
2871 ;;
2872 esac
83079d89 2873
b597bfd8
NN
2874 case "$with_float" in
2875 "" \
9b66ebb1 2876 | soft | hard | softfp)
83079d89 2877 # OK
73f09c99 2878 ;;
83079d89 2879 *)
7816bea0 2880 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
83079d89 2881 exit 1
73f09c99
DJ
2882 ;;
2883 esac
7816bea0 2884
9b66ebb1
PB
2885 case "$with_fpu" in
2886 "" \
88f77cba 2887 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | neon )
9b66ebb1
PB
2888 # OK
2889 ;;
2890 *)
5848830f
PB
2891 echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
2892 exit 1
2893 ;;
2894 esac
2895
2896 case "$with_abi" in
2897 "" \
2898 | apcs-gnu | atpcs | aapcs | iwmmxt )
2899 #OK
2900 ;;
2901 *)
2902 echo "Unknown ABI used in --with-abi=$with_abi"
9b66ebb1
PB
2903 exit 1
2904 ;;
2905 esac
2906
3cf94279
PB
2907 case "$with_mode" in
2908 "" \
2909 | arm | thumb )
2910 #OK
2911 ;;
2912 *)
2913 echo "Unknown mode used in --with-mode=$with_mode"
2914 exit 1
2915 ;;
2916 esac
2917
7816bea0 2918 if test "x$with_arch" != x && test "x$with_cpu" != x; then
5848830f 2919 echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
7816bea0 2920 fi
73f09c99 2921 ;;
73f09c99 2922
34208acf
AO
2923 fr*-*-*linux*)
2924 supported_defaults=cpu
2925 case "$with_cpu" in
2926 fr400) ;;
faf9ab98 2927 fr550) ;;
34208acf
AO
2928 *)
2929 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2930 exit 1
2931 ;;
2932 esac
2933 ;;
2934
7d33c31d 2935 fido-*-* | m680[012]0-*-* | m68k*-*-*)
10e96df4
NS
2936 supported_defaults="arch cpu"
2937 case "$with_arch" in
2938 "" | "m68k"| "cf")
2939 m68k_arch_family="$with_arch"
2940 ;;
2941 *)
2942 echo "Invalid --with-arch=$with_arch" 1>&2
2943 exit 1
2944 ;;
2945 esac
59fbf3cb
NS
2946
2947 # We always have a $with_cpu setting here.
3704aae9 2948 case "$with_cpu" in
900ec02d
JB
2949 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
2950 m68k_cpu_ident=$with_cpu
2951 ;;
2952 "m68020-40")
2953 m68k_cpu_ident=m68020
2954 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
2955 ;;
2956 "m68020-60")
2957 m68k_cpu_ident=m68020
2958 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
3704aae9
RZ
2959 ;;
2960 *)
900ec02d
JB
2961 # We need the C identifier rather than the string.
2962 m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
2963 'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
2964 $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
2965 ${srcdir}/config/m68k/m68k-devices.def`
2966 if [ x"$m68k_cpu_ident" = x ] ; then
2967 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
2968 exit 1
2969 fi
2970 with_cpu="mcpu=$with_cpu"
3704aae9
RZ
2971 ;;
2972 esac
2973 ;;
2974
83079d89 2975 hppa*-*-* | parisc*-*-*)
7816bea0
DJ
2976 supported_defaults="arch schedule"
2977
b597bfd8
NN
2978 case "$with_arch" in
2979 "" | 1.0 | 1.1 | 2.0)
7816bea0
DJ
2980 # OK
2981 ;;
2982 *)
2983 echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
2984 exit 1
2985 ;;
2986 esac
2987
b597bfd8
NN
2988 case "$with_schedule" in
2989 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
83079d89
DJ
2990 # OK
2991 ;;
2992 *)
2993 echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
2994 exit 1
2995 ;;
2996 esac
73f09c99 2997 ;;
73f09c99 2998
83079d89 2999 i[34567]86-*-* | x86_64-*-*)
7816bea0
DJ
3000 supported_defaults="arch cpu tune"
3001 for which in arch cpu tune; do
3002 eval "val=\$with_$which"
16aa42c0 3003 case ${val} in
d326eaf0 3004 i386 | i486 \
16aa42c0
NN
3005 | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
3006 | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
3007 | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
537bbabd 3008 | athlon-4 | athlon-xp | athlon-mp | geode \
d326eaf0
JH
3009 | prescott | pentium-m | pentium4m | pentium3m)
3010 case "${target}" in
3011 x86_64-*-*)
3012 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
3013 exit 1
3014 ;;
3015 esac
3016 # OK
3017 ;;
aafc814c 3018 "" | amdfam10 | barcelona | k8 | opteron | athlon64 | athlon-fx | nocona | core2 | generic)
7816bea0
DJ
3019 # OK
3020 ;;
3021 *)
3022 echo "Unknown CPU given in --with-$which=$val." 1>&2
3023 exit 1
3024 ;;
3025 esac
3026 done
3027 ;;
3028
3029 mips*-*-*)
66471b47 3030 supported_defaults="abi arch float tune divide llsc"
7816bea0 3031
16aa42c0
NN
3032 case ${with_float} in
3033 "" | soft | hard)
83079d89
DJ
3034 # OK
3035 ;;
3036 *)
7816bea0 3037 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
83079d89
DJ
3038 exit 1
3039 ;;
3040 esac
73f09c99 3041
16aa42c0
NN
3042 case ${with_abi} in
3043 "" | 32 | o64 | n32 | 64 | eabi)
83079d89
DJ
3044 # OK
3045 ;;
3046 *)
7816bea0 3047 echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
83079d89
DJ
3048 exit 1
3049 ;;
3050 esac
9f0df97a
DD
3051
3052 case ${with_divide} in
3053 "" | breaks | traps)
3054 # OK
3055 ;;
3056 *)
3057 echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
3058 exit 1
66471b47
DD
3059 ;;
3060 esac
3061
3062 case ${with_llsc} in
3063 yes)
3064 with_llsc=llsc
3065 ;;
3066 no)
3067 with_llsc="no-llsc"
3068 ;;
3069 "")
3070 # OK
3071 ;;
3072 *)
3073 echo "Unknown llsc type used in --with-llsc" 1>&2
3074 exit 1
3075 ;;
9f0df97a 3076 esac
73f09c99 3077 ;;
73f09c99 3078
6e0eea31
NS
3079 mt-*-*)
3080 supported_defaults="arch"
3081
3082 case "$with_arch" in
3083 "" \
3084 | ms1-64-001 \
3085 | ms1-16-002 \
3086 | ms1-16-003 \
3087 | ms2 \
3088 | "")
3089 # OK
3090 ;;
3091 *)
3092 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
3093 exit 1
3094 ;;
3095 esac
3096 ;;
3097
7816bea0
DJ
3098 powerpc*-*-* | rs6000-*-*)
3099 supported_defaults="cpu float tune"
3100
3101 for which in cpu tune; do
3102 eval "val=\$with_$which"
16aa42c0 3103 case ${val} in
1ab1739c
JJ
3104 default32 | default64)
3105 with_which="with_$which"
3106 eval $with_which=
3107 ;;
b0bfee6e
DE
3108 405cr)
3109 tm_defines="${tm_defines} CONFIG_PPC405CR"
3110 eval "with_$which=405"
3111 ;;
1ab1739c 3112 "" | common \
44cd321e 3113 | power | power[23456] | power6x | powerpc | powerpc64 \
16aa42c0
NN
3114 | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
3115 | 401 | 403 | 405 | 405fp | 440 | 440fp | 505 \
3116 | 601 | 602 | 603 | 603e | ec603e | 604 \
3117 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
fe3e7450 3118 | 854[08] | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5)
7816bea0
DJ
3119 # OK
3120 ;;
3121 *)
3122 echo "Unknown cpu used in --with-$which=$val." 1>&2
3123 exit 1
3124 ;;
3125 esac
3126 done
3127 ;;
3128
f13e0d4e
UW
3129 s390*-*-*)
3130 supported_defaults="arch mode tune"
3131
3132 for which in arch tune; do
3133 eval "val=\$with_$which"
16aa42c0 3134 case ${val} in
3443392a 3135 "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec)
f13e0d4e
UW
3136 # OK
3137 ;;
3138 *)
3139 echo "Unknown cpu used in --with-$which=$val." 1>&2
3140 exit 1
3141 ;;
3142 esac
3143 done
3144
16aa42c0
NN
3145 case ${with_mode} in
3146 "" | esa | zarch)
f13e0d4e
UW
3147 # OK
3148 ;;
3149 *)
3150 echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
3151 exit 1
3152 ;;
3153 esac
3154 ;;
3155
da28a3b9
JR
3156 sh[123456ble]-*-* | sh-*-*)
3157 supported_defaults="cpu"
25e651ca 3158 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
da28a3b9
JR
3159 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
3160 # OK
3161 ;;
157371cf
AO
3162 m2a | m2a-single | m2a-single-only | m2a-nofpu)
3163 ;;
312209c6
AO
3164 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
3165 ;;
da28a3b9
JR
3166 *)
3167 echo "Unknown CPU used in --with-cpu=$with_cpu, known values:" 1>&2
3168 echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
312209c6 3169 echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
157371cf 3170 echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
da28a3b9
JR
3171 exit 1
3172 ;;
3173 esac
3174 ;;
83079d89 3175 sparc*-*-*)
7816bea0
DJ
3176 supported_defaults="cpu float tune"
3177
3178 for which in cpu tune; do
3179 eval "val=\$with_$which"
16aa42c0
NN
3180 case ${val} in
3181 "" | sparc | sparcv9 | sparc64 | sparc86x \
3182 | v7 | cypress | v8 | supersparc | sparclite | f930 \
3183 | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
4c837a1e 3184 | v9 | ultrasparc | ultrasparc3 | niagara)
7816bea0
DJ
3185 # OK
3186 ;;
3187 *)
3188 echo "Unknown cpu used in --with-$which=$val" 1>&2
3189 exit 1
3190 ;;
3191 esac
3192 done
73f09c99 3193
16aa42c0
NN
3194 case ${with_float} in
3195 "" | soft | hard)
83079d89
DJ
3196 # OK
3197 ;;
3198 *)
7816bea0 3199 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
83079d89
DJ
3200 exit 1
3201 ;;
3202 esac
73f09c99 3203 ;;
73f09c99 3204
39aeae85
SL
3205 spu-*-*)
3206 supported_defaults="arch tune"
3207
3208 for which in arch tune; do
3209 eval "val=\$with_$which"
3210 case ${val} in
3211 "" | cell | celledp)
3212 # OK
3213 ;;
3214 *)
3215 echo "Unknown cpu used in --with-$which=$val." 1>&2
3216 exit 1
3217 ;;
3218 esac
3219 done
3220 ;;
3221
83079d89 3222 v850*-*-*)
7816bea0 3223 supported_defaults=cpu
16aa42c0
NN
3224 case ${with_cpu} in
3225 "" | v850e | v850e1)
83079d89
DJ
3226 # OK
3227 ;;
3228 *)
3229 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3230 exit 1
3231 ;;
3232 esac
73f09c99 3233 ;;
fe3e7450 3234esac
73f09c99 3235
fe3e7450
AM
3236# Set some miscellaneous flags for particular targets.
3237target_cpu_default2=
3238case ${target} in
83079d89 3239 alpha*-*-*)
83079d89
DJ
3240 if test x$gas = xyes
3241 then
7816bea0 3242 target_cpu_default2="MASK_GAS"
83079d89 3243 fi
73f09c99 3244 ;;
73f09c99 3245
83079d89 3246 arm*-*-*)
32078532
RE
3247 if test x$target_cpu_cname = x
3248 then
3249 target_cpu_default2=TARGET_CPU_generic
3250 else
3251 target_cpu_default2=TARGET_CPU_$target_cpu_cname
3252 fi
83079d89 3253 ;;
0e5a4ad8 3254
83079d89 3255 hppa*-*-* | parisc*-*-*)
d711cf67 3256 target_cpu_default2="MASK_BIG_SWITCH"
83079d89 3257 if test x$gas = xyes
61ed06c3 3258 then
d711cf67 3259 target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
83079d89 3260 fi
73f09c99 3261 ;;
73f09c99 3262
7d33c31d 3263 fido*-*-* | m680[012]0-*-* | m68k*-*-*)
900ec02d 3264 target_cpu_default2=$m68k_cpu_ident
10e96df4
NS
3265 if [ x"$m68k_arch_family" != x ]; then
3266 tmake_file="m68k/t-$m68k_arch_family $tmake_file"
3267 fi
900ec02d
JB
3268 ;;
3269
83079d89 3270 mips*-*-*)
5811cb27
RS
3271 if test x$gnu_ld = xyes
3272 then
21c425ee 3273 target_cpu_default2="MASK_SPLIT_ADDRESSES"
5811cb27 3274 fi
b01bc573 3275 case ${target} in
83079d89
DJ
3276 mips*el-*-*)
3277 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
3278 ;;
3279 esac
83079d89
DJ
3280 if test "x$enable_gofast" = xyes
3281 then
c15c90bb 3282 tm_defines="US_SOFTWARE_GOFAST $tm_defines"
83079d89
DJ
3283 tmake_file="mips/t-gofast $tmake_file"
3284 else
3285 tmake_file="mips/t-mips $tmake_file"
74826b0f
EC
3286 fi
3287 ;;
83079d89
DJ
3288
3289 powerpc*-*-* | rs6000-*-*)
7816bea0
DJ
3290 # FIXME: The PowerPC port uses the value set at compile time,
3291 # although it's only cosmetic.
83079d89 3292 if test "x$with_cpu" != x
61ed06c3 3293 then
83079d89 3294 target_cpu_default2="\\\"$with_cpu\\\""
61ed06c3 3295 fi
83079d89
DJ
3296 out_file=rs6000/rs6000.c
3297 c_target_objs="${c_target_objs} rs6000-c.o"
3298 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
3299 tmake_file="rs6000/t-rs6000 ${tmake_file}"
4d4cbc0e
AH
3300
3301 if test x$enable_e500_double = xyes
3302 then
3303 tm_file="$tm_file rs6000/e500-double.h"
3304 fi
74826b0f 3305 ;;
73f09c99 3306
a6ab9fc0
R
3307 sh[123456ble]*-*-* | sh-*-*)
3308 c_target_objs="${c_target_objs} sh-c.o"
3309 cxx_target_objs="${cxx_target_objs} sh-c.o"
3310 ;;
3311
83079d89 3312 sparc*-*-*)
7816bea0
DJ
3313 # Some standard aliases.
3314 case x$with_cpu in
3315 xsparc)
3316 with_cpu=v7
3317 ;;
7816bea0
DJ
3318 xsparcv9 | xsparc64)
3319 with_cpu=v9
3320 ;;
3321 esac
3322
a4d05547 3323 # The SPARC port checks this value at compile-time.
73f09c99
DJ
3324 target_cpu_default2="TARGET_CPU_$with_cpu"
3325 ;;
83079d89 3326 v850*-*-*)
7816bea0
DJ
3327 # FIXME: The v850 is "special" in that it does not support
3328 # runtime CPU selection, only --with-cpu.
83079d89
DJ
3329 case "x$with_cpu" in
3330 x)
3331 ;;
3332 xv850e)
3333 target_cpu_default2="TARGET_CPU_$with_cpu"
3334 ;;
3335 esac
3336 ;;
fe3e7450 3337esac
61ed06c3 3338
fe3e7450 3339t=
66471b47 3340all_defaults="abi cpu arch tune schedule float mode fpu divide llsc"
fe3e7450
AM
3341for option in $all_defaults
3342do
3343 eval "val=\$with_$option"
3344 if test -n "$val"; then
3345 case " $supported_defaults " in
3346 *" $option "*)
3347 ;;
3348 *)
3349 echo "This target does not support --with-$option." 2>&1
6e0eea31 3350 echo "Valid --with options are: $supported_defaults" 2>&1
fe3e7450
AM
3351 exit 1
3352 ;;
3353 esac
7816bea0 3354
fe3e7450
AM
3355 if test "x$t" = x
3356 then
3357 t="{ \"$option\", \"$val\" }"
3358 else
3359 t="${t}, { \"$option\", \"$val\" }"
7816bea0 3360 fi
7816bea0 3361 fi
fe3e7450 3362done
7816bea0 3363
fe3e7450
AM
3364if test "x$t" = x
3365then
3366 configure_default_options="{ { NULL, NULL} }"
3367else
3368 configure_default_options="{ ${t} }"
3369fi
3370
3371if test "$target_cpu_default2" != ""
3372then
3373 if test "$target_cpu_default" != ""
61ed06c3 3374 then
fe3e7450
AM
3375 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3376 else
3377 target_cpu_default=$target_cpu_default2
61ed06c3 3378 fi
fe3e7450 3379fi
This page took 2.326616 seconds and 5 git commands to generate.