1 # GCC build-, host- and target-specific configuration file.
2 # Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 #This file is part of GCC.
6 #GCC is free software; you can redistribute it and/or modify it under
7 #the terms of the GNU General Public License as published by the Free
8 #Software Foundation; either version 2, or (at your option) any later
11 #GCC is distributed in the hope that it will be useful, but WITHOUT
12 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #You should have received a copy of the GNU General Public License
17 #along with GCC; see the file COPYING. If not, write to the Free
18 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 # This is the GCC build-, host- and target-specific configuration file
22 # where a configuration type, as recognized and generated by config.bfd,
23 # is mapped to different system-specific definitions and files. This is
24 # invoked by the autoconf-generated configure script, called for build,
25 # host and target in that order, setting ${machine} to each. Putting it
26 # in a separate shell file lets us skip running autoconf when modifying
27 # build-, host- and target-specific information.
29 # This file switches on the shell variable ${machine}, and also uses the
30 # following shell variables:
32 # with_* Various variables as set by configure.
34 # enable_threads_flag Either the name, yes or no depending on whether
35 # threads support was requested.
37 # gas_flag Either yes or no depending on whether GNU as was
40 # gnu_ld_flag Either yes or no depending on whether GNU ld was
43 # This file sets the following shell variables for use by the
44 # autoconf-generated configure script:
46 # cpu_type The name of the cpu, if different from machine.
48 # tm_file A list of target macro files, if different from
49 # "$cpu_type/$cpu_type.h". Usually it's constructed
50 # per target in a way like this:
51 # tm_file="${tm_file} elfos.h svr4.h ${cpu_type.h}/elf.h"
52 # Note that the preferred order is:
53 # - specific target header "${cpu_type}/${cpu_type.h}"
54 # - generic headers like elfos.h, netware.h, etc.
55 # - specializing target headers like ${cpu_type.h}/elf.h
56 # This helps to keep OS specific stuff out of the CPU
57 # defining header ${cpu_type}/${cpu_type.h}.
59 # tm_p_file Location of file with declarations for functions
62 # out_file The name of the machine description C support
63 # file, if different from "$cpu_type/$cpu_type.c".
65 # md_file The name of the machine-description file, if
66 # different from "$cpu_type/$cpu_type.md".
68 # tmake_file A list of machine-description-specific
69 # makefile-fragments, if different from
70 # "$cpu_type/t-$cpu_type".
72 # float_format Set to the symbolic name for the floating-point
73 # formats used for this machine, if different from
74 # "i64". Used to derive a header file name to
75 # include, like "vax" for "float-vax.h". If no such
76 # file is wanted, set to "none".
78 # extra_objs List of extra objects that should be linked into
79 # the compiler proper (cc1, cc1obj, cc1plus)
80 # depending on target.
82 # extra_headers List of used header files from the directory
85 # host_xmake_file List of host-specific makefile-fragments.
87 # extra_passes List of extra executables compiled for this target
88 # machine, used for compiling from source to object.
90 # extra_parts List of extra object files that should be compiled
91 # for this target machine.
93 # extra_programs Like extra_passes, but these are used when linking.
95 # host_extra_objs List of extra host-dependent objects that should
96 # be linked into the compiler proper.
98 # host_extra_gcc_objs List of extra host-dependent objects that should
99 # be linked into the gcc driver.
101 # c_target_objs List of extra target-dependent objects that be
102 # linked into the C compiler only.
104 # cxx_target_objs List of extra target-dependent objects that be
105 # linked into the C++ compiler only.
107 # build_xm_defines List of macros to define when compiling for the
110 # build_xm_file List of files to include when compiling for the
113 # host_xm_defines List of macros to define when compiling for the
116 # host_xm_file List of files to include when compiling for the
119 # xm_defines List of macros to define when compiling for the
122 # xm_file List of files to include when compiling for the
125 # use_collect2 Set to yes or no, depending on whether collect2
128 # target_cpu_default Set to override the default target model.
130 # build_install_headers_dir
131 # Target to use when installing header files.
133 # host_truncate_target
134 # Non-empty if the target name should be truncated
135 # on this host, due to filename length issues.
137 # gdb_needs_out_file_path
138 # Set to yes if gdb needs a dir command with
139 # `dirname $out_file`.
141 # build_exeext Set to the suffix, if the build machine requires
142 # executables to have a file name suffix.
144 # host_exeext Set to the suffix, if the host machine requires
145 # executables to have a file name suffix.
147 # thread_file Set to control which thread package to use.
149 # gas Set to yes or no depending on whether the target
150 # system normally uses GNU as.
152 # The following variables are used in each case-construct to build up the
153 # outgoing variables:
155 # xmake_file Makefile-fragment when this system is as a host,
156 # for host_xmake_file.
158 # extra_host_objs List of extra objects that should be linked into
159 # the compiler proper when this system is a host,
160 # for host_extra_objs.
162 # install_headers_dir Makefile-target for how the header file directory
163 # is installed, when this system is a build system,
164 # for build_install_headers_dir.
166 # truncate_target Non-empty if the target name should be truncated
167 # when this system is a host, due to filename length
168 # issues. For host_truncate_target.
170 # exeext The suffix for executables on this system.
172 # gnu_ld Set to yes or no depending on whether the target
173 # system normally uses GNU ld.
189 # Set this to force installation and use of collect2.
191 # Set this to override the default target model.
193 # Set this to control how the header file directory is installed.
194 install_headers_dir=install-headers-tar
195 # Set this if directory names should be truncated to 14 characters.
197 # Set this if gdb needs a dir command with `dirname $out_file`
198 gdb_needs_out_file_path=
199 # Set this if the build machine requires executables to have a
202 # Set this to control which thread package will be used.
204 # Reinitialize these from the flag values every loop pass, since some
205 # configure entries modify them.
207 gnu_ld="$gnu_ld_flag"
208 enable_threads=$enable_threads_flag
210 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
211 # updated in each machine entry.
213 cpu_type=`echo $machine | sed 's/-.*$//'`
236 hppa*-*-* | parisc*-*-*)
256 tm_file=${cpu_type}/${cpu_type}.h
257 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
259 tm_p_file=${cpu_type}/${cpu_type}-protos.h
261 # On a.out targets, we need to use collect2.
268 # Common parts for GNU/Linux, GNU/Hurd, OpenBSD and FreeBSD systems.
274 # On the Hurd, the setup is just about the same on
275 # each different CPU. The specific machines that we
276 # support are matched above and just set $cpu_type.
278 tm_file="${cpu_type}/gnu.h"
279 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
280 # GNU always uses ELF.
282 # GNU tools are the only tools.
285 # These details are the same as for Linux.
287 # But here we need a little extra magic.
288 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
291 tm_file="${cpu_type}/${cpu_type}.h i386/att.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
296 tm_file=${cpu_type}/openbsd.h
297 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
299 if test x$enable_threads = xyes; then
301 tmake_file="${tmake_file} t-openbsd-thread"
304 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
305 # This is the place-holder for the generic a.out configuration
306 # of FreeBSD. No actual configuration resides here since
307 # there was only ever a bare-bones ix86 configuration for
308 # a.out and it exists solely in the machine-specific section.
309 # This place-holder must exist to avoid dropping into
310 # the generic ELF configuration of FreeBSD (i.e. it must be
311 # ordered before that section).
314 # This is the generic ELF configuration of FreeBSD. Later
315 # machine-specific sections may refine and add to this
318 # Due to tm_file entry ordering issues that vary between cpu
319 # architectures, we only define fbsd_tm_file to allow the
320 # machine-specific section to dictate the final order of all
321 # entries of tm_file with the minor exception that components
322 # of the tm_file set here will always be of the form:
324 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd.h
326 # The machine-specific section should not tamper with this
327 # ordering but may order all other entries of tm_file as it
328 # pleases around the provided core setting.
331 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
333 *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
334 *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
335 *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
336 *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
337 *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
342 case x${enable_threads} in
343 xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
344 x | xyes | xpthreads | xposix)
346 tmake_file="${tmake_file} t-freebsd-thread"
348 *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
350 fbsd_tm_file="${fbsd_tm_file} freebsd.h"
351 if test x${thread_file} = xposix; then
352 if test x${enable_libgcj} = xyes; then
353 echo 'FreeBSD does not currently handle --enable-threads (now'
354 echo 'the default to match system compiler) and --enable-libgcj.'
355 echo 'Please explicitly configure with --disable-threads or'
356 echo '--disable-libgcj'
364 # Support site-specific machine types.
366 rest=`echo $machine | sed -e "s/$cpu_type-//"`
367 tm_file=${cpu_type}/$rest.h
368 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
369 then xm_file=${cpu_type}/xm-$rest.h
371 if test -f $srcdir/config/${cpu_type}/x-$rest
372 then xmake_file=${cpu_type}/x-$rest
374 if test -f $srcdir/config/${cpu_type}/t-$rest
375 then tmake_file=${cpu_type}/t-$rest
379 # 1750a is only supported as a target.
380 case "$build,$host" in 1750a*,* | *,1750a* )
381 echo "*** $machine is only supported as a target" >&2
385 a29k-*-bsd* | a29k-*-sym1*)
386 tm_file="${tm_file} a29k/unix.h"
390 a29k-*-udi | a29k-*-coff)
391 tm_file="${tm_file} dbxcoff.h"
392 tmake_file=a29k/t-a29kbare
396 tmake_file="a29k/t-a29kbare t-rtems"
397 if test x$enable_threads = xyes; then
402 tm_file="${tm_file} dbxcoff.h a29k/vx29k.h"
403 tmake_file=a29k/t-vx29k
404 extra_parts="crtbegin.o crtend.o"
405 thread_file='vxworks'
407 a29k-*-*) # Default a29k environment.
412 tm_file="${tm_file} alpha/unicosmk.h"
414 # Don't include t-ieee for now because we don't support that yet
415 # tmake_file="alpha/t-ieee"
416 tmake_file="alpha/t-unicosmk"
419 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
421 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
422 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
424 # GAS + IEEE_CONFORMANT
425 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
428 xm_file="alpha/xm-alpha-interix.h xm-interix.h"
430 tmake_file="alpha/t-alpha alpha/t-interix alpha/t-ieee"
431 if test x$enable_threads = xyes ; then
434 if test x$stabs = xyes ; then
435 tm_file="${tm_file} dbxcoff.h"
437 #prefix='$$INTERIX_ROOT'/usr/contrib
438 #local_prefix='$$INTERIX_ROOT'/usr/contrib
440 alpha*-*-linux*ecoff*)
441 tm_file="${tm_file} alpha/linux-ecoff.h alpha/linux.h"
442 target_cpu_default="MASK_GAS"
443 tmake_file="alpha/t-alpha alpha/t-ieee"
447 alpha*-*-linux*libc1*)
448 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
449 target_cpu_default="MASK_GAS"
450 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtbe alpha/t-crtfm alpha/t-ieee"
452 if test x$enable_threads = xyes; then
457 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
458 target_cpu_default="MASK_GAS"
459 tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtbe alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
461 if test x$enable_threads = xyes; then
466 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
467 target_cpu_default="MASK_GAS"
468 tmake_file="${tmake_file} alpha/t-crtbe alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
472 tm_file="${tm_file} alpha/elf.h alpha/netbsd.h alpha/netbsd-elf.h"
473 target_cpu_default="MASK_GAS"
474 tmake_file="alpha/t-crtbe alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
479 # default x-alpha is only appropriate for dec-osf.
480 target_cpu_default="MASK_GAS"
481 tmake_file="alpha/t-alpha alpha/t-ieee"
486 if test x$stabs = xyes
488 tm_file="${tm_file} dbx.h"
490 if test x$gas != xyes
492 extra_passes="mips-tfile mips-tdump"
495 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-osf alpha/t-crtfm"
498 tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
501 tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
504 tm_file="${tm_file} alpha/osf.h"
505 tmake_file="$tmake_file alpha/t-osf4"
506 # Some versions of OSF4 (specifically X4.0-9 296.7) have
507 # a broken tar, so we use cpio instead.
508 install_headers_dir=install-headers-cpio
511 tm_file="${tm_file} alpha/osf.h alpha/osf5.h"
512 tmake_file="$tmake_file alpha/t-osf4"
517 *-*-osf4.0[b-z] | *-*-osf4.[1-9]* | *-*-osf5*)
518 target_cpu_default=MASK_SUPPORT_ARCH
524 tm_file="${tm_file} dbx.h alpha/vxworks.h"
525 tmake_file="alpha/t-alpha alpha/t-ieee"
528 extra_passes="mips-tfile mips-tdump"
531 thread_file='vxworks'
536 xm_file=alpha/xm-vms.h
537 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
540 tm_file="elfos.h svr4.h ${tm_file}"
541 extra_parts="crtinit.o crtfini.o"
544 tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/rtems-elf.h rtems.h"
545 tmake_file="arm/t-arm-elf t-rtems"
546 if test x$enable_threads = xyes; then
550 arm-*-coff* | armel-*-coff*)
552 tmake_file=arm/t-arm-coff
556 tmake_file=arm/t-arm-coff
557 thread_file='vxworks'
559 arm-*-riscix1.[01]*) # Acorn RISC machine (early versions)
560 tm_file=arm/riscix1-1.h
563 arm-*-riscix*) # Acorn RISC machine
566 tm_file=arm/rix-gas.h
570 xmake_file=arm/x-riscix
571 tmake_file=arm/t-riscix
574 arm-semi-aout | armel-semi-aout)
576 tmake_file=arm/t-semi
578 arm-semi-aof | armel-semi-aof)
579 tm_file=arm/semiaof.h
580 tmake_file=arm/t-semi
584 tmake_file="t-netbsd arm/t-netbsd"
587 arm*-*-linux*) # ARM GNU/Linux with ELF
589 tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
590 tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
591 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
593 case x${enable_threads} in
594 x | xyes | xpthreads | xposix)
599 arm*-*-uclinux*) # ARM ucLinux
600 tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/linux-elf.h arm/uclinux-elf.h"
601 tmake_file=arm/t-arm-elf
605 tmake_file=arm/t-arm-aout
608 tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/ecos-elf.h"
609 tmake_file=arm/t-arm-elf
612 tm_file="elfos.h arm/unknown-elf.h arm/elf.h"
613 tmake_file=arm/t-arm-elf
616 tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h"
617 tmake_file=arm/t-arm-elf
620 tm_file="arm/unknown-elf-oabi.h elfos.h arm/unknown-elf.h arm/elf.h"
621 tmake_file=arm/t-arm-elf
630 c1-convex-*) # Convex C1
634 c2-convex-*) # Convex C2
647 target_cpu_default=16
651 tmake_file="c4x/t-c4x t-rtems"
653 if test x$enable_threads = xyes; then
656 c_target_objs="c4x-c.o"
657 cxx_target_objs="c4x-c.o"
662 c_target_objs="c4x-c.o"
663 cxx_target_objs="c4x-c.o"
665 clipper-intergraph-clix*)
666 tm_file="${tm_file} svr3.h clipper/clix.h"
668 extra_headers=va-clipper.h
669 extra_parts="crtbegin.o crtend.o"
670 install_headers_dir=install-headers-cpio
673 tm_file="dbxelf.h ${tm_file} cris/aout.h"
675 tmake_file="cris/t-cris cris/t-aout"
677 cris-*-elf | cris-*-none)
678 tm_file="elfos.h ${tm_file}"
679 tmake_file="cris/t-cris cris/t-elfmulti"
683 tm_file="elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
684 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
685 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
686 case x${enable_threads} in
687 x | xyes | xpthreads | xposix)
694 tm_file="elfos.h svr4.h ${tm_file}"
703 tm_file="elfos.h svr4.h ${tm_file}"
704 tmake_file=fr30/t-fr30
705 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
708 tmake_file="h8300/t-h8300 t-rtems"
709 tm_file=h8300/rtems.h
710 if test x$enable_threads = xyes; then
716 tmake_file="h8300/t-h8300 h8300/t-elf"
717 tm_file="h8300/h8300.h h8300/elf.h"
723 hppa*64*-*-linux* | parisc*64*-*-linux*)
724 target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
725 tm_file="pa/pa64-start.h ${tm_file} elfos.h svr4.h linux.h pa/pa-linux.h \
726 pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
727 tmake_file=pa/t-linux64
730 hppa*-*-linux* | parisc*-*-linux*)
731 target_cpu_default="MASK_PA_11"
732 tm_file="${tm_file} elfos.h svr4.h linux.h pa/pa-linux.h \
733 pa/pa32-regs.h pa/pa32-linux.h"
734 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
735 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
737 if test x$enable_threads = xyes; then
742 target_cpu_default="MASK_PA_11"
743 tmake_file=pa/t-openbsd
746 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
747 tm_file="${tm_file} pa/pa32-regs.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
751 target_cpu_default="MASK_PA_11"
752 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
756 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
757 tm_file="${tm_file} pa/pa32-regs.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h"
761 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
765 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
766 target_cpu_default="MASK_PA_11"
770 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
774 tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
776 xmake_file=pa/x-pa-hpux
777 install_headers_dir=install-headers-cpio
780 hppa1.0-*-hpux8.0[0-2]*)
781 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
783 xmake_file=pa/x-pa-hpux
784 if test x$gas != xyes
786 tm_file="pa/pa-oldas.h ${tm_file}"
788 install_headers_dir=install-headers-cpio
791 hppa1.1-*-hpux8.0[0-2]*)
792 target_cpu_default="MASK_PA_11"
793 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
795 xmake_file=pa/x-pa-hpux
796 if test x$gas != xyes
798 tm_file="pa/pa-oldas.h ${tm_file}"
800 install_headers_dir=install-headers-cpio
804 target_cpu_default="MASK_PA_11"
805 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
807 xmake_file=pa/x-pa-hpux
808 install_headers_dir=install-headers-cpio
812 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
814 xmake_file=pa/x-pa-hpux
815 install_headers_dir=install-headers-cpio
818 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
819 target_cpu_default="MASK_PA_11"
820 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
823 xmake_file=pa/x-pa-hpux
825 if test x$enable_threads = x; then
826 enable_threads=$have_pthread_h
828 case x${enable_threads} in
830 tmake_file="${tmake_file} pa/t-dce-thr"
833 install_headers_dir=install-headers-cpio
837 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
840 xmake_file=pa/x-pa-hpux
842 if test x$enable_threads = x; then
843 enable_threads=$have_pthread_h
845 case x${enable_threads} in
847 tmake_file="${tmake_file} pa/t-dce-thr"
850 install_headers_dir=install-headers-cpio
855 xmake_file=pa/x-pa-hpux
857 tm_file="pa/pa64-start.h ${tm_file} pa/pa64-regs.h pa/long_double.h pa/elf.h pa/pa-hpux.h pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
860 target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
862 # if [ x$enable_threads = x ]; then
863 # enable_threads=$have_pthread_h
865 # if [ x$enable_threads = xyes ]; then
867 # tmake_file="${tmake_file} pa/t-dce-thr"
869 install_headers_dir=install-headers-cpio
872 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
873 target_cpu_default="MASK_PA_11"
874 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
877 xmake_file=pa/x-pa-hpux
879 # if test x$enable_threads = x; then
880 # enable_threads=$have_pthread_h
882 # if test x$enable_threads = xyes; then
884 # tmake_file="${tmake_file} pa/t-dce-thr"
886 install_headers_dir=install-headers-cpio
890 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
893 xmake_file=pa/x-pa-hpux
894 # if test x$enable_threads = x; then
895 # enable_threads=$have_pthread_h
897 # if test x$enable_threads = xyes; then
899 # tmake_file="${tmake_file} pa/t-dce-thr"
901 install_headers_dir=install-headers-cpio
904 hppa1.1-*-hpux* | hppa2*-*-hpux*)
905 target_cpu_default="MASK_PA_11"
906 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
908 xmake_file=pa/x-pa-hpux
909 install_headers_dir=install-headers-cpio
913 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
915 xmake_file=pa/x-pa-hpux
916 install_headers_dir=install-headers-cpio
919 hppa1.1-*-hiux* | hppa2*-*-hiux*)
920 target_cpu_default="MASK_PA_11"
921 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
923 xmake_file=pa/x-pa-hpux
924 install_headers_dir=install-headers-cpio
928 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
930 xmake_file=pa/x-pa-hpux
931 install_headers_dir=install-headers-cpio
935 tm_file="${tm_file} pa/pa32-regs.h elfos.h pa/elf.h"
936 target_cpu_default="MASK_PA_11"
940 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h"
941 xmake_file=pa/x-pa-mpeix
942 echo "You must use gas. Assuming it is already installed."
944 install_headers_dir=install-headers-tar
947 i370-*-opened*) # IBM 360/370/390 Architecture
948 xm_defines='POSIX FATAL_EXIT_CODE=12'
950 tmake_file="i370/t-i370"
952 c_target_objs="i370-c.o"
953 cxx_target_objs="i370-c.o"
956 xm_defines='POSIX FATAL_EXIT_CODE=12'
958 tmake_file="i370/t-i370"
959 c_target_objs="i370-c.o"
960 cxx_target_objs="i370-c.o"
964 tm_file="elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
965 tmake_file="t-slibgcc-elf-ver t-linux"
967 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
968 # extra_parts="crtbegin.o crtend.o"
972 if test x$enable_threads = xyes; then
976 i[34567]86-*-chorusos*)
978 tm_file="${tm_file} i386/att.h elfos.h i386/i386elf.h chorus.h"
979 tmake_file=i386/t-i386elf
981 case x${enable_threads} in
982 xyes | xpthreads | xposix)
989 tm_file="${tm_file} i386/att.h elfos.h i386/i386elf.h"
990 tmake_file=i386/t-i386elf
993 i[34567]86-ibm-aix*) # IBM PS/2 running AIX
996 tm_file=i386/aix386.h
997 extra_parts="crtbegin.o crtend.o"
998 tmake_file=i386/t-crtstuff
1000 tm_file=i386/aix386ng.h
1005 i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
1006 xm_defines="POSIX SMALL_ARG_MAX"
1007 if test x$stabs = xyes -a x$gas = xyes
1009 tm_file=i386/sysv4gdb.h
1011 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h"
1013 extra_parts="crtbegin.o crtend.o"
1014 tmake_file=i386/t-crtpic
1018 tmake_file=i386/t-next
1019 extra_objs=nextstep.o
1020 extra_parts="crtbegin.o crtend.o"
1021 if test x$enable_threads = xyes; then
1025 i[34567]86-*-netware) # Intel 80386's running netware
1026 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
1027 tmake_file=i386/t-netware
1029 i[34567]86-sequent-bsd*) # 80386 from Sequent
1031 if test x$gas = xyes
1033 tm_file=i386/seq-gas.h
1035 tm_file=i386/sequent.h
1038 i[34567]86-sequent-ptx1*)
1040 tm_file=i386/seq-sysv3.h
1041 tmake_file=i386/t-crtstuff
1042 extra_parts="crtbegin.o crtend.o"
1043 install_headers_dir=install-headers-cpio
1045 i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
1047 tm_file=i386/seq2-sysv3.h
1048 tmake_file=i386/t-crtstuff
1049 extra_parts="crtbegin.o crtend.o"
1050 install_headers_dir=install-headers-cpio
1052 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1053 if test x$gas = xyes
1055 tm_file="${tm_file} usegas.h"
1057 xm_defines="POSIX SMALL_ARG_MAX"
1059 tm_file="${tm_file} i386/att.h elfos.h ptx4.h i386/ptx4-i.h"
1061 extra_parts="crtbegin.o crtend.o"
1062 install_headers_dir=install-headers-cpio
1064 i386-sun-sunos*) # Sun i386 roadrunner
1069 i[34567]86-wrs-vxworks*)
1070 tm_file=i386/vxi386.h
1071 thread_file='vxworks'
1074 tm_file=i386/i386-aout.h
1076 i[34567]86-*-beoself* | i[34567]86-*-beos*)
1078 tmake_file='i386/t-beos i386/t-crtpic'
1079 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/beos-elf.h"
1080 xmake_file=i386/x-beos
1081 extra_parts='crtbegin.o crtend.o'
1083 i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
1084 tm_file="i386/386bsd.h i386/bsd386.h"
1085 # tmake_file=t-libc-ok
1088 tm_file=i386/386bsd.h
1089 # tmake_file=t-libc-ok
1090 # Next line turned off because both 386BSD and BSD/386 use GNU ld.
1093 i[34567]86-*-freebsd[12] | i[34567]86-*-freebsd[12].* | i[34567]86-*-freebsd*aout*)
1094 tm_file=i386/freebsd-aout.h
1095 tmake_file=t-freebsd
1097 i[34567]86-*-freebsd*)
1098 tm_file="${tm_file} i386/att.h elfos.h svr4.h ${fbsd_tm_file} i386/freebsd.h"
1100 i[34567]86-*-netbsdelf*)
1102 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/netbsd-elf.h"
1107 i[34567]86-*-netbsd*)
1108 tm_file=i386/netbsd.h
1112 i[34567]86-*-openbsd*)
1113 # needed to unconfuse gdb
1114 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
1115 # we need collect2 until our bug is fixed...
1119 tm_file=i386/i386-coff.h
1121 i[34567]86-*-isc*) # 80386 running ISC system
1123 if test x$gas = xyes -a x$stabs = xyes
1125 tm_file=i386/iscdbx.h
1126 tmake_file=i386/t-svr3dbx
1127 extra_parts="svr3.ifile svr3z.ifile"
1129 tm_file=i386/isccoff.h
1130 tmake_file=i386/t-crtstuff
1131 extra_parts="crtbegin.o crtend.o"
1133 install_headers_dir=install-headers-cpio
1135 i[34567]86-*-linux*oldld*) # Intel 80386's running GNU/Linux
1136 # with a.out format using
1138 tmake_file="t-linux-aout i386/t-crtstuff"
1139 tm_file=i386/linux-oldld.h
1143 i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux
1145 tmake_file="t-linux-aout i386/t-crtstuff"
1146 tm_file=i386/linux-aout.h
1150 i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux
1151 # with ELF format using the
1152 # GNU/Linux C library 5
1154 tm_file="${tm_file} i386/att.h elfos.h svr4.h linux.h i386/linux.h"
1155 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
1156 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1159 if test x$enable_threads = xyes; then
1160 thread_file='single'
1163 i[34567]86-*-linux*) # Intel 80386's running GNU/Linux
1164 # with ELF format using glibc 2
1165 # aka GNU/Linux C library 6
1167 tm_file="${tm_file} i386/att.h elfos.h svr4.h linux.h i386/linux.h"
1168 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1169 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1172 if test x$enable_threads = xyes; then
1178 tm_file="i386/biarch64.h i386/i386.h i386/att.h elfos.h svr4.h linux.h \
1179 i386/x86-64.h i386/linux64.h"
1180 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1181 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1184 if test x$enable_threads = xyes; then
1191 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1192 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1195 i[34567]86-pc-msdosdjgpp*)
1196 xm_file=i386/xm-djgpp.h
1197 tm_file=i386/djgpp.h
1198 xmake_file=i386/x-djgpp
1203 case $host in *pc-msdosdjgpp*)
1208 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1209 tm_file="${tm_file} i386/att.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
1210 tmake_file=t-libc-ok
1214 i[34567]86-*-lynxos*)
1215 if test x$gas = xyes
1219 tm_file=i386/lynx-ng.h
1224 # tmake_file=t-libc-ok
1227 i[34567]86-*-osfrose*) # 386 using OSF/rose
1228 if test x$elf = xyes
1230 tm_file=i386/osfelf.h
1233 tm_file=i386/osfrose.h
1236 tmake_file=i386/t-osf
1237 extra_objs=halfpic.o
1239 i[34567]86-go32-rtems*)
1240 tm_file=i386/djgpp-rtems.h
1242 if test x$enable_threads = xyes; then
1246 i[34567]86-*-rtemscoff*)
1247 tm_file=i386/rtems.h
1249 if test x$enable_threads = xyes; then
1253 i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
1254 tm_file="${tm_file} i386/att.h elfos.h svr4.h linux.h i386/rtemself.h rtems.h"
1255 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1256 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1257 if test x$enable_threads = xyes; then
1261 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1263 xmake_file=i386/x-sco5
1264 install_headers_dir=install-headers-cpio
1266 if test x$gas = xyes
1268 tm_file="usegas.h ${tm_file}"
1269 tmake_file=i386/t-sco5gas
1271 tmake_file=i386/t-sco5
1273 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1275 i[34567]86-*-solaris2*)
1276 xm_defines="POSIX SMALL_ARG_MAX"
1277 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h i386/sol2.h"
1278 if test x$gas = xyes; then
1279 # Only needed if gas does not support -s
1280 tm_file="i386/sol2gas.h ${tm_file}"
1282 tmake_file=i386/t-sol2
1283 if test x$gnu_ld = xyes; then
1284 tmake_file="$tmake_file t-slibgcc-elf-ver"
1286 tmake_file="$tmake_file t-slibgcc-sld"
1288 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1290 if test x${enable_threads} = x; then
1291 enable_threads=$have_pthread_h
1292 if test x${enable_threads} = x; then
1293 enable_threads=$have_thread_h
1296 if test x${enable_threads} = xyes; then
1297 if test x${have_pthread_h} = xyes; then
1300 thread_file='solaris'
1304 i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
1306 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1307 if test x$stabs = xyes
1309 tm_file="${tm_file} dbx.h"
1311 tmake_file=i386/t-crtpic
1313 extra_parts="crtbegin.o crtend.o"
1314 if test x$enable_threads = xyes; then
1318 i[34567]86-*-sysv4*) # Intel 80386's running system V.4
1319 xm_defines="POSIX SMALL_ARG_MAX"
1320 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h"
1321 if test x$stabs = xyes
1323 tm_file="${tm_file} dbx.h"
1325 tmake_file=i386/t-crtpic
1327 extra_parts="crtbegin.o crtend.o"
1329 i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
1331 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
1332 tmake_file="i386/t-crtpic i386/t-udk"
1334 extra_parts="crtbegin.o crtend.o"
1335 install_headers_dir=install-headers-cpio
1337 i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+
1338 xm_file=i386/xm-osf1elf.h
1339 xm_defines='POSIX USE_C_ALLOCA SMALL_ARG_MAX'
1340 if test x$stabs = xyes
1342 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h i386/osf1elfgdb.h"
1344 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h"
1346 tmake_file=i386/t-osf1elf
1347 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1349 i[34567]86-*-sysv*) # Intel 80386's running system V
1351 if test x$gas = xyes
1353 if test x$stabs = xyes
1355 tm_file=i386/svr3dbx.h
1356 tmake_file=i386/t-svr3dbx
1357 extra_parts="svr3.ifile svr3z.rfile"
1359 tm_file=i386/svr3gas.h
1360 extra_parts="crtbegin.o crtend.o"
1361 tmake_file=i386/t-crtstuff
1364 tm_file=i386/sysv3.h
1365 extra_parts="crtbegin.o crtend.o"
1366 tmake_file=i386/t-crtstuff
1368 tmake_file="$tmake_file i386/t-crtpic"
1370 i386-*-vsta) # Intel 80386's running VSTa kernel
1371 xm_file=i386/xm-vsta.h
1376 xm_file=i386/xm-cygwin.h
1378 tmake_file=i386/t-cygwin
1379 tm_file=i386/win32.h
1380 xmake_file=i386/x-cygwin
1382 if test x$enable_threads = xyes; then
1387 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1389 xm_file=i386/xm-cygwin.h
1391 tmake_file=i386/t-cygwin
1392 tm_file=i386/cygwin.h
1393 xmake_file=i386/x-cygwin
1395 if test x$enable_threads = xyes; then
1400 i[34567]86-*-mingw32*)
1401 tm_file=i386/mingw32.h
1404 xm_file=i386/xm-mingw32.h
1405 tmake_file="i386/t-cygwin i386/t-mingw32"
1407 xmake_file=i386/x-cygwin
1408 if test x$enable_threads = xyes; then
1414 tm_file="${tm_file} i386/crtdll.h"
1416 *minwg32msv* | *mingw32*)
1422 tmake_file="i386/t-cygwin i386/t-uwin"
1424 xmake_file=i386/x-cygwin
1425 if test x$enable_threads = xyes; then
1430 i[34567]86-*-interix*)
1431 tm_file="i386/i386-interix.h interix.h"
1432 xm_file="i386/xm-i386-interix.h xm-interix.h"
1434 tmake_file="i386/t-interix"
1435 extra_objs=interix.o
1436 xmake_file=x-interix
1437 if test x$enable_threads = xyes ; then
1440 if test x$stabs = xyes ; then
1441 tm_file="${tm_file} dbxcoff.h"
1444 i[34567]86-dg-dgux*)
1446 tm_file="${tm_file} i386/att.h elfos.h svr4.h i386/sysv4.h i386/dgux.h"
1447 tmake_file=i386/t-dgux
1448 xmake_file=i386/x-dgux
1449 install_headers_dir=install-headers-cpio
1451 i860-alliant-*) # Alliant FX/2800
1452 tm_file="${tm_file} elfos.h svr4.h i860/sysv4.h i860/fx2800.h"
1453 tmake_file=i860/t-fx2800
1454 extra_parts="crtbegin.o crtend.o"
1457 tm_file="${tm_file} i860/bsd.h"
1458 if test x$gas = xyes
1460 tm_file="${tm_file} i860/bsd-gas.h"
1465 tm_file="${tm_file} i860/mach.h"
1466 tmake_file=t-libc-ok
1468 i860-*-osf*) # Intel Paragon XP/S, OSF/1AD
1469 tm_file="${tm_file} svr3.h i860/paragon.h"
1473 tm_file="${tm_file} svr3.h i860/sysv3.h"
1475 extra_parts="crtbegin.o crtend.o"
1478 tm_file="${tm_file} elfos.h svr4.h i860/sysv4.h"
1481 extra_parts="crtbegin.o crtend.o"
1483 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1484 tm_file="${tm_file} i960/vx960.h"
1485 tmake_file=i960/t-vxworks960
1487 thread_file='vxworks'
1488 c_target_objs="i960-c.o"
1489 cxx_target_objs="i960-c.o"
1491 i960-wrs-vxworks5* | i960-wrs-vxworks)
1492 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1493 tmake_file=i960/t-vxworks960
1495 thread_file='vxworks'
1496 c_target_objs="i960-c.o"
1497 cxx_target_objs="i960-c.o"
1500 tm_file="${tm_file} i960/vx960.h"
1501 tmake_file=i960/t-vxworks960
1503 thread_file='vxworks'
1504 c_target_objs="i960-c.o"
1505 cxx_target_objs="i960-c.o"
1508 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1509 tmake_file=i960/t-960bare
1510 c_target_objs="i960-c.o"
1511 cxx_target_objs="i960-c.o"
1514 tmake_file="i960/t-960bare t-rtems"
1515 tm_file="${tm_file} dbxcoff.h i960/rtems.h"
1516 if test x$enable_threads = xyes; then
1519 c_target_objs="i960-c.o"
1520 cxx_target_objs="i960-c.o"
1522 i960-*-*) # Default i960 environment.
1524 tmake_file=i960/t-960bare
1525 c_target_objs="i960-c.o"
1526 cxx_target_objs="i960-c.o"
1529 tm_file="${tm_file} elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
1530 tmake_file="ia64/t-ia64 ia64/t-aix"
1531 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1534 tm_file="${tm_file} elfos.h ia64/sysv4.h ia64/elf.h"
1535 tmake_file="ia64/t-ia64"
1536 target_cpu_default="0"
1537 if test x$gas = xyes
1539 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1541 if test x$gnu_ld = xyes
1543 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1548 tm_file="${tm_file} ${fbsd_tm_file} elfos.h ia64/sysv4.h ia64/freebsd.h"
1549 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1550 tmake_file="${tmake_file} ia64/t-ia64"
1554 tm_file="${tm_file} elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1555 tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1556 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1557 if test x$enable_threads = xyes; then
1563 tm_file="${tm_file} elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1564 tmake_file="ia64/t-ia64 ia64/t-hpux"
1565 target_cpu_default="MASK_GNU_AS"
1566 if test x$enable_threads = xyes; then
1572 tm_file="elfos.h svr4.h ${tm_file}"
1573 extra_parts="crtinit.o crtfini.o"
1575 # m68hc11 and m68hc12 share the same machine description.
1576 m68hc11-*-*|m6811-*-*)
1577 tm_file="elfos.h m68hc11/m68hc11.h"
1578 tm_p_file="m68hc11/m68hc11-protos.h"
1579 md_file="m68hc11/m68hc11.md"
1580 out_file="m68hc11/m68hc11.c"
1581 tmake_file="m68hc11/t-m68hc11-gas"
1583 m68hc12-*-*|m6812-*-*)
1584 tm_file="m68hc11/m68hc12.h elfos.h m68hc11/m68hc11.h"
1585 tm_p_file="m68hc11/m68hc11-protos.h"
1586 md_file="m68hc11/m68hc11.md"
1587 out_file="m68hc11/m68hc11.c"
1588 tmake_file="m68hc11/t-m68hc11-gas"
1590 m68000-convergent-sysv*)
1594 extra_headers=math-68881.h
1596 m68000-hp-bsd*) # HP 9000/200 running BSD
1597 tm_file=m68k/hp2bsd.h
1599 extra_headers=math-68881.h
1601 m68000-hp-hpux*) # HP 9000 series 300
1603 if test x$gas = xyes
1605 xmake_file=m68k/x-hp320g
1606 tm_file=m68k/hp310g.h
1608 xmake_file=m68k/x-hp320
1609 tm_file=m68k/hp310.h
1611 install_headers_dir=install-headers-cpio
1613 extra_headers=math-68881.h
1618 extra_headers=math-68881.h
1621 tm_file=m68k/sun2o4.h
1623 extra_headers=math-68881.h
1627 if test x$gas = xyes
1634 extra_headers=math-68881.h
1636 m68k-apple-aux*) # Apple Macintosh running A/UX
1638 tmake_file=m68k/t-aux
1639 install_headers_dir=install-headers-cpio
1640 extra_headers=math-68881.h
1641 extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1643 if test "$gnu_ld" = yes
1645 tm_file="${tm_file} m68k/auxgld.h"
1647 tm_file="${tm_file} m68k/auxld.h"
1649 if test "$gas" = yes
1651 tm_file="${tm_file} m68k/auxgas.h"
1653 tm_file="${tm_file} m68k/auxas.h"
1655 tm_file="${tm_file} m68k/a-ux.h"
1659 tm_file=m68k/apollo68.h
1661 extra_headers=math-68881.h
1664 m68k-altos-sysv*) # Altos 3068
1665 if test x$gas = xyes
1667 tm_file=m68k/altos3068.h
1670 echo "The Altos is supported only with the GNU assembler" 1>&2
1673 extra_headers=math-68881.h
1675 m68k-bull-sysv*) # Bull DPX/2
1676 if test x$gas = xyes
1678 if test x$stabs = xyes
1680 tm_file=m68k/dpx2cdbx.h
1682 tm_file=m68k/dpx2g.h
1689 extra_headers=math-68881.h
1691 m68k-atari-sysv4*) # Atari variant of V.4.
1692 tm_file=m68k/atari.h
1695 extra_parts="crtbegin.o crtend.o"
1696 extra_headers=math-68881.h
1699 m68k-motorola-sysv*)
1700 tm_file=m68k/mot3300.h
1702 if test x$gas = xyes
1704 if test x$gnu_ld = xyes
1706 tmake_file=m68k/t-mot3300-gald
1708 tmake_file=m68k/t-mot3300-gas
1712 if test x$gnu_ld = xyes
1714 tmake_file=m68k/t-mot3300-gld
1716 tmake_file=m68k/t-mot3300
1720 gdb_needs_out_file_path=yes
1721 extra_parts="crt0.o mcrt0.o"
1722 extra_headers=math-68881.h
1725 m68k-ncr-sysv*) # NCR Tower 32 SVR3
1726 tm_file=m68k/tower-as.h
1728 extra_parts="crtbegin.o crtend.o"
1729 extra_headers=math-68881.h
1732 tm_file=m68k/plexus.h
1735 extra_headers=math-68881.h
1740 extra_headers=math-68881.h
1746 extra_headers=math-68881.h
1748 m68k-cbm-sysv4*) # Commodore variant of V.4.
1752 extra_parts="crtbegin.o crtend.o"
1753 extra_headers=math-68881.h
1757 tm_file=m68k/ccur-GAS.h
1758 extra_headers=math-68881.h
1762 m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
1763 tm_file=m68k/hp3bsd44.h
1765 extra_headers=math-68881.h
1768 m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
1769 tm_file=m68k/hp3bsd.h
1771 extra_headers=math-68881.h
1775 if test x$with_fp = xno
1777 tm_file=m68k/isi-nfp.h
1783 extra_headers=math-68881.h
1785 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1787 if test x$gas = xyes
1789 xmake_file=m68k/x-hp320g
1790 tm_file=m68k/hp320g.h
1792 xmake_file=m68k/x-hp320
1793 tm_file=m68k/hpux7.h
1795 install_headers_dir=install-headers-cpio
1797 extra_headers=math-68881.h
1800 m68k-hp-hpux*) # HP 9000 series 300
1802 if test x$gas = xyes
1804 xmake_file=m68k/x-hp320g
1805 tm_file=m68k/hp320g.h
1807 xmake_file=m68k/x-hp320
1808 tm_file=m68k/hp320.h
1810 install_headers_dir=install-headers-cpio
1812 extra_headers=math-68881.h
1816 tm_file=m68k/sun3mach.h
1818 extra_headers=math-68881.h
1822 if test x$gas = xyes
1824 tm_file=m68k/news3gas.h
1826 tm_file=m68k/news3.h
1829 extra_headers=math-68881.h
1832 m68k-sony-bsd* | m68k-sony-newsos*)
1833 if test x$gas = xyes
1835 tm_file=m68k/newsgas.h
1840 extra_headers=math-68881.h
1843 m68k-next-nextstep2*)
1844 tm_file=m68k/next21.h
1845 tmake_file=m68k/t-next
1846 xmake_file=m68k/x-next
1847 extra_objs=nextstep.o
1848 extra_headers=math-68881.h
1852 m68k-next-nextstep[34]*)
1854 tmake_file=m68k/t-next
1855 xmake_file=m68k/x-next
1856 extra_objs=nextstep.o
1857 extra_parts="crtbegin.o crtend.o"
1858 extra_headers=math-68881.h
1860 if test x$enable_threads = xyes; then
1865 if test x$with_fp = xno
1867 tm_file=m68k/sun3n3.h
1869 tm_file=m68k/sun3o3.h
1873 extra_headers=math-68881.h
1875 m68k-sun-sunos*) # For SunOS 4 (the default).
1876 if test x$with_fp = xno
1878 tm_file=m68k/sun3n.h
1884 extra_headers=math-68881.h
1887 tm_file=m68k/vxm68k.h
1888 tmake_file=m68k/t-vxworks68
1889 extra_headers=math-68881.h
1890 thread_file='vxworks'
1894 tmake_file=m68k/t-m68kbare
1895 tm_file="m68k/m68k-aout.h libgloss.h"
1896 extra_headers=math-68881.h
1900 tmake_file=m68k/t-m68kbare
1901 tm_file="m68k/m68k-coff.h dbx.h"
1902 extra_headers=math-68881.h
1905 m68020-*-elf* | m68k-*-elf*)
1906 tm_file="m68k/m68020-elf.h"
1908 tmake_file=m68k/t-m68kelf
1909 header_files=math-68881.h
1910 extra_parts="crtbegin.o crtend.o"
1913 if test x$gas = xyes
1917 tm_file=m68k/lynx-ng.h
1919 tmake_file=m68k/t-lynx
1920 extra_headers=math-68881.h
1924 tm_file=m68k/netbsd.h
1930 # needed to unconfuse gdb
1931 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1933 # we need collect2 until our bug is fixed...
1936 m68k-*-sysv3*) # Motorola m68k's running system V.3
1938 extra_parts="crtbegin.o crtend.o"
1939 extra_headers=math-68881.h
1942 m68k-*-sysv4*) # Motorola m68k's running system V.4
1943 tm_file=m68k/m68kv4.h
1946 extra_parts="crtbegin.o crtend.o"
1947 extra_headers=math-68881.h
1950 m68k-*-linux*aout*) # Motorola m68k's running GNU/Linux
1953 tm_file=m68k/linux-aout.h
1954 tmake_file="t-linux-aout m68k/t-linux-aout"
1955 extra_headers=math-68881.h
1959 m68k-*-linux*libc1) # Motorola m68k's running GNU/Linux
1960 # with ELF format using the
1961 # GNU/Linux C library 5
1963 tm_file=m68k/linux.h
1964 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
1965 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1966 extra_headers=math-68881.h
1970 m68k-*-linux*) # Motorola m68k's running GNU/Linux
1971 # with ELF format using glibc 2
1972 # aka the GNU/Linux C library 6.
1974 tm_file=m68k/linux.h
1975 tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
1976 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1977 extra_headers=math-68881.h
1980 if test x$enable_threads = xyes; then
1985 tmake_file=m68k/t-m68kbare
1986 tm_file=m68k/m68k-psos.h
1987 extra_headers=math-68881.h
1991 tmake_file="m68k/t-m68kbare t-rtems"
1992 tm_file=m68k/rtems.h
1993 extra_headers=math-68881.h
1995 if test x$enable_threads = xyes; then
1999 m68k-*-rtemself*|m68k-*-rtems*)
2000 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
2001 tm_file=m68k/rtemself.h
2002 extra_headers=math-68881.h
2004 extra_parts="crtbegin.o crtend.o"
2005 if test x$enable_threads = xyes; then
2013 tm_file="elfos.h svr4.h m88k/dgux.h m88k/dguxbcs.h"
2014 tmake_file=m88k/t-dguxbcs
2017 tm_file="elfos.h svr4.h m88k/dgux.h"
2018 tmake_file=m88k/t-dgux
2021 extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
2022 xmake_file=m88k/x-dgux
2023 if test x$gas = xyes
2025 tmake_file=m88k/t-dgux-gas
2028 m88k-dolphin-sysv3*)
2030 tm_file=m88k/dolph.h
2031 extra_parts="crtbegin.o crtend.o"
2032 xmake_file=m88k/x-dolph
2033 if test x$gas = xyes
2035 tmake_file=m88k/t-m88k-gas
2038 m88k-tektronix-sysv3)
2040 tm_file=m88k/tekXD88.h
2041 extra_parts="crtbegin.o crtend.o"
2042 xmake_file=m88k/x-tekXD88
2043 if test x$gas = xyes
2045 tmake_file=m88k/t-m88k-gas
2050 tm_file=m88k/m88k-aout.h
2054 tm_file=m88k/m88k-coff.h
2055 tmake_file=m88k/t-bug
2059 extra_parts="crtbegin.o crtend.o"
2060 if test x$gas = xyes
2062 tmake_file=m88k/t-luna-gas
2064 tmake_file=m88k/t-luna
2068 tmake_file="${tmake_file} m88k/t-luna-gas"
2069 tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
2073 tm_file=m88k/sysv3.h
2074 extra_parts="crtbegin.o crtend.o"
2075 if test x$gas = xyes
2077 tmake_file=m88k/t-m88k-gas
2082 tm_file="elfos.h svr4.h m88k/sysv4.h"
2083 extra_parts="crtbegin.o crtend.o"
2084 tmake_file=m88k/t-sysv4
2087 tm_file="elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
2088 tmake_file=mcore/t-mcore
2091 tm_file=mcore/mcore-pe.h
2092 tmake_file=mcore/t-mcore-pe
2094 mips-sgi-irix6*) # SGI System V.4., IRIX 6
2095 if test "x$gnu_ld" = xyes
2097 tm_file="mips/iris6.h mips/iris6gld.h"
2099 tm_file=mips/iris6.h
2101 tmake_file=mips/t-iris6
2103 xmake_file=mips/x-iris6
2104 # if test x$enable_threads = xyes; then
2105 # thread_file='irix'
2109 tm_file="mips/elf.h mips/vxworks.h"
2110 tmake_file=mips/t-ecoff
2113 extra_parts="crtbegin.o crtend.o"
2114 thread_file='vxworks'
2116 mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
2117 tm_file="mips/iris6.h mips/cross64.h"
2119 xm_file=mips/xm-iris5.h
2120 xmake_file=mips/x-iris
2121 tmake_file=mips/t-cross64
2122 # See comment in mips/iris[56].h files.
2124 # if test x$enable_threads = xyes; then
2125 # thread_file='irix'
2129 if test x$gas = xyes
2131 if test x$stabs = xyes
2133 tm_file=mips/iris5gdb.h
2135 tm_file="mips/sni-svr4.h mips/sni-gas.h"
2138 tm_file=mips/sni-svr4.h
2141 if test x$gnu_ld != xyes
2146 mips-sgi-irix5*) # SGI System V.4., IRIX 5
2147 if test x$gas = xyes
2149 tm_file="mips/iris5.h mips/iris5gas.h"
2150 if test x$stabs = xyes
2152 tm_file="${tm_file} dbx.h"
2155 tm_file=mips/iris5.h
2158 xm_file=mips/xm-iris5.h
2159 xmake_file=mips/x-iris
2160 # mips-tfile doesn't work yet
2161 # See comment in mips/iris5.h file.
2163 # if test x$enable_threads = xyes; then
2164 # thread_file='irix'
2167 mips-sgi-irix4loser*) # Mostly like a MIPS.
2168 tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
2169 if test x$stabs = xyes; then
2170 tm_file="${tm_file} dbx.h"
2173 xmake_file=mips/x-iris
2174 if test x$gas = xyes
2177 extra_passes="mips-tfile mips-tdump"
2179 if test x$gnu_ld != xyes
2183 # if test x$enable_threads = xyes; then
2184 # thread_file='irix'
2187 mips-sgi-irix4*) # Mostly like a MIPS.
2188 tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
2189 if test x$stabs = xyes; then
2190 tm_file="${tm_file} dbx.h"
2193 xmake_file=mips/x-iris
2194 if test x$gas = xyes
2197 extra_passes="mips-tfile mips-tdump"
2199 if test x$gnu_ld != xyes
2203 # if test x$enable_threads = xyes; then
2204 # thread_file='irix'
2207 mips-sgi-*) # Mostly like a MIPS.
2208 tm_file="mips/iris3.h ${tm_file}"
2209 if test x$stabs = xyes; then
2210 tm_file="${tm_file} dbx.h"
2213 if test x$gas = xyes
2216 extra_passes="mips-tfile mips-tdump"
2218 if test x$gnu_ld != xyes
2223 mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose.
2224 tm_file="mips/osfrose.h ${tm_file}"
2225 extra_objs=halfpic.o
2228 mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL
2229 tm_file=mips/dec-osf1.h
2230 if test x$stabs = xyes; then
2231 tm_file="${tm_file} dbx.h"
2233 if test x$gas = xyes
2236 tmake_file=mips/t-ultrix
2237 extra_passes="mips-tfile mips-tdump"
2239 if test x$gnu_ld != xyes
2244 mips-dec-bsd*) # Decstation running 4.4 BSD
2245 tm_file=mips/dec-bsd.h
2246 if test x$gas = xyes
2249 tmake_file=mips/t-ultrix
2250 extra_passes="mips-tfile mips-tdump"
2252 if test x$gnu_ld != xyes
2257 mipsel-*-netbsd* | mips-dec-netbsd*) # Decstation running NetBSD
2258 tm_file=mips/netbsd.h
2259 # On NetBSD, the headers are already okay, except for math.h.
2262 mips*-*-linux*) # Linux MIPS, either endian.
2264 tm_file="elfos.h svr4.h linux.h mips/linux.h"
2267 tm_file="$tm_file mips/isa32-linux.h"
2268 target_cpu_default="MASK_SOFT_FLOAT"
2273 tm_file="mips/little.h $tm_file"
2276 tmake_file="t-slibgcc-elf-ver t-linux"
2277 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2280 if test x$enable_threads = xyes; then
2284 mips*el-*-openbsd*) # mips little endian
2285 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2287 mips*-*-openbsd*) # mips big endian
2288 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2289 tm_file="mips/openbsd-be.h ${tm_file}"
2291 mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
2292 tm_file="mips/news4.h ${tm_file}"
2293 if test x$stabs = xyes; then
2294 tm_file="${tm_file} dbx.h"
2296 if test x$gas = xyes
2299 extra_passes="mips-tfile mips-tdump"
2301 if test x$gnu_ld != xyes
2306 mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0.
2307 # That is based on svr4.
2308 # t-svr4 is not right because this system doesn't use ELF.
2309 tm_file="mips/news5.h ${tm_file}"
2310 if test x$stabs = xyes; then
2311 tm_file="${tm_file} dbx.h"
2314 if test x$gas = xyes
2317 extra_passes="mips-tfile mips-tdump"
2319 if test x$gnu_ld != xyes
2324 mips-tandem-sysv4*) # Tandem S2 running NonStop UX
2325 tm_file="mips/svr4-5.h mips/svr4-t.h"
2326 if test x$stabs = xyes; then
2327 tm_file="${tm_file} dbx.h"
2330 if test x$gas = xyes
2332 extra_parts="crtbegin.o crtend.o"
2334 extra_passes="mips-tfile mips-tdump"
2336 if test x$gnu_ld != xyes
2341 mips-*-ultrix* | mips-dec-mach3) # Decstation.
2342 tm_file="mips/ultrix.h ${tm_file}"
2343 if test x$stabs = xyes; then
2344 tm_file="${tm_file} dbx.h"
2346 if test x$gas = xyes
2349 tmake_file=mips/t-ultrix
2350 extra_passes="mips-tfile mips-tdump"
2352 if test x$gnu_ld != xyes
2357 mips-*-riscos[56789]bsd*)
2358 tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0
2359 if test x$stabs = xyes; then
2360 tm_file="${tm_file} dbx.h"
2362 if test x$gas = xyes
2364 tmake_file=mips/t-bsd-gas
2366 tmake_file=mips/t-bsd
2367 extra_passes="mips-tfile mips-tdump"
2369 if test x$gnu_ld != xyes
2374 mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2375 tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
2376 if test x$stabs = xyes; then
2377 tm_file="${tm_file} dbx.h"
2379 if test x$gas = xyes
2381 tmake_file=mips/t-bsd-gas
2383 tmake_file=mips/t-bsd
2384 extra_passes="mips-tfile mips-tdump"
2386 if test x$gnu_ld != xyes
2391 mips-*-riscos[56789]sysv4*)
2392 tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0
2393 if test x$stabs = xyes; then
2394 tm_file="${tm_file} dbx.h"
2396 if test x$gas = xyes
2398 tmake_file=mips/t-svr4-gas
2400 tmake_file=mips/t-svr4
2401 extra_passes="mips-tfile mips-tdump"
2403 if test x$gnu_ld != xyes
2408 mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2409 tm_file="mips/svr4-4.h ${tm_file}"
2410 if test x$stabs = xyes; then
2411 tm_file="${tm_file} dbx.h"
2414 if test x$gas = xyes
2416 tmake_file=mips/t-svr4-gas
2418 tmake_file=mips/t-svr4
2419 extra_passes="mips-tfile mips-tdump"
2421 if test x$gnu_ld != xyes
2426 mips-*-riscos[56789]sysv*)
2427 tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0
2428 if test x$stabs = xyes; then
2429 tm_file="${tm_file} dbx.h"
2432 if test x$gas = xyes
2434 tmake_file=mips/t-svr3-gas
2436 tmake_file=mips/t-svr3
2437 extra_passes="mips-tfile mips-tdump"
2439 if test x$gnu_ld != xyes
2444 mips-*-sysv* | mips-*-riscos*sysv*)
2445 tm_file="mips/svr3-4.h ${tm_file}"
2446 if test x$stabs = xyes; then
2447 tm_file="${tm_file} dbx.h"
2450 if test x$gas = xyes
2452 tmake_file=mips/t-svr3-gas
2454 tmake_file=mips/t-svr3
2455 extra_passes="mips-tfile mips-tdump"
2457 if test x$gnu_ld != xyes
2462 mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0.
2463 tm_file=mips/mips-5.h
2464 if test x$stabs = xyes; then
2465 tm_file="${tm_file} dbx.h"
2467 if test x$gas = xyes
2470 extra_passes="mips-tfile mips-tdump"
2472 if test x$gnu_ld != xyes
2478 tm_file=mips/ecoffl.h
2479 if test x$stabs = xyes; then
2480 tm_file="${tm_file} dbx.h"
2482 tmake_file=mips/t-ecoff
2485 tm_file="gofast.h mips/ecoff.h"
2486 if test x$stabs = xyes; then
2487 tm_file="${tm_file} dbx.h"
2489 tmake_file=mips/t-ecoff
2492 tm_file="mips/isa3264.h mips/abi64.h"
2493 tmake_file=mips/t-isa3264
2494 target_cpu_default="MASK_SOFT_FLOAT"
2497 tm_file="mips/elfl.h"
2498 tmake_file=mips/t-elf
2501 tm_file="mips/elf.h"
2502 tmake_file=mips/t-elf
2505 tm_file="mips/elfl64.h"
2506 tmake_file=mips/t-elf
2508 mips64orionel-*-elf*)
2509 tm_file="mips/elforion.h mips/elfl64.h"
2510 tmake_file=mips/t-elf
2513 tm_file="mips/elf64.h"
2514 tmake_file=mips/t-elf
2517 tm_file="mips/elforion.h mips/elf64.h"
2518 tmake_file=mips/t-elf
2520 mips64orion-*-rtems*)
2521 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
2522 tmake_file="mips/t-elf t-rtems"
2523 if test x$enable_threads = xyes; then
2528 tm_file="mips/elf.h mips/rtems.h"
2529 tmake_file="mips/t-elf t-rtems"
2530 if test x$enable_threads = xyes; then
2535 tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
2536 tmake_file=mips/t-r3900
2537 target_cpu_default="MASK_SOFT_FLOAT"
2540 tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
2541 tmake_file=mips/t-r3900
2543 mips-*-*) # Default MIPS RISC-OS 4.0.
2544 if test x$stabs = xyes; then
2545 tm_file="${tm_file} dbx.h"
2547 if test x$gas = xyes
2550 extra_passes="mips-tfile mips-tdump"
2552 if test x$gnu_ld != xyes
2557 mmix-knuth-mmixware)
2561 tm_file="elfos.h svr4.h ${tm_file}"
2562 if test x$stabs = xyes
2564 tm_file="${tm_file} dbx.h"
2569 tm_file="elfos.h svr4.h ${tm_file}"
2570 if test x$stabs = xyes
2572 tm_file="${tm_file} dbx.h"
2577 tm_file=ns32k/encore.h
2581 tm_file=ns32k/sequent.h
2585 tm_file=ns32k/tek6100.h
2589 tm_file=ns32k/tek6200.h
2593 tm_file=ns32k/merlin.h
2597 tm_file=ns32k/pc532-mach.h
2601 tm_file=ns32k/pc532-min.h
2602 xm_defines='POSIX HZ=60'
2606 tm_file=ns32k/netbsd.h
2607 # On NetBSD, the headers are already okay, except for math.h.
2612 tm_file="${tm_file} pdp11/2bsd.h"
2622 tm_file="elfos.h svr4.h pj/linux.h ${tm_file}"
2627 tm_file="elfos.h svr4.h pj/pjl.h ${tm_file}"
2640 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
2643 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/linux64.h"
2644 out_file=rs6000/rs6000.c
2645 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2647 extra_headers=ppc-asm.h
2650 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
2652 xm_file=rs6000/xm-beos.h
2653 tmake_file=rs6000/t-beos
2656 tm_file="${tm_file} darwin.h rs6000/darwin.h"
2657 tm_p_file="${tm_p_file} darwin-protos.h"
2658 tmake_file=rs6000/t-darwin
2659 xmake_file=rs6000/x-darwin
2660 # Override the usual setting, since Apple's GCC has lame bugs
2661 # and can't handle the initializers. Someday the bugs will be
2662 # fixed and we can get rid of this silliness.
2663 xm_defines="HAVE_DESIGNATED_INITIALIZERS=0"
2664 extra_objs="darwin.o"
2665 c_target_objs="darwin-c.o"
2666 cxx_target_objs="darwin-c.o"
2667 # Darwin linker does collect2 functionality
2671 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h"
2673 extra_headers=ppc-asm.h
2674 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2678 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/netbsd.h"
2679 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2680 extra_headers=ppc-asm.h
2682 powerpc-*-chorusos*)
2684 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h chorus.h"
2685 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2686 extra_headers=ppc-asm.h
2687 case x${enable_threads} in
2688 xyes | xpthreads | xposix)
2695 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
2696 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2697 extra_headers=ppc-asm.h
2701 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
2702 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2703 extra_headers=ppc-asm.h
2707 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h"
2708 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2709 extra_headers=ppc-asm.h
2713 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/eabi.h"
2714 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2715 extra_headers=ppc-asm.h
2719 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/eabi.h rtems.h rs6000/rtems.h"
2720 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2721 extra_headers=ppc-asm.h
2722 if test x$enable_threads = xyes; then
2726 powerpc-*-linux*libc1)
2727 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/linux.h"
2728 out_file=rs6000/rs6000.c
2729 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2731 extra_headers=ppc-asm.h
2732 if test x$enable_threads = xyes; then
2737 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/linux.h"
2738 out_file=rs6000/rs6000.c
2739 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2741 extra_headers=ppc-asm.h
2742 if test x$enable_threads = xyes; then
2746 powerpc-wrs-vxworks*)
2748 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/vxppc.h"
2749 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2750 extra_headers=ppc-asm.h
2751 thread_file='vxworks'
2753 powerpcle-wrs-vxworks*)
2755 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h"
2756 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2757 extra_headers=ppc-asm.h
2758 thread_file='vxworks'
2761 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/sysv4le.h"
2763 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2764 extra_headers=ppc-asm.h
2768 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/sysv4le.h"
2769 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2770 extra_headers=ppc-asm.h
2772 powerpcle-*-eabisim*)
2774 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/eabisim.h"
2775 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2776 extra_headers=ppc-asm.h
2780 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
2781 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2782 extra_headers=ppc-asm.h
2784 powerpcle-*-solaris2*)
2785 tm_file="${tm_file} elfos.h svr4.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/sol2.h"
2787 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2788 extra_headers=ppc-asm.h
2790 rs6000-ibm-aix3.[01]*)
2792 tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
2796 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
2798 tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
2799 tmake_file=rs6000/t-newas
2803 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
2805 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
2806 tmake_file=rs6000/t-newas
2810 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2812 tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
2813 tmake_file=rs6000/t-aix43
2818 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
2820 tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
2821 tmake_file=rs6000/t-aix43
2828 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2834 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2839 tm_file="${tm_file} rs6000/mach.h"
2844 tm_file=rs6000/lynx.h
2845 tmake_file=rs6000/t-rs6000
2850 tm_file="s390/s390.h elfos.h svr4.h linux.h s390/linux.h"
2851 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
2852 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2853 if test x$enable_threads = xyes; then
2859 tm_file="s390/s390.h elfos.h svr4.h linux.h s390/linux.h s390/linux64.h"
2860 tm_p_file=s390/s390-protos.h
2861 md_file=s390/s390.md
2862 out_file=s390/s390.c
2863 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
2864 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2865 if test x$enable_threads = xyes; then
2870 tmake_file="sh/t-sh sh/t-elf"
2871 tm_file="${tm_file} sh/elf.h"
2875 tmake_file="sh/t-sh sh/t-elf t-rtems"
2876 tm_file="${tm_file} sh/elf.h sh/rtemself.h"
2878 if test x$enable_threads = xyes; then
2883 tmake_file="sh/t-sh t-rtems"
2884 tm_file="${tm_file} sh/rtems.h"
2886 if test x$enable_threads = xyes; then
2891 tm_file="${tm_file} sh/elf.h sh/linux.h"
2892 tmake_file="sh/t-sh sh/t-elf sh/t-linux"
2895 if test x$enable_threads = xyes; then
2907 sparc64-wrs-vxworks*)
2908 tm_file="sparc/sol2.h sparc/elf.h sparc/vxsparc64.h"
2909 tmake_file=sparc/t-vxsparc64
2912 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
2913 tm_file=sparc/vxsparc.h
2914 tmake_file=sparc/t-vxsparc
2916 thread_file='vxworks'
2919 tmake_file=sparc/t-sparcbare
2920 tm_file="sparc/aout.h libgloss.h"
2923 tm_file=sparc/netbsd.h
2928 # needed to unconfuse gdb
2929 tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
2930 # we need collect2 until our bug is fixed...
2934 tm_file="${tm_file} sparc/bsd.h"
2937 tm_file="sparc/sol2.h sparc/elf.h chorus.h"
2938 tmake_file=sparc/t-chorus-elf
2939 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2941 case x${enable_threads} in
2942 xyes | xpthreads | xposix)
2948 tm_file="sparc/sol2.h sparc/elf.h"
2949 tmake_file=sparc/t-elf
2950 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2954 sparc-*-linux*aout*) # Sparc's running GNU/Linux, a.out
2955 tm_file=sparc/linux-aout.h
2959 sparc-*-linux*libc1*) # Sparc's running GNU/Linux, libc5
2961 tm_file=sparc/linux.h
2962 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1"
2963 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2967 sparc-*-linux*) # Sparc's running GNU/Linux, libc6
2969 tm_file=sparc/linux.h
2970 tmake_file="t-slibgcc-elf-ver t-linux"
2971 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2973 if test x$enable_threads = xyes; then
2979 if test x$gas = xyes
2981 tm_file=sparc/lynx.h
2983 tm_file=sparc/lynx-ng.h
2985 tmake_file=sparc/t-sunos41
2988 tmake_file="sparc/t-sparcbare t-rtems"
2989 tm_file=sparc/rtems.h
2990 if test x$enable_threads = xyes; then
2994 sparc-*-rtems*|sparc-*-rtemself*)
2995 tm_file="sparc/sol2.h sparc/elf.h sparc/rtemself.h"
2996 tmake_file="sparc/t-elf t-rtems"
2997 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3000 if test x$enable_threads = xyes; then
3004 sparcv9-*-solaris2* | sparc64-*-solaris2*)
3005 if test x$gnu_ld = xyes
3007 tm_file=sparc/sol2-64.h
3009 tm_file=sparc/sol2-sld-64.h
3012 tmake_file="sparc/t-sol2 sparc/t-sol2-64"
3013 if test x$gnu_ld = xyes; then
3014 tmake_file="$tmake_file t-slibgcc-elf-ver"
3016 tmake_file="$tmake_file t-slibgcc-sld"
3018 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
3020 if test x${enable_threads} = x ; then
3021 enable_threads=$have_pthread_h
3022 if test x${enable_threads} = x ; then
3023 enable_threads=$have_thread_h
3026 if test x${enable_threads} = xyes ; then
3027 if test x${have_pthread_h} = xyes ; then
3030 thread_file='solaris'
3034 sparc-hal-solaris2*)
3036 tm_file="sparc/sol2.h sparc/hal.h"
3037 tmake_file="sparc/t-halos sparc/t-sol2"
3038 if test x$gnu_ld = xyes; then
3039 tmake_file="$tmake_file t-slibgcc-elf-ver"
3041 tmake_file="$tmake_file t-slibgcc-sld"
3043 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
3052 thread_file='solaris'
3055 if test x$gnu_ld = xyes
3057 tm_file=sparc/sol2.h
3059 tm_file=sparc/sol2-sld.h
3062 tmake_file=sparc/t-sol2
3063 if test x$gnu_ld = xyes; then
3064 tmake_file="$tmake_file t-slibgcc-elf-ver"
3066 tmake_file="$tmake_file t-slibgcc-sld"
3068 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
3070 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*) ;;
3072 if test x$gnu_ld = xyes
3074 tm_file=sparc/sol2-64.h
3076 tm_file=sparc/sol2-sld-64.h
3078 tmake_file="$tmake_file sparc/t-sol2-64"
3089 if test x${enable_threads} = x; then
3090 enable_threads=$have_pthread_h
3091 if test x${enable_threads} = x; then
3092 enable_threads=$have_thread_h
3095 if test x${enable_threads} = xyes; then
3096 if test x${have_pthread_h} = xyes; then
3099 thread_file='solaris'
3104 tm_file=sparc/sunos4.h
3108 tm_file=sparc/sunos4.h
3109 tmake_file=sparc/t-sunos41
3111 if test x$gas = xyes; then
3112 tm_file="${tm_file} sparc/sun4gas.h"
3116 tm_file=sparc/sun4o3.h
3120 tm_file=sparc/sysv4.h
3123 extra_parts="crtbegin.o crtend.o"
3127 tm_file=sparc/vxsim.h
3128 tmake_file=sparc/t-vxsparc
3131 tm_file="sparc/splet.h libgloss.h"
3132 tmake_file=sparc/t-splet
3135 tm_file="sparc/litecoff.h libgloss.h"
3136 tmake_file=sparc/t-sparclite
3139 tm_file="sparc/lite.h aoutos.h libgloss.h"
3140 tmake_file=sparc/t-sparclite
3143 tm_file="sparc/sol2.h sparc/elf.h sparc/liteelf.h"
3144 tmake_file=sparc/t-sparclite
3145 extra_parts="crtbegin.o crtend.o"
3148 tm_file="sparc/sp86x-aout.h aoutos.h libgloss.h"
3149 tmake_file=sparc/t-sp86x
3152 tm_file="sparc/sol2.h sparc/elf.h sparc/sp86x-elf.h"
3153 tmake_file=sparc/t-sp86x
3154 extra_parts="crtbegin.o crtend.o"
3157 tm_file=sparc/sp64-aout.h
3160 tm_file=sparc/sp64-elf.h
3161 extra_parts="crtbegin.o crtend.o"
3163 sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux
3164 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64"
3165 tm_file=sparc/linux64.h
3167 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3169 if test x$enable_threads = xyes; then
3175 tm_file="arm/strongarm-elf.h elfos.h arm/unknown-elf.h arm/elf.h"
3176 tmake_file=arm/t-strongarm-elf
3181 tm_file=arm/strongarm-coff.h
3182 tmake_file=arm/t-strongarm-coff
3187 tm_file=arm/strongarm-pe.h
3188 tmake_file=arm/t-strongarm-pe
3194 { echo "config.gcc: error:
3195 *** The Thumb targets have been deprecated. The equivalent
3196 *** ARM based toolchain can now generate Thumb instructions
3197 *** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
3200 tm_file="elfos.h svr4.h ${tm_file} v850/rtems.h"
3201 tmake_file="v850/t-v850 t-rtems"
3202 if test x$stabs = xyes
3204 tm_file="${tm_file} dbx.h"
3207 c_target_objs="v850-c.o"
3208 cxx_target_objs="v850-c.o"
3211 target_cpu_default="TARGET_CPU_generic"
3212 tm_file="elfos.h svr4.h ${tm_file}"
3213 tmake_file=v850/t-v850
3214 if test x$stabs = xyes
3216 tm_file="${tm_file} dbx.h"
3219 c_target_objs="v850-c.o"
3220 cxx_target_objs="v850-c.o"
3222 vax-*-bsd*) # VAXen running BSD
3226 vax-*-sysv*) # VAXen running system V
3227 tm_file="${tm_file} vax/vaxv.h"
3232 tm_file="${tm_file} netbsd.h vax/netbsd.h"
3238 tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
3242 vax-*-ultrix*) # VAXen running ultrix
3243 tm_file="${tm_file} vax/ultrix.h"
3246 vax-*-vms*) # VAXen running VMS
3247 xm_file=vax/xm-vms.h
3251 vax-*-*) # VAX default entry
3259 tm_file="arm/xscale-elf.h elfos.h arm/unknown-elf.h arm/elf.h"
3260 tmake_file=arm/t-xscale-elf
3265 tm_file=arm/xscale-coff.h
3266 tmake_file=arm/t-xscale-coff
3271 # For historical reasons, the target files omit the 'x'.
3272 tm_file="elfos.h svr4.h stormy16/stormy16.h"
3273 tm_p_file=stormy16/stormy16-protos.h
3274 md_file=stormy16/stormy16.md
3275 out_file=stormy16/stormy16.c
3276 tmake_file="stormy16/t-stormy16"
3277 extra_parts="crtbegin.o crtend.o"
3280 echo "Configuration $machine not supported" 1>&2
3287 install_headers_dir=install-headers-cpio
3291 # Distinguish i[34567]86
3292 # Also, do not run mips-tfile on MIPS if using gas.
3293 # Process --with-cpu= for PowerPC/rs6000
3294 target_cpu_default2=
3297 target_cpu_default2=1
3300 case $target_alias in
3302 target_cpu_default2=4
3305 target_cpu_default2=2
3309 i686-*-* | i786-*-*)
3310 case $target_alias in
3312 target_cpu_default2=5
3315 target_cpu_default2=3
3322 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
3325 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
3328 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
3331 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
3334 target_cpu_default2="MASK_CPU_EV5"
3338 if test x$gas = xyes
3340 if test "$target_cpu_default2" = ""
3342 target_cpu_default2="MASK_GAS"
3344 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
3349 case "x$with_cpu" in
3352 target_cpu_default2="TARGET_CPU_generic"
3355 # Distinguish cores, and major variants
3356 # arm7m doesn't exist, but D & I don't affect code
3357 xarm[236789] | xarm250 | xarm[67][01]0 \
3358 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
3359 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
3361 | xstrongarm | xstrongarm110 | xstrongarm1100)
3362 target_cpu_default2="TARGET_CPU_$with_cpu"
3366 echo "--with-cpu must be passed a value" 1>&2
3371 if test x$pass2done = xyes
3373 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3380 hppa*-*-* | parisc*-*-*)
3381 if test x$gas = xyes
3383 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
3387 mips*-*-ecoff* | mips*-*-elf*)
3388 if test x$gas = xyes
3390 if test x$gnu_ld = xyes
3392 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
3394 target_cpu_default2="MASK_GAS"
3399 if test x$gas = xyes
3401 target_cpu_default2="MASK_GAS"
3404 powerpc*-*-* | rs6000-*-*)
3405 case "x$with_cpu" in
3409 xcommon | xpower | xpower2 | xpowerpc | xrios \
3410 | xrios1 | xrios2 | xrsc | xrsc1 \
3411 | x601 | x602 | x603 | x603e | x604 | x604e | x620 \
3412 | xec603e | x740 | x750 | x401 \
3413 | x403 | x505 | x801 | x821 | x823 | x860)
3414 target_cpu_default2="\\\"$with_cpu\\\""
3418 echo "--with-cpu must be passed a value" 1>&2
3423 if test x$pass2done = xyes
3425 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3432 case ".$with_cpu" in
3434 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3436 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
3437 target_cpu_default2="TARGET_CPU_$with_cpu"
3440 if test x$pass2done = xyes
3442 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3450 if test "$target_cpu_default2" != ""
3452 if test "$target_cpu_default" != ""
3454 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3456 target_cpu_default=$target_cpu_default2
3460 # Save data on machine being used to compile GCC in build_xm_file.
3461 # Save data on host machine in vars host_xm_file and host_xmake_file.
3462 if test x$pass1done = x
3464 if test x$xm_file != x
3465 then build_xm_file=$xm_file
3467 build_xm_defines=$xm_defines
3468 build_install_headers_dir=$install_headers_dir
3469 build_exeext=$exeext