]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config.gcc
* builtins.c (builtin_mathfn_code): Generalize to check whether
[thirdparty/gcc.git] / gcc / config.gcc
CommitLineData
973f8bf3 1# GCC target-specific configuration file.
d0faeb9d 2# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003
3# Free Software Foundation, Inc.
bb607926 4
f12b58b3 5#This file is part of GCC.
bb607926 6
f12b58b3 7#GCC is free software; you can redistribute it and/or modify it under
8#the terms of the GNU General Public License as published by the Free
9#Software Foundation; either version 2, or (at your option) any later
10#version.
bb607926 11
f12b58b3 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.
bb607926 16
17#You should have received a copy of the GNU General Public License
f12b58b3 18#along with GCC; see the file COPYING. If not, write to the Free
19#Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20#02111-1307, USA.
bb607926 21
973f8bf3 22# This is the GCC target-specific configuration file
23# where a configuration type is mapped to different system-specific
24# definitions and files. This is invoked by the autoconf-generated
25# configure script. Putting it in a separate shell file lets us skip
26# running autoconf when modifying target-specific information.
bb607926 27
09c6646e 28# This file switches on the shell variable ${target}, and also uses the
bb607926 29# following shell variables:
30#
31# with_* Various variables as set by configure.
32#
33# enable_threads_flag Either the name, yes or no depending on whether
34# threads support was requested.
35#
bc5ae993 36# default_use_cxa_atexit
37# "no" by default, can be set to "yes" if a target
38# wishes to use __cxa_atexit() by default if the
39# $enable___cxa_atexit variable is not set.
40#
bb607926 41# gas_flag Either yes or no depending on whether GNU as was
42# requested.
43#
44# gnu_ld_flag Either yes or no depending on whether GNU ld was
45# requested.
46
47# This file sets the following shell variables for use by the
48# autoconf-generated configure script:
49#
09c6646e 50# cpu_type The name of the cpu, if different from the first
51# chunk of the canonical target name.
bb607926 52#
8d4f8d46 53# tm_defines List of target macros to define for all compilations.
54#
bb607926 55# tm_file A list of target macro files, if different from
277773bd 56# "$cpu_type/$cpu_type.h". Usually it's constructed
57# per target in a way like this:
7a6d1a72 58# tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
277773bd 59# Note that the preferred order is:
60# - specific target header "${cpu_type}/${cpu_type.h}"
7a6d1a72 61# - generic headers like dbxelf.h elfos.h, netware.h, etc.
277773bd 62# - specializing target headers like ${cpu_type.h}/elf.h
63# This helps to keep OS specific stuff out of the CPU
64# defining header ${cpu_type}/${cpu_type.h}.
bb607926 65#
66# tm_p_file Location of file with declarations for functions
67# in $out_file.
68#
69# out_file The name of the machine description C support
70# file, if different from "$cpu_type/$cpu_type.c".
71#
72# md_file The name of the machine-description file, if
73# different from "$cpu_type/$cpu_type.md".
74#
75# tmake_file A list of machine-description-specific
76# makefile-fragments, if different from
77# "$cpu_type/t-$cpu_type".
78#
b5ccaa7b 79# extra_modes The name of the file containing a list of extra
80# machine modes, if necessary and different from
81# "$cpu_type/$cpu_type-modes.def".
82#
bb607926 83# extra_objs List of extra objects that should be linked into
84# the compiler proper (cc1, cc1obj, cc1plus)
85# depending on target.
86#
87# extra_headers List of used header files from the directory
b965afcd 88# config/${cpu_type}.
bb607926 89#
bb607926 90# extra_passes List of extra executables compiled for this target
91# machine, used for compiling from source to object.
92#
93# extra_parts List of extra object files that should be compiled
94# for this target machine.
95#
96# extra_programs Like extra_passes, but these are used when linking.
97#
424da949 98# c_target_objs List of extra target-dependent objects that be
8daa9e98 99# linked into the C compiler only.
582b17a6 100#
424da949 101# cxx_target_objs List of extra target-dependent objects that be
8daa9e98 102# linked into the C++ compiler only.
582b17a6 103#
eb1bd38b 104# target_gtfiles List of extra source files with type information.
105#
bb607926 106# xm_defines List of macros to define when compiling for the
107# target machine.
108#
109# xm_file List of files to include when compiling for the
110# target machine.
111#
112# use_collect2 Set to yes or no, depending on whether collect2
113# will be used.
114#
115# target_cpu_default Set to override the default target model.
116#
bb607926 117# gdb_needs_out_file_path
118# Set to yes if gdb needs a dir command with
119# `dirname $out_file`.
120#
bb607926 121# thread_file Set to control which thread package to use.
122#
123# gas Set to yes or no depending on whether the target
124# system normally uses GNU as.
805e22b2 125#
126# need_64bit_hwint Set to yes if HOST_WIDE_INT must be 64 bits wide
127# for this target. This is true iff
128# MAX_LONG_TYPE_SIZE is 64. (The code which
129# determines the underlying integral type for
130# HOST_WIDE_INT cannot see the definition of
131# MAX_LONG_TYPE_SIZE.)
7dd97ab6 132#
133# configure_default_options
134# Set to an initializer for configure_default_options
135# in configargs.h, based on --with-cpu et cetera.
4c05f6ec 136#
137# use_fixproto Set to "yes" if fixproto should be run normally,
138# "no" if fixproto should never be run.
bb607926 139
140# The following variables are used in each case-construct to build up the
141# outgoing variables:
142#
bb607926 143# gnu_ld Set to yes or no depending on whether the target
144# system normally uses GNU ld.
145
146out_file=
bb607926 147tmake_file=
148extra_headers=
149extra_passes=
150extra_parts=
151extra_programs=
152extra_objs=
bb607926 153extra_gcc_objs=
8daa9e98 154c_target_objs=
155cxx_target_objs=
8d4f8d46 156tm_defines=
bb607926 157xm_defines=
bb607926 158# Set this to force installation and use of collect2.
159use_collect2=
160# Set this to override the default target model.
161target_cpu_default=
bb607926 162# Set this if gdb needs a dir command with `dirname $out_file`
163gdb_needs_out_file_path=
bb607926 164# Set this to control which thread package will be used.
165thread_file=
166# Reinitialize these from the flag values every loop pass, since some
167# configure entries modify them.
168gas="$gas_flag"
169gnu_ld="$gnu_ld_flag"
170enable_threads=$enable_threads_flag
bc5ae993 171default_use_cxa_atexit=no
22ac052b 172target_gtfiles=
805e22b2 173need_64bit_hwint=
bb607926 174
3b9ee544 175# Default to not using fixproto. Targets which need fixproto should
176# specifically set this to 'yes'.
177use_fixproto=no
4c05f6ec 178
b696fe80 179# Don't carry these over build->host->target. Please.
180xm_file=
181md_file=
182
c2527f80 183# Obsolete configurations.
09c6646e 184case ${target} in
ece7f381 185 dummy)
e48f919a 186 if test "x$enable_obsolete" != xyes; then
09c6646e 187 echo "*** Configuration ${target} is obsolete." >&2
c2527f80 188 echo "*** Specify --enable-obsolete to build it anyway." >&2
189 echo "*** Support will be REMOVED in the next major release of GCC," >&2
190 echo "*** unless a maintainer comes forward." >&2
191 exit 1
192 fi;;
c2527f80 193esac
194
ece7f381 195# Unsupported targets list. Do not put an entry in this list unless
196# it would otherwise be caught by a more permissive pattern. The list
197# should be in alphabetical order.
09c6646e 198case ${target} in
ece7f381 199 alpha*-*-linux*libc1* \
58d1073e 200 | i[34567]86-sequent-sysv \
204f67fd 201 | i[34567]86-sequent-sysv[123]* \
ece7f381 202 | i[34567]86-go32-* \
203 | i[34567]86-*-go32* \
204 | m68k-*-linux*aout* \
205 | m68k-*-linux*libc1* \
206 | mips64orion*-*-rtems* \
207 | powerpc-*-linux*libc1* \
208 | sparc-*-linux*aout* \
209 | sparc-*-linux*libc1* \
210 | sparc-hal-solaris2* \
211 | thumb-*-* \
212 | *-*-linux*coff* \
213 | *-*-linux*oldld* \
214 | *-*-rtemsaout* \
215 | *-*-rtemscoff* \
3598ba3d 216 | vax-*-vms* \
ece7f381 217 )
09c6646e 218 echo "*** Configuration ${target} not supported" 1>&2
ece7f381 219 exit 1
220 ;;
221esac
222
bb607926 223# Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
83287f80 224# updated in each machine entry. Also set default extra_headers for some
225# machines.
bb607926 226tm_p_file=
09c6646e 227cpu_type=`echo ${target} | sed 's/-.*$//'`
228case ${target} in
bb607926 229alpha*-*-*)
230 cpu_type=alpha
805e22b2 231 need_64bit_hwint=yes
bb607926 232 ;;
1acdfc69 233am33_2.0-*-linux*)
234 cpu_type=mn10300
235 ;;
6e421549 236strongarm*-*-*)
237 cpu_type=arm
238 ;;
239arm*-*-*)
240 cpu_type=arm
755eb2b4 241 extra_headers="mmintrin.h"
6e421549 242 ;;
243ep9312*-*-*)
244 cpu_type=arm
245 ;;
246xscale-*-*)
331beb1a 247 cpu_type=arm
755eb2b4 248 extra_headers="mmintrin.h"
331beb1a 249 ;;
bb607926 250i[34567]86-*-*)
251 cpu_type=i386
7a8ca04a 252 extra_headers="mmintrin.h xmmintrin.h emmintrin.h pmmintrin.h"
bb607926 253 ;;
5c66405b 254x86_64-*-*)
255 cpu_type=i386
a45ed6e0 256 extra_headers="mmintrin.h xmmintrin.h emmintrin.h pmmintrin.h"
805e22b2 257 need_64bit_hwint=yes
5c66405b 258 ;;
b965afcd 259ia64-*-*)
260 extra_headers=ia64intrin.h
805e22b2 261 need_64bit_hwint=yes
b965afcd 262 ;;
6630177d 263hppa*-*-* | parisc*-*-*)
bb607926 264 cpu_type=pa
265 ;;
124c3198 266m680[012]0-*-*)
bb607926 267 cpu_type=m68k
83287f80 268 extra_headers=math-68881.h
269 ;;
270m68k-*-*)
271 extra_headers=math-68881.h
bb607926 272 ;;
273mips*-*-*)
274 cpu_type=mips
805e22b2 275 need_64bit_hwint=yes
bb607926 276 ;;
bb607926 277powerpc*-*-*)
278 cpu_type=rs6000
6f0a80d3 279 extra_headers="ppc-asm.h altivec.h spe.h"
805e22b2 280 need_64bit_hwint=yes
281 ;;
282rs6000*-*-*)
283 need_64bit_hwint=yes
284 ;;
285sparc64*-*-*)
286 cpu_type=sparc
287 need_64bit_hwint=yes
bb607926 288 ;;
bb607926 289sparc*-*-*)
290 cpu_type=sparc
291 ;;
805e22b2 292s390*-*-*)
293 need_64bit_hwint=yes
294 ;;
4ee34c70 295# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
296sh[123456789l]*-*-*)
87e19636 297 cpu_type=sh
805e22b2 298 need_64bit_hwint=yes
87e19636 299 ;;
7960374c 300tic4x-*-*)
301 cpu_type=c4x
302 ;;
bb607926 303esac
304
305tm_file=${cpu_type}/${cpu_type}.h
20ffb0b1 306if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
bb607926 307then
20ffb0b1 308 tm_p_file=${cpu_type}/${cpu_type}-protos.h
309fi
b5ccaa7b 310extra_modes=
311if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
312then
313 extra_modes=${cpu_type}/${cpu_type}-modes.def
314fi
a8456aba 315
09c6646e 316case ${target} in
a8456aba 317x86_64-*-*)
318 tm_file="i386/biarch64.h ${tm_file}"
319 ;;
320esac
321
bb607926 322# On a.out targets, we need to use collect2.
09c6646e 323case ${target} in
bb607926 324*-*-*aout*)
325 use_collect2=yes
326 ;;
582b17a6 327esac
bb607926 328
805e22b2 329# Common parts for widely ported systems.
09c6646e 330case ${target} in
1025d5b9 331*-*-darwin*)
332 tm_file="${tm_file} darwin.h"
333 tm_p_file="${tm_p_file} darwin-protos.h"
334 tmake_file="t-darwin"
335 target_gtfiles="\$(srcdir)/config/darwin.c"
336 c_target_objs="darwin-c.o"
337 cxx_target_objs="darwin-c.o"
338 extra_parts="crt2.o"
339 extra_objs="darwin.o"
340 case ${enable_threads} in
341 "" | yes | posix) thread_file='posix' ;;
342 esac
343 ;;
344*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
345 # This is the place-holder for the generic a.out configuration
346 # of FreeBSD. No actual configuration resides here since
347 # there was only ever a bare-bones ix86 configuration for
348 # a.out and it exists solely in the machine-specific section.
349 # This place-holder must exist to avoid dropping into
350 # the generic ELF configuration of FreeBSD (i.e. it must be
351 # ordered before that section).
352 ;;
353*-*-freebsd*)
354 # This is the generic ELF configuration of FreeBSD. Later
355 # machine-specific sections may refine and add to this
356 # configuration.
357 #
358 # Due to tm_file entry ordering issues that vary between cpu
359 # architectures, we only define fbsd_tm_file to allow the
360 # machine-specific section to dictate the final order of all
361 # entries of tm_file with the minor exception that components
362 # of the tm_file set here will always be of the form:
363 #
364 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
365 #
366 # The machine-specific section should not tamper with this
367 # ordering but may order all other entries of tm_file as it
368 # pleases around the provided core setting.
369 gas=yes
370 gnu_ld=yes
371 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
372 case ${target} in
373 *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
374 *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
375 *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
376 *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
377 *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
378 esac
379 tmake_file="t-slibgcc-elf-ver t-freebsd"
380 case ${enable_threads} in
381 no)
382 fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
383 ;;
5614d3f5 384 "" | yes | posix)
1025d5b9 385 thread_file='posix'
386 tmake_file="${tmake_file} t-freebsd-thread"
387 # Before 5.0, FreeBSD can't bind shared libraries to -lc
388 # when "optionally" threaded via weak pthread_* checks.
389 case ${target} in
390 *-*-freebsd[34] | *-*-freebsd[34].*)
391 tmake_file="${tmake_file} t-slibgcc-nolc-override"
392 ;;
393 esac
394 ;;
395 *)
396 echo 'Unknown thread configuration for FreeBSD'
397 exit 1
398 ;;
399 esac
400 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
401 ;;
338f7557 402*-*-linux*libc1* | *-*-linux*aout*)
403 # Avoid the generic linux case.
404 ;;
bb607926 405*-*-linux*)
1025d5b9 406 # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
338f7557 407 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
408 gas=yes
409 gnu_ld=yes
410 case ${enable_threads} in
411 "" | yes | posix) thread_file='posix' ;;
412 esac
413 ;;
2567d1ca 414*-*-gnu*)
338f7557 415 # On the Hurd, the setup is just about the same on
416 # each different CPU. The specific machines that we
417 # support are matched above and just set $cpu_type.
418 tm_file="${cpu_type}/gnu.h"
419 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
420 # GNU tools are the only tools.
421 gas=yes
422 gnu_ld=yes
423 # These details are the same as for Linux.
424 # But here we need a little extra magic.
425 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
426 case ${target} in
427 alpha*)
428 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
429 ;;
430 i[34567]86-*-*)
431 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}"
432 ;;
433 esac
434 ;;
4ace673e 435*-*-netbsd*)
338f7557 436 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
437 gas=yes
438 gnu_ld=yes
b7ac288f 439
338f7557 440 # NetBSD 2.0 and later get POSIX threads enabled by default.
441 # Allow them to be explicitly enabled on any other version.
442 case ${enable_threads} in
443 "")
444 case ${target} in
445 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
446 thread_file='posix'
447 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
448 ;;
449 esac
450 ;;
451 yes | posix)
452 thread_file='posix'
453 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
454 ;;
455 esac
9a33b00e 456
338f7557 457 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
458 # ELF configurations. We will clear extra_parts in the
459 # a.out configurations.
460 case ${target} in
461 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
462 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
463 ;;
464 esac
bc5ae993 465
338f7557 466 # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
467 # default (unless overridden by --disable-__cxa_atexit).
468 case ${target} in
469 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
470 default_use_cxa_atexit=yes
471 ;;
472 esac
473 ;;
1025d5b9 474*-*-openbsd*)
475 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
338f7557 476 case ${enable_threads} in
1025d5b9 477 yes)
338f7557 478 thread_file='posix'
1025d5b9 479 tmake_file="${tmake_file} t-openbsd-thread"
338f7557 480 ;;
481 esac
338f7557 482 ;;
2fcfea2a 483*-*-rtems*)
484 case ${enable_threads} in
485 yes) thread_file='rtems' ;;
486 esac
487 ;;
805e22b2 488*-*-vxworks*)
338f7557 489 tmake_file=t-vxworks
490 tm_file="${tm_file} elfos.h svr4.h vxworks.h"
491 thread_file='vxworks'
492 use_collect2=yes
493 ;;
bb607926 494esac
495
09c6646e 496case ${target} in
bb607926 497# Support site-specific machine types.
498*local*)
09c6646e 499 rest=`echo ${target} | sed -e "s/$cpu_type-//"`
bb607926 500 tm_file=${cpu_type}/$rest.h
e1688c3e 501 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
502 then xm_file=${cpu_type}/xm-$rest.h
bb607926 503 fi
e1688c3e 504 if test -f $srcdir/config/${cpu_type}/t-$rest
505 then tmake_file=${cpu_type}/t-$rest
bb607926 506 fi
507 ;;
9caef960 508alpha*-*-unicosmk*)
509 use_collect2=yes
510 tm_file="${tm_file} alpha/unicosmk.h"
582b17a6 511
9caef960 512 # Don't include t-ieee for now because we don't support that yet
513 # tmake_file="alpha/t-ieee"
514 tmake_file="alpha/t-unicosmk"
3b9ee544 515 use_fixproto=yes
9caef960 516 ;;
bb607926 517alpha*-*-linux*)
518 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
519 target_cpu_default="MASK_GAS"
e1ff7102 520 tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
bb607926 521 ;;
7698a084 522alpha*-*-gnu*)
523 target_cpu_default="MASK_GAS"
524 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
525 ;;
bb607926 526alpha*-*-freebsd*)
1307f5d6 527 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
bb607926 528 target_cpu_default="MASK_GAS"
e1ff7102 529 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
530 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
bb607926 531 ;;
532alpha*-*-netbsd*)
4ace673e 533 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
bb607926 534 target_cpu_default="MASK_GAS"
e1ff7102 535 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
bb607926 536 ;;
bb607926 537alpha*-*-openbsd*)
0ac7fc08 538 tm_defines="OBSD_NO_DYNAMIC_LIBRARIES OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
539 tm_file="alpha/alpha.h openbsd.h alpha/openbsd.h"
bb607926 540 # default x-alpha is only appropriate for dec-osf.
541 target_cpu_default="MASK_GAS"
542 tmake_file="alpha/t-alpha alpha/t-ieee"
543 ;;
41e38a87 544alpha*-dec-osf[45]*)
bb607926 545 if test x$stabs = xyes
546 then
547 tm_file="${tm_file} dbx.h"
548 fi
549 if test x$gas != xyes
550 then
551 extra_passes="mips-tfile mips-tdump"
552 fi
553 use_collect2=yes
41e38a87 554 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
555 tm_file="${tm_file} alpha/osf.h"
b965afcd 556 extra_headers=va_list.h
09c6646e 557 case ${target} in
bb607926 558 *-*-osf4*)
41e38a87 559 # Set target_cpu_default except on 4.0a.
09c6646e 560 case ${target} in
41e38a87 561 *-*-osf4.0a) ;;
562 *) target_cpu_default=MASK_SUPPORT_ARCH
563 esac
bb607926 564 ;;
565 *-*-osf5*)
41e38a87 566 tm_file="${tm_file} alpha/osf5.h"
bb607926 567 target_cpu_default=MASK_SUPPORT_ARCH
568 ;;
569 esac
5614d3f5 570 case ${enable_threads} in
571 "" | yes | posix)
ecd34a08 572 thread_file='posix'
573 tmake_file="${tmake_file} alpha/t-osf-pthread"
574 ;;
575 esac
bb607926 576 ;;
56685c17 577alpha64-dec-*vms*)
f75effa0 578 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
805e22b2 579 xm_file="alpha/xm-vms.h"
56685c17 580 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
56685c17 581 prefix=/gnu
582 local_prefix=/gnu
583 ;;
73777e7b 584alpha*-dec-*vms*)
f75effa0 585 tm_file="${tm_file} alpha/vms.h"
e1688c3e 586 xm_file=alpha/xm-vms.h
bb607926 587 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
73777e7b 588 prefix=/gnu
589 local_prefix=/gnu
bb607926 590 ;;
01d15dc5 591arc-*-elf*)
7a6d1a72 592 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
01d15dc5 593 extra_parts="crtinit.o crtfini.o"
3b9ee544 594 use_fixproto=yes
01d15dc5 595 ;;
bb607926 596arm-*-coff* | armel-*-coff*)
0ac7fc08 597 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h"
bb607926 598 tmake_file=arm/t-arm-coff
599 ;;
bb607926 600arm-semi-aof | armel-semi-aof)
de660240 601 tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
23573244 602 tmake_file=arm/t-semi
bb607926 603 ;;
66f02fd0 604arm*-*-freebsd*|strongarm*-*-freebsd*)
605 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
606 tmake_file="${tmake_file} arm/t-strongarm-elf"
607 ;;
f470dade 608arm*-*-netbsdelf*)
2b6c0e61 609 tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
610 tmake_file="${tmake_file} arm/t-netbsd"
f470dade 611 ;;
bb607926 612arm*-*-netbsd*)
4ace673e 613 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
bb607926 614 tmake_file="t-netbsd arm/t-netbsd"
9a33b00e 615 extra_parts=""
87a1ff8e 616 use_collect2=yes
bb607926 617 ;;
c806acc4 618arm*-*-linux*) # ARM GNU/Linux with ELF
7a6d1a72 619 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h"
32e8a7fc 620 tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
bb607926 621 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
622 gnu_ld=yes
bb607926 623 ;;
624arm*-*-uclinux*) # ARM ucLinux
7a6d1a72 625 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h arm/uclinux-elf.h"
bb607926 626 tmake_file=arm/t-arm-elf
627 ;;
bb607926 628arm*-*-ecos-elf)
7a6d1a72 629 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
bb607926 630 tmake_file=arm/t-arm-elf
582b17a6 631 ;;
214507b9 632arm*-*-rtems*)
214507b9 633 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"
634 tmake_file="arm/t-arm-elf t-rtems"
214507b9 635 ;;
7d57ec45 636arm*-*-elf | ep9312-*-elf)
7a6d1a72 637 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
bb607926 638 tmake_file=arm/t-arm-elf
639 ;;
ebde2335 640arm*-wince-pe*)
0ac7fc08 641 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
ebde2335 642 tmake_file=arm/t-wince-pe
643 extra_objs="pe.o"
644 ;;
bb607926 645arm-*-pe*)
0ac7fc08 646 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h"
bb607926 647 tmake_file=arm/t-pe
648 extra_objs="pe.o"
649 ;;
578f5dbf 650arm*-*-kaos*)
651 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"
652 tmake_file=arm/t-arm-elf
653 ;;
bb607926 654avr-*-*)
0ac7fc08 655 tm_file="avr/avr.h dbxelf.h"
3b9ee544 656 use_fixproto=yes
bb607926 657 ;;
7960374c 658c4x-*-rtems* | tic4x-*-rtems*)
742d48c2 659 tmake_file="c4x/t-c4x t-rtems"
dfaadc1e 660 tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
10cac3d7 661 c_target_objs="c4x-c.o"
662 cxx_target_objs="c4x-c.o"
742d48c2 663 ;;
7960374c 664c4x-* | tic4x-*)
bb607926 665 tmake_file=c4x/t-c4x
10cac3d7 666 c_target_objs="c4x-c.o"
667 cxx_target_objs="c4x-c.o"
bb607926 668 ;;
e03f789f 669cris-*-aout)
277773bd 670 tm_file="dbxelf.h ${tm_file} cris/aout.h"
e03f789f 671 gas=yes
672 tmake_file="cris/t-cris cris/t-aout"
673 ;;
674cris-*-elf | cris-*-none)
7a6d1a72 675 tm_file="dbxelf.h elfos.h ${tm_file}"
e03f789f 676 tmake_file="cris/t-cris cris/t-elfmulti"
677 gas=yes
678 ;;
679cris-*-linux*)
7a6d1a72 680 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
436d6f0d 681 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
e03f789f 682 ;;
bb607926 683d30v-*)
7a6d1a72 684 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
bb607926 685 ;;
686dsp16xx-*)
3b9ee544 687 use_fixproto=yes
bb607926 688 ;;
bb607926 689fr30-*-elf)
7a6d1a72 690 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
bb607926 691 tmake_file=fr30/t-fr30
692 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3b9ee544 693 use_fixproto=yes
bb607926 694 ;;
efb6037d 695frv-*-elf)
696 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
697 tmake_file=frv/t-frv
3b9ee544 698 use_fixproto=yes
efb6037d 699 ;;
742d48c2 700h8300-*-rtems*)
701 tmake_file="h8300/t-h8300 t-rtems"
0ac7fc08 702 tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h h8300/rtems.h rtems.h"
742d48c2 703 ;;
15b65932 704h8300-*-elf*)
705 tmake_file="h8300/t-h8300 h8300/t-elf"
0ac7fc08 706 tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h"
3b9ee544 707 use_fixproto=yes
15b65932 708 ;;
bb607926 709h8300-*-*)
0ac7fc08 710 tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h"
3b9ee544 711 use_fixproto=yes
bb607926 712 ;;
6630177d 713hppa*64*-*-linux* | parisc*64*-*-linux*)
714 target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
9bd9af5d 715 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
716 pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
685a97a8 717 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux64"
6630177d 718 gas=yes gnu_ld=yes
805e22b2 719 need_64bit_hwint=yes
6630177d 720 ;;
721hppa*-*-linux* | parisc*-*-linux*)
ee376abe 722 target_cpu_default="MASK_PA_11 | MASK_NO_SPACE_REGS"
7a6d1a72 723 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
6630177d 724 pa/pa32-regs.h pa/pa32-linux.h"
32e8a7fc 725 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
bb607926 726 ;;
0ac7fc08 727# port not yet contributed.
728#hppa*-*-openbsd*)
729# target_cpu_default="MASK_PA_11"
0ac7fc08 730# ;;
bb607926 731hppa1.1-*-pro*)
732 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
7a6d1a72 733 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
4c05f6ec 734 tmake_file="pa/t-pro"
bb607926 735 ;;
736hppa1.1-*-osf*)
737 target_cpu_default="MASK_PA_11"
0ac7fc08 738 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-osf.h"
4c05f6ec 739 tmake_file="pa/t-pa"
bb607926 740 use_collect2=yes
741 ;;
742hppa1.1-*-rtems*)
743 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
214507b9 744 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
4c05f6ec 745 tmake_file="pa/t-pro t-rtems"
bb607926 746 ;;
bb607926 747hppa1.1-*-bsd*)
0ac7fc08 748 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h"
bb607926 749 target_cpu_default="MASK_PA_11"
4c05f6ec 750 tmake_file="pa/t-pa"
bb607926 751 use_collect2=yes
752 ;;
bb607926 753hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
754 target_cpu_default="MASK_PA_11"
f2f543a3 755 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
8b29fefa 756 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
bb607926 757 if test x$enable_threads = x; then
758 enable_threads=$have_pthread_h
759 fi
760 case x${enable_threads} in
761 xyes | xdce)
762 tmake_file="${tmake_file} pa/t-dce-thr"
763 ;;
764 esac
bb607926 765 use_collect2=yes
3b9ee544 766 use_fixproto=yes
bb607926 767 ;;
768hppa1.0-*-hpux10*)
f2f543a3 769 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
8b29fefa 770 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
bb607926 771 if test x$enable_threads = x; then
772 enable_threads=$have_pthread_h
773 fi
774 case x${enable_threads} in
775 xyes | xdce)
776 tmake_file="${tmake_file} pa/t-dce-thr"
777 ;;
778 esac
bb607926 779 use_collect2=yes
3b9ee544 780 use_fixproto=yes
bb607926 781 ;;
782hppa*64*-*-hpux11*)
9bd9af5d 783 if test x$gas = xyes
784 then
785 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
f2f543a3 786 pa/pa64-regs.h pa/pa-hpux.h \
9bd9af5d 787 pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
788 else
789 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
f2f543a3 790 pa/pa64-regs.h pa/pa-hpux.h \
9bd9af5d 791 pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
792 fi
805e22b2 793 need_64bit_hwint=yes
3c066828 794 tmake_file="pa/t-pa64 pa/t-pa-hpux"
f9f97de8 795 target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
de419443 796 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
b166f502 797 if test x$gnu_ld = xyes
798 then
799 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
800 fi
120a2fed 801 case x${enable_threads} in
802 xyes | xposix )
803 thread_file=posix
804 ;;
805 esac
bb607926 806 ;;
807hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
808 target_cpu_default="MASK_PA_11"
f2f543a3 809 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
8b29fefa 810 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
120a2fed 811 case x${enable_threads} in
812 xyes | xposix )
813 thread_file=posix
814 ;;
815 esac
bb607926 816 use_collect2=yes
817 ;;
818hppa1.0-*-hpux11*)
f2f543a3 819 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
8b29fefa 820 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
120a2fed 821 case x${enable_threads} in
822 xyes | xposix )
823 thread_file=posix
824 ;;
825 esac
bb607926 826 use_collect2=yes
827 ;;
bb607926 828i370-*-opened*) # IBM 360/370/390 Architecture
b1cc82fe 829 xm_defines='FATAL_EXIT_CODE=12'
0ac7fc08 830 tm_file="i370/oe.h i370/i370.h"
4c05f6ec 831 tmake_file="i370/t-i370"
10cac3d7 832 c_target_objs="i370-c.o"
833 cxx_target_objs="i370-c.o"
4c05f6ec 834 # Don't bother fixing up header files; they're weird.
bb607926 835 ;;
836i370-*-mvs*)
b1cc82fe 837 xm_defines='FATAL_EXIT_CODE=12'
0ac7fc08 838 tm_file="i370/mvs.h i370/i370.h"
10cac3d7 839 tmake_file="i370/t-i370"
840 c_target_objs="i370-c.o"
841 cxx_target_objs="i370-c.o"
3b9ee544 842 use_fixproto=yes
bb607926 843 ;;
844i370-*-linux*)
0ac7fc08 845 tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h i370/i370.h"
32e8a7fc 846 tmake_file="t-slibgcc-elf-ver t-linux"
bb607926 847 # broken_install=yes
bb607926 848 ;;
ffd05090 849i[34567]86-*-darwin*)
1638c263 850 tm_file="${tm_file} i386/darwin.h"
3b9ee544 851 use_fixproto=yes
ffd05090 852 ;;
bb607926 853i[34567]86-*-elf*)
d2307a72 854 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
8cff5eeb 855 tmake_file="i386/t-i386elf t-svr4"
3b9ee544 856 use_fixproto=yes
bb607926 857 ;;
bb607926 858i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
b1cc82fe 859 xm_defines="SMALL_ARG_MAX"
ece7f381 860 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
bb607926 861 extra_parts="crtbegin.o crtend.o"
862 tmake_file=i386/t-crtpic
3b9ee544 863 use_fixproto=yes
bb607926 864 ;;
bb607926 865i[34567]86-*-netware) # Intel 80386's running netware
d2307a72 866 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
bb607926 867 ;;
bb607926 868i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
f92a3fd0 869 if test x$gas = xyes
870 then
871 tm_file="${tm_file} usegas.h"
872 fi
b1cc82fe 873 xm_defines="SMALL_ARG_MAX"
d2307a72 874 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
bb607926 875 tmake_file=t-svr4
876 extra_parts="crtbegin.o crtend.o"
3b9ee544 877 use_fixproto=yes
bb607926 878 ;;
bb607926 879i[34567]86-*-aout*)
d2307a72 880 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
3b9ee544 881 use_fixproto=yes
bb607926 882 ;;
883i[34567]86-*-beoself* | i[34567]86-*-beos*)
bb607926 884 tmake_file='i386/t-beos i386/t-crtpic'
d2307a72 885 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
bb607926 886 extra_parts='crtbegin.o crtend.o'
887 ;;
41e38a87 888i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
d2307a72 889 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
bb607926 890 tmake_file=t-freebsd
891 ;;
892i[34567]86-*-freebsd*)
d2307a72 893 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
a8456aba 894 ;;
895x86_64-*-freebsd*)
d2307a72 896 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"
bb607926 897 ;;
f406b863 898i[34567]86-*-netbsdelf*)
d2307a72 899 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
f406b863 900 ;;
bb607926 901i[34567]86-*-netbsd*)
d2307a72 902 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
bb607926 903 tmake_file=t-netbsd
9a33b00e 904 extra_parts=""
87a1ff8e 905 use_collect2=yes
bb607926 906 ;;
8bc47d57 907x86_64-*-netbsd*)
d2307a72 908 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"
8bc47d57 909 ;;
bb607926 910i[34567]86-*-openbsd*)
0ac7fc08 911 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"
c7be79ca 912 # needed to unconfuse gdb
913 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
bb607926 914 # we need collect2 until our bug is fixed...
915 use_collect2=yes
916 ;;
917i[34567]86-*-coff*)
d2307a72 918 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
3b9ee544 919 use_fixproto=yes
bb607926 920 ;;
bb607926 921i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux
922 # with a.out format
4c05f6ec 923 tmake_file="i386/t-crtstuff"
d2307a72 924 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
bb607926 925 gnu_ld=yes
bb607926 926 ;;
927i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux
928 # with ELF format using the
929 # GNU/Linux C library 5
d2307a72 930 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
32e8a7fc 931 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
bb607926 932 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
933 gnu_ld=yes
bb607926 934 if test x$enable_threads = xyes; then
935 thread_file='single'
936 fi
937 ;;
938i[34567]86-*-linux*) # Intel 80386's running GNU/Linux
939 # with ELF format using glibc 2
940 # aka GNU/Linux C library 6
d2307a72 941 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
32e8a7fc 942 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
bb607926 943 ;;
5c66405b 944x86_64-*-linux*)
d2307a72 945 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
277773bd 946 i386/x86-64.h i386/linux64.h"
2ee36fb7 947 tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64"
5c66405b 948 ;;
bb607926 949i[34567]86-*-gnu*)
bb607926 950 ;;
bb607926 951i[34567]86-pc-msdosdjgpp*)
952 xm_file=i386/xm-djgpp.h
f283da8d 953 tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
c070948e 954 tmake_file=i386/t-djgpp
bb607926 955 gnu_ld=yes
956 gas=yes
bb607926 957 ;;
958i[34567]86-moss-msdos* | i[34567]86-*-moss*)
d2307a72 959 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
bb607926 960 tmake_file=t-libc-ok
961 gnu_ld=yes
962 gas=yes
3b9ee544 963 use_fixproto=yes
bb607926 964 ;;
965i[34567]86-*-lynxos*)
966 if test x$gas = xyes
967 then
0ac7fc08 968 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h svr3.h lynx.h i386/lynx.h"
bb607926 969 else
d2307a72 970 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
bb607926 971 fi
3b9ee544 972 use_fixproto=yes
bb607926 973 ;;
974i[34567]86-*-mach*)
d2307a72 975 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
bb607926 976# tmake_file=t-libc-ok
977 use_collect2=yes
3b9ee544 978 use_fixproto=yes
bb607926 979 ;;
b1aac5f5 980i[34567]86-*-nto-qnx*)
0ac7fc08 981 tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
b1aac5f5 982 tmake_file=i386/t-nto
983 gnu_ld=yes
984 gas=yes
985 ;;
41e38a87 986i[34567]86-*-rtems*)
d2307a72 987 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
bb607926 988 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
989 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
990 ;;
991i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
f9e40cfb 992 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/sco5.h"
bb607926 993 if test x$gas = xyes
994 then
f92a3fd0 995 tm_file="usegas.h ${tm_file}"
bb607926 996 fi
f9e40cfb 997 tmake_file=i386/t-sco5
998 extra_parts="crtbegin.o crtend.o"
3b9ee544 999 use_fixproto=yes
bb607926 1000 ;;
bb607926 1001i[34567]86-*-solaris2*)
b1cc82fe 1002 xm_defines="SMALL_ARG_MAX"
0307caef 1003 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
8cff5eeb 1004 tmake_file="i386/t-sol2 t-svr4"
32e8a7fc 1005 if test x$gnu_ld = xyes; then
1006 tmake_file="$tmake_file t-slibgcc-elf-ver"
1007 else
1008 tmake_file="$tmake_file t-slibgcc-sld"
1009 fi
bb607926 1010 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
bb607926 1011 if test x${enable_threads} = x; then
1012 enable_threads=$have_pthread_h
1013 if test x${enable_threads} = x; then
1014 enable_threads=$have_thread_h
1015 fi
1016 fi
1017 if test x${enable_threads} = xyes; then
1018 if test x${have_pthread_h} = xyes; then
1019 thread_file='posix'
1020 else
1021 thread_file='solaris'
1022 fi
1023 fi
1024 ;;
16031d31 1025i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
d2307a72 1026 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
bb607926 1027 if test x$stabs = xyes
1028 then
1029 tm_file="${tm_file} dbx.h"
1030 fi
8cff5eeb 1031 tmake_file="i386/t-crtpic t-svr4"
bb607926 1032 extra_parts="crtbegin.o crtend.o"
1033 if test x$enable_threads = xyes; then
1034 thread_file='posix'
1035 fi
3b9ee544 1036 use_fixproto=yes
bb607926 1037 ;;
1038i[34567]86-*-sysv4*) # Intel 80386's running system V.4
b1cc82fe 1039 xm_defines="SMALL_ARG_MAX"
493529eb 1040 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
bb607926 1041 if test x$stabs = xyes
1042 then
1043 tm_file="${tm_file} dbx.h"
1044 fi
8cff5eeb 1045 tmake_file="i386/t-crtpic t-svr4"
bb607926 1046 extra_parts="crtbegin.o crtend.o"
3b9ee544 1047 use_fixproto=yes
bb607926 1048 ;;
1049i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
d2307a72 1050 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
8cff5eeb 1051 tmake_file="i386/t-crtpic i386/t-udk t-svr4"
bb607926 1052 extra_parts="crtbegin.o crtend.o"
3b9ee544 1053 use_fixproto=yes
bb607926 1054 ;;
bb607926 1055i[34567]86-*-sysv*) # Intel 80386's running system V
bb607926 1056 if test x$gas = xyes
1057 then
1058 if test x$stabs = xyes
1059 then
d2307a72 1060 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
bb607926 1061 tmake_file=i386/t-svr3dbx
41e38a87 1062 extra_parts="svr3.ifile svr3z.ifile"
bb607926 1063 else
d2307a72 1064 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
bb607926 1065 extra_parts="crtbegin.o crtend.o"
1066 tmake_file=i386/t-crtstuff
1067 fi
1068 else
d2307a72 1069 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
bb607926 1070 extra_parts="crtbegin.o crtend.o"
1071 tmake_file=i386/t-crtstuff
1072 fi
1073 tmake_file="$tmake_file i386/t-crtpic"
3b9ee544 1074 use_fixproto=yes
bb607926 1075 ;;
1076i386-*-vsta) # Intel 80386's running VSTa kernel
9d5f6988 1077 xm_file="i386/xm-vsta.h"
1078 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/vsta.h"
3b9ee544 1079 use_fixproto=yes
bb607926 1080 ;;
bb607926 1081i[34567]86-*-pe | i[34567]86-*-cygwin*)
8728e49b 1082 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
e1688c3e 1083 xm_file=i386/xm-cygwin.h
8728e49b 1084 tmake_file="i386/t-cygming i386/t-cygwin"
bb607926 1085 extra_objs=winnt.o
8728e49b 1086 c_target_objs=cygwin2.o
1087 cxx_target_objs=cygwin2.o
bb607926 1088 if test x$enable_threads = xyes; then
8728e49b 1089 thread_file='posix'
bb607926 1090 fi
bb607926 1091 ;;
1092i[34567]86-*-mingw32*)
8728e49b 1093 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
e1688c3e 1094 xm_file=i386/xm-mingw32.h
8728e49b 1095 tmake_file="i386/t-cygming i386/t-mingw32"
bb607926 1096 extra_objs=winnt.o
bb607926 1097 if test x$enable_threads = xyes; then
1098 thread_file='win32'
1099 fi
09c6646e 1100 case ${target} in
170a37e8 1101 *mingw32crt*)
bb607926 1102 tm_file="${tm_file} i386/crtdll.h"
1103 ;;
8728e49b 1104 *mingw32msv* | *mingw32*)
170a37e8 1105 ;;
bb607926 1106 esac
1107 ;;
1108i[34567]86-*-uwin*)
2b41198e 1109 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h"
bb607926 1110 tmake_file="i386/t-cygwin i386/t-uwin"
1111 extra_objs=winnt.o
bb607926 1112 if test x$enable_threads = xyes; then
1113 thread_file='win32'
1114 fi
3b9ee544 1115 use_fixproto=yes
bb607926 1116 ;;
49d31318 1117i[34567]86-*-interix3*)
d2307a72 1118 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"
4c05f6ec 1119 tmake_file="i386/t-interix"
2fbafe8b 1120 extra_objs=winnt.o
49d31318 1121 if test x$enable_threads = xyes ; then
1122 thread_file='posix'
1123 fi
1124 if test x$stabs = xyes ; then
1125 tm_file="${tm_file} dbxcoff.h"
1126 fi
1127 ;;
bb607926 1128i[34567]86-*-interix*)
d2307a72 1129 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
4c05f6ec 1130 tmake_file="i386/t-interix"
2fbafe8b 1131 extra_objs=winnt.o
bb607926 1132 if test x$enable_threads = xyes ; then
1133 thread_file='posix'
1134 fi
1135 if test x$stabs = xyes ; then
1136 tm_file="${tm_file} dbxcoff.h"
1137 fi
1138 ;;
578f5dbf 1139i[34567]86-*-kaos*)
1140 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h kaos.h i386/kaos-i386.h"
1141 tmake_file="i386/t-i386elf t-svr4"
1142 ;;
8dd25e42 1143i860-*-sysv4*)
1144 tm_file="${tm_file} elfos.h svr4.h i860/sysv4.h"
b1564c05 1145 tmake_file="i860/t-i860 i860/t-svr4"
8dd25e42 1146 extra_parts="crtbegin.o crtend.o"
3b9ee544 1147 use_fixproto=yes
8dd25e42 1148 ;;
bb607926 1149i960-*-coff*)
1150 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1151 tmake_file=i960/t-960bare
4f7a0ef9 1152 c_target_objs="i960-c.o"
1153 cxx_target_objs="i960-c.o"
bb607926 1154 ;;
1155i960-*-rtems)
1156 tmake_file="i960/t-960bare t-rtems"
214507b9 1157 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
4f7a0ef9 1158 c_target_objs="i960-c.o"
1159 cxx_target_objs="i960-c.o"
bb607926 1160 ;;
1161i960-*-*) # Default i960 environment.
1162 use_collect2=yes
29122112 1163 tmake_file=i960/t-960bare
4f7a0ef9 1164 c_target_objs="i960-c.o"
1165 cxx_target_objs="i960-c.o"
3b9ee544 1166 use_fixproto=yes
bb607926 1167 ;;
1168ia64*-*-elf*)
7a6d1a72 1169 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
bb607926 1170 tmake_file="ia64/t-ia64"
1171 target_cpu_default="0"
1172 if test x$gas = xyes
1173 then
1174 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1175 fi
1176 if test x$gnu_ld = xyes
1177 then
1178 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1179 fi
127ab935 1180 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
3b9ee544 1181 use_fixproto=yes
bb607926 1182 ;;
49b2e77d 1183ia64*-*-freebsd*)
0670e09b 1184 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
49b2e77d 1185 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1186 tmake_file="${tmake_file} ia64/t-ia64"
127ab935 1187 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
49b2e77d 1188 ;;
bb607926 1189ia64*-*-linux*)
7a6d1a72 1190 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
32e8a7fc 1191 tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
bb607926 1192 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
127ab935 1193 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
805e22b2 1194 if test x"$use_libunwind_exceptions" = xyes; then
1195 tmake_file="$tmake_file t-libunwind"
1196 fi
bb607926 1197 ;;
d838d791 1198ia64*-*-hpux*)
f2f543a3 1199 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h"
4c9b2035 1200 tmake_file="ia64/t-ia64 ia64/t-hpux"
d838d791 1201 target_cpu_default="MASK_GNU_AS"
120a2fed 1202 case x$enable_threads in
1203 xyes | xposix )
1204 thread_file=posix
1205 ;;
1206 esac
297cec9a 1207 use_collect2=no
23ebf0fe 1208 c_target_objs="ia64-c.o"
1209 cxx_target_objs="ia64-c.o"
4c05f6ec 1210 # If we decide to run fixproto we should define FIXPROTO_DEFINES
1211 # in ia64/t-hpux, and also fix the definition of putenv in
1212 # sys-protos.h (const char not char).
d838d791 1213 ;;
3c791c03 1214ip2k-*-elf)
41806125 1215 tm_file="elfos.h ${tm_file}"
3b9ee544 1216 use_fixproto=yes
ee362681 1217 ;;
54f12d76 1218iq2000*-*-elf*)
0ac7fc08 1219 tm_file="svr4.h elfos.h iq2000/iq2000.h"
54f12d76 1220 tmake_file=iq2000/t-iq2000
1221 out_file=iq2000/iq2000.c
54f12d76 1222 md_file=iq2000/iq2000.md
3b9ee544 1223 use_fixproto=yes
54f12d76 1224 ;;
bb607926 1225m32r-*-elf*)
7a6d1a72 1226 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
4f889607 1227 extra_parts="crtinit.o crtfini.o"
3b9ee544 1228 use_fixproto=yes
19cd32af 1229 ;;
bb607926 1230# m68hc11 and m68hc12 share the same machine description.
1231m68hc11-*-*|m6811-*-*)
7a6d1a72 1232 tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
bb607926 1233 tm_p_file="m68hc11/m68hc11-protos.h"
1234 md_file="m68hc11/m68hc11.md"
1235 out_file="m68hc11/m68hc11.c"
1236 tmake_file="m68hc11/t-m68hc11-gas"
3b9ee544 1237 use_fixproto=yes
bb607926 1238 ;;
1239m68hc12-*-*|m6812-*-*)
7a6d1a72 1240 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
bb607926 1241 tm_p_file="m68hc11/m68hc11-protos.h"
bb607926 1242 md_file="m68hc11/m68hc11.md"
1243 out_file="m68hc11/m68hc11.c"
1244 tmake_file="m68hc11/t-m68hc11-gas"
3b9ee544 1245 use_fixproto=yes
bb607926 1246 ;;
bb607926 1247m68000-hp-hpux*) # HP 9000 series 300
0ac7fc08 1248 tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h m68k/hp310.h"
1249 tm_defines="TARGET_DEFAULT=0" # 68000, no 68881, no bitfield ops
bb607926 1250 if test x$gas = xyes
1251 then
0ac7fc08 1252 tm_defines="${tm_defines} DBX_DEBUGGING_INFO=1 USE_GAS"
bb607926 1253 fi
8cff5eeb 1254 tmake_file=m68k/t-hp320
bb607926 1255 use_collect2=yes
3b9ee544 1256 use_fixproto=yes
bb607926 1257 ;;
bb607926 1258m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
0ac7fc08 1259 tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h"
bb607926 1260 if test x$gas = xyes
1261 then
0ac7fc08 1262 tm_defines="DBX_DEBUGGING_INFO=1 USE_GAS"
bb607926 1263 else
0ac7fc08 1264 tm_defines="NO_DOT_IN_LABEL NO_BUGS"
bb607926 1265 fi
bb607926 1266 use_collect2=yes
3b9ee544 1267 use_fixproto=yes
bb607926 1268 ;;
1269m68k-hp-hpux*) # HP 9000 series 300
0ac7fc08 1270 tm_file="m68k/hp320base.h m68k/m68k.h m68k/hp320.h"
bb607926 1271 if test x$gas = xyes
1272 then
0ac7fc08 1273 tm_defines="DBX_DEBUGGING_INFO=1 USE_GAS"
bb607926 1274 fi
bb607926 1275 use_collect2=yes
3b9ee544 1276 use_fixproto=yes
bb607926 1277 ;;
bb607926 1278m68k-*-aout*)
1279 tmake_file=m68k/t-m68kbare
0ac7fc08 1280 tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h"
bb607926 1281 ;;
1282m68k-*-coff*)
1283 tmake_file=m68k/t-m68kbare
0ac7fc08 1284 tm_defines="MOTOROLA USE_GAS"
1285 tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h"
3b9ee544 1286 use_fixproto=yes
bb607926 1287 ;;
1288m68020-*-elf* | m68k-*-elf*)
0ac7fc08 1289 tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
bb607926 1290 tmake_file=m68k/t-m68kelf
37f722b2 1291 extra_parts="crtbegin.o crtend.o"
3b9ee544 1292 use_fixproto=yes
bb607926 1293 ;;
124c3198 1294m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1295 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
09c6646e 1296 case ${target} in
124c3198 1297 m68010*)
1298 target_cpu_default="0"
1299 ;;
1300 *)
1301 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1302 ;;
1303 esac
124c3198 1304 ;;
bb607926 1305m68k*-*-netbsd*)
0ac7fc08 1306 tm_file="m68k/m68k.h netbsd.h netbsd-aout.h m68k/netbsd.h"
bb607926 1307 tmake_file=t-netbsd
9a33b00e 1308 extra_parts=""
87a1ff8e 1309 use_collect2=yes
bb607926 1310 ;;
1311m68k*-*-openbsd*)
c7be79ca 1312 # needed to unconfuse gdb
0ac7fc08 1313 tm_defines="OBSD_OLD_GAS TARGET_DEFAULT=(MASK_68020|MASK_68881|MASK_BITFIELD)"
1314 tm_file="m68k/m68k.h openbsd.h m68k/openbsd.h"
c7be79ca 1315 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
bb607926 1316 # we need collect2 until our bug is fixed...
1317 use_collect2=yes
1318 ;;
bb607926 1319m68k-*-sysv4*) # Motorola m68k's running system V.4
0ac7fc08 1320 tm_file="m68k/m68k.h m68k/sgs.h dbxelf.h elfos.h svr4.h m68k/m68kv4.h"
1321 tm_defines="MOTOROLA SGS SGS_CMP_ORDER SGS_SWITCH_TABLES"
bb607926 1322 tmake_file=t-svr4
1323 extra_parts="crtbegin.o crtend.o"
3b9ee544 1324 use_fixproto=yes
bb607926 1325 ;;
bb607926 1326m68k-*-linux*) # Motorola m68k's running GNU/Linux
1327 # with ELF format using glibc 2
1328 # aka the GNU/Linux C library 6.
0ac7fc08 1329 tm_file="m68k/m68k.h dbxelf.h elfos.h svr4.h linux.h m68k/linux.h"
c402c664 1330 tm_defines="MOTOROLA USE_GAS"
56935b5d 1331 tmake_file="t-slibgcc-elf-ver t-linux"
bb607926 1332 ;;
41e38a87 1333m68k-*-rtems*)
f547383e 1334 tmake_file="m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems"
0ac7fc08 1335 tm_file="m68k/m68k.h m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h"
37f722b2 1336 extra_parts="crtbegin.o crtend.o"
bb607926 1337 ;;
bb607926 1338mcore-*-elf)
7a6d1a72 1339 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
bb607926 1340 tmake_file=mcore/t-mcore
3b9ee544 1341 use_fixproto=yes
bb607926 1342 ;;
1343mcore-*-pe*)
0ac7fc08 1344 tm_file="svr3.h dbxcoff.h ${tm_file} mcore/mcore-pe.h"
bb607926 1345 tmake_file=mcore/t-mcore-pe
3b9ee544 1346 use_fixproto=yes
bb607926 1347 ;;
61ab9ea9 1348mips-sgi-irix6*o32) # SGI System V.4., IRIX 6, O32 ABI
ce10b255 1349 tm_file="${tm_file} mips/iris5.h"
61ab9ea9 1350 if test x$gas = xyes
1351 then
066c0a35 1352 tm_file="${tm_file} mips/sdb.h mips/iris5gas.h mips/iris6-o32-gas.h"
61ab9ea9 1353 if test x$stabs = xyes
1354 then
8a76f31d 1355 tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
61ab9ea9 1356 fi
6cba0fa7 1357 tmake_file=mips/t-iris5-gas
61ab9ea9 1358 else
ce10b255 1359 tm_file="${tm_file} mips/iris6-o32-as.h"
61ab9ea9 1360 tmake_file=mips/t-iris5-as
1361 fi
1362 tm_file="${tm_file} mips/iris6-o32.h"
1363 tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
ce10b255 1364 target_cpu_default="MASK_ABICALLS"
61ab9ea9 1365 # mips-tfile doesn't work yet
1366 # See comment in mips/iris5.h file.
1367 use_collect2=yes
1368# if test x$enable_threads = xyes; then
1369# thread_file='irix'
1370# fi
3b9ee544 1371 use_fixproto=yes
61ab9ea9 1372 ;;
bb607926 1373mips-sgi-irix6*) # SGI System V.4., IRIX 6
ce10b255 1374 tm_file="${tm_file} mips/iris5.h mips/iris6.h"
bb607926 1375 if test "x$gnu_ld" = xyes
1376 then
ce10b255 1377 tm_file="${tm_file} mips/iris6gld.h"
bb607926 1378 fi
61ab9ea9 1379 tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
ce10b255 1380 target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1381 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
bb607926 1382# if test x$enable_threads = xyes; then
1383# thread_file='irix'
1384# fi
3b9ee544 1385 use_fixproto=yes
bb607926 1386 ;;
bb607926 1387mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
ce10b255 1388 tm_file="${tm_file} mips/iris5.h mips/iris6.h mips/cross64.h"
8cff5eeb 1389 tmake_file="mips/t-iris mips/t-cross64"
ce10b255 1390 target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1391 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
bb607926 1392 # See comment in mips/iris[56].h files.
1393 use_collect2=yes
1394# if test x$enable_threads = xyes; then
1395# thread_file='irix'
1396# fi
3b9ee544 1397 use_fixproto=yes
bb607926 1398 ;;
bb607926 1399mips-sgi-irix5*) # SGI System V.4., IRIX 5
ce10b255 1400 tm_file="${tm_file} mips/iris5.h"
bb607926 1401 if test x$gas = xyes
1402 then
066c0a35 1403 tm_file="${tm_file} mips/sdb.h mips/iris5gas.h"
bb607926 1404 if test x$stabs = xyes
1405 then
8a76f31d 1406 tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
bb607926 1407 fi
6cba0fa7 1408 tmake_file=mips/t-iris5-gas
bb607926 1409 else
61ab9ea9 1410 tmake_file=mips/t-iris5-as
bb607926 1411 fi
61ab9ea9 1412 tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
ce10b255 1413 target_cpu_default="MASK_ABICALLS"
bb607926 1414 # mips-tfile doesn't work yet
bb607926 1415 # See comment in mips/iris5.h file.
1416 use_collect2=yes
1417# if test x$enable_threads = xyes; then
1418# thread_file='irix'
1419# fi
3b9ee544 1420 use_fixproto=yes
bb607926 1421 ;;
4ace673e 1422mips*-*-netbsd*) # NetBSD/mips, either endian.
52b9a586 1423 target_cpu_default="MASK_GAS|MASK_ABICALLS"
0ac7fc08 1424 tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
bb607926 1425 ;;
d0faeb9d 1426mips64*-*-linux*)
1427 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
ece7f381 1428 tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux64"
d0faeb9d 1429
1430 # This default ABI is a partial lie: t-linux64 overrides the
1431 # DRIVER_SELF_SPEC that sets the default abi, in the spec file
1432 # that is installed. What GCC thinks of as the default must
1433 # remain as ABI_32 such that the SONAMEs of the libgcc shared
1434 # libraries remain compatible with those of mips-linux-gnu.
1435 tm_defines="MIPS_ISA_DEFAULT=1 MIPS_ABI_DEFAULT=ABI_32"
1436 target_cpu_default="MASK_ABICALLS|MASK_FLOAT64|MASK_64BIT"
1437 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1438 gnu_ld=yes
1439 gas=yes
d0faeb9d 1440 ;;
bb607926 1441mips*-*-linux*) # Linux MIPS, either endian.
858ac7b9 1442 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
09c6646e 1443 case ${target} in
613a38b0 1444 mipsisa32*-*)
613a38b0 1445 target_cpu_default="MASK_SOFT_FLOAT"
3c791c03 1446 tm_defines="MIPS_ISA_DEFAULT=32"
613a38b0 1447 ;;
1448 esac
805e22b2 1449 tmake_file="t-slibgcc-elf-ver t-linux"
bb607926 1450 ;;
0ac7fc08 1451mips*-*-openbsd*)
1452 tm_defines="OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
bb607926 1453 target_cpu_default="MASK_GAS|MASK_ABICALLS"
0ac7fc08 1454 tm_file="mips/mips.h openbsd.h mips/openbsd.h mips/sdb.h"
09c6646e 1455 case ${target} in
0ac7fc08 1456 mips*el-*-openbsd*)
1457 tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1458 *) tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1459 esac
bb607926 1460 ;;
f4deb416 1461mipsisa32-*-elf* | mipsisa32el-*-elf*)
efd092f3 1462 tm_file="${tm_file} mips/elf.h"
582b17a6 1463 tmake_file=mips/t-isa3264
4d5b08a8 1464 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_EABI"
3b9ee544 1465 use_fixproto=yes
582b17a6 1466 ;;
a02568c6 1467mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
1468 tm_file="${tm_file} mips/elf.h"
1469 tmake_file=mips/t-isa3264
1470 tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_EABI"
3b9ee544 1471 use_fixproto=yes
a02568c6 1472 ;;
5381547d 1473mipsisa64-*-elf* | mipsisa64el-*-elf*)
efd092f3 1474 tm_file="${tm_file} mips/elf.h"
5381547d 1475 tmake_file=mips/t-isa3264
1476 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
2c018156 1477 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_EABI"
3b9ee544 1478 use_fixproto=yes
5381547d 1479 ;;
2857c21b 1480mipsisa64sr71k-*-elf*)
1481 tm_file="${tm_file} mips/elf.h"
1482 tmake_file=mips/t-sr71k
1483 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
2c018156 1484 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
3b9ee544 1485 use_fixproto=yes
2857c21b 1486 ;;
19c56034 1487mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
efd092f3 1488 tm_file="${tm_file} mips/elf.h"
19c56034 1489 tmake_file=mips/t-elf
1490 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1491 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
3b9ee544 1492 use_fixproto=yes
19c56034 1493 ;;
f4deb416 1494mips-*-elf* | mipsel-*-elf*)
3c791c03 1495 tm_file="${tm_file} mips/elf.h"
bb607926 1496 tmake_file=mips/t-elf
3b9ee544 1497 use_fixproto=yes
bb607926 1498 ;;
f4deb416 1499mips64-*-elf* | mips64el-*-elf*)
3c791c03 1500 tm_file="${tm_file} mips/elf64.h"
bb607926 1501 tmake_file=mips/t-elf
3c791c03 1502 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1503 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
3b9ee544 1504 use_fixproto=yes
bb607926 1505 ;;
2857c21b 1506mips64vr-*-elf* | mips64vrel-*-elf*)
1507 tm_file="mips/vr.h ${tm_file} mips/elf64.h"
0e760677 1508 tm_defines="MIPS_ABI_DEFAULT=ABI_O64 MIPS_MARCH_CONTROLS_SOFT_FLOAT=1"
2857c21b 1509 tmake_file=mips/t-vr
3b9ee544 1510 use_fixproto=yes
2857c21b 1511 ;;
f4deb416 1512mips64orion-*-elf* | mips64orionel-*-elf*)
3c791c03 1513 tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1514 tmake_file=mips/t-elf
bb607926 1515 tmake_file=mips/t-elf
3c791c03 1516 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1517 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
3b9ee544 1518 use_fixproto=yes
bb607926 1519 ;;
742d48c2 1520mips*-*-rtems*)
3c791c03 1521 tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
46860285 1522 tmake_file="mips/t-elf t-rtems mips/t-rtems"
bb607926 1523 ;;
f4deb416 1524mipstx39-*-elf* | mipstx39el-*-elf*)
efd092f3 1525 tm_file="${tm_file} mips/r3900.h mips/elf.h"
bb607926 1526 tmake_file=mips/t-r3900
3b9ee544 1527 use_fixproto=yes
bb607926 1528 ;;
68cbb7e3 1529mmix-knuth-mmixware)
805e22b2 1530 need_64bit_hwint=yes
68cbb7e3 1531 ;;
bb607926 1532mn10300-*-*)
7a6d1a72 1533 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
bb607926 1534 if test x$stabs = xyes
1535 then
1536 tm_file="${tm_file} dbx.h"
1537 fi
1538 use_collect2=no
3b9ee544 1539 use_fixproto=yes
bb607926 1540 ;;
f470dade 1541ns32k-*-netbsdelf*)
09c6646e 1542 echo "GCC does not yet support the ${target} target"; exit 1
f470dade 1543 ;;
bb607926 1544ns32k-*-netbsd*)
5f16a202 1545 tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
bb607926 1546 # On NetBSD, the headers are already okay, except for math.h.
b2dd7dbf 1547 tmake_file="t-netbsd ns32k/t-ns32k"
9a33b00e 1548 extra_parts=""
87a1ff8e 1549 use_collect2=yes
bb607926 1550 ;;
1551pdp11-*-bsd)
1552 tm_file="${tm_file} pdp11/2bsd.h"
3b9ee544 1553 use_fixproto=yes
bb607926 1554 ;;
1555pdp11-*-*)
3b9ee544 1556 use_fixproto=yes
bb607926 1557 ;;
1558avr-*-*)
3b9ee544 1559 use_fixproto=yes
bb607926 1560 ;;
0ac7fc08 1561# port not yet contributed
1562#powerpc-*-openbsd*)
1563# tmake_file="${tmake_file} rs6000/t-fprules "
1564# extra_headers=
1565# ;;
8eaf2dd1 1566powerpc64-*-linux*)
527d5be8 1567 tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1568 case x$with_cpu in
1569 x|xpowerpc64|xdefault64) tm_file="${tm_file} rs6000/default64.h";;
1570 esac
1571 tm_file="${tm_file} rs6000/linux64.h"
1572 tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-linux rs6000/t-ppccomm rs6000/t-linux64"
8eaf2dd1 1573 ;;
fca26bb8 1574powerpc64-*-gnu*)
1575 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"
1638c263 1576 tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
fca26bb8 1577 ;;
bb607926 1578powerpc-*-beos*)
8eaf2dd1 1579 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
1638c263 1580 tmake_file="rs6000/t-fprules rs6000/t-beos"
83287f80 1581 extra_headers=
3b9ee544 1582 use_fixproto=yes
bb607926 1583 ;;
17ac16a1 1584powerpc-*-darwin*)
1638c263 1585 tm_file="${tm_file} rs6000/darwin.h"
0edab4dd 1586 tmake_file="t-darwin rs6000/t-darwin"
25b7153e 1587 extra_headers=altivec.h
805e22b2 1588 # override ppc default
1589 need_64bit_hwint=
3b9ee544 1590 use_fixproto=yes
17ac16a1 1591 ;;
327811ee 1592powerpc*-*-freebsd*)
7a6d1a72 1593 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1638c263 1594 tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
327811ee 1595 ;;
93006578 1596powerpc-*-netbsd*)
5eeaefac 1597 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1598 tmake_file="${tmake_file} rs6000/t-netbsd"
93006578 1599 ;;
e37e4a50 1600powerpc-*-chorusos*)
7a6d1a72 1601 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
1638c263 1602 tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
5614d3f5 1603 case ${enable_threads} in
1604 yes | posix)
1605 thread_file='posix'
1606 ;;
e37e4a50 1607 esac
3b9ee544 1608 use_fixproto=yes
e37e4a50 1609 ;;
6f0a80d3 1610powerpc-*-eabispe*)
6f0a80d3 1611 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
79bbdafd 1612 tmake_file="rs6000/t-spe rs6000/t-ppccomm"
6f0a80d3 1613 ;;
bbf524e7 1614powerpc-*-eabisimaltivec*)
bbf524e7 1615 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h rs6000/eabialtivec.h"
1638c263 1616 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
bbf524e7 1617 ;;
bb607926 1618powerpc-*-eabisim*)
7a6d1a72 1619 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
1638c263 1620 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
bb607926 1621 ;;
1622powerpc-*-elf*)
7a6d1a72 1623 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1638c263 1624 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
3b9ee544 1625 use_fixproto=yes
bb607926 1626 ;;
553c09a8 1627powerpc-*-eabialtivec*)
553c09a8 1628 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
1638c263 1629 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
553c09a8 1630 ;;
bb607926 1631powerpc-*-eabi*)
7a6d1a72 1632 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
1638c263 1633 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
bb607926 1634 ;;
1635powerpc-*-rtems*)
214507b9 1636 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
ece7f381 1637 tmake_file="rs6000/t-fprules t-rtems rs6000/t-ppccomm"
bb607926 1638 ;;
ece7f381 1639powerpc-*-linux*altivec*)
553c09a8 1640 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
1638c263 1641 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
553c09a8 1642 ;;
ece7f381 1643powerpc-*-linux*spe*)
f797f85f 1644 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h"
1645 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
1646 ;;
bb607926 1647powerpc-*-linux*)
7a6d1a72 1648 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
1638c263 1649 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
bb607926 1650 ;;
fca26bb8 1651powerpc-*-gnu-gnualtivec*)
1652 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"
1638c263 1653 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
fca26bb8 1654 if test x$enable_threads = xyes; then
1655 thread_file='posix'
1656 fi
1657 ;;
1658powerpc-*-gnu*)
1659 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"
1638c263 1660 tmake_file="rs6000/t-fprules rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
fca26bb8 1661 if test x$enable_threads = xyes; then
1662 thread_file='posix'
1663 fi
1664 ;;
bb607926 1665powerpc-wrs-vxworks*)
805e22b2 1666 # We want vxworks.h after rs6000/sysv4.h, which unfortunately
1667 # means we have to redo the tm_file list from scratch.
1668 tm_file="rs6000/rs6000.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1669 tm_file="${tm_file} vxworks.h rs6000/vxworks.h"
1638c263 1670 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
805e22b2 1671 extra_headers=ppc-asm.h
1672 ;;
16d627c6 1673powerpc-wrs-windiss*)
16d627c6 1674 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
1638c263 1675 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
16d627c6 1676 thread_file=""
3b9ee544 1677 use_fixproto=yes
16d627c6 1678 ;;
bb607926 1679powerpcle-*-sysv*)
7a6d1a72 1680 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1638c263 1681 tmake_file="rs6000/t-fprules rs6000/t-ppcos rs6000/t-ppccomm"
3b9ee544 1682 use_fixproto=yes
bb607926 1683 ;;
1684powerpcle-*-elf*)
7a6d1a72 1685 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
1638c263 1686 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
3b9ee544 1687 use_fixproto=yes
bb607926 1688 ;;
1689powerpcle-*-eabisim*)
7a6d1a72 1690 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/eabisim.h"
1638c263 1691 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
bb607926 1692 ;;
1693powerpcle-*-eabi*)
7a6d1a72 1694 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
1638c263 1695 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
bb607926 1696 ;;
578f5dbf 1697powerpc-*-kaos*)
1698 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h kaos.h rs6000/kaos-ppc.h"
1699 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1700 ;;
1701powerpcle-*-kaos*)
1702 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"
1703 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
1704 ;;
bb607926 1705rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
8eaf2dd1 1706 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
1638c263 1707 tmake_file="rs6000/t-fprules rs6000/t-newas"
bb607926 1708 use_collect2=yes
83287f80 1709 extra_headers=
3b9ee544 1710 use_fixproto=yes
bb607926 1711 ;;
1712rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
527d5be8 1713 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
bb607926 1714 tmake_file=rs6000/t-aix43
bb607926 1715 use_collect2=yes
1716 thread_file='aix'
83287f80 1717 extra_headers=
bb607926 1718 ;;
b1974978 1719rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
527d5be8 1720 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
bb607926 1721 tmake_file=rs6000/t-aix43
bb607926 1722 use_collect2=yes
1723 thread_file='aix'
83287f80 1724 extra_headers=
bb607926 1725 ;;
b1974978 1726rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
b1974978 1727 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
1728 tmake_file=rs6000/t-aix52
1729 use_collect2=yes
1730 thread_file='aix'
1731 extra_headers=
1732 ;;
bb607926 1733rs6000-*-lynxos*)
0ac7fc08 1734 tm_file="svr3.h lynx.h rs6000/lynxbase.h rs6000/rs6000.h rs6000/lynx.h"
1638c263 1735 tmake_file=rs6000/t-fprules
bb607926 1736 use_collect2=yes
3b9ee544 1737 use_fixproto=yes
bb607926 1738 ;;
582b17a6 1739s390-*-linux*)
7a6d1a72 1740 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
1b2d98e9 1741 tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff"
346e8a0c 1742 ;;
582b17a6 1743s390x-*-linux*)
d50213e6 1744 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
48de175f 1745 tm_p_file=s390/s390-protos.h
1746 md_file=s390/s390.md
b5ccaa7b 1747 extra_modes=s390/s390-modes.def
48de175f 1748 out_file=s390/s390.c
1b2d98e9 1749 tmake_file="t-slibgcc-elf-ver t-linux s390/t-crtstuff s390/t-linux64"
346e8a0c 1750 ;;
578f5dbf 1751sh-*-elf* | sh[2346l]*-*-elf* | sh*-*-kaos*)
bb607926 1752 tmake_file="sh/t-sh sh/t-elf"
09c6646e 1753 case ${target} in
febf5bcd 1754 shl* | sh64l*)
1755 tm_file="sh/little.h ${tm_file}"
1756 tmake_file="${tmake_file} sh/t-le"
1757 ;;
1758 esac
0ac7fc08 1759 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h"
09c6646e 1760 case ${target} in
febf5bcd 1761 sh64*)
1762 tmake_file="${tmake_file} sh/t-sh64"
1763 tm_file="${tm_file} sh/sh64.h"
1764 extra_headers="shmedia.h ushmedia.h sshmedia.h"
febf5bcd 1765 ;;
493914a8 1766 sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
1767 sh4*) target_cpu_default="SELECT_SH4" ;;
1768 sh3e*) target_cpu_default="SELECT_SH3E" ;;
1769 sh3*) target_cpu_default="SELECT_SH3" ;;
87ed74ef 1770 sh2e*) target_cpu_default="SELECT_SH2E" ;;
493914a8 1771 sh2*) target_cpu_default="SELECT_SH2" ;;
1772 esac
09c6646e 1773 case ${target} in
493914a8 1774 sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
aa76b2b5 1775 esac
09c6646e 1776 case ${target} in
578f5dbf 1777 sh*-*-kaos*) tm_file="${tm_file} kaos.h sh/kaos-sh.h" ;;
febf5bcd 1778 esac
3b9ee544 1779 use_fixproto=yes
87e19636 1780 ;;
bb607926 1781sh-*-rtemself*)
1782 tmake_file="sh/t-sh sh/t-elf t-rtems"
0ac7fc08 1783 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h"
bb607926 1784 ;;
1785sh-*-rtems*)
1786 tmake_file="sh/t-sh t-rtems"
1566e12e 1787 tm_file="${tm_file} dbxcoff.h sh/coff.h sh/rtems.h rtems.h"
bb607926 1788 ;;
493914a8 1789sh-*-linux* | sh[2346lbe]*-*-linux*)
84c7b766 1790 tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux"
09c6646e 1791 case ${target} in
493914a8 1792 sh*be-*-* | sh*eb-*-*) ;;
1793 *)
1794 tm_file="sh/little.h ${tm_file}"
1795 tmake_file="${tmake_file} sh/t-le"
1796 ;;
1797 esac
84c7b766 1798 tmake_file="${tmake_file} sh/t-linux"
493914a8 1799 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
09c6646e 1800 case ${target} in
493914a8 1801 sh64*)
1802 tmake_file="${tmake_file} sh/t-sh64"
1803 tm_file="${tm_file} sh/sh64.h"
1804 extra_headers="shmedia.h ushmedia.h sshmedia.h"
493914a8 1805 ;;
1806 sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
1807 sh4*) target_cpu_default="SELECT_SH4" ;;
1808 sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
1809 sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
1810 sh3e*) target_cpu_default="SELECT_SH3E" ;;
1811 sh3*) target_cpu_default="SELECT_SH3" ;;
87ed74ef 1812 sh2e[lb]e*) target_cpu_default="SELECT_SH2E" ;;
1813 sh2e[lb]*) target_cpu_default="SELECT_SH2" ;;
1814 sh2e*) target_cpu_default="SELECT_SH2E" ;;
493914a8 1815 sh2*) target_cpu_default="SELECT_SH2" ;;
1816 esac
09c6646e 1817 case ${target} in
493914a8 1818 sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
1819 esac
bb607926 1820 ;;
dca09811 1821sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
1822 sh64-*-netbsd* | sh64l*-*-netbsd*)
4ee34c70 1823 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
1824 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
09c6646e 1825 case ${target} in
4ee34c70 1826 sh*l*-*)
1827 tm_file="sh/little.h ${tm_file}"
1828 tmake_file="${tmake_file} sh/t-le"
1829 ;;
1830 *)
1831 tmake_file="${tmake_file} sh/t-be"
1832 ;;
1833 esac
09c6646e 1834 case ${target} in
dca09811 1835 sh5*-*)
1836 # SHmedia, 32-bit ABI
87ed74ef 1837 target_cpu_default="SH5_BIT|SH4_BIT|SH3_BIT|SH_E_BIT"
61ddddf5 1838 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
dca09811 1839 ;;
1840 sh64*-*)
1841 # SHmedia, 64-bit ABI
1842 target_cpu_default="SH5_BIT|SH4_BIT"
61ddddf5 1843 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
dca09811 1844 ;;
1845 *)
1846 # SH3, software floating point
1847 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
1848 tmake_file="${tmake_file} sh/t-netbsd"
1849 ;;
1850 esac
4ee34c70 1851 ;;
bb607926 1852sh-*-*)
1566e12e 1853 tm_file="${tm_file} dbxcoff.h sh/coff.h"
3b9ee544 1854 use_fixproto=yes
bb607926 1855 ;;
1856sparc-tti-*)
da88aad2 1857 tm_file="${tm_file} sparc/pbd.h"
3b9ee544 1858 use_fixproto=yes
bb607926 1859 ;;
f470dade 1860sparc-*-netbsdelf*)
1897a3df 1861 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
f470dade 1862 ;;
bb607926 1863sparc-*-openbsd*)
0ac7fc08 1864 tm_defines=OBSD_OLD_GAS
1865 tm_file="sparc/sparc.h openbsd.h sparc/openbsd.h"
c7be79ca 1866 # needed to unconfuse gdb
1867 tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
bb607926 1868 # we need collect2 until our bug is fixed...
1869 use_collect2=yes
1870 ;;
61f2f0de 1871sparc64-*-openbsd*)
1872 tm_file="sparc/openbsd1-64.h sparc/sparc.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
61f2f0de 1873 gas=yes gnu_ld=yes
1874 with_cpu=ultrasparc
61f2f0de 1875 ;;
bb607926 1876sparc-*-elf*)
0307caef 1877 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
f24facde 1878 tmake_file="sparc/t-elf sparc/t-crtfm"
bb607926 1879 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3b9ee544 1880 use_fixproto=yes
bb607926 1881 ;;
7800959d 1882sparc-*-linux*) # SPARC's running GNU/Linux, libc6
7a6d1a72 1883 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
f24facde 1884 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
bb607926 1885 ;;
41e38a87 1886sparc-*-rtems*)
0307caef 1887 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
8c9facdb 1888 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
bb607926 1889 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
bb607926 1890 ;;
8ed09732 1891sparc64-*-solaris2* | sparcv9-*-solaris2*)
0307caef 1892 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
d5a614bc 1893 if test x$gnu_ld = xyes; then
1894 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
bb607926 1895 fi
b25d9808 1896 if test x$gas = xyes; then
1897 tm_file="${tm_file} sparc/sol2-gas-bi.h"
1898 fi
f24facde 1899 tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
bb607926 1900 if test x$gnu_ld = xyes; then
32e8a7fc 1901 tmake_file="$tmake_file t-slibgcc-elf-ver"
bb607926 1902 else
32e8a7fc 1903 tmake_file="$tmake_file t-slibgcc-sld"
bb607926 1904 fi
bb607926 1905 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
bb607926 1906 if test x${enable_threads} = x ; then
1907 enable_threads=$have_pthread_h
1908 if test x${enable_threads} = x ; then
1909 enable_threads=$have_thread_h
1910 fi
1911 fi
1912 if test x${enable_threads} = xyes ; then
1913 if test x${have_pthread_h} = xyes ; then
1914 thread_file='posix'
1915 else
1916 thread_file='solaris'
1917 fi
1918 fi
805e22b2 1919 need_64bit_hwint=yes
bb607926 1920 ;;
8ed09732 1921sparc-*-solaris2*)
0307caef 1922 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
d5a614bc 1923 if test x$gnu_ld = xyes; then
1924 tm_file="${tm_file} sparc/sol2-gld.h"
bb607926 1925 fi
f24facde 1926 tmake_file="sparc/t-sol2 sparc/t-crtfm"
bb607926 1927 if test x$gnu_ld = xyes; then
32e8a7fc 1928 tmake_file="$tmake_file t-slibgcc-elf-ver"
bb607926 1929 else
32e8a7fc 1930 tmake_file="$tmake_file t-slibgcc-sld"
bb607926 1931 fi
09c6646e 1932 case ${target} in
8ed09732 1933 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
1934 if test x$gnu_ld = xno; then
1935 tm_file="${tm_file} sparc/sol26-sld.h"
1936 fi
1937 ;;
3c00589d 1938 *-*-solaris2.[789] | *-*-solaris2.1[0-9])
d5a614bc 1939 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
1940 if test x$gnu_ld = xyes; then
1941 tm_file="${tm_file} sparc/sol2-gld-bi.h"
046d147a 1942 fi
b25d9808 1943 if test x$gas = xyes; then
1944 tm_file="${tm_file} sparc/sol2-gas-bi.h"
1945 fi
046d147a 1946 tmake_file="$tmake_file sparc/t-sol2-64"
805e22b2 1947 need_64bit_hwint=yes
046d147a 1948 ;;
1949 esac
d5a614bc 1950 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
bb607926 1951 if test x${enable_threads} = x; then
1952 enable_threads=$have_pthread_h
1953 if test x${enable_threads} = x; then
1954 enable_threads=$have_thread_h
1955 fi
1956 fi
1957 if test x${enable_threads} = xyes; then
1958 if test x${have_pthread_h} = xyes; then
1959 thread_file='posix'
1960 else
1961 thread_file='solaris'
1962 fi
1963 fi
1964 ;;
bb607926 1965sparc-*-sysv4*)
06585cbc 1966 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sysv4-only.h"
bb607926 1967 tmake_file=t-svr4
bb607926 1968 extra_parts="crtbegin.o crtend.o"
3b9ee544 1969 use_fixproto=yes
bb607926 1970 ;;
bb607926 1971sparclite-*-coff*)
f2f543a3 1972 tm_file="${tm_file} sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
bb607926 1973 tmake_file=sparc/t-sparclite
1974 ;;
bb607926 1975sparclite-*-elf*)
f2f543a3 1976 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/liteelf.h"
8c9facdb 1977 tmake_file="sparc/t-sparclite sparc/t-crtfm"
bb607926 1978 extra_parts="crtbegin.o crtend.o"
3b9ee544 1979 use_fixproto=yes
bb607926 1980 ;;
582b17a6 1981sparc86x-*-elf*)
f2f543a3 1982 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/sp86x-elf.h"
8c9facdb 1983 tmake_file="sparc/t-sp86x sparc/t-crtfm"
bb607926 1984 extra_parts="crtbegin.o crtend.o"
3b9ee544 1985 use_fixproto=yes
bb607926 1986 ;;
1987sparc64-*-aout*)
9039f5c3 1988 tm_file="sparc/sparc.h sparc/aout.h sparc/sp64-aout.h"
3b9ee544 1989 use_fixproto=yes
bb607926 1990 ;;
1991sparc64-*-elf*)
0307caef 1992 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
8c9facdb 1993 tmake_file="${tmake_file} sparc/t-crtfm"
bb607926 1994 extra_parts="crtbegin.o crtend.o"
3b9ee544 1995 use_fixproto=yes
bb607926 1996 ;;
cf481f89 1997sparc64-*-freebsd*|ultrasparc-*-freebsd*)
1998 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
8c9facdb 1999 tmake_file="${tmake_file} sparc/t-crtfm"
cf481f89 2000 case "x$with_cpu" in
68345096 2001 xultrasparc) ;;
cf481f89 2002 x) with_cpu=ultrasparc ;;
2003 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2004 esac
805e22b2 2005 need_64bit_hwint=yes
cf481f89 2006 ;;
7800959d 2007sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
0b8c20bf 2008 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
74b68692 2009 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
bb607926 2010 ;;
1897a3df 2011sparc64-*-netbsd*)
2012 tmake_file="${tmake_file} sparc/t-netbsd64"
2013 tm_file="sparc/biarch64.h ${tm_file}"
2014 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
1897a3df 2015 ;;
331beb1a 2016strongarm-*-elf*)
7a6d1a72 2017 tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
331beb1a 2018 tmake_file=arm/t-strongarm-elf
2019 out_file=arm/arm.c
331beb1a 2020 md_file=arm/arm.md
b5ccaa7b 2021 extra_modes=arm/arm-modes.def
3b9ee544 2022 use_fixproto=yes
331beb1a 2023 ;;
331beb1a 2024strongarm-*-pe)
0ac7fc08 2025 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"
331beb1a 2026 tmake_file=arm/t-strongarm-pe
2027 out_file=arm/arm.c
331beb1a 2028 md_file=arm/arm.md
b5ccaa7b 2029 extra_modes=arm/arm-modes.def
331beb1a 2030 extra_objs=pe.o
3b9ee544 2031 use_fixproto=yes
331beb1a 2032 ;;
578f5dbf 2033strongarm-*-kaos*)
2034 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"
2035 tmake_file=arm/t-strongarm-elf
2036 out_file=arm/arm.c
2037 md_file=arm/arm.md
2038 extra_modes=arm/arm-modes.def
2039 ;;
00b114bf 2040v850e1-*-*)
2041 target_cpu_default="TARGET_CPU_v850e1"
2042 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2043 tm_p_file=v850/v850-protos.h
2044 tmake_file=v850/t-v850e
2045 md_file=v850/v850.md
2046 out_file=v850/v850.c
2047 if test x$stabs = xyes
2048 then
2049 tm_file="${tm_file} dbx.h"
2050 fi
2051 use_collect2=no
2052 c_target_objs="v850-c.o"
2053 cxx_target_objs="v850-c.o"
3b9ee544 2054 use_fixproto=yes
00b114bf 2055 ;;
5dd3389c 2056v850e-*-*)
2057 target_cpu_default="TARGET_CPU_v850e"
2058 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2059 tm_p_file=v850/v850-protos.h
c7feb70c 2060 tmake_file=v850/t-v850e
5dd3389c 2061 md_file=v850/v850.md
2062 out_file=v850/v850.c
2063 if test x$stabs = xyes
2064 then
2065 tm_file="${tm_file} dbx.h"
2066 fi
2067 use_collect2=no
2068 c_target_objs="v850-c.o"
2069 cxx_target_objs="v850-c.o"
3b9ee544 2070 use_fixproto=yes
5dd3389c 2071 ;;
bb607926 2072v850-*-*)
2073 target_cpu_default="TARGET_CPU_generic"
7a6d1a72 2074 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
bb607926 2075 tmake_file=v850/t-v850
2076 if test x$stabs = xyes
2077 then
2078 tm_file="${tm_file} dbx.h"
2079 fi
2080 use_collect2=no
e101acea 2081 c_target_objs="v850-c.o"
2082 cxx_target_objs="v850-c.o"
3b9ee544 2083 use_fixproto=yes
bb607926 2084 ;;
6c842310 2085vax-*-bsd*) # VAXen running BSD
b31ef245 2086 tm_file="${tm_file} vax/bsd.h"
bb607926 2087 use_collect2=yes
3b9ee544 2088 use_fixproto=yes
bb607926 2089 ;;
6c842310 2090vax-*-sysv*) # VAXen running system V
bb607926 2091 tm_file="${tm_file} vax/vaxv.h"
3b9ee544 2092 use_fixproto=yes
bb607926 2093 ;;
f470dade 2094vax-*-netbsdelf*)
83accbc0 2095 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
f470dade 2096 ;;
bb607926 2097vax-*-netbsd*)
4ace673e 2098 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
bb607926 2099 tmake_file=t-netbsd
9a33b00e 2100 extra_parts=""
87a1ff8e 2101 use_collect2=yes
bb607926 2102 ;;
2103vax-*-openbsd*)
0ac7fc08 2104 tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
bb607926 2105 use_collect2=yes
2106 ;;
6c842310 2107vax-*-ultrix*) # VAXen running ultrix
bb607926 2108 tm_file="${tm_file} vax/ultrix.h"
3b9ee544 2109 use_fixproto=yes
bb607926 2110 ;;
6c842310 2111vax-*-*) # VAX default entry
3b9ee544 2112 use_fixproto=yes
bb607926 2113 ;;
331beb1a 2114xscale-*-elf)
7a6d1a72 2115 tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
331beb1a 2116 tmake_file=arm/t-xscale-elf
2117 out_file=arm/arm.c
331beb1a 2118 md_file=arm/arm.md
b5ccaa7b 2119 extra_modes=arm/arm-modes.def
3b9ee544 2120 use_fixproto=yes
331beb1a 2121 ;;
2122xscale-*-coff)
0ac7fc08 2123 tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
331beb1a 2124 tmake_file=arm/t-xscale-coff
2125 out_file=arm/arm.c
331beb1a 2126 md_file=arm/arm.md
b5ccaa7b 2127 extra_modes=arm/arm-modes.def
3b9ee544 2128 use_fixproto=yes
331beb1a 2129 ;;
9b954fed 2130xstormy16-*-elf)
2131 # For historical reasons, the target files omit the 'x'.
7a6d1a72 2132 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
9b954fed 2133 tm_p_file=stormy16/stormy16-protos.h
2134 md_file=stormy16/stormy16.md
2135 out_file=stormy16/stormy16.c
2136 tmake_file="stormy16/t-stormy16"
2137 extra_parts="crtbegin.o crtend.o"
3b9ee544 2138 use_fixproto=yes
9b954fed 2139 ;;
f6b7ba2b 2140xtensa-*-elf*)
2141 tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
54a0bb9d 2142 tmake_file="xtensa/t-xtensa xtensa/t-elf"
f6b7ba2b 2143 ;;
2144xtensa-*-linux*)
2145 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
19cda8f6 2146 tmake_file="t-slibgcc-elf-ver t-linux xtensa/t-xtensa xtensa/t-linux"
f6b7ba2b 2147 ;;
1acdfc69 2148am33_2.0-*-linux*)
2149 tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h mn10300/linux.h"
2150 tmake_file="t-linux mn10300/t-linux"
2151 gas=yes gnu_ld=yes
1acdfc69 2152 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2153 use_collect2=no
2154 ;;
bb607926 2155*)
09c6646e 2156 echo "*** Configuration ${target} not supported" 1>&2
bb607926 2157 exit 1
2158 ;;
2159esac
2160
3864b642 2161# Support for --with-cpu and related options (and a few unrelated options,
973f8bf3 2162# too).
370a1d10 2163case ${with_cpu} in
2164 yes | no)
2165 echo "--with-cpu must be passed a value" 1>&2
2166 exit 1
2167 ;;
2168esac
f0b281fe 2169
370a1d10 2170# If there is no $with_cpu option, try to infer one from ${target}.
2171# This block sets nothing except for with_cpu.
2172if test x$with_cpu = x ; then
2173 case ${target} in
2174 ep9312-*-*)
2175 # A Cirrus ARM variant.
2176 with_cpu="ep9312"
2177 ;;
2178 i486-*-*)
2179 with_cpu=i486
2180 ;;
2181 i586-*-*)
2182 case $target_alias in
2183 k6_2-*)
2184 with_cpu=k6-2
2185 ;;
2186 k6_3-*)
2187 with_cpu=k6-3
2188 ;;
2189 k6-*)
2190 with_cpu=k6
2191 ;;
2192 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2193 with_cpu=pentium-mmx
2194 ;;
2195 *)
2196 with_cpu=pentium
2197 ;;
2198 esac
2199 ;;
2200 i686-*-* | i786-*-*)
2201 case $target_alias in
2202 k8-*)
2203 with_cpu=k8
2204 ;;
2205 athlon_xp-*|athlon_mp-*|athlon_4-*)
2206 with_cpu=athlon-4
2207 ;;
2208 athlon_tbird-*|athlon-*)
2209 with_cpu=athlon
2210 ;;
2211 pentium2-*)
2212 with_cpu=pentium2
2213 ;;
2214 pentium3-*)
2215 with_cpu=pentium3
2216 ;;
2217 pentium4-*)
2218 with_cpu=pentium4
2219 ;;
2220 *)
2221 with_cpu=pentiumpro
2222 ;;
2223 esac
2224 ;;
2225 x86_64-*-*)
2226 with_cpu=k8
2227 ;;
2228 alphaev6[78]*-*-*)
2229 with_cpu=ev67
2230 ;;
2231 alphaev6*-*-*)
2232 with_cpu=ev6
2233 ;;
2234 alphapca56*-*-*)
2235 with_cpu=pca56
2236 ;;
2237 alphaev56*-*-*)
2238 with_cpu=ev56
2239 ;;
2240 alphaev5*-*-*)
2241 with_cpu=ev5
2242 ;;
2243 sparc*-*-*)
2244 with_cpu="`echo ${target} | sed 's/-.*$//'`"
2245 if [ x$with_cpu = xsparc64 ]; then
2246 with_cpu=v9
2247 fi
2248 ;;
2249 esac
2250fi
f0b281fe 2251
2252 # Similarly for --with-schedule.
2253 if test x$with_schedule = x; then
09c6646e 2254 case ${target} in
f0b281fe 2255 hppa1* | parisc1*)
2256 # Override default PA8000 scheduling model.
2257 with_schedule=7100LC
0e3f52ef 2258 ;;
f0b281fe 2259 esac
2260 fi
2261
7dd97ab6 2262 # Validate and mark as valid any --with options supported
2263 # by this target. In order to use a particular --with option
2264 # you must list it in supported_defaults; validating the value
2265 # is optional. This case statement should set nothing besides
2266 # supported_defaults.
2267
2268 supported_defaults=
09c6646e 2269 case "${target}" in
f0b281fe 2270 alpha*-*-*)
7dd97ab6 2271 supported_defaults="cpu tune"
2272 for which in cpu tune; do
2273 eval "val=\$with_$which"
8d520382 2274 case "$val" in
2275 "" \
2276 | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
2277 | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
2278 | 21264a)
7dd97ab6 2279 ;;
2280 *)
2281 echo "Unknown CPU used in --with-$which=$val" 1>&2
2282 exit 1
2283 ;;
2284 esac
2285 done
2286 ;;
2287
2288 arm*-*-*)
2289 supported_defaults="arch cpu float tune"
2290 for which in cpu tune; do
2291 eval "val=\$with_$which"
8d520382 2292 case "$val" in
2293 "" \
2294 | arm[236789] | arm250 | arm[67][01]0 \
2295 | arm60 | arm620 | arm7d | arm7di \
2296 | arm7m | arm7dm | arm7dmi | arm[79]tdmi \
2297 | arm70 | arm700i | arm710t | arm720 \
2298 | arm720t | arm740t | arm710c | arm920 \
2299 | arm920t | arm940t | arm9e | arm10tdmi \
2300 | arm7100 | arm7500 | arm7500fe | arm810 \
2301 | arm1020t \
2302 | xscale | iwmmxt \
2303 | ep9312 \
2304 | strongarm | strongarm110 | strongarm11[01]0)
7dd97ab6 2305 # OK
2306 ;;
2307 *)
2308 echo "Unknown CPU used in --with-$which=$val" 1>&2
2309 exit 1
2310 ;;
2311 esac
2312 done
2313
8d520382 2314 case "$with_arch" in
2315 "" \
2316 | armv[2345] | armv2a | armv3m | armv4t | armv5t \
2317 | armv5te | ep9312)
f0b281fe 2318 # OK
bb678e49 2319 ;;
2320 *)
7dd97ab6 2321 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
f0b281fe 2322 exit 1
3864b642 2323 ;;
2324 esac
f0b281fe 2325
8d520382 2326 case "$with_float" in
2327 "" \
2328 | soft | hard)
f0b281fe 2329 # OK
3864b642 2330 ;;
f0b281fe 2331 *)
7dd97ab6 2332 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
f0b281fe 2333 exit 1
3864b642 2334 ;;
2335 esac
7dd97ab6 2336
2337 if test "x$with_arch" != x && test "x$with_cpu" != x; then
2338 echo "Warning: --with-arch overrides --with-cpu" 1>&2
2339 fi
3864b642 2340 ;;
3864b642 2341
f0b281fe 2342 hppa*-*-* | parisc*-*-*)
7dd97ab6 2343 supported_defaults="arch schedule"
2344
8d520382 2345 case "$with_arch" in
2346 "" | 1.0 | 1.1 | 2.0)
7dd97ab6 2347 # OK
2348 ;;
2349 *)
2350 echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
2351 exit 1
2352 ;;
2353 esac
2354
8d520382 2355 case "$with_schedule" in
2356 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
f0b281fe 2357 # OK
2358 ;;
2359 *)
2360 echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
2361 exit 1
2362 ;;
2363 esac
3864b642 2364 ;;
3864b642 2365
f0b281fe 2366 i[34567]86-*-* | x86_64-*-*)
7dd97ab6 2367 supported_defaults="arch cpu tune"
2368 for which in arch cpu tune; do
2369 eval "val=\$with_$which"
e83e5390 2370 case ${val} in
2371 "" | i386 | i486 \
2372 | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
2373 | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
2374 | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
2375 | athlon-4 | athlon-xp | athlon-mp | k8)
7dd97ab6 2376 # OK
2377 ;;
2378 *)
2379 echo "Unknown CPU given in --with-$which=$val." 1>&2
2380 exit 1
2381 ;;
2382 esac
2383 done
2384 ;;
2385
2386 mips*-*-*)
2387 supported_defaults="abi arch float tune"
2388
e83e5390 2389 case ${with_float} in
2390 "" | soft | hard)
f0b281fe 2391 # OK
2392 ;;
2393 *)
7dd97ab6 2394 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
f0b281fe 2395 exit 1
2396 ;;
2397 esac
3864b642 2398
e83e5390 2399 case ${with_abi} in
2400 "" | 32 | o64 | n32 | 64 | eabi)
f0b281fe 2401 # OK
2402 ;;
2403 *)
7dd97ab6 2404 echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
f0b281fe 2405 exit 1
2406 ;;
2407 esac
3864b642 2408 ;;
3864b642 2409
7dd97ab6 2410 powerpc*-*-* | rs6000-*-*)
2411 supported_defaults="cpu float tune"
2412
2413 for which in cpu tune; do
2414 eval "val=\$with_$which"
e83e5390 2415 case ${val} in
2416 "" | default32 | default64 | common \
2417 | power | power2 | power3 | power4 \
2418 | powerpc | powerpc64 \
2419 | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
2420 | 401 | 403 | 405 | 405fp | 440 | 440fp | 505 \
2421 | 601 | 602 | 603 | 603e | ec603e | 604 \
2422 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
2423 | 8540 | 801 | 821 | 823 | 860 | 970)
7dd97ab6 2424 # OK
2425 ;;
2426 *)
2427 echo "Unknown cpu used in --with-$which=$val." 1>&2
2428 exit 1
2429 ;;
2430 esac
2431 done
2432 ;;
2433
b8c0043c 2434 s390*-*-*)
2435 supported_defaults="arch mode tune"
2436
2437 for which in arch tune; do
2438 eval "val=\$with_$which"
e83e5390 2439 case ${val} in
2440 "" | g5 | g6 | z900 | z990)
b8c0043c 2441 # OK
2442 ;;
2443 *)
2444 echo "Unknown cpu used in --with-$which=$val." 1>&2
2445 exit 1
2446 ;;
2447 esac
2448 done
2449
e83e5390 2450 case ${with_mode} in
2451 "" | esa | zarch)
b8c0043c 2452 # OK
2453 ;;
2454 *)
2455 echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
2456 exit 1
2457 ;;
2458 esac
2459 ;;
2460
f0b281fe 2461 sparc*-*-*)
7dd97ab6 2462 supported_defaults="cpu float tune"
2463
2464 for which in cpu tune; do
2465 eval "val=\$with_$which"
e83e5390 2466 case ${val} in
2467 "" | sparc | sparcv9 | sparc64 | sparc86x \
2468 | v7 | cypress | v8 | supersparc | sparclite | f930 \
2469 | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
2470 | v9 | ultrasparc | ultrasparc3)
7dd97ab6 2471 # OK
2472 ;;
2473 *)
2474 echo "Unknown cpu used in --with-$which=$val" 1>&2
2475 exit 1
2476 ;;
2477 esac
2478 done
3864b642 2479
e83e5390 2480 case ${with_float} in
2481 "" | soft | hard)
f0b281fe 2482 # OK
2483 ;;
2484 *)
7dd97ab6 2485 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
f0b281fe 2486 exit 1
2487 ;;
2488 esac
3864b642 2489 ;;
3864b642 2490
f0b281fe 2491 v850*-*-*)
7dd97ab6 2492 supported_defaults=cpu
e83e5390 2493 case ${with_cpu} in
2494 "" | v850e | v850e1)
f0b281fe 2495 # OK
2496 ;;
2497 *)
2498 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2499 exit 1
2500 ;;
2501 esac
3864b642 2502 ;;
2503 esac
3864b642 2504
7dd97ab6 2505 # Set some miscellaneous flags for particular targets.
f0b281fe 2506 target_cpu_default2=
09c6646e 2507 case ${target} in
f0b281fe 2508 alpha*-*-*)
f0b281fe 2509 if test x$gas = xyes
2510 then
7dd97ab6 2511 target_cpu_default2="MASK_GAS"
f0b281fe 2512 fi
3864b642 2513 ;;
3864b642 2514
f0b281fe 2515 arm*-*-*)
2516 case "x$with_cpu" in
2517 x)
2518 # The most generic
2519 target_cpu_default2="TARGET_CPU_generic"
bb607926 2520 ;;
f0b281fe 2521
2522 *)
2523 target_cpu_default2="TARGET_CPU_$with_cpu"
bb607926 2524 ;;
f0b281fe 2525 esac
2526 ;;
582b17a6 2527
f0b281fe 2528 hppa*-*-* | parisc*-*-*)
2529 if test x$gas = xyes
bb607926 2530 then
f0b281fe 2531 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2532 fi
3864b642 2533 ;;
3864b642 2534
f0b281fe 2535 mips*-*-*)
09c6646e 2536 case ${target} in
f0b281fe 2537 mips*-*-ecoff* | mips*-*-elf*)
2538 if test x$gas = xyes
2539 then
2540 if test x$gnu_ld = xyes
2541 then
2542 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2543 else
2544 target_cpu_default2="MASK_GAS"
2545 fi
2546 fi
2547 ;;
2548 mips*-*-*)
2549 if test x$gas = xyes
f4deb416 2550 then
f4deb416 2551 target_cpu_default2="MASK_GAS"
2552 fi
f0b281fe 2553 ;;
2554 esac
09c6646e 2555 case ${target} in
f0b281fe 2556 mips*el-*-*)
2557 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2558 ;;
2559 esac
2560 case $tm_file in
2561 *mips/elf.h* | *mips/elf64.h*)
2562 tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2563 ;;
2564 esac
2565 if test "x$enable_gofast" = xyes
2566 then
f2f543a3 2567 tm_defines="US_SOFTWARE_GOFAST $tm_defines"
f0b281fe 2568 tmake_file="mips/t-gofast $tmake_file"
2569 else
2570 tmake_file="mips/t-mips $tmake_file"
f4deb416 2571 fi
2572 ;;
f0b281fe 2573
2574 powerpc*-*-* | rs6000-*-*)
7dd97ab6 2575 if test x$enable_altivec = xyes
2576 then
2577 tm_file="$tm_file rs6000/altivec-defs.h"
2578 fi
2579 # FIXME: The PowerPC port uses the value set at compile time,
2580 # although it's only cosmetic.
f0b281fe 2581 if test "x$with_cpu" != x
bb607926 2582 then
f0b281fe 2583 target_cpu_default2="\\\"$with_cpu\\\""
bb607926 2584 fi
f0b281fe 2585 out_file=rs6000/rs6000.c
2586 c_target_objs="${c_target_objs} rs6000-c.o"
2587 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2588 tmake_file="rs6000/t-rs6000 ${tmake_file}"
f4deb416 2589 ;;
3864b642 2590
f0b281fe 2591 sparc*-*-*)
7dd97ab6 2592 # Some standard aliases.
2593 case x$with_cpu in
2594 xsparc)
2595 with_cpu=v7
2596 ;;
2597 xsparc86x)
2598 with_cpu=sparclite86x
2599 ;;
2600 xsparcv9 | xsparc64)
2601 with_cpu=v9
2602 ;;
2603 esac
2604
2605 # The Sparc port checks this value at compile-time.
3864b642 2606 target_cpu_default2="TARGET_CPU_$with_cpu"
2607 ;;
f0b281fe 2608 v850*-*-*)
7dd97ab6 2609 # FIXME: The v850 is "special" in that it does not support
2610 # runtime CPU selection, only --with-cpu.
f0b281fe 2611 case "x$with_cpu" in
2612 x)
2613 ;;
2614 xv850e)
2615 target_cpu_default2="TARGET_CPU_$with_cpu"
2616 ;;
2617 esac
2618 ;;
bb607926 2619 esac
bb607926 2620
7dd97ab6 2621 t=
b8c0043c 2622 all_defaults="abi cpu arch tune schedule float mode"
7dd97ab6 2623 for option in $all_defaults
2624 do
2625 eval "val=\$with_$option"
2626 if test -n "$val"; then
2627 case " $supported_defaults " in
2628 *" $option "*)
2629 ;;
2630 *)
2631 echo "This target does not support --with-$option." 2>&1
2632 exit 1
2633 ;;
2634 esac
2635
2636 if test "x$t" = x
2637 then
2638 t="{ \"$option\", \"$val\" }"
2639 else
2640 t="${t}, { \"$option\", \"$val\" }"
2641 fi
2642 fi
2643 done
2644 if test "x$t" = x
2645 then
2646 configure_default_options="{ { NULL, NULL} }"
2647 else
2648 configure_default_options="{ ${t} }"
2649 fi
2650
f0b281fe 2651 if test "$target_cpu_default2" != ""
bb607926 2652 then
f0b281fe 2653 if test "$target_cpu_default" != ""
2654 then
2655 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2656 else
2657 target_cpu_default=$target_cpu_default2
2658 fi
bb607926 2659 fi