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} dbxelf.h 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 dbxelf.h 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. Also set default extra_headers for some
214 cpu_type=`echo $machine | sed 's/-.*$//'`
230 extra_headers=proto.h
238 hppa*-*-* | parisc*-*-*)
243 extra_headers=math-68881.h
246 extra_headers=math-68881.h
256 extra_headers=ppc-asm.h
263 tm_file=${cpu_type}/${cpu_type}.h
264 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
266 tm_p_file=${cpu_type}/${cpu_type}-protos.h
268 # On a.out targets, we need to use collect2.
275 # Common parts for GNU/Linux, GNU/Hurd, OpenBSD and FreeBSD systems.
281 # On the Hurd, the setup is just about the same on
282 # each different CPU. The specific machines that we
283 # support are matched above and just set $cpu_type.
285 tm_file="${cpu_type}/gnu.h"
286 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
287 # GNU always uses ELF.
289 # GNU tools are the only tools.
292 # These details are the same as for Linux.
293 # But here we need a little extra magic.
294 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
297 tm_file="${cpu_type}/${cpu_type}.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
302 tm_file=${cpu_type}/openbsd.h
303 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
305 if test x$enable_threads = xyes; then
307 tmake_file="${tmake_file} t-openbsd-thread"
310 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
311 # This is the place-holder for the generic a.out configuration
312 # of FreeBSD. No actual configuration resides here since
313 # there was only ever a bare-bones ix86 configuration for
314 # a.out and it exists solely in the machine-specific section.
315 # This place-holder must exist to avoid dropping into
316 # the generic ELF configuration of FreeBSD (i.e. it must be
317 # ordered before that section).
320 # This is the generic ELF configuration of FreeBSD. Later
321 # machine-specific sections may refine and add to this
324 # Due to tm_file entry ordering issues that vary between cpu
325 # architectures, we only define fbsd_tm_file to allow the
326 # machine-specific section to dictate the final order of all
327 # entries of tm_file with the minor exception that components
328 # of the tm_file set here will always be of the form:
330 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
332 # The machine-specific section should not tamper with this
333 # ordering but may order all other entries of tm_file as it
334 # pleases around the provided core setting.
337 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
339 *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
340 *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
341 *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
342 *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
343 *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
348 case x${enable_threads} in
349 xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
350 x | xyes | xpthreads | xposix)
352 tmake_file="${tmake_file} t-freebsd-thread"
354 *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
356 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
361 # Support site-specific machine types.
363 rest=`echo $machine | sed -e "s/$cpu_type-//"`
364 tm_file=${cpu_type}/$rest.h
365 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
366 then xm_file=${cpu_type}/xm-$rest.h
368 if test -f $srcdir/config/${cpu_type}/x-$rest
369 then xmake_file=${cpu_type}/x-$rest
371 if test -f $srcdir/config/${cpu_type}/t-$rest
372 then tmake_file=${cpu_type}/t-$rest
376 # 1750a is only supported as a target.
377 case "$build,$host" in 1750a*,* | *,1750a* )
378 echo "*** $machine is only supported as a target" >&2
382 a29k-*-bsd* | a29k-*-sym1*)
383 tm_file="${tm_file} a29k/unix.h"
387 a29k-*-udi | a29k-*-coff)
388 tm_file="${tm_file} dbxcoff.h"
389 tmake_file=a29k/t-a29kbare
393 tmake_file="a29k/t-a29kbare t-rtems"
394 if test x$enable_threads = xyes; then
399 tm_file="${tm_file} dbxcoff.h a29k/vx29k.h"
400 tmake_file=a29k/t-vx29k
401 extra_parts="crtbegin.o crtend.o"
402 thread_file='vxworks'
404 a29k-*-*) # Default a29k environment.
409 tm_file="${tm_file} alpha/unicosmk.h"
411 # Don't include t-ieee for now because we don't support that yet
412 # tmake_file="alpha/t-ieee"
413 tmake_file="alpha/t-unicosmk"
416 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
418 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
419 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
421 # GAS + IEEE_CONFORMANT
422 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
425 xm_file="alpha/xm-alpha-interix.h xm-interix.h"
426 tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee"
427 if test x$enable_threads = xyes ; then
430 if test x$stabs = xyes ; then
431 tm_file="${tm_file} dbxcoff.h"
433 #prefix='$$INTERIX_ROOT'/usr/contrib
434 #local_prefix='$$INTERIX_ROOT'/usr/contrib
436 alpha*-*-linux*ecoff*)
437 tm_file="${tm_file} alpha/linux-ecoff.h alpha/linux.h"
438 target_cpu_default="MASK_GAS"
439 tmake_file="alpha/t-alpha alpha/t-ieee"
443 alpha*-*-linux*libc1*)
444 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
445 target_cpu_default="MASK_GAS"
446 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtbe alpha/t-crtfm alpha/t-ieee"
448 if test x$enable_threads = xyes; then
453 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
454 target_cpu_default="MASK_GAS"
455 tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtbe alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
457 if test x$enable_threads = xyes; then
462 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
463 target_cpu_default="MASK_GAS"
464 tmake_file="${tmake_file} alpha/t-crtbe alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
468 tm_file="${tm_file} alpha/elf.h alpha/netbsd.h alpha/netbsd-elf.h"
469 target_cpu_default="MASK_GAS"
470 tmake_file="alpha/t-crtbe alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
475 # default x-alpha is only appropriate for dec-osf.
476 target_cpu_default="MASK_GAS"
477 tmake_file="alpha/t-alpha alpha/t-ieee"
482 if test x$stabs = xyes
484 tm_file="${tm_file} dbx.h"
486 if test x$gas != xyes
488 extra_passes="mips-tfile mips-tdump"
491 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-osf alpha/t-crtfm"
494 tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
497 tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
500 tm_file="${tm_file} alpha/osf.h"
501 tmake_file="$tmake_file alpha/t-osf4"
502 # Some versions of OSF4 (specifically X4.0-9 296.7) have
503 # a broken tar, so we use cpio instead.
504 install_headers_dir=install-headers-cpio
507 tm_file="${tm_file} alpha/osf.h alpha/osf5.h"
508 tmake_file="$tmake_file alpha/t-osf4"
513 *-*-osf4.0[b-z] | *-*-osf4.[1-9]* | *-*-osf5*)
514 target_cpu_default=MASK_SUPPORT_ARCH
520 tm_file="${tm_file} dbx.h alpha/vxworks.h"
521 tmake_file="alpha/t-alpha alpha/t-ieee"
524 extra_passes="mips-tfile mips-tdump"
527 thread_file='vxworks'
531 tm_file="alpha/vms.h alpha/vms64.h"
532 xm_file="alpha/xm-vms.h alpha/xm-vms64.h"
533 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
534 xmake_file=alpha/x-vms
536 # This removes the cpu type and manufacturer components and
537 # replaces "." with "_" in the operating system version.
538 case $host in *-*-*vms*)
539 target_alias=`echo $host \
540 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
549 xm_file=alpha/xm-vms.h
550 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
551 xmake_file=alpha/x-vms
553 # This removes the cpu type and manufacturer components and
554 # replaces "." with "_" in the operating system version.
555 case $host in *-*-*vms*)
556 target_alias=`echo $host \
557 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
564 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
565 extra_parts="crtinit.o crtfini.o"
568 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"
569 tmake_file="arm/t-arm-elf t-rtems"
570 if test x$enable_threads = xyes; then
574 arm-*-coff* | armel-*-coff*)
575 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
576 tmake_file=arm/t-arm-coff
579 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/vxarm.h arm/arm.h"
580 tmake_file=arm/t-arm-coff
581 thread_file='vxworks'
583 arm-*-riscix1.[01]*) # Acorn RISC machine (early versions)
584 tm_file="arm/riscix1-1.h arm/arm.h"
587 arm-*-riscix*) # Acorn RISC machine
590 tm_file="arm/riscix.h arm/rix-gas.h arm/arm.h"
592 tm_file="arm/riscix.h arm/arm.h"
594 tmake_file=arm/t-riscix
597 arm-semi-aout | armel-semi-aout)
598 tm_file="arm/semi.h arm/aout.h arm/arm.h"
599 tmake_file=arm/t-semi
601 arm-semi-aof | armel-semi-aof)
602 tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
603 tmake_file=arm/t-semi
605 arm*-*-freebsd*|strongarm*-*-freebsd*)
606 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
607 tmake_file="${tmake_file} arm/t-strongarm-elf"
610 tm_file="arm/aout.h arm/arm.h netbsd.h arm/netbsd.h"
611 tmake_file="t-netbsd arm/t-netbsd"
614 arm*-*-linux*) # ARM GNU/Linux with ELF
615 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"
616 tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
617 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
619 case x${enable_threads} in
620 x | xyes | xpthreads | xposix)
625 arm*-*-uclinux*) # ARM ucLinux
626 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"
627 tmake_file=arm/t-arm-elf
630 tm_file="arm/aout.h arm/arm.h"
631 tmake_file=arm/t-arm-aout
634 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
635 tmake_file=arm/t-arm-elf
638 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
639 tmake_file=arm/t-arm-elf
642 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h arm/aout.h arm/arm.h"
643 tmake_file=arm/t-arm-elf
646 tm_file="arm/unknown-elf-oabi.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
647 tmake_file=arm/t-arm-elf
650 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
656 c1-convex-*) # Convex C1
660 c2-convex-*) # Convex C2
673 target_cpu_default=16
677 tmake_file="c4x/t-c4x t-rtems"
679 if test x$enable_threads = xyes; then
682 c_target_objs="c4x-c.o"
683 cxx_target_objs="c4x-c.o"
688 c_target_objs="c4x-c.o"
689 cxx_target_objs="c4x-c.o"
691 clipper-intergraph-clix*)
692 tm_file="${tm_file} svr3.h clipper/clix.h"
694 extra_parts="crtbegin.o crtend.o"
695 install_headers_dir=install-headers-cpio
698 tm_file="dbxelf.h ${tm_file} cris/aout.h"
700 tmake_file="cris/t-cris cris/t-aout"
702 cris-*-elf | cris-*-none)
703 tm_file="dbxelf.h elfos.h ${tm_file}"
704 tmake_file="cris/t-cris cris/t-elfmulti"
708 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
709 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
710 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
711 case x${enable_threads} in
712 x | xyes | xpthreads | xposix)
719 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
728 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
729 tmake_file=fr30/t-fr30
730 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
733 tmake_file="h8300/t-h8300 t-rtems"
734 tm_file=h8300/rtems.h
735 if test x$enable_threads = xyes; then
741 tmake_file="h8300/t-h8300 h8300/t-elf"
742 tm_file="h8300/h8300.h h8300/elf.h"
748 hppa*64*-*-linux* | parisc*64*-*-linux*)
749 target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
750 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
751 pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
752 tmake_file=pa/t-linux64
755 hppa*-*-linux* | parisc*-*-linux*)
756 target_cpu_default="MASK_PA_11"
757 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
758 pa/pa32-regs.h pa/pa32-linux.h"
759 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
760 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
762 if test x$enable_threads = xyes; then
767 target_cpu_default="MASK_PA_11"
771 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
772 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
773 tmake_file="pa/t-bsd pa/t-pro"
776 target_cpu_default="MASK_PA_11"
777 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
778 tmake_file="pa/t-bsd pa/t-pa"
782 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
783 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"
784 tmake_file="pa/t-bsd pa/t-pro"
787 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
788 tmake_file="pa/t-bsd pa/t-pa"
792 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
793 target_cpu_default="MASK_PA_11"
794 tmake_file="pa/t-bsd pa/t-pa"
798 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
799 tmake_file="pa/t-bsd pa/t-pa"
803 tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
805 tmake_file=pa/t-pa-hpux
806 install_headers_dir=install-headers-cpio
809 hppa1.0-*-hpux8.0[0-2]*)
810 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
812 tmake_file=pa/t-pa-hpux
813 if test x$gas != xyes
815 tm_file="pa/pa-oldas.h ${tm_file}"
817 install_headers_dir=install-headers-cpio
820 hppa1.1-*-hpux8.0[0-2]*)
821 target_cpu_default="MASK_PA_11"
822 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
824 tmake_file=pa/t-pa-hpux
825 if test x$gas != xyes
827 tm_file="pa/pa-oldas.h ${tm_file}"
829 install_headers_dir=install-headers-cpio
833 target_cpu_default="MASK_PA_11"
834 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
836 tmake_file=pa/t-pa-hpux
837 install_headers_dir=install-headers-cpio
841 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
843 tmake_file=pa/t-pa-hpux
844 install_headers_dir=install-headers-cpio
847 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
848 target_cpu_default="MASK_PA_11"
849 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
852 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
853 if test x$enable_threads = x; then
854 enable_threads=$have_pthread_h
856 case x${enable_threads} in
858 tmake_file="${tmake_file} pa/t-dce-thr"
861 install_headers_dir=install-headers-cpio
865 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
868 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
869 if test x$enable_threads = x; then
870 enable_threads=$have_pthread_h
872 case x${enable_threads} in
874 tmake_file="${tmake_file} pa/t-dce-thr"
877 install_headers_dir=install-headers-cpio
882 tmake_file="pa/t-pa pa/t-pa-hpux"
883 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"
886 target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
888 # if [ x$enable_threads = x ]; then
889 # enable_threads=$have_pthread_h
891 # if [ x$enable_threads = xyes ]; then
893 # tmake_file="${tmake_file} pa/t-dce-thr"
895 install_headers_dir=install-headers-cpio
898 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
899 target_cpu_default="MASK_PA_11"
900 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
903 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
904 # if test x$enable_threads = x; then
905 # enable_threads=$have_pthread_h
907 # if test x$enable_threads = xyes; then
909 # tmake_file="${tmake_file} pa/t-dce-thr"
911 install_headers_dir=install-headers-cpio
915 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
918 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
919 # if test x$enable_threads = x; then
920 # enable_threads=$have_pthread_h
922 # if test x$enable_threads = xyes; then
924 # tmake_file="${tmake_file} pa/t-dce-thr"
926 install_headers_dir=install-headers-cpio
929 hppa1.1-*-hpux* | hppa2*-*-hpux*)
930 target_cpu_default="MASK_PA_11"
931 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
933 tmake_file=pa/t-pa-hpux
934 install_headers_dir=install-headers-cpio
938 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
940 tmake_file=pa/t-pa-hpux
941 install_headers_dir=install-headers-cpio
944 hppa1.1-*-hiux* | hppa2*-*-hiux*)
945 target_cpu_default="MASK_PA_11"
946 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
948 tmake_file=pa/t-pa-hpux
949 install_headers_dir=install-headers-cpio
953 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
955 tmake_file=pa/t-pa-hpux
956 install_headers_dir=install-headers-cpio
960 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h"
961 target_cpu_default="MASK_PA_11"
962 tmake_file="pa/t-bsd pa/t-pa"
966 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h"
967 xmake_file=pa/x-pa-mpeix
968 echo "You must use gas. Assuming it is already installed."
970 install_headers_dir=install-headers-tar
973 i370-*-opened*) # IBM 360/370/390 Architecture
974 xm_defines='POSIX FATAL_EXIT_CODE=12'
976 tmake_file="i370/t-oe i370/t-i370"
977 c_target_objs="i370-c.o"
978 cxx_target_objs="i370-c.o"
981 xm_defines='POSIX FATAL_EXIT_CODE=12'
983 tmake_file="i370/t-i370"
984 c_target_objs="i370-c.o"
985 cxx_target_objs="i370-c.o"
988 tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
989 tmake_file="t-slibgcc-elf-ver t-linux"
991 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
992 # extra_parts="crtbegin.o crtend.o"
996 if test x$enable_threads = xyes; then
1000 i[34567]86-*-chorusos*)
1002 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h i386/i386elf.h chorus.h"
1003 tmake_file="i386/t-i386elf t-svr4"
1004 case x${enable_threads} in
1005 xyes | xpthreads | xposix)
1012 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h i386/i386elf.h"
1013 tmake_file="i386/t-i386elf t-svr4"
1015 i[34567]86-ibm-aix*) # IBM PS/2 running AIX
1016 if test x$gas = xyes
1018 tm_file=i386/aix386.h
1019 extra_parts="crtbegin.o crtend.o"
1020 tmake_file=i386/t-crtstuff
1022 tm_file=i386/aix386ng.h
1027 i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
1028 xm_defines="POSIX SMALL_ARG_MAX"
1029 if test x$stabs = xyes -a x$gas = xyes
1031 tm_file=i386/sysv4gdb.h
1033 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h"
1035 extra_parts="crtbegin.o crtend.o"
1036 tmake_file=i386/t-crtpic
1039 tm_p_file="${tm_p_file} nextstep-protos.h"
1041 tmake_file=i386/t-next
1042 extra_objs=nextstep.o
1043 extra_parts="crtbegin.o crtend.o"
1044 if test x$enable_threads = xyes; then
1048 i[34567]86-*-netware) # Intel 80386's running netware
1049 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
1050 tmake_file=i386/t-netware
1052 i[34567]86-sequent-bsd*) # 80386 from Sequent
1054 if test x$gas = xyes
1056 tm_file=i386/seq-gas.h
1058 tm_file=i386/sequent.h
1061 i[34567]86-sequent-ptx1*)
1063 tm_file=i386/seq-sysv3.h
1064 tmake_file=i386/t-crtstuff
1065 extra_parts="crtbegin.o crtend.o"
1066 install_headers_dir=install-headers-cpio
1068 i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
1070 tm_file=i386/seq2-sysv3.h
1071 tmake_file=i386/t-crtstuff
1072 extra_parts="crtbegin.o crtend.o"
1073 install_headers_dir=install-headers-cpio
1075 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1076 if test x$gas = xyes
1078 tm_file="${tm_file} usegas.h"
1080 xm_defines="POSIX SMALL_ARG_MAX"
1081 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
1083 extra_parts="crtbegin.o crtend.o"
1084 install_headers_dir=install-headers-cpio
1086 i386-sun-sunos*) # Sun i386 roadrunner
1091 i[34567]86-wrs-vxworks*)
1092 tm_file=i386/vxi386.h
1093 thread_file='vxworks'
1096 tm_file=i386/i386-aout.h
1098 i[34567]86-*-beoself* | i[34567]86-*-beos*)
1100 tmake_file='i386/t-beos i386/t-crtpic'
1101 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
1102 xmake_file=i386/x-beos
1103 extra_parts='crtbegin.o crtend.o'
1105 i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
1106 tm_file="i386/386bsd.h i386/bsd386.h"
1107 # tmake_file=t-libc-ok
1110 tm_file=i386/386bsd.h
1111 # tmake_file=t-libc-ok
1112 # Next line turned off because both 386BSD and BSD/386 use GNU ld.
1115 i[34567]86-*-freebsd[12] | i[34567]86-*-freebsd[12].* | i[34567]86-*-freebsd*aout*)
1116 tm_file=i386/freebsd-aout.h
1117 tmake_file=t-freebsd
1119 i[34567]86-*-freebsd*)
1120 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h ${fbsd_tm_file} i386/freebsd.h"
1122 i[34567]86-*-netbsdelf*)
1124 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/netbsd-elf.h"
1129 i[34567]86-*-netbsd*)
1130 tm_file=i386/netbsd.h
1134 i[34567]86-*-openbsd*)
1135 # needed to unconfuse gdb
1136 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
1137 # we need collect2 until our bug is fixed...
1141 tm_file=i386/i386-coff.h
1143 i[34567]86-*-isc*) # 80386 running ISC system
1145 if test x$gas = xyes -a x$stabs = xyes
1147 tm_file=i386/iscdbx.h
1148 tmake_file=i386/t-svr3dbx
1149 extra_parts="svr3.ifile svr3z.ifile"
1151 tm_file=i386/isccoff.h
1152 tmake_file=i386/t-crtstuff
1153 extra_parts="crtbegin.o crtend.o"
1155 install_headers_dir=install-headers-cpio
1157 i[34567]86-*-linux*oldld*) # Intel 80386's running GNU/Linux
1158 # with a.out format using
1160 tmake_file="t-linux-aout i386/t-crtstuff"
1161 tm_file=i386/linux-oldld.h
1165 i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux
1167 tmake_file="t-linux-aout i386/t-crtstuff"
1168 tm_file=i386/linux-aout.h
1172 i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux
1173 # with ELF format using the
1174 # GNU/Linux C library 5
1175 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1176 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
1177 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1180 if test x$enable_threads = xyes; then
1181 thread_file='single'
1184 i[34567]86-*-linux*) # Intel 80386's running GNU/Linux
1185 # with ELF format using glibc 2
1186 # aka GNU/Linux C library 6
1187 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1188 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1189 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1192 if test x$enable_threads = xyes; then
1197 tm_file="i386/biarch64.h i386/i386.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
1198 i386/x86-64.h i386/linux64.h"
1199 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1200 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
1203 if test x$enable_threads = xyes; then
1210 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1211 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1214 i[34567]86-pc-msdosdjgpp*)
1215 xm_file=i386/xm-djgpp.h
1216 tm_file=i386/djgpp.h
1217 xmake_file=i386/x-djgpp
1222 case $host in *pc-msdosdjgpp*)
1227 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1228 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
1229 tmake_file=t-libc-ok
1233 i[34567]86-*-lynxos*)
1234 if test x$gas = xyes
1238 tm_file=i386/lynx-ng.h
1243 # tmake_file=t-libc-ok
1246 i[34567]86-*-osfrose*) # 386 using OSF/rose
1247 if test x$elf = xyes
1249 tm_file=i386/osfelf.h
1252 tm_file=i386/osfrose.h
1255 tmake_file=i386/t-osf
1256 extra_objs=halfpic.o
1258 i[34567]86-go32-rtems*)
1259 tm_file=i386/djgpp-rtems.h
1261 if test x$enable_threads = xyes; then
1265 i[34567]86-*-rtemscoff*)
1266 tm_file=i386/rtems.h
1268 if test x$enable_threads = xyes; then
1272 i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
1273 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/rtemself.h rtems.h"
1274 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1275 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1276 if test x$enable_threads = xyes; then
1280 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1282 install_headers_dir=install-headers-cpio
1284 if test x$gas = xyes
1286 tm_file="usegas.h ${tm_file}"
1287 tmake_file=i386/t-sco5gas
1289 tmake_file=i386/t-sco5
1291 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1293 i[34567]86-*-solaris2*)
1294 xm_defines="POSIX SMALL_ARG_MAX"
1295 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sol2.h"
1296 if test x$gas = xyes; then
1297 # Only needed if gas does not support -s
1298 tm_file="i386/sol2gas.h ${tm_file}"
1300 tmake_file="i386/t-sol2 t-svr4"
1301 if test x$gnu_ld = xyes; then
1302 tmake_file="$tmake_file t-slibgcc-elf-ver"
1304 tmake_file="$tmake_file t-slibgcc-sld"
1306 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1307 if test x${enable_threads} = x; then
1308 enable_threads=$have_pthread_h
1309 if test x${enable_threads} = x; then
1310 enable_threads=$have_thread_h
1313 if test x${enable_threads} = xyes; then
1314 if test x${have_pthread_h} = xyes; then
1317 thread_file='solaris'
1321 i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
1323 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1324 if test x$stabs = xyes
1326 tm_file="${tm_file} dbx.h"
1328 tmake_file="i386/t-crtpic t-svr4"
1329 extra_parts="crtbegin.o crtend.o"
1330 if test x$enable_threads = xyes; then
1334 i[34567]86-*-sysv4*) # Intel 80386's running system V.4
1335 xm_defines="POSIX SMALL_ARG_MAX"
1336 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h"
1337 if test x$stabs = xyes
1339 tm_file="${tm_file} dbx.h"
1341 tmake_file="i386/t-crtpic t-svr4"
1342 extra_parts="crtbegin.o crtend.o"
1344 i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
1346 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
1347 tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1348 extra_parts="crtbegin.o crtend.o"
1349 install_headers_dir=install-headers-cpio
1351 i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+
1352 xm_file=i386/xm-osf1elf.h
1353 xm_defines='POSIX USE_C_ALLOCA SMALL_ARG_MAX'
1354 if test x$stabs = xyes
1356 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h i386/osf1elfgdb.h"
1358 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h"
1360 tmake_file=i386/t-osf1elf
1361 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1363 i[34567]86-*-sysv*) # Intel 80386's running system V
1365 if test x$gas = xyes
1367 if test x$stabs = xyes
1369 tm_file=i386/svr3dbx.h
1370 tmake_file=i386/t-svr3dbx
1371 extra_parts="svr3.ifile svr3z.rfile"
1373 tm_file=i386/svr3gas.h
1374 extra_parts="crtbegin.o crtend.o"
1375 tmake_file=i386/t-crtstuff
1378 tm_file=i386/sysv3.h
1379 extra_parts="crtbegin.o crtend.o"
1380 tmake_file=i386/t-crtstuff
1382 tmake_file="$tmake_file i386/t-crtpic"
1384 i386-*-vsta) # Intel 80386's running VSTa kernel
1385 xm_file=i386/xm-vsta.h
1390 xm_file=i386/xm-cygwin.h
1392 tmake_file=i386/t-cygwin
1393 tm_file=i386/win32.h
1395 if test x$enable_threads = xyes; then
1400 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1402 xm_file=i386/xm-cygwin.h
1404 tmake_file=i386/t-cygwin
1405 tm_file=i386/cygwin.h
1407 if test x$enable_threads = xyes; then
1412 i[34567]86-*-mingw32*)
1413 tm_file=i386/mingw32.h
1416 xm_file=i386/xm-mingw32.h
1417 tmake_file="i386/t-cygwin i386/t-mingw32"
1419 if test x$enable_threads = xyes; then
1425 tm_file="${tm_file} i386/crtdll.h"
1427 *minwg32msv* | *mingw32*)
1433 tmake_file="i386/t-cygwin i386/t-uwin"
1435 if test x$enable_threads = xyes; then
1440 i[34567]86-*-interix3*)
1441 tm_file="i386/i386-interix.h i386/i386-interix3.h interix.h interix3.h"
1442 xm_file="i386/xm-i386-interix.h xm-interix.h"
1444 tmake_file="i386/t-interix"
1445 extra_objs=interix.o
1446 xmake_file="x-interix x-interix3"
1447 if test x$enable_threads = xyes ; then
1450 if test x$stabs = xyes ; then
1451 tm_file="${tm_file} dbxcoff.h"
1454 i[34567]86-*-interix*)
1455 tm_file="i386/i386-interix.h interix.h"
1456 xm_file="i386/xm-i386-interix.h xm-interix.h"
1458 tmake_file="t-interix i386/t-interix"
1459 extra_objs=interix.o
1460 if test x$enable_threads = xyes ; then
1463 if test x$stabs = xyes ; then
1464 tm_file="${tm_file} dbxcoff.h"
1467 i[34567]86-dg-dgux*)
1469 tm_file="${tm_file} i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/dgux.h"
1470 tmake_file=i386/t-dgux
1471 install_headers_dir=install-headers-cpio
1473 i860-alliant-*) # Alliant FX/2800
1474 tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h i860/fx2800.h"
1475 tmake_file=i860/t-fx2800
1476 extra_parts="crtbegin.o crtend.o"
1479 tm_file="${tm_file} i860/bsd.h"
1480 if test x$gas = xyes
1482 tm_file="${tm_file} i860/bsd-gas.h"
1487 tm_file="${tm_file} i860/mach.h"
1488 tmake_file=t-libc-ok
1490 i860-*-osf*) # Intel Paragon XP/S, OSF/1AD
1491 tm_file="${tm_file} svr3.h i860/paragon.h"
1495 tm_file="${tm_file} svr3.h i860/sysv3.h"
1497 extra_parts="crtbegin.o crtend.o"
1500 tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h"
1503 extra_parts="crtbegin.o crtend.o"
1505 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1506 tm_file="${tm_file} i960/vx960.h"
1507 tmake_file=i960/t-vxworks960
1509 thread_file='vxworks'
1510 c_target_objs="i960-c.o"
1511 cxx_target_objs="i960-c.o"
1513 i960-wrs-vxworks5* | i960-wrs-vxworks)
1514 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1515 tmake_file=i960/t-vxworks960
1517 thread_file='vxworks'
1518 c_target_objs="i960-c.o"
1519 cxx_target_objs="i960-c.o"
1522 tm_file="${tm_file} i960/vx960.h"
1523 tmake_file=i960/t-vxworks960
1525 thread_file='vxworks'
1526 c_target_objs="i960-c.o"
1527 cxx_target_objs="i960-c.o"
1530 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1531 tmake_file=i960/t-960bare
1532 c_target_objs="i960-c.o"
1533 cxx_target_objs="i960-c.o"
1536 tmake_file="i960/t-960bare t-rtems"
1537 tm_file="${tm_file} dbxcoff.h i960/rtems.h"
1538 if test x$enable_threads = xyes; then
1541 c_target_objs="i960-c.o"
1542 cxx_target_objs="i960-c.o"
1544 i960-*-*) # Default i960 environment.
1546 tmake_file=i960/t-960bare
1547 c_target_objs="i960-c.o"
1548 cxx_target_objs="i960-c.o"
1551 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
1552 tmake_file="ia64/t-ia64 ia64/t-aix"
1553 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1556 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1557 tmake_file="ia64/t-ia64"
1558 target_cpu_default="0"
1559 if test x$gas = xyes
1561 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1563 if test x$gnu_ld = xyes
1565 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1570 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/freebsd.h"
1571 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1572 tmake_file="${tmake_file} ia64/t-ia64"
1576 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1577 tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1578 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1579 if test x$enable_threads = xyes; then
1585 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1586 tmake_file="ia64/t-ia64 ia64/t-hpux"
1587 target_cpu_default="MASK_GNU_AS"
1588 if test x$enable_threads = xyes; then
1594 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1595 extra_parts="crtinit.o crtfini.o"
1597 # m68hc11 and m68hc12 share the same machine description.
1598 m68hc11-*-*|m6811-*-*)
1599 tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1600 tm_p_file="m68hc11/m68hc11-protos.h"
1601 md_file="m68hc11/m68hc11.md"
1602 out_file="m68hc11/m68hc11.c"
1603 tmake_file="m68hc11/t-m68hc11-gas"
1605 m68hc12-*-*|m6812-*-*)
1606 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1607 tm_p_file="m68hc11/m68hc11-protos.h"
1608 md_file="m68hc11/m68hc11.md"
1609 out_file="m68hc11/m68hc11.c"
1610 tmake_file="m68hc11/t-m68hc11-gas"
1612 m68000-convergent-sysv*)
1617 m68000-hp-bsd*) # HP 9000/200 running BSD
1618 tm_file=m68k/hp2bsd.h
1621 m68000-hp-hpux*) # HP 9000 series 300
1623 if test x$gas = xyes
1625 tm_file=m68k/hp310g.h
1627 tm_file=m68k/hp310.h
1629 tmake_file=m68k/t-hp320
1630 install_headers_dir=install-headers-cpio
1638 tm_file=m68k/sun2o4.h
1643 if test x$gas = xyes
1651 m68k-apple-aux*) # Apple Macintosh running A/UX
1653 tmake_file=m68k/t-aux
1654 install_headers_dir=install-headers-cpio
1655 extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1657 if test "$gnu_ld" = yes
1659 tm_file="${tm_file} m68k/auxgld.h"
1661 tm_file="${tm_file} m68k/auxld.h"
1663 if test "$gas" = yes
1665 tm_file="${tm_file} m68k/auxgas.h"
1667 tm_file="${tm_file} m68k/auxas.h"
1669 tm_file="${tm_file} m68k/a-ux.h"
1673 tm_file=m68k/apollo68.h
1677 m68k-altos-sysv*) # Altos 3068
1678 if test x$gas = xyes
1680 tm_file=m68k/altos3068.h
1683 echo "The Altos is supported only with the GNU assembler" 1>&2
1687 m68k-bull-sysv*) # Bull DPX/2
1688 if test x$gas = xyes
1690 if test x$stabs = xyes
1692 tm_file=m68k/dpx2cdbx.h
1694 tm_file=m68k/dpx2g.h
1702 m68k-atari-sysv4*) # Atari variant of V.4.
1703 tm_file=m68k/atari.h
1706 extra_parts="crtbegin.o crtend.o"
1709 m68k-motorola-sysv*)
1710 tm_file=m68k/mot3300.h
1712 if test x$gas = xyes
1714 if test x$gnu_ld = xyes
1716 tmake_file=m68k/t-mot3300-gald
1718 tmake_file=m68k/t-mot3300-gas
1722 if test x$gnu_ld = xyes
1724 tmake_file=m68k/t-mot3300-gld
1726 tmake_file=m68k/t-mot3300
1730 gdb_needs_out_file_path=yes
1731 extra_parts="crt0.o mcrt0.o"
1734 m68k-ncr-sysv*) # NCR Tower 32 SVR3
1735 tm_file=m68k/tower-as.h
1737 extra_parts="crtbegin.o crtend.o"
1740 tm_file=m68k/plexus.h
1753 m68k-cbm-sysv4*) # Commodore variant of V.4.
1757 extra_parts="crtbegin.o crtend.o"
1761 tm_file=m68k/ccur-GAS.h
1765 m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
1766 tm_file=m68k/hp3bsd44.h
1770 m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
1771 tm_file=m68k/hp3bsd.h
1776 if test x$with_fp = xno
1778 tm_file=m68k/isi-nfp.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
1799 m68k-hp-hpux*) # HP 9000 series 300
1801 if test x$gas = xyes
1803 xmake_file=m68k/x-hp320g
1804 tm_file=m68k/hp320g.h
1806 xmake_file=m68k/x-hp320
1807 tm_file=m68k/hp320.h
1809 install_headers_dir=install-headers-cpio
1814 tm_file=m68k/sun3mach.h
1819 if test x$gas = xyes
1821 tm_file=m68k/news3gas.h
1823 tm_file=m68k/news3.h
1828 m68k-sony-bsd* | m68k-sony-newsos*)
1829 if test x$gas = xyes
1831 tm_file=m68k/newsgas.h
1838 m68k-next-nextstep2*)
1839 tm_p_file="${tm_p_file} nextstep-protos.h"
1840 tm_file=m68k/next21.h
1841 tmake_file=m68k/t-next
1842 xmake_file=m68k/x-next
1843 extra_objs=nextstep.o
1847 m68k-next-nextstep[34]*)
1848 tm_p_file="${tm_p_file} nextstep-protos.h"
1850 tmake_file=m68k/t-next
1851 xmake_file=m68k/x-next
1852 extra_objs=nextstep.o
1853 extra_parts="crtbegin.o crtend.o"
1855 if test x$enable_threads = xyes; then
1860 if test x$with_fp = xno
1862 tm_file=m68k/sun3n3.h
1864 tm_file=m68k/sun3o3.h
1869 m68k-sun-sunos*) # For SunOS 4 (the default).
1870 if test x$with_fp = xno
1872 tm_file=m68k/sun3n.h
1880 tm_file=m68k/vxm68k.h
1881 tmake_file=m68k/t-vxworks68
1882 thread_file='vxworks'
1886 tmake_file=m68k/t-m68kbare
1887 tm_file="m68k/m68k-aout.h libgloss.h"
1891 tmake_file=m68k/t-m68kbare
1892 tm_file="m68k/m68k-coff.h dbx.h"
1895 m68020-*-elf* | m68k-*-elf*)
1896 tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1898 tmake_file=m68k/t-m68kelf
1899 extra_parts="crtbegin.o crtend.o"
1902 if test x$gas = xyes
1906 tm_file=m68k/lynx-ng.h
1908 tmake_file=m68k/t-lynx
1912 tm_file=m68k/netbsd.h
1918 # needed to unconfuse gdb
1919 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1921 # we need collect2 until our bug is fixed...
1924 m68k-*-sysv3*) # Motorola m68k's running system V.3
1926 extra_parts="crtbegin.o crtend.o"
1929 m68k-*-sysv4*) # Motorola m68k's running system V.4
1930 tm_file=m68k/m68kv4.h
1933 extra_parts="crtbegin.o crtend.o"
1936 m68k-*-linux*aout*) # Motorola m68k's running GNU/Linux
1938 tm_file=m68k/linux-aout.h
1939 tmake_file="t-linux-aout m68k/t-linux-aout"
1943 m68k-*-linux*libc1) # Motorola m68k's running GNU/Linux
1944 # with ELF format using the
1945 # GNU/Linux C library 5
1946 tm_file=m68k/linux.h
1947 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
1948 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1952 m68k-*-linux*) # Motorola m68k's running GNU/Linux
1953 # with ELF format using glibc 2
1954 # aka the GNU/Linux C library 6.
1955 tm_file=m68k/linux.h
1956 tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
1957 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1960 if test x$enable_threads = xyes; then
1965 tmake_file=m68k/t-m68kbare
1966 tm_file=m68k/m68k-psos.h
1970 tmake_file="m68k/t-m68kbare t-rtems"
1971 tm_file=m68k/rtems.h
1973 if test x$enable_threads = xyes; then
1977 m68k-*-rtemself*|m68k-*-rtems*)
1978 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
1979 tm_file=m68k/rtemself.h
1981 extra_parts="crtbegin.o crtend.o"
1982 if test x$enable_threads = xyes; then
1990 tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h m88k/dguxbcs.h"
1991 tmake_file="m88k/t-dgux m88k/t-dguxbcs"
1994 tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h"
1995 tmake_file=m88k/t-dgux
1998 extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
1999 if test x$gas = xyes
2001 tmake_file=m88k/t-dgux-gas
2004 m88k-dolphin-sysv3*)
2006 tm_file=m88k/dolph.h
2007 extra_parts="crtbegin.o crtend.o"
2008 xmake_file=m88k/x-dolph
2009 if test x$gas = xyes
2011 tmake_file=m88k/t-m88k-gas
2014 m88k-tektronix-sysv3)
2016 tm_file=m88k/tekXD88.h
2017 extra_parts="crtbegin.o crtend.o"
2018 xmake_file=m88k/x-tekXD88
2019 if test x$gas = xyes
2021 tmake_file=m88k/t-m88k-gas
2026 tm_file=m88k/m88k-aout.h
2030 tm_file=m88k/m88k-coff.h
2031 tmake_file=m88k/t-bug
2035 extra_parts="crtbegin.o crtend.o"
2036 if test x$gas = xyes
2038 tmake_file=m88k/t-luna-gas
2040 tmake_file=m88k/t-luna
2044 tmake_file="${tmake_file} m88k/t-luna-gas"
2045 tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
2049 tm_file=m88k/sysv3.h
2050 extra_parts="crtbegin.o crtend.o"
2051 if test x$gas = xyes
2053 tmake_file=m88k/t-m88k-gas
2058 tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h"
2059 extra_parts="crtbegin.o crtend.o"
2060 tmake_file=m88k/t-sysv4
2063 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
2064 tmake_file=mcore/t-mcore
2067 tm_file=mcore/mcore-pe.h
2068 tmake_file=mcore/t-mcore-pe
2070 mips-sgi-irix6*) # SGI System V.4., IRIX 6
2071 if test "x$gnu_ld" = xyes
2073 tm_file="mips/iris6.h mips/iris6gld.h"
2075 tm_file=mips/iris6.h
2077 tmake_file="mips/t-iris mips/t-iris6"
2079 # if test x$enable_threads = xyes; then
2080 # thread_file='irix'
2084 tm_file="mips/elf.h mips/vxworks.h"
2085 tmake_file=mips/t-ecoff
2088 extra_parts="crtbegin.o crtend.o"
2089 thread_file='vxworks'
2091 mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
2092 tm_file="mips/iris6.h mips/cross64.h"
2094 xm_file=mips/xm-iris5.h
2095 tmake_file="mips/t-iris mips/t-cross64"
2096 # See comment in mips/iris[56].h files.
2098 # if test x$enable_threads = xyes; then
2099 # thread_file='irix'
2103 if test x$gas = xyes
2105 if test x$stabs = xyes
2107 tm_file=mips/iris5gdb.h
2109 tm_file="mips/sni-svr4.h mips/sni-gas.h"
2112 tm_file=mips/sni-svr4.h
2115 if test x$gnu_ld != xyes
2120 mips-sgi-irix5*) # SGI System V.4., IRIX 5
2121 if test x$gas = xyes
2123 tm_file="mips/iris5.h mips/iris5gas.h"
2124 if test x$stabs = xyes
2126 tm_file="${tm_file} dbx.h"
2129 tm_file=mips/iris5.h
2131 tmake_file=mips/t-iris
2133 xm_file=mips/xm-iris5.h
2134 # mips-tfile doesn't work yet
2135 # See comment in mips/iris5.h file.
2137 # if test x$enable_threads = xyes; then
2138 # thread_file='irix'
2141 mips-sgi-irix4loser*) # Mostly like a MIPS.
2142 tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
2143 if test x$stabs = xyes; then
2144 tm_file="${tm_file} dbx.h"
2146 tmake_file=mips/t-iris
2148 if test x$gas = xyes
2151 extra_passes="mips-tfile mips-tdump"
2153 if test x$gnu_ld != xyes
2157 # if test x$enable_threads = xyes; then
2158 # thread_file='irix'
2161 mips-sgi-irix4*) # Mostly like a MIPS.
2162 tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
2163 if test x$stabs = xyes; then
2164 tm_file="${tm_file} dbx.h"
2166 tmake_file=mips/t-iris
2168 if test x$gas = xyes
2171 extra_passes="mips-tfile mips-tdump"
2173 if test x$gnu_ld != xyes
2177 # if test x$enable_threads = xyes; then
2178 # thread_file='irix'
2181 mips-sgi-*) # Mostly like a MIPS.
2182 tm_file="mips/iris3.h ${tm_file}"
2183 if test x$stabs = xyes; then
2184 tm_file="${tm_file} dbx.h"
2187 if test x$gas = xyes
2190 extra_passes="mips-tfile mips-tdump"
2192 if test x$gnu_ld != xyes
2197 mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose.
2198 tm_file="mips/osfrose.h ${tm_file}"
2199 extra_objs=halfpic.o
2202 mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL
2203 tm_file=mips/dec-osf1.h
2204 if test x$stabs = xyes; then
2205 tm_file="${tm_file} dbx.h"
2207 if test x$gas = xyes
2210 tmake_file=mips/t-ultrix
2211 extra_passes="mips-tfile mips-tdump"
2213 if test x$gnu_ld != xyes
2218 mips-dec-bsd*) # Decstation running 4.4 BSD
2219 tm_file=mips/dec-bsd.h
2220 if test x$gas = xyes
2223 tmake_file=mips/t-ultrix
2224 extra_passes="mips-tfile mips-tdump"
2226 if test x$gnu_ld != xyes
2231 mipsel-*-netbsd* | mips-dec-netbsd*) # Decstation running NetBSD
2232 tm_file=mips/netbsd.h
2233 # On NetBSD, the headers are already okay, except for math.h.
2236 mips*-*-linux*) # Linux MIPS, either endian.
2237 tm_file="dbxelf.h elfos.h svr4.h linux.h mips/linux.h"
2240 tm_file="$tm_file mips/isa32-linux.h"
2241 target_cpu_default="MASK_SOFT_FLOAT"
2246 tm_file="mips/little.h $tm_file"
2249 tmake_file="t-slibgcc-elf-ver t-linux"
2250 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
2253 if test x$enable_threads = xyes; then
2257 mips*el-*-openbsd*) # mips little endian
2258 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2260 mips*-*-openbsd*) # mips big endian
2261 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2262 tm_file="mips/openbsd-be.h ${tm_file}"
2264 mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
2265 tm_file="mips/news4.h ${tm_file}"
2266 if test x$stabs = xyes; then
2267 tm_file="${tm_file} dbx.h"
2269 if test x$gas = xyes
2272 extra_passes="mips-tfile mips-tdump"
2274 if test x$gnu_ld != xyes
2279 mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0.
2280 # That is based on svr4.
2281 # t-svr4 is not right because this system doesn't use ELF.
2282 tm_file="mips/news5.h ${tm_file}"
2283 if test x$stabs = xyes; then
2284 tm_file="${tm_file} dbx.h"
2287 if test x$gas = xyes
2290 extra_passes="mips-tfile mips-tdump"
2292 if test x$gnu_ld != xyes
2297 mips-tandem-sysv4*) # Tandem S2 running NonStop UX
2298 tm_file="mips/svr4-5.h mips/svr4-t.h"
2299 if test x$stabs = xyes; then
2300 tm_file="${tm_file} dbx.h"
2303 if test x$gas = xyes
2305 extra_parts="crtbegin.o crtend.o"
2307 extra_passes="mips-tfile mips-tdump"
2309 if test x$gnu_ld != xyes
2314 mips-*-ultrix* | mips-dec-mach3) # Decstation.
2315 tm_file="mips/ultrix.h ${tm_file}"
2316 if test x$stabs = xyes; then
2317 tm_file="${tm_file} dbx.h"
2319 if test x$gas = xyes
2322 tmake_file=mips/t-ultrix
2323 extra_passes="mips-tfile mips-tdump"
2325 if test x$gnu_ld != xyes
2330 mips-*-riscos[56789]bsd*)
2331 tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0
2332 if test x$stabs = xyes; then
2333 tm_file="${tm_file} dbx.h"
2335 if test x$gas = xyes
2337 tmake_file=mips/t-bsd-gas
2339 tmake_file=mips/t-bsd
2340 extra_passes="mips-tfile mips-tdump"
2342 if test x$gnu_ld != xyes
2347 mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2348 tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
2349 if test x$stabs = xyes; then
2350 tm_file="${tm_file} dbx.h"
2352 if test x$gas = xyes
2354 tmake_file=mips/t-bsd-gas
2356 tmake_file=mips/t-bsd
2357 extra_passes="mips-tfile mips-tdump"
2359 if test x$gnu_ld != xyes
2364 mips-*-riscos[56789]sysv4*)
2365 tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0
2366 if test x$stabs = xyes; then
2367 tm_file="${tm_file} dbx.h"
2369 if test x$gas = xyes
2371 tmake_file=mips/t-svr4-gas
2373 tmake_file=mips/t-svr4
2374 extra_passes="mips-tfile mips-tdump"
2376 if test x$gnu_ld != xyes
2381 mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2382 tm_file="mips/svr4-4.h ${tm_file}"
2383 if test x$stabs = xyes; then
2384 tm_file="${tm_file} dbx.h"
2387 if test x$gas = xyes
2389 tmake_file=mips/t-svr4-gas
2391 tmake_file=mips/t-svr4
2392 extra_passes="mips-tfile mips-tdump"
2394 if test x$gnu_ld != xyes
2399 mips-*-riscos[56789]sysv*)
2400 tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0
2401 if test x$stabs = xyes; then
2402 tm_file="${tm_file} dbx.h"
2405 if test x$gas = xyes
2407 tmake_file=mips/t-svr3-gas
2409 tmake_file=mips/t-svr3
2410 extra_passes="mips-tfile mips-tdump"
2412 if test x$gnu_ld != xyes
2417 mips-*-sysv* | mips-*-riscos*sysv*)
2418 tm_file="mips/svr3-4.h ${tm_file}"
2419 if test x$stabs = xyes; then
2420 tm_file="${tm_file} dbx.h"
2423 if test x$gas = xyes
2425 tmake_file=mips/t-svr3-gas
2427 tmake_file=mips/t-svr3
2428 extra_passes="mips-tfile mips-tdump"
2430 if test x$gnu_ld != xyes
2435 mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0.
2436 tm_file=mips/mips-5.h
2437 if test x$stabs = xyes; then
2438 tm_file="${tm_file} dbx.h"
2440 if test x$gas = xyes
2443 extra_passes="mips-tfile mips-tdump"
2445 if test x$gnu_ld != xyes
2451 tm_file=mips/ecoffl.h
2452 if test x$stabs = xyes; then
2453 tm_file="${tm_file} dbx.h"
2455 tmake_file=mips/t-ecoff
2458 tm_file="gofast.h mips/ecoff.h"
2459 if test x$stabs = xyes; then
2460 tm_file="${tm_file} dbx.h"
2462 tmake_file=mips/t-ecoff
2465 tm_file="mips/isa3264.h mips/abi64.h"
2466 tmake_file=mips/t-isa3264
2467 target_cpu_default="MASK_SOFT_FLOAT"
2470 tm_file="mips/elfl.h"
2471 tmake_file=mips/t-elf
2474 tm_file="mips/elf.h"
2475 tmake_file=mips/t-elf
2478 tm_file="mips/elfl64.h"
2479 tmake_file=mips/t-elf
2481 mips64orionel-*-elf*)
2482 tm_file="mips/elforion.h mips/elfl64.h"
2483 tmake_file=mips/t-elf
2486 tm_file="mips/elf64.h"
2487 tmake_file=mips/t-elf
2490 tm_file="mips/elforion.h mips/elf64.h"
2491 tmake_file=mips/t-elf
2493 mips64orion-*-rtems*)
2494 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
2495 tmake_file="mips/t-elf t-rtems"
2496 if test x$enable_threads = xyes; then
2501 tm_file="mips/elf.h mips/rtems.h"
2502 tmake_file="mips/t-elf t-rtems"
2503 if test x$enable_threads = xyes; then
2508 tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
2509 tmake_file=mips/t-r3900
2510 target_cpu_default="MASK_SOFT_FLOAT"
2513 tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
2514 tmake_file=mips/t-r3900
2516 mips-*-*) # Default MIPS RISC-OS 4.0.
2517 if test x$stabs = xyes; then
2518 tm_file="${tm_file} dbx.h"
2520 if test x$gas = xyes
2523 extra_passes="mips-tfile mips-tdump"
2525 if test x$gnu_ld != xyes
2530 mmix-knuth-mmixware)
2534 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2535 if test x$stabs = xyes
2537 tm_file="${tm_file} dbx.h"
2542 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2543 if test x$stabs = xyes
2545 tm_file="${tm_file} dbx.h"
2550 tm_file=ns32k/encore.h
2554 tm_file=ns32k/sequent.h
2558 tm_file=ns32k/tek6100.h
2562 tm_file=ns32k/tek6200.h
2566 tm_file=ns32k/merlin.h
2570 tm_file=ns32k/pc532-mach.h
2574 tm_file=ns32k/pc532-min.h
2575 xm_defines='POSIX HZ=60'
2579 tm_file=ns32k/netbsd.h
2580 # On NetBSD, the headers are already okay, except for math.h.
2585 tm_file="${tm_file} pdp11/2bsd.h"
2595 tm_file="dbxelf.h elfos.h svr4.h pj/linux.h ${tm_file}"
2600 tm_file="dbxelf.h elfos.h svr4.h pj/pjl.h ${tm_file}"
2613 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
2617 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h"
2618 out_file=rs6000/rs6000.c
2619 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2622 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
2624 xm_file=rs6000/xm-beos.h
2625 tmake_file=rs6000/t-beos
2629 tm_file="${tm_file} darwin.h rs6000/darwin.h"
2630 tm_p_file="${tm_p_file} darwin-protos.h"
2631 tmake_file=rs6000/t-darwin
2632 xmake_file=rs6000/x-darwin
2633 # Override the usual setting, since Apple's GCC has lame bugs
2634 # and can't handle the initializers. Someday the bugs will be
2635 # fixed and we can get rid of this silliness.
2636 xm_defines="HAVE_DESIGNATED_INITIALIZERS=0"
2637 extra_objs="darwin.o"
2638 c_target_objs="darwin-c.o"
2639 cxx_target_objs="darwin-c.o"
2640 # Darwin linker does collect2 functionality
2644 powerpc*-*-freebsd*)
2645 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
2646 xm_file=rs6000/xm-sysv4.h
2647 out_file=rs6000/rs6000.c
2648 tmake_file="rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
2651 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2653 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2657 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
2658 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2660 powerpc-*-chorusos*)
2662 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
2663 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2664 case x${enable_threads} in
2665 xyes | xpthreads | xposix)
2672 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
2673 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2675 powerpc-*-eabisimaltivec*)
2677 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"
2678 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2682 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
2683 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2687 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2688 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2690 powerpc-*-eabialtivec*)
2692 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
2693 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2697 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
2698 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2702 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rtems.h rs6000/rtems.h"
2703 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2704 if test x$enable_threads = xyes; then
2708 powerpc-*-linux*libc1)
2709 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2710 out_file=rs6000/rs6000.c
2711 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2712 if test x$enable_threads = xyes; then
2716 powerpc-*-linux-gnualtivec*)
2717 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
2718 out_file=rs6000/rs6000.c
2719 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2720 if test x$enable_threads = xyes; then
2725 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2726 out_file=rs6000/rs6000.c
2727 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2728 if test x$enable_threads = xyes; then
2732 powerpc-wrs-vxworks*)
2734 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/vxppc.h"
2735 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2736 thread_file='vxworks'
2738 powerpcle-wrs-vxworks*)
2740 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h"
2741 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2742 thread_file='vxworks'
2745 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2747 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2751 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2752 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2754 powerpcle-*-eabisim*)
2756 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"
2757 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2761 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
2762 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2764 rs6000-ibm-aix3.[01]*)
2766 tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
2770 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
2772 tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
2773 tmake_file=rs6000/t-newas
2778 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
2780 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
2781 tmake_file=rs6000/t-newas
2786 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2788 tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
2789 tmake_file=rs6000/t-aix43
2795 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
2797 tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
2798 tmake_file=rs6000/t-aix43
2806 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2812 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2817 tm_file="${tm_file} rs6000/mach.h"
2822 tm_file="lynx.h rs6000/lynx.h"
2823 tmake_file=rs6000/t-rs6000
2827 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
2828 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
2829 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
2830 if test x$enable_threads = xyes; then
2835 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h s390/linux64.h"
2836 tm_p_file=s390/s390-protos.h
2837 md_file=s390/s390.md
2838 out_file=s390/s390.c
2839 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux"
2840 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
2841 if test x$enable_threads = xyes; then
2846 tmake_file="sh/t-sh sh/t-elf"
2847 tm_file="${tm_file} sh/elf.h"
2851 tmake_file="sh/t-sh sh/t-elf t-rtems"
2852 tm_file="${tm_file} sh/elf.h sh/rtemself.h"
2854 if test x$enable_threads = xyes; then
2859 tmake_file="sh/t-sh t-rtems"
2860 tm_file="${tm_file} sh/rtems.h"
2862 if test x$enable_threads = xyes; then
2867 tm_file="${tm_file} sh/elf.h sh/linux.h"
2868 tmake_file="sh/t-sh sh/t-elf sh/t-linux"
2870 if test x$enable_threads = xyes; then
2879 tm_file="${tm_file} sparc/pbd.h"
2882 sparc64-wrs-vxworks*)
2883 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/sparc_bi.h gofast.h sparc/vxsparc64.h"
2884 tmake_file=sparc/t-vxsparc64
2887 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
2888 tm_file="${tm_file} aoutos.h sparc/aout.h gofast.h sparc/vxsparc.h"
2889 tmake_file=sparc/t-vxsparc
2891 thread_file='vxworks'
2894 tmake_file=sparc/t-sparcbare
2895 tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
2898 tm_file="${tm_file} sparc/aout.h netbsd.h sparc/netbsd.h"
2903 tm_file="sparc/sparc.h ${tm_file}"
2904 # needed to unconfuse gdb
2905 tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
2906 # we need collect2 until our bug is fixed...
2910 tm_file="${tm_file} sparc/bsd.h"
2913 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h chorus.h"
2914 tmake_file=sparc/t-chorus-elf
2915 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2917 case x${enable_threads} in
2918 xyes | xpthreads | xposix)
2924 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h"
2925 tmake_file=sparc/t-elf
2926 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2930 sparc-*-linux*aout*) # Sparc's running GNU/Linux, a.out
2931 tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h"
2934 sparc-*-linux*libc1*) # Sparc's running GNU/Linux, libc5
2935 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
2936 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1"
2937 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2941 sparc-*-linux*) # Sparc's running GNU/Linux, libc6
2942 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
2943 tmake_file="t-slibgcc-elf-ver t-linux"
2944 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
2946 if test x$enable_threads = xyes; then
2952 if test x$gas = xyes
2954 tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h"
2956 tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h"
2958 tmake_file=sparc/t-sunos41
2961 tmake_file="sparc/t-sparcbare t-rtems"
2962 tm_file="${tm_file} aoutos.h sparc/aout.h sparc/rtems.h rtems.h"
2963 if test x$enable_threads = xyes; then
2967 sparc-*-rtems*|sparc-*-rtemself*)
2968 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
2969 tmake_file="sparc/t-elf t-rtems"
2970 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2973 if test x$enable_threads = xyes; then
2977 sparcv9-*-solaris2* | sparc64-*-solaris2*)
2978 if test x$gnu_ld = xyes
2980 tm_file="sparc/sol2-sld-64.h sparc/sol2-64.h"
2982 tm_file=sparc/sol2-sld-64.h
2985 tmake_file="sparc/t-sol2 sparc/t-sol2-64"
2986 if test x$gnu_ld = xyes; then
2987 tmake_file="$tmake_file t-slibgcc-elf-ver"
2989 tmake_file="$tmake_file t-slibgcc-sld"
2991 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
2993 if test x${enable_threads} = x ; then
2994 enable_threads=$have_pthread_h
2995 if test x${enable_threads} = x ; then
2996 enable_threads=$have_thread_h
2999 if test x${enable_threads} = xyes ; then
3000 if test x${have_pthread_h} = xyes ; then
3003 thread_file='solaris'
3007 sparc-hal-solaris2*)
3009 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/hal.h"
3010 tmake_file="sparc/t-halos sparc/t-sol2"
3011 if test x$gnu_ld = xyes; then
3012 tmake_file="$tmake_file t-slibgcc-elf-ver"
3014 tmake_file="$tmake_file t-slibgcc-sld"
3016 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
3025 thread_file='solaris'
3028 if test x$gnu_ld = xyes
3030 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h"
3032 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sol2-sld.h"
3035 tmake_file=sparc/t-sol2
3036 if test x$gnu_ld = xyes; then
3037 tmake_file="$tmake_file t-slibgcc-elf-ver"
3039 tmake_file="$tmake_file t-slibgcc-sld"
3041 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
3043 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*) ;;
3045 if test x$gnu_ld = xyes
3047 tm_file="sparc/sol2-sld-64.h sparc/sol2-64.h"
3049 tm_file="sparc/sol2-sld-64.h"
3051 tmake_file="$tmake_file sparc/t-sol2-64"
3062 if test x${enable_threads} = x; then
3063 enable_threads=$have_pthread_h
3064 if test x${enable_threads} = x; then
3065 enable_threads=$have_thread_h
3068 if test x${enable_threads} = xyes; then
3069 if test x${have_pthread_h} = xyes; then
3072 thread_file='solaris'
3077 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
3081 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
3082 tmake_file=sparc/t-sunos41
3084 if test x$gas = xyes; then
3085 tm_file="${tm_file} sparc/sun4gas.h"
3089 tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h"
3093 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h"
3096 extra_parts="crtbegin.o crtend.o"
3100 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/vxsim.h"
3101 tmake_file=sparc/t-vxsparc
3104 tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h"
3105 tmake_file=sparc/t-splet
3108 tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
3109 tmake_file=sparc/t-sparclite
3112 tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h"
3113 tmake_file=sparc/t-sparclite
3116 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h"
3117 tmake_file=sparc/t-sparclite
3118 extra_parts="crtbegin.o crtend.o"
3121 tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h"
3122 tmake_file=sparc/t-sp86x
3125 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h"
3126 tmake_file=sparc/t-sp86x
3127 extra_parts="crtbegin.o crtend.o"
3130 tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
3133 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h"
3134 extra_parts="crtbegin.o crtend.o"
3136 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
3137 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
3139 case "x$with_cpu" in
3140 x) with_cpu=ultrasparc ;;
3141 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
3144 sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux
3145 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64"
3146 tm_file="sparc/sparc_bi.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
3147 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
3149 if test x$enable_threads = xyes; then
3155 tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
3156 tmake_file=arm/t-strongarm-elf
3161 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h"
3162 tmake_file=arm/t-strongarm-coff
3167 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
3168 tmake_file=arm/t-strongarm-pe
3174 { echo "config.gcc: error:
3175 *** The Thumb targets have been deprecated. The equivalent
3176 *** ARM based toolchain can now generate Thumb instructions
3177 *** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
3180 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/rtems.h"
3181 tmake_file="v850/t-v850 t-rtems"
3182 if test x$stabs = xyes
3184 tm_file="${tm_file} dbx.h"
3187 c_target_objs="v850-c.o"
3188 cxx_target_objs="v850-c.o"
3191 target_cpu_default="TARGET_CPU_generic"
3192 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
3193 tmake_file=v850/t-v850
3194 if test x$stabs = xyes
3196 tm_file="${tm_file} dbx.h"
3199 c_target_objs="v850-c.o"
3200 cxx_target_objs="v850-c.o"
3202 vax-*-bsd*) # VAXen running BSD
3206 vax-*-sysv*) # VAXen running system V
3207 tm_file="${tm_file} vax/vaxv.h"
3212 tm_file="${tm_file} netbsd.h vax/netbsd.h"
3218 tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
3222 vax-*-ultrix*) # VAXen running ultrix
3223 tm_file="${tm_file} vax/ultrix.h"
3226 vax-*-vms*) # VAXen running VMS
3227 xm_file=vax/xm-vms.h
3231 vax-*-*) # VAX default entry
3239 tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
3240 tmake_file=arm/t-xscale-elf
3245 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
3246 tmake_file=arm/t-xscale-coff
3251 # For historical reasons, the target files omit the 'x'.
3252 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
3253 tm_p_file=stormy16/stormy16-protos.h
3254 md_file=stormy16/stormy16.md
3255 out_file=stormy16/stormy16.c
3256 tmake_file="stormy16/t-stormy16"
3257 extra_parts="crtbegin.o crtend.o"
3260 echo "Configuration $machine not supported" 1>&2
3267 install_headers_dir=install-headers-cpio
3271 # Distinguish i[34567]86
3272 # Also, do not run mips-tfile on MIPS if using gas.
3273 # Process --with-cpu= for PowerPC/rs6000
3274 target_cpu_default2=
3277 target_cpu_default2=TARGET_CPU_DEFAULT_i486
3280 case $target_alias in
3282 target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
3285 target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
3288 target_cpu_default2=TARGET_CPU_DEFAULT_k6
3291 target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
3294 target_cpu_default2=TARGET_CPU_DEFAULT_pentium
3298 i686-*-* | i786-*-*)
3299 case $target_alias in
3300 athlon_xp-*|athlon_mp-*|athlon_4-*)
3301 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
3303 athlon_tbird-*|athlon-*)
3304 target_cpu_default2=TARGET_CPU_DEFAULT_athlon
3307 target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
3310 target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
3313 target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
3316 target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
3321 # We should have hammer chip here, but it does not exist yet and
3322 # thus it is not supported. Athlon_SSE is probably equivalent feature
3323 # wise to hammer from our point of view except for 64bit mode.
3324 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
3329 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
3332 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
3335 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
3338 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
3341 target_cpu_default2="MASK_CPU_EV5"
3345 if test x$gas = xyes
3347 if test "$target_cpu_default2" = ""
3349 target_cpu_default2="MASK_GAS"
3351 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
3356 case "x$with_cpu" in
3359 target_cpu_default2="TARGET_CPU_generic"
3362 # Distinguish cores, and major variants
3363 # arm7m doesn't exist, but D & I don't affect code
3364 xarm[236789] | xarm250 | xarm[67][01]0 \
3365 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
3366 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
3368 | xstrongarm | xstrongarm110 | xstrongarm1100)
3369 target_cpu_default2="TARGET_CPU_$with_cpu"
3373 echo "--with-cpu must be passed a value" 1>&2
3378 if test x$pass2done = xyes
3380 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3387 hppa*-*-* | parisc*-*-*)
3388 if test x$gas = xyes
3390 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
3394 mips*-*-ecoff* | mips*-*-elf*)
3395 if test x$gas = xyes
3397 if test x$gnu_ld = xyes
3399 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
3401 target_cpu_default2="MASK_GAS"
3406 if test x$gas = xyes
3408 target_cpu_default2="MASK_GAS"
3411 powerpc*-*-* | rs6000-*-*)
3412 case "x$with_cpu" in
3416 xcommon | xpower | xpower2 | xpowerpc | xrios \
3417 | xrios1 | xrios2 | xrsc | xrsc1 \
3418 | x601 | x602 | x603 | x603e | x604 | x604e | x620 \
3419 | x740 | x750 | x505)
3420 target_cpu_default2="\\\"$with_cpu\\\""
3423 x401 | x403 | xec603e | x801 | x821 | x823 | x860)
3424 target_cpu_default2="\\\"$with_cpu\\\""
3425 tm_file="$tm_file rs6000/softfloat.h"
3429 echo "--with-cpu must be passed a value" 1>&2
3434 if test x$pass2done = xyes
3436 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3443 case ".$with_cpu" in
3445 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3447 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
3448 target_cpu_default2="TARGET_CPU_$with_cpu"
3451 if test x$pass2done = xyes
3453 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3461 if test "$target_cpu_default2" != ""
3463 if test "$target_cpu_default" != ""
3465 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3467 target_cpu_default=$target_cpu_default2
3471 # Save data on machine being used to compile GCC in build_xm_file.
3472 # Save data on host machine in vars host_xm_file and host_xmake_file.
3473 if test x$pass1done = x
3475 if test x$xm_file != x
3476 then build_xm_file=$xm_file
3478 build_xm_defines=$xm_defines
3479 build_install_headers_dir=$install_headers_dir
3480 build_exeext=$exeext
3483 if test x$pass2done = x
3485 if test x$xm_file != x
3486 then host_xm_file=$xm_file
3488 host_xm_defines=$xm_defines
3489 host_xmake_file="$xmake_file"
3490 host_truncate_target=$truncate_target
3491 host_extra_gcc_objs=$extra_gcc_objs
3492 host_extra_objs=$extra_host_objs