pa.h (STARTING_FRAME_OFFSET): Change offset for TARGET_64BIT to 16.
[gcc.git] / gcc / config.gcc
1 # GCC build-, host- and target-specific configuration file.
2 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3
4 #This file is part of GCC.
5
6 #GCC is free software; you can redistribute it and/or modify it under
7 #the terms of the GNU General Public License as published by the Free
8 #Software Foundation; either version 2, or (at your option) any later
9 #version.
10
11 #GCC is distributed in the hope that it will be useful, but WITHOUT
12 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 #for more details.
15
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
19 #02111-1307, USA.
20
21 # This is the GCC build-, host- and target-specific configuration file
22 # where a configuration type, as recognized and generated by config.bfd,
23 # is mapped to different system-specific definitions and files. This is
24 # invoked by the autoconf-generated configure script, called for build,
25 # host and target in that order, setting ${machine} to each. Putting it
26 # in a separate shell file lets us skip running autoconf when modifying
27 # build-, host- and target-specific information.
28
29 # This file switches on the shell variable ${machine}, and also uses the
30 # following shell variables:
31 #
32 # with_* Various variables as set by configure.
33 #
34 # enable_threads_flag Either the name, yes or no depending on whether
35 # threads support was requested.
36 #
37 # gas_flag Either yes or no depending on whether GNU as was
38 # requested.
39 #
40 # gnu_ld_flag Either yes or no depending on whether GNU ld was
41 # requested.
42
43 # This file sets the following shell variables for use by the
44 # autoconf-generated configure script:
45 #
46 # cpu_type The name of the cpu, if different from machine.
47 #
48 # tm_defines List of target macros to define for all compilations.
49 #
50 # tm_file A list of target macro files, if different from
51 # "$cpu_type/$cpu_type.h". Usually it's constructed
52 # per target in a way like this:
53 # tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
54 # Note that the preferred order is:
55 # - specific target header "${cpu_type}/${cpu_type.h}"
56 # - generic headers like dbxelf.h elfos.h, netware.h, etc.
57 # - specializing target headers like ${cpu_type.h}/elf.h
58 # This helps to keep OS specific stuff out of the CPU
59 # defining header ${cpu_type}/${cpu_type.h}.
60 #
61 # tm_p_file Location of file with declarations for functions
62 # in $out_file.
63 #
64 # out_file The name of the machine description C support
65 # file, if different from "$cpu_type/$cpu_type.c".
66 #
67 # md_file The name of the machine-description file, if
68 # different from "$cpu_type/$cpu_type.md".
69 #
70 # tmake_file A list of machine-description-specific
71 # makefile-fragments, if different from
72 # "$cpu_type/t-$cpu_type".
73 #
74 # extra_modes The name of the file containing a list of extra
75 # machine modes, if necessary and different from
76 # "$cpu_type/$cpu_type-modes.def".
77 #
78 # extra_objs List of extra objects that should be linked into
79 # the compiler proper (cc1, cc1obj, cc1plus)
80 # depending on target.
81 #
82 # extra_headers List of used header files from the directory
83 # config/${cpu_type}.
84 #
85 # host_xmake_file List of host-specific makefile-fragments.
86 #
87 # extra_passes List of extra executables compiled for this target
88 # machine, used for compiling from source to object.
89 #
90 # extra_parts List of extra object files that should be compiled
91 # for this target machine.
92 #
93 # extra_programs Like extra_passes, but these are used when linking.
94 #
95 # host_extra_objs List of extra host-dependent objects that should
96 # be linked into the compiler proper.
97 #
98 # host_extra_gcc_objs List of extra host-dependent objects that should
99 # be linked into the gcc driver.
100 #
101 # c_target_objs List of extra target-dependent objects that be
102 # linked into the C compiler only.
103 #
104 # cxx_target_objs List of extra target-dependent objects that be
105 # linked into the C++ compiler only.
106 #
107 # target_gtfiles List of extra source files with type information.
108 #
109 # build_xm_defines List of macros to define when compiling for the
110 # build machine.
111 #
112 # build_xm_file List of files to include when compiling for the
113 # build machine.
114 #
115 # host_xm_defines List of macros to define when compiling for the
116 # host machine.
117 #
118 # host_xm_file List of files to include when compiling for the
119 # host machine.
120 #
121 # xm_defines List of macros to define when compiling for the
122 # target machine.
123 #
124 # xm_file List of files to include when compiling for the
125 # target machine.
126 #
127 # use_collect2 Set to yes or no, depending on whether collect2
128 # will be used.
129 #
130 # target_cpu_default Set to override the default target model.
131 #
132 # build_install_headers_dir
133 # Target to use when installing header files.
134 #
135 # host_truncate_target
136 # Non-empty if the target name should be truncated
137 # on this host, due to filename length issues.
138 #
139 # gdb_needs_out_file_path
140 # Set to yes if gdb needs a dir command with
141 # `dirname $out_file`.
142 #
143 # build_exeext Set to the suffix, if the build machine requires
144 # executables to have a file name suffix.
145 #
146 # host_exeext Set to the suffix, if the host machine requires
147 # executables to have a file name suffix.
148 #
149 # thread_file Set to control which thread package to use.
150 #
151 # gas Set to yes or no depending on whether the target
152 # system normally uses GNU as.
153
154 # The following variables are used in each case-construct to build up the
155 # outgoing variables:
156 #
157 # xmake_file Makefile-fragment when this system is as a host,
158 # for host_xmake_file.
159 #
160 # extra_host_objs List of extra objects that should be linked into
161 # the compiler proper when this system is a host,
162 # for host_extra_objs.
163 #
164 # install_headers_dir Makefile-target for how the header file directory
165 # is installed, when this system is a build system,
166 # for build_install_headers_dir.
167 #
168 # truncate_target Non-empty if the target name should be truncated
169 # when this system is a host, due to filename length
170 # issues. For host_truncate_target.
171 #
172 # exeext The suffix for executables on this system.
173 #
174 # gnu_ld Set to yes or no depending on whether the target
175 # system normally uses GNU ld.
176
177 out_file=
178 xmake_file=
179 tmake_file=
180 extra_headers=
181 extra_passes=
182 extra_parts=
183 extra_programs=
184 extra_objs=
185 extra_host_objs=
186 extra_gcc_objs=
187 c_target_objs=
188 cxx_target_objs=
189 tm_defines=
190 xm_defines=
191 # Set this to force installation and use of collect2.
192 use_collect2=
193 # Set this to override the default target model.
194 target_cpu_default=
195 # Set this to control how the header file directory is installed.
196 install_headers_dir=install-headers-tar
197 # Set this if directory names should be truncated to 14 characters.
198 truncate_target=
199 # Set this if gdb needs a dir command with `dirname $out_file`
200 gdb_needs_out_file_path=
201 # Set this if the build machine requires executables to have a
202 # file name suffix.
203 exeext=
204 # Set this to control which thread package will be used.
205 thread_file=
206 # Reinitialize these from the flag values every loop pass, since some
207 # configure entries modify them.
208 gas="$gas_flag"
209 gnu_ld="$gnu_ld_flag"
210 enable_threads=$enable_threads_flag
211 target_gtfiles=
212
213 # Obsolete configurations.
214 case $machine in
215 m88k-*-aout* \
216 | m88k-*-openbsd* \
217 | m88k-*-sysv4* \
218 | mips-sni-sysv4 \
219 | mn10200-*-* \
220 | ns32k-*-openbsd* \
221 | romp-*-openbsd* \
222 | vax-*-vms* \
223 )
224 if test "x$enable_obsolete" != xyes; then
225 echo "*** Configuration $machine is obsolete." >&2
226 echo "*** Specify --enable-obsolete to build it anyway." >&2
227 echo "*** Support will be REMOVED in the next major release of GCC," >&2
228 echo "*** unless a maintainer comes forward." >&2
229 exit 1
230 fi;;
231 esac
232
233 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
234 # updated in each machine entry. Also set default extra_headers for some
235 # machines.
236 tm_p_file=
237 cpu_type=`echo $machine | sed 's/-.*$//'`
238 case $machine in
239 alpha*-*-*)
240 cpu_type=alpha
241 ;;
242 strongarm*-*-*)
243 cpu_type=arm
244 ;;
245 arm*-*-*)
246 cpu_type=arm
247 ;;
248 xscale-*-*)
249 cpu_type=arm
250 ;;
251 i[34567]86-*-*)
252 cpu_type=i386
253 extra_headers="mmintrin.h xmmintrin.h"
254 ;;
255 x86_64-*-*)
256 cpu_type=i386
257 extra_headers="mmintrin.h xmmintrin.h"
258 ;;
259 ia64-*-*)
260 extra_headers=ia64intrin.h
261 ;;
262 hppa*-*-* | parisc*-*-*)
263 cpu_type=pa
264 ;;
265 m680[012]0-*-*)
266 cpu_type=m68k
267 extra_headers=math-68881.h
268 ;;
269 m68k-*-*)
270 extra_headers=math-68881.h
271 ;;
272 mips*-*-*)
273 cpu_type=mips
274 ;;
275 powerpc*-*-*)
276 cpu_type=rs6000
277 extra_headers="ppc-asm.h altivec.h spe.h"
278 ;;
279 sparc*-*-*)
280 cpu_type=sparc
281 ;;
282 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
283 sh[123456789l]*-*-*)
284 cpu_type=sh
285 ;;
286 esac
287
288 tm_file=${cpu_type}/${cpu_type}.h
289 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
290 then
291 tm_p_file=${cpu_type}/${cpu_type}-protos.h
292 fi
293 extra_modes=
294 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
295 then
296 extra_modes=${cpu_type}/${cpu_type}-modes.def
297 fi
298
299 case $machine in
300 x86_64-*-*)
301 tm_file="i386/biarch64.h ${tm_file}"
302 ;;
303 esac
304
305 # On a.out targets, we need to use collect2.
306 case $machine in
307 *-*-*aout*)
308 use_collect2=yes
309 ;;
310 esac
311
312 # Common parts for GNU/Linux, GNU/Hurd, OpenBSD, NetBSD, and FreeBSD systems.
313 case $machine in
314 *-*-linux*)
315 xm_defines=POSIX
316 case $machine in
317 *-*-linux*ecoff* | *-*-linux*libc1* | *-*-linux*oldld* | *-*-linux*aout*)
318 ;;
319 *)
320 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
321 gas=yes gnu_ld=yes
322 case x${enable_threads} in
323 x | xyes | xposix) thread_file='posix'
324 ;;
325 esac
326 ;;
327 esac
328 ;;
329 *-*-gnu*)
330 # On the Hurd, the setup is just about the same on
331 # each different CPU. The specific machines that we
332 # support are matched above and just set $cpu_type.
333 xm_defines=POSIX
334 tm_file="${cpu_type}/gnu.h"
335 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
336 # GNU always uses ELF.
337 elf=yes
338 # GNU tools are the only tools.
339 gnu_ld=yes
340 gas=yes
341 # These details are the same as for Linux.
342 # But here we need a little extra magic.
343 tmake_file="t-slibgcc-elf-ver t-linux t-gnu"
344 case $machine in
345 alpha*)
346 tm_file="${cpu_type}/${cpu_type}.h alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h ${tm_file}"
347 ;;
348 i[34567]86-*-*)
349 tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}"
350 ;;
351 esac
352 ;;
353 *-*-openbsd*)
354 tm_file=${cpu_type}/openbsd.h
355 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
356 xm_defines=POSIX
357 if test x$enable_threads = xyes; then
358 thread_file='posix'
359 tmake_file="${tmake_file} t-openbsd-thread"
360 fi
361 ;;
362 *-*-netbsd*)
363 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd"
364 xm_defines=POSIX
365 gas=yes
366 gnu_ld=yes
367 case x${enable_threads} in
368 xyes | xposix)
369 thread_file='posix'
370 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
371 ;;
372 esac
373 ;;
374 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
375 # This is the place-holder for the generic a.out configuration
376 # of FreeBSD. No actual configuration resides here since
377 # there was only ever a bare-bones ix86 configuration for
378 # a.out and it exists solely in the machine-specific section.
379 # This place-holder must exist to avoid dropping into
380 # the generic ELF configuration of FreeBSD (i.e. it must be
381 # ordered before that section).
382 ;;
383 *-*-freebsd*)
384 # This is the generic ELF configuration of FreeBSD. Later
385 # machine-specific sections may refine and add to this
386 # configuration.
387 #
388 # Due to tm_file entry ordering issues that vary between cpu
389 # architectures, we only define fbsd_tm_file to allow the
390 # machine-specific section to dictate the final order of all
391 # entries of tm_file with the minor exception that components
392 # of the tm_file set here will always be of the form:
393 #
394 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
395 #
396 # The machine-specific section should not tamper with this
397 # ordering but may order all other entries of tm_file as it
398 # pleases around the provided core setting.
399 gas=yes
400 gnu_ld=yes
401 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
402 case $machine in
403 *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";;
404 *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";;
405 *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";;
406 *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";;
407 *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;;
408 esac
409 tmake_file="t-slibgcc-elf-ver t-freebsd"
410 xmake_file=none
411 xm_defines=POSIX
412 case x${enable_threads} in
413 xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";;
414 x | xyes | xpthreads | xposix)
415 thread_file='posix'
416 tmake_file="${tmake_file} t-freebsd-thread"
417 # Before 5.0, FreeBSD can't bind shared libraries to -lc
418 # when "optionally" threaded via weak pthread_* checks.
419 case $machine in
420 *-*-freebsd[34] | *-*-freebsd[34].*)
421 tmake_file="${tmake_file} t-slibgcc-nolc-override";;
422 esac
423 ;;
424 *) echo 'Unknown thread configuration for FreeBSD'; exit 1;;
425 esac
426 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
427 ;;
428 esac
429
430 case $machine in
431 # Support site-specific machine types.
432 *local*)
433 rest=`echo $machine | sed -e "s/$cpu_type-//"`
434 tm_file=${cpu_type}/$rest.h
435 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
436 then xm_file=${cpu_type}/xm-$rest.h
437 fi
438 if test -f $srcdir/config/${cpu_type}/x-$rest
439 then xmake_file=${cpu_type}/x-$rest
440 fi
441 if test -f $srcdir/config/${cpu_type}/t-$rest
442 then tmake_file=${cpu_type}/t-$rest
443 fi
444 ;;
445 alpha*-*-unicosmk*)
446 use_collect2=yes
447 tm_file="${tm_file} alpha/unicosmk.h"
448
449 # Don't include t-ieee for now because we don't support that yet
450 # tmake_file="alpha/t-ieee"
451 tmake_file="alpha/t-unicosmk"
452 ;;
453 alpha-*-interix)
454 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
455
456 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
457 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
458
459 # GAS + IEEE_CONFORMANT
460 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
461
462 xm_defines=POSIX
463 xm_file="alpha/xm-alpha-interix.h"
464 tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee"
465 if test x$enable_threads = xyes ; then
466 thread_file='posix'
467 fi
468 if test x$stabs = xyes ; then
469 tm_file="${tm_file} dbxcoff.h"
470 fi
471 #prefix='$$INTERIX_ROOT'/usr/contrib
472 #local_prefix='$$INTERIX_ROOT'/usr/contrib
473 ;;
474 alpha*-*-linux*ecoff*)
475 echo "Configuration $machine no longer supported" 1>&2
476 exit 1
477 ;;
478 alpha*-*-linux*libc1*)
479 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
480 target_cpu_default="MASK_GAS"
481 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtfm alpha/t-ieee"
482 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
483 gas=yes gnu_ld=yes
484 if test x$enable_threads = xyes; then
485 thread_file='posix'
486 fi
487 ;;
488 alpha*-*-linux*)
489 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
490 target_cpu_default="MASK_GAS"
491 tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
492 ;;
493 alpha*-*-gnu*)
494 target_cpu_default="MASK_GAS"
495 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
496 ;;
497 alpha*-*-freebsd*)
498 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
499 target_cpu_default="MASK_GAS"
500 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
501 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
502 ;;
503 alpha*-*-netbsd*)
504 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
505 target_cpu_default="MASK_GAS"
506 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
507 ;;
508
509 alpha*-*-openbsd*)
510 tm_file="${cpu_type}/${cpu_type}.h ${tm_file}"
511 # default x-alpha is only appropriate for dec-osf.
512 target_cpu_default="MASK_GAS"
513 tmake_file="alpha/t-alpha alpha/t-ieee"
514 ;;
515
516 alpha*-dec-osf[45]*)
517 xm_defines=POSIX
518 if test x$stabs = xyes
519 then
520 tm_file="${tm_file} dbx.h"
521 fi
522 if test x$gas != xyes
523 then
524 extra_passes="mips-tfile mips-tdump"
525 fi
526 use_collect2=yes
527 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
528 tm_file="${tm_file} alpha/osf.h"
529 extra_headers=va_list.h
530 case $machine in
531 *-*-osf4*)
532 # Some versions of OSF4 (specifically X4.0-9 296.7) have
533 # a broken tar, so we use cpio instead.
534 install_headers_dir=install-headers-cpio
535 # Set target_cpu_default except on 4.0a.
536 case $machine in
537 *-*-osf4.0a) ;;
538 *) target_cpu_default=MASK_SUPPORT_ARCH
539 esac
540 ;;
541 *-*-osf5*)
542 tm_file="${tm_file} alpha/osf5.h"
543 target_cpu_default=MASK_SUPPORT_ARCH
544 ;;
545 esac
546 ;;
547 alpha*-*-vxworks*)
548 xm_defines=POSIX
549 tm_file="${tm_file} dbx.h alpha/vxworks.h"
550 tmake_file="alpha/t-alpha alpha/t-ieee"
551 if [ x$gas != xyes ]
552 then
553 extra_passes="mips-tfile mips-tdump"
554 fi
555 use_collect2=yes
556 thread_file='vxworks'
557 ;;
558 alpha64-dec-*vms*)
559 xm_defines=POSIX
560 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
561 xm_file="alpha/xm-vms.h alpha/xm-vms64.h"
562 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
563 xmake_file=alpha/x-vms
564 exeext=.exe
565 # This removes the cpu type and manufacturer components and
566 # replaces "." with "_" in the operating system version.
567 case $host in *-*-*vms*)
568 target_alias=`echo $host \
569 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
570 ;;
571 esac
572 install_headers_dir=install-headers-cp
573 prefix=/gnu
574 local_prefix=/gnu
575 ;;
576 alpha*-dec-*vms*)
577 xm_defines=POSIX
578 tm_file="${tm_file} alpha/vms.h"
579 xm_file=alpha/xm-vms.h
580 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
581 xmake_file=alpha/x-vms
582 exeext=.exe
583 # This removes the cpu type and manufacturer components and
584 # replaces "." with "_" in the operating system version.
585 case $host in *-*-*vms*)
586 target_alias=`echo $host \
587 | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
588 ;;
589 esac
590 install_headers_dir=install-headers-cp
591 prefix=/gnu
592 local_prefix=/gnu
593 ;;
594 arc-*-elf*)
595 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
596 extra_parts="crtinit.o crtfini.o"
597 ;;
598 arm-*-coff* | armel-*-coff*)
599 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h"
600 tmake_file=arm/t-arm-coff
601 ;;
602 arm-*-vxworks*)
603 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/vxarm.h arm/arm.h"
604 tmake_file=arm/t-arm-coff
605 thread_file='vxworks'
606 ;;
607 arm-semi-aout | armel-semi-aout)
608 tm_file="arm/semi.h arm/aout.h arm/arm.h"
609 tmake_file=arm/t-semi
610 ;;
611 arm-semi-aof | armel-semi-aof)
612 tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
613 tmake_file=arm/t-semi
614 ;;
615 arm*-*-freebsd*|strongarm*-*-freebsd*)
616 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
617 tmake_file="${tmake_file} arm/t-strongarm-elf"
618 ;;
619 arm*-*-netbsdelf*)
620 echo "GCC does not yet support the ${machine} target"; exit 1
621 ;;
622 arm*-*-netbsd*)
623 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
624 tmake_file="t-netbsd arm/t-netbsd"
625 use_collect2=yes
626 ;;
627 arm*-*-linux*) # ARM GNU/Linux with ELF
628 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"
629 tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux"
630 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
631 gnu_ld=yes
632 case x${enable_threads} in
633 x | xyes | xpthreads | xposix)
634 thread_file='posix'
635 ;;
636 esac
637 ;;
638 arm*-*-uclinux*) # ARM ucLinux
639 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"
640 tmake_file=arm/t-arm-elf
641 ;;
642 arm*-*-aout)
643 tm_file="arm/aout.h arm/arm.h"
644 tmake_file=arm/t-arm-aout
645 ;;
646 arm*-*-ecos-elf)
647 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
648 tmake_file=arm/t-arm-elf
649 ;;
650 arm*-*-rtems*)
651 xm_defines=POSIX
652 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"
653 tmake_file="arm/t-arm-elf t-rtems"
654 if test x$enable_threads = xyes; then
655 thread_file='rtems'
656 fi
657 ;;
658 arm*-*-elf)
659 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
660 tmake_file=arm/t-arm-elf
661 ;;
662 arm*-*-conix*)
663 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h arm/aout.h arm/arm.h"
664 tmake_file=arm/t-arm-elf
665 ;;
666 arm*-*-oabi)
667 tm_file="arm/unknown-elf-oabi.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
668 tmake_file=arm/t-arm-elf
669 ;;
670 arm-*-pe*)
671 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h"
672 tmake_file=arm/t-pe
673 extra_objs="pe.o"
674 ;;
675 avr-*-*)
676 ;;
677 c4x-*-rtems*)
678 xm_defines=POSIX
679 tmake_file="c4x/t-c4x t-rtems"
680 tm_file="c4x/c4x.h c4x/rtems.h rtems.h"
681 if test x$enable_threads = xyes; then
682 thread_file='rtems'
683 fi
684 c_target_objs="c4x-c.o"
685 cxx_target_objs="c4x-c.o"
686 ;;
687 c4x-*)
688 tmake_file=c4x/t-c4x
689 c_target_objs="c4x-c.o"
690 cxx_target_objs="c4x-c.o"
691 ;;
692 cris-*-aout)
693 tm_file="dbxelf.h ${tm_file} cris/aout.h"
694 gas=yes
695 tmake_file="cris/t-cris cris/t-aout"
696 ;;
697 cris-*-elf | cris-*-none)
698 tm_file="dbxelf.h elfos.h ${tm_file}"
699 tmake_file="cris/t-cris cris/t-elfmulti"
700 gas=yes
701 ;;
702 cris-*-linux*)
703 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
704 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
705 ;;
706 d30v-*)
707 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
708 ;;
709 dsp16xx-*)
710 ;;
711 fr30-*-elf)
712 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
713 tmake_file=fr30/t-fr30
714 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
715 ;;
716 frv-*-elf)
717 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
718 tmake_file=frv/t-frv
719 ;;
720 h8300-*-rtems*)
721 xm_defines=POSIX
722 tmake_file="h8300/t-h8300 t-rtems"
723 tm_file="h8300/h8300.h h8300/rtems.h rtems.h"
724 if test x$enable_threads = xyes; then
725 thread_file='rtems'
726 fi
727 ;;
728 h8300-*-elf*)
729 tmake_file="h8300/t-h8300 h8300/t-elf"
730 tm_file="h8300/h8300.h h8300/elf.h"
731 ;;
732 h8300-*-*)
733 ;;
734 hppa*64*-*-linux* | parisc*64*-*-linux*)
735 target_cpu_default="(MASK_PA_11 | MASK_PA_20)"
736 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
737 pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
738 tmake_file=pa/t-linux64
739 gas=yes gnu_ld=yes
740 ;;
741 hppa*-*-linux* | parisc*-*-linux*)
742 target_cpu_default="MASK_PA_11"
743 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
744 pa/pa32-regs.h pa/pa32-linux.h"
745 tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux"
746 ;;
747 hppa*-*-openbsd*)
748 target_cpu_default="MASK_PA_11"
749 tmake_file=pa/t-bsd
750 ;;
751 hppa1.1-*-pro*)
752 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
753 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
754 tmake_file="pa/t-bsd pa/t-pro"
755 xmake_file="pa/x-ada"
756 ;;
757 hppa1.1-*-osf*)
758 target_cpu_default="MASK_PA_11"
759 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
760 tmake_file="pa/t-bsd pa/t-pa"
761 xmake_file="pa/x-ada"
762 use_collect2=yes
763 ;;
764 hppa1.1-*-rtems*)
765 xm_defines=POSIX
766 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
767 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
768 tmake_file="pa/t-bsd pa/t-pro"
769 xmake_file="pa/x-ada"
770 ;;
771 hppa1.0-*-osf*)
772 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
773 tmake_file="pa/t-bsd pa/t-pa"
774 xmake_file="pa/x-ada"
775 use_collect2=yes
776 ;;
777 hppa1.1-*-bsd*)
778 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
779 target_cpu_default="MASK_PA_11"
780 tmake_file="pa/t-bsd pa/t-pa"
781 xmake_file="pa/x-ada"
782 use_collect2=yes
783 ;;
784 hppa1.0-*-bsd*)
785 tm_file="${tm_file} pa/pa32-regs.h pa/som.h"
786 tmake_file="pa/t-bsd pa/t-pa"
787 xmake_file="pa/x-ada"
788 use_collect2=yes
789 ;;
790 hppa1.0-*-hpux7*)
791 tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h"
792 xm_defines=POSIX
793 tmake_file=pa/t-pa-hpux
794 install_headers_dir=install-headers-cpio
795 use_collect2=yes
796 ;;
797 hppa1.0-*-hpux8.0[0-2]*)
798 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
799 xm_defines=POSIX
800 tmake_file=pa/t-pa-hpux
801 if test x$gas != xyes
802 then
803 tm_file="pa/pa-oldas.h ${tm_file}"
804 fi
805 install_headers_dir=install-headers-cpio
806 use_collect2=yes
807 ;;
808 hppa1.1-*-hpux8.0[0-2]*)
809 target_cpu_default="MASK_PA_11"
810 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
811 xm_defines=POSIX
812 tmake_file=pa/t-pa-hpux
813 if test x$gas != xyes
814 then
815 tm_file="pa/pa-oldas.h ${tm_file}"
816 fi
817 install_headers_dir=install-headers-cpio
818 use_collect2=yes
819 ;;
820 hppa1.1-*-hpux8*)
821 target_cpu_default="MASK_PA_11"
822 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
823 xm_defines=POSIX
824 tmake_file=pa/t-pa-hpux
825 install_headers_dir=install-headers-cpio
826 use_collect2=yes
827 ;;
828 hppa1.0-*-hpux8*)
829 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h"
830 xm_defines=POSIX
831 tmake_file=pa/t-pa-hpux
832 install_headers_dir=install-headers-cpio
833 use_collect2=yes
834 ;;
835 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
836 target_cpu_default="MASK_PA_11"
837 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
838 xm_defines=POSIX
839 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
840 xmake_file="pa/x-ada"
841 if test x$enable_threads = x; then
842 enable_threads=$have_pthread_h
843 fi
844 case x${enable_threads} in
845 xyes | xdce)
846 tmake_file="${tmake_file} pa/t-dce-thr"
847 ;;
848 esac
849 install_headers_dir=install-headers-cpio
850 use_collect2=yes
851 ;;
852 hppa1.0-*-hpux10*)
853 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
854 xm_defines=POSIX
855 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
856 xmake_file="pa/x-ada"
857 if test x$enable_threads = x; then
858 enable_threads=$have_pthread_h
859 fi
860 case x${enable_threads} in
861 xyes | xdce)
862 tmake_file="${tmake_file} pa/t-dce-thr"
863 ;;
864 esac
865 install_headers_dir=install-headers-cpio
866 use_collect2=yes
867 ;;
868 hppa*64*-*-hpux11*)
869 xm_defines=POSIX
870 if test x$gas = xyes
871 then
872 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
873 pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
874 pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
875 else
876 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \
877 pa/pa64-regs.h pa/long_double.h pa/pa-hpux.h \
878 pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h"
879 fi
880 tmake_file="pa/t-pa64 pa/t-pa-hpux"
881 xmake_file="pa/x-ada"
882 target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)"
883
884 if test x$gnu_ld = xyes
885 then
886 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
887 fi
888 # if [ x$enable_threads = x ]; then
889 # enable_threads=$have_pthread_h
890 # fi
891 # if [ x$enable_threads = xyes ]; then
892 # thread_file='dce'
893 # tmake_file="${tmake_file} pa/t-dce-thr"
894 # fi
895 install_headers_dir=install-headers-cpio
896 use_collect2=yes
897 ;;
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"
901 xm_defines=POSIX
902 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
903 xmake_file="pa/x-ada"
904 # if test x$enable_threads = x; then
905 # enable_threads=$have_pthread_h
906 # fi
907 # if test x$enable_threads = xyes; then
908 # thread_file='dce'
909 # tmake_file="${tmake_file} pa/t-dce-thr"
910 # fi
911 install_headers_dir=install-headers-cpio
912 use_collect2=yes
913 ;;
914 hppa1.0-*-hpux11*)
915 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
916 xm_defines=POSIX
917 tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib"
918 xmake_file="pa/x-ada"
919 # if test x$enable_threads = x; then
920 # enable_threads=$have_pthread_h
921 # fi
922 # if test x$enable_threads = xyes; then
923 # thread_file='dce'
924 # tmake_file="${tmake_file} pa/t-dce-thr"
925 # fi
926 install_headers_dir=install-headers-cpio
927 use_collect2=yes
928 ;;
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"
932 xm_defines=POSIX
933 tmake_file=pa/t-pa-hpux
934 install_headers_dir=install-headers-cpio
935 use_collect2=yes
936 ;;
937 hppa1.0-*-hpux*)
938 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
939 xm_defines=POSIX
940 tmake_file=pa/t-pa-hpux
941 install_headers_dir=install-headers-cpio
942 use_collect2=yes
943 ;;
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"
947 xm_defines=POSIX
948 tmake_file=pa/t-pa-hpux
949 install_headers_dir=install-headers-cpio
950 use_collect2=yes
951 ;;
952 hppa1.0-*-hiux*)
953 tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
954 xm_defines=POSIX
955 tmake_file=pa/t-pa-hpux
956 install_headers_dir=install-headers-cpio
957 use_collect2=yes
958 ;;
959 hppa*-*-lites*)
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"
963 xmake_file="pa/x-ada"
964 use_collect2=yes
965 ;;
966 hppa*-*-mpeix*)
967 tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h"
968 tmake_file=pa/t-mpeix
969 echo "You must use gas. Assuming it is already installed."
970 gas=yes
971 install_headers_dir=install-headers-tar
972 use_collect2=yes
973 ;;
974 i370-*-opened*) # IBM 360/370/390 Architecture
975 xm_defines='POSIX FATAL_EXIT_CODE=12'
976 tm_file=i370/oe.h
977 tmake_file="i370/t-oe i370/t-i370"
978 c_target_objs="i370-c.o"
979 cxx_target_objs="i370-c.o"
980 ;;
981 i370-*-mvs*)
982 xm_defines='POSIX FATAL_EXIT_CODE=12'
983 tm_file=i370/mvs.h
984 tmake_file="i370/t-i370"
985 c_target_objs="i370-c.o"
986 cxx_target_objs="i370-c.o"
987 ;;
988 i370-*-linux*)
989 tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}"
990 tmake_file="t-slibgcc-elf-ver t-linux"
991 # broken_install=yes
992 elf=yes
993 ;;
994 i[34567]86-*-darwin*)
995 tm_file="${tm_file} darwin.h i386/darwin.h"
996 tm_p_file="${tm_p_file} darwin-protos.h"
997 tmake_file="t-darwin"
998 extra_objs="darwin.o"
999 target_gtfiles="\$(srcdir)/config/darwin.c"
1000 c_target_objs="darwin-c.o"
1001 cxx_target_objs="darwin-c.o"
1002 extra_parts="crt2.o"
1003 # Darwin linker does collect2 functionality
1004 use_collect2=no
1005 ;;
1006 i[34567]86-*-elf*)
1007 xm_defines=POSIX
1008 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
1009 tmake_file="i386/t-i386elf t-svr4"
1010 ;;
1011 i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
1012 xm_defines="POSIX SMALL_ARG_MAX"
1013 if test x$stabs = xyes -a x$gas = xyes
1014 then
1015 tm_file=i386/sysv4gdb.h
1016 else
1017 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1018 fi
1019 extra_parts="crtbegin.o crtend.o"
1020 tmake_file=i386/t-crtpic
1021 ;;
1022 i[34567]86-*-netware) # Intel 80386's running netware
1023 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h"
1024 tmake_file=i386/t-netware
1025 ;;
1026 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1027 if test x$gas = xyes
1028 then
1029 tm_file="${tm_file} usegas.h"
1030 fi
1031 xm_defines="POSIX SMALL_ARG_MAX"
1032 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h"
1033 tmake_file=t-svr4
1034 extra_parts="crtbegin.o crtend.o"
1035 install_headers_dir=install-headers-cpio
1036 ;;
1037 i[34567]86-sequent-sysv*) # would otherwise be caught by i?86-*-sysv*
1038 echo "*** Configuration $machine not supported" 1>&2
1039 exit 1
1040 ;;
1041 i[34567]86-wrs-vxworks*)
1042 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/vxi386.h"
1043 thread_file='vxworks'
1044 ;;
1045 i[34567]86-*-aout*)
1046 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
1047 ;;
1048 i[34567]86-*-beoself* | i[34567]86-*-beos*)
1049 xm_defines=POSIX
1050 tmake_file='i386/t-beos i386/t-crtpic'
1051 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h"
1052 extra_parts='crtbegin.o crtend.o'
1053 ;;
1054 i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*)
1055 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h"
1056 tmake_file=t-freebsd
1057 ;;
1058 i[34567]86-*-freebsd*)
1059 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
1060 ;;
1061 x86_64-*-freebsd*)
1062 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/x86-64.h i386/freebsd.h i386/freebsd64.h"
1063 ;;
1064 i[34567]86-*-netbsdelf*)
1065 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
1066 ;;
1067 i[34567]86-*-netbsd*)
1068 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
1069 tmake_file=t-netbsd
1070 use_collect2=yes
1071 ;;
1072 x86_64-*-netbsd*)
1073 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h"
1074 ;;
1075 i[34567]86-*-openbsd*)
1076 tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h ${tm_file}"
1077 # needed to unconfuse gdb
1078 tmake_file="t-libc-ok t-openbsd i386/t-openbsd"
1079 # we need collect2 until our bug is fixed...
1080 use_collect2=yes
1081 ;;
1082 i[34567]86-*-coff*)
1083 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
1084 ;;
1085 i[34567]86-*-linux*oldld*) # would otherwise be caught by i?86-*-linux*
1086 echo "*** Configuration $machine not supported" 1>&2
1087 exit 1
1088 ;;
1089 i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux
1090 # with a.out format
1091 tmake_file="t-linux-aout i386/t-crtstuff"
1092 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h"
1093 gnu_ld=yes
1094 ;;
1095 i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux
1096 # with ELF format using the
1097 # GNU/Linux C library 5
1098 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1099 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff"
1100 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1101 gnu_ld=yes
1102 if test x$enable_threads = xyes; then
1103 thread_file='single'
1104 fi
1105 ;;
1106 i[34567]86-*-linux*) # Intel 80386's running GNU/Linux
1107 # with ELF format using glibc 2
1108 # aka GNU/Linux C library 6
1109 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h"
1110 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff"
1111 ;;
1112 x86_64-*-linux*)
1113 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
1114 i386/x86-64.h i386/linux64.h"
1115 tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff i386/t-linux64"
1116 ;;
1117 i[34567]86-*-gnu*)
1118 ;;
1119 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1120 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1121 exit 1
1122 ;;
1123 i[34567]86-pc-msdosdjgpp*)
1124 xm_file=i386/xm-djgpp.h
1125 tm_file="dbxcoff.h ${tm_file} i386/djgpp.h"
1126 tmake_file=i386/t-djgpp
1127 gnu_ld=yes
1128 gas=yes
1129 exeext=.exe
1130 case $host in *pc-msdosdjgpp*)
1131 target_alias=djgpp
1132 ;;
1133 esac
1134 ;;
1135 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1136 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h"
1137 tmake_file=t-libc-ok
1138 gnu_ld=yes
1139 gas=yes
1140 ;;
1141 i[34567]86-*-lynxos*)
1142 if test x$gas = xyes
1143 then
1144 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h"
1145 else
1146 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h"
1147 fi
1148 ;;
1149 i[34567]86-*-mach*)
1150 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h"
1151 # tmake_file=t-libc-ok
1152 use_collect2=yes
1153 ;;
1154 i[34567]86-go32-rtems* | i[34567]86-*-rtemscoff*)
1155 # would otherwise be caught by i?86-*-rtems*
1156 echo "*** Configuration $machine not supported" 1>&2
1157 exit 1
1158 ;;
1159 i[34567]86-*-rtems*)
1160 xm_defines=POSIX
1161 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
1162 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1163 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1164 if test x$enable_threads = xyes; then
1165 thread_file='rtems'
1166 fi
1167 ;;
1168 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1169 xm_defines=POSIX
1170 install_headers_dir=install-headers-cpio
1171 tm_file="${tm_file} i386/unix.h i386/att.h i386/sco5.h"
1172 if test x$gas = xyes
1173 then
1174 tm_file="usegas.h ${tm_file}"
1175 tmake_file=i386/t-sco5gas
1176 else
1177 tmake_file=i386/t-sco5
1178 fi
1179 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1180 ;;
1181 i[34567]86-*-solaris2*)
1182 xm_defines="POSIX SMALL_ARG_MAX"
1183 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h i386/sol2.h"
1184 tmake_file="i386/t-sol2 t-svr4"
1185 if test x$gnu_ld = xyes; then
1186 tmake_file="$tmake_file t-slibgcc-elf-ver"
1187 else
1188 tmake_file="$tmake_file t-slibgcc-sld"
1189 fi
1190 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1191 if test x${enable_threads} = x; then
1192 enable_threads=$have_pthread_h
1193 if test x${enable_threads} = x; then
1194 enable_threads=$have_thread_h
1195 fi
1196 fi
1197 if test x${enable_threads} = xyes; then
1198 if test x${have_pthread_h} = xyes; then
1199 thread_file='posix'
1200 else
1201 thread_file='solaris'
1202 fi
1203 fi
1204 ;;
1205 i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
1206 xm_defines=POSIX
1207 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h"
1208 if test x$stabs = xyes
1209 then
1210 tm_file="${tm_file} dbx.h"
1211 fi
1212 tmake_file="i386/t-crtpic t-svr4"
1213 extra_parts="crtbegin.o crtend.o"
1214 if test x$enable_threads = xyes; then
1215 thread_file='posix'
1216 fi
1217 ;;
1218 i[34567]86-*-sysv4*) # Intel 80386's running system V.4
1219 xm_defines="POSIX SMALL_ARG_MAX"
1220 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv4-cpp.h"
1221 if test x$stabs = xyes
1222 then
1223 tm_file="${tm_file} dbx.h"
1224 fi
1225 tmake_file="i386/t-crtpic t-svr4"
1226 extra_parts="crtbegin.o crtend.o"
1227 ;;
1228 i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
1229 xm_defines=POSIX
1230 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h"
1231 tmake_file="i386/t-crtpic i386/t-udk t-svr4"
1232 extra_parts="crtbegin.o crtend.o"
1233 install_headers_dir=install-headers-cpio
1234 ;;
1235 i[34567]86-*-sysv*) # Intel 80386's running system V
1236 xm_defines=POSIX
1237 if test x$gas = xyes
1238 then
1239 if test x$stabs = xyes
1240 then
1241 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h"
1242 tmake_file=i386/t-svr3dbx
1243 extra_parts="svr3.ifile svr3z.ifile"
1244 else
1245 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h"
1246 extra_parts="crtbegin.o crtend.o"
1247 tmake_file=i386/t-crtstuff
1248 fi
1249 else
1250 tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h"
1251 extra_parts="crtbegin.o crtend.o"
1252 tmake_file=i386/t-crtstuff
1253 fi
1254 tmake_file="$tmake_file i386/t-crtpic"
1255 ;;
1256 i386-*-vsta) # Intel 80386's running VSTa kernel
1257 xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h"
1258 tm_file="${tm_file} i386/vsta.h"
1259 ;;
1260 i[34567]86-*-win32)
1261 xm_defines=POSIX
1262 xm_file=i386/xm-cygwin.h
1263 tmake_file=i386/t-cygwin
1264 tm_file="${tm_file} i386/win32.h"
1265 extra_objs=winnt.o
1266 if test x$enable_threads = xyes; then
1267 thread_file='win32'
1268 fi
1269 exeext=.exe
1270 ;;
1271 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1272 xm_defines=POSIX
1273 xm_file=i386/xm-cygwin.h
1274 tmake_file=i386/t-cygwin
1275 tm_file=i386/cygwin.h
1276 extra_objs=winnt.o
1277 if test x$enable_threads = xyes; then
1278 thread_file='win32'
1279 fi
1280 exeext=.exe
1281 ;;
1282 i[34567]86-*-mingw32*)
1283 tm_file=i386/mingw32.h
1284 xm_defines=POSIX
1285 xm_file=i386/xm-mingw32.h
1286 tmake_file="i386/t-cygwin i386/t-mingw32"
1287 extra_objs=winnt.o
1288 if test x$enable_threads = xyes; then
1289 thread_file='win32'
1290 fi
1291 exeext=.exe
1292 case $machine in
1293 *mingw32crt*)
1294 tm_file="${tm_file} i386/crtdll.h"
1295 ;;
1296 *minwg32msv* | *mingw32*)
1297 ;;
1298 esac
1299 ;;
1300 i[34567]86-*-uwin*)
1301 tm_file="i386/cygwin.h i386/uwin.h"
1302 tmake_file="i386/t-cygwin i386/t-uwin"
1303 extra_objs=winnt.o
1304 if test x$enable_threads = xyes; then
1305 thread_file='win32'
1306 fi
1307 exeext=.exe
1308 ;;
1309 i[34567]86-*-interix3*)
1310 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h i386/i386-interix3.h interix.h interix3.h"
1311 xm_file="i386/xm-i386-interix.h"
1312 xm_defines=POSIX
1313 tmake_file="t-interix i386/t-interix"
1314 extra_objs=winnt.o
1315 xmake_file="x-interix"
1316 if test x$enable_threads = xyes ; then
1317 thread_file='posix'
1318 fi
1319 if test x$stabs = xyes ; then
1320 tm_file="${tm_file} dbxcoff.h"
1321 fi
1322 ;;
1323 i[34567]86-*-interix*)
1324 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h"
1325 xm_file="i386/xm-i386-interix.h"
1326 xm_defines=POSIX
1327 tmake_file="t-interix i386/t-interix"
1328 extra_objs=winnt.o
1329 if test x$enable_threads = xyes ; then
1330 thread_file='posix'
1331 fi
1332 if test x$stabs = xyes ; then
1333 tm_file="${tm_file} dbxcoff.h"
1334 fi
1335 ;;
1336 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1337 tm_file="${tm_file} i960/vx960.h"
1338 tmake_file=i960/t-vxworks960
1339 use_collect2=yes
1340 thread_file='vxworks'
1341 c_target_objs="i960-c.o"
1342 cxx_target_objs="i960-c.o"
1343 ;;
1344 i960-wrs-vxworks5* | i960-wrs-vxworks)
1345 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1346 tmake_file=i960/t-vxworks960
1347 use_collect2=yes
1348 thread_file='vxworks'
1349 c_target_objs="i960-c.o"
1350 cxx_target_objs="i960-c.o"
1351 ;;
1352 i960-wrs-vxworks*)
1353 tm_file="${tm_file} i960/vx960.h"
1354 tmake_file=i960/t-vxworks960
1355 use_collect2=yes
1356 thread_file='vxworks'
1357 c_target_objs="i960-c.o"
1358 cxx_target_objs="i960-c.o"
1359 ;;
1360 i960-*-coff*)
1361 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1362 tmake_file=i960/t-960bare
1363 c_target_objs="i960-c.o"
1364 cxx_target_objs="i960-c.o"
1365 ;;
1366 i960-*-rtems)
1367 xm_defines=POSIX
1368 tmake_file="i960/t-960bare t-rtems"
1369 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h"
1370 if test x$enable_threads = xyes; then
1371 thread_file='rtems'
1372 fi
1373 c_target_objs="i960-c.o"
1374 cxx_target_objs="i960-c.o"
1375 ;;
1376 i960-*-*) # Default i960 environment.
1377 use_collect2=yes
1378 tmake_file=i960/t-960bare
1379 c_target_objs="i960-c.o"
1380 cxx_target_objs="i960-c.o"
1381 ;;
1382 ia64*-*-aix*)
1383 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h"
1384 tmake_file="ia64/t-ia64 ia64/t-aix"
1385 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1386 extra_parts="crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1387 ;;
1388 ia64*-*-elf*)
1389 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
1390 tmake_file="ia64/t-ia64"
1391 target_cpu_default="0"
1392 if test x$gas = xyes
1393 then
1394 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1395 fi
1396 if test x$gnu_ld = xyes
1397 then
1398 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1399 fi
1400 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1401 ;;
1402 ia64*-*-freebsd*)
1403 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1404 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1405 tmake_file="${tmake_file} ia64/t-ia64"
1406 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1407 ;;
1408 ia64*-*-linux*)
1409 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
1410 tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc"
1411 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1412 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1413 ;;
1414 ia64*-*-hpux*)
1415 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h"
1416 tmake_file="ia64/t-ia64 ia64/t-hpux"
1417 target_cpu_default="MASK_GNU_AS"
1418 if test x$enable_threads = xyes; then
1419 thread_file='posix'
1420 fi
1421 use_collect2=no
1422 c_target_objs="ia64-c.o"
1423 cxx_target_objs="ia64-c.o"
1424 ;;
1425 ip2k-*-elf)
1426 ;;
1427 m32r-*-elf*)
1428 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1429 extra_parts="crtinit.o crtfini.o"
1430 ;;
1431 # m68hc11 and m68hc12 share the same machine description.
1432 m68hc11-*-*|m6811-*-*)
1433 tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h"
1434 tm_p_file="m68hc11/m68hc11-protos.h"
1435 md_file="m68hc11/m68hc11.md"
1436 out_file="m68hc11/m68hc11.c"
1437 tmake_file="m68hc11/t-m68hc11-gas"
1438 ;;
1439 m68hc12-*-*|m6812-*-*)
1440 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h"
1441 tm_p_file="m68hc11/m68hc11-protos.h"
1442 md_file="m68hc11/m68hc11.md"
1443 out_file="m68hc11/m68hc11.c"
1444 tmake_file="m68hc11/t-m68hc11-gas"
1445 ;;
1446 m68000-hp-bsd*) # HP 9000/200 running BSD
1447 tm_file=m68k/hp2bsd.h
1448 use_collect2=yes
1449 ;;
1450 m68000-hp-hpux*) # HP 9000 series 300
1451 xm_defines=POSIX
1452 if test x$gas = xyes
1453 then
1454 tm_file=m68k/hp310g.h
1455 else
1456 tm_file=m68k/hp310.h
1457 fi
1458 tmake_file=m68k/t-hp320
1459 install_headers_dir=install-headers-cpio
1460 use_collect2=yes
1461 ;;
1462 m68000-sun-sunos3*)
1463 tm_file=m68k/sun2.h
1464 use_collect2=yes
1465 ;;
1466 m68000-sun-sunos4*)
1467 tm_file=m68k/sun2o4.h
1468 use_collect2=yes
1469 ;;
1470 m68000-att-sysv*)
1471 xm_defines=POSIX
1472 if test x$gas = xyes
1473 then
1474 tm_file=m68k/3b1g.h
1475 else
1476 tm_file=m68k/3b1.h
1477 fi
1478 use_collect2=yes
1479 ;;
1480 m68k-atari-sysv4*) # Atari variant of V.4.
1481 tm_file=m68k/atari.h
1482 xm_defines=POSIX
1483 tmake_file=t-svr4
1484 extra_parts="crtbegin.o crtend.o"
1485 ;;
1486 m68k-apollo-sysv* | m68k-bull-sysv*)
1487 # can otherwise be caught by m68k-*-sysv4*
1488 echo "*** Configuration $machine not supported" 1>&2
1489 exit 1
1490 ;;
1491 m68k-motorola-sysv*)
1492 tm_file=m68k/mot3300.h
1493 xm_defines=POSIX
1494 if test x$gas = xyes
1495 then
1496 if test x$gnu_ld = xyes
1497 then
1498 tmake_file=m68k/t-mot3300-gald
1499 else
1500 tmake_file=m68k/t-mot3300-gas
1501 use_collect2=yes
1502 fi
1503 else
1504 if test x$gnu_ld = xyes
1505 then
1506 tmake_file=m68k/t-mot3300-gld
1507 else
1508 tmake_file=m68k/t-mot3300
1509 use_collect2=yes
1510 fi
1511 fi
1512 gdb_needs_out_file_path=yes
1513 extra_parts="crt0.o mcrt0.o"
1514 ;;
1515 m68k-ncr-sysv*) # NCR Tower 32 SVR3
1516 tm_file=m68k/tower-as.h
1517 xm_defines=POSIX
1518 extra_parts="crtbegin.o crtend.o"
1519 ;;
1520 m68k-plexus-sysv*)
1521 tm_file=m68k/plexus.h
1522 xm_defines=POSIX
1523 use_collect2=yes
1524 ;;
1525 m68k-tti-*)
1526 tm_file=m68k/pbb.h
1527 xm_defines=POSIX
1528 ;;
1529 m68k-crds-unos*)
1530 xm_defines=POSIX
1531 tm_file=m68k/crds.h
1532 use_collect2=yes
1533 ;;
1534 m68k-cbm-sysv4*) # Commodore variant of V.4.
1535 tm_file=m68k/amix.h
1536 xm_defines=POSIX
1537 tmake_file=t-svr4
1538 extra_parts="crtbegin.o crtend.o"
1539 ;;
1540 m68k-ccur-rtu)
1541 tm_file=m68k/ccur-GAS.h
1542 use_collect2=yes
1543 ;;
1544 m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
1545 tm_file=m68k/hp3bsd44.h
1546 use_collect2=yes
1547 ;;
1548 m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
1549 tm_file=m68k/hp3bsd.h
1550 use_collect2=yes
1551 ;;
1552 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
1553 xm_defines=POSIX
1554 if test x$gas = xyes
1555 then
1556 xmake_file=m68k/x-hp320g
1557 tm_file=m68k/hp320g.h
1558 else
1559 xmake_file=m68k/x-hp320
1560 tm_file=m68k/hpux7.h
1561 fi
1562 install_headers_dir=install-headers-cpio
1563 use_collect2=yes
1564 ;;
1565 m68k-hp-hpux*) # HP 9000 series 300
1566 xm_defines=POSIX
1567 if test x$gas = xyes
1568 then
1569 xmake_file=m68k/x-hp320g
1570 tm_file=m68k/hp320g.h
1571 else
1572 xmake_file=m68k/x-hp320
1573 tm_file=m68k/hp320.h
1574 fi
1575 install_headers_dir=install-headers-cpio
1576 use_collect2=yes
1577 ;;
1578 m68k-sun-mach*)
1579 tm_file=m68k/sun3mach.h
1580 use_collect2=yes
1581 ;;
1582 m68k-sun-sunos3*)
1583 if test x$with_fp = xno
1584 then
1585 tm_file=m68k/sun3n3.h
1586 else
1587 tm_file=m68k/sun3o3.h
1588 fi
1589 use_collect2=yes
1590 ;;
1591 m68k-sun-sunos*) # For SunOS 4 (the default).
1592 if test x$with_fp = xno
1593 then
1594 tm_file=m68k/sun3n.h
1595 else
1596 tm_file=m68k/sun3.h
1597 fi
1598 use_collect2=yes
1599 ;;
1600 m68k-wrs-vxworks*)
1601 tm_file=m68k/vxm68k.h
1602 tmake_file=m68k/t-vxworks68
1603 thread_file='vxworks'
1604 ;;
1605 m68k-*-aout*)
1606 tmake_file=m68k/t-m68kbare
1607 tm_file="m68k/m68k-aout.h libgloss.h"
1608 ;;
1609 m68k-*-coff*)
1610 tmake_file=m68k/t-m68kbare
1611 tm_file="m68k/m68k-coff.h dbx.h"
1612 ;;
1613 m68020-*-elf* | m68k-*-elf*)
1614 tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
1615 xm_defines=POSIX
1616 tmake_file=m68k/t-m68kelf
1617 extra_parts="crtbegin.o crtend.o"
1618 ;;
1619 m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
1620 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1621 case $machine in
1622 m68010*)
1623 target_cpu_default="0"
1624 ;;
1625 *)
1626 target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD"
1627 ;;
1628 esac
1629 ;;
1630 m68k*-*-netbsd*)
1631 tm_file=m68k/netbsd.h
1632 tmake_file=t-netbsd
1633 use_collect2=yes
1634 ;;
1635 m68k*-*-openbsd*)
1636 # needed to unconfuse gdb
1637 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1638 # we need collect2 until our bug is fixed...
1639 use_collect2=yes
1640 ;;
1641 m68k-*-sysv4*) # Motorola m68k's running system V.4
1642 tm_file=m68k/m68kv4.h
1643 xm_defines=POSIX
1644 tmake_file=t-svr4
1645 extra_parts="crtbegin.o crtend.o"
1646 ;;
1647 m68k-*-linux*aout*) # Motorola m68k's running GNU/Linux
1648 # with a.out format
1649 tm_file=m68k/linux-aout.h
1650 tmake_file="t-linux-aout m68k/t-linux-aout"
1651 gnu_ld=yes
1652 ;;
1653 m68k-*-linux*libc1) # Motorola m68k's running GNU/Linux
1654 # with ELF format using the
1655 # GNU/Linux C library 5
1656 tm_file=m68k/linux.h
1657 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux"
1658 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1659 gnu_ld=yes
1660 ;;
1661 m68k-*-linux*) # Motorola m68k's running GNU/Linux
1662 # with ELF format using glibc 2
1663 # aka the GNU/Linux C library 6.
1664 tm_file=m68k/linux.h
1665 tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux"
1666 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1667 gnu_ld=yes
1668 ;;
1669 m68k-*-psos*)
1670 tmake_file=m68k/t-m68kbare
1671 tm_file=m68k/m68k-psos.h
1672 ;;
1673 m68k-*-rtemscoff*) # would otherwise be caught by m68k-*-rtems*
1674 echo "*** Configuration $machine not supported" 1>&2
1675 exit 1
1676 ;;
1677 m68k-*-rtems*)
1678 xm_defines=POSIX
1679 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
1680 tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h"
1681 extra_parts="crtbegin.o crtend.o"
1682 if test x$enable_threads = xyes; then
1683 thread_file='rtems'
1684 fi
1685 ;;
1686 m88k-*-aout*)
1687 xm_defines=POSIX
1688 tm_file=m88k/m88k-aout.h
1689 ;;
1690 m88k-*-openbsd*)
1691 tmake_file="${tmake_file} m88k/t-luna-gas"
1692 tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}"
1693 ;;
1694 m88k-*-sysv4*)
1695 xm_defines=POSIX
1696 tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h"
1697 extra_parts="crtbegin.o crtend.o"
1698 tmake_file=m88k/t-sysv4
1699 ;;
1700 mcore-*-elf)
1701 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
1702 tmake_file=mcore/t-mcore
1703 ;;
1704 mcore-*-pe*)
1705 tm_file=mcore/mcore-pe.h
1706 tmake_file=mcore/t-mcore-pe
1707 ;;
1708 mips-sgi-irix6*o32) # SGI System V.4., IRIX 6, O32 ABI
1709 if test x$gas = xyes
1710 then
1711 tm_file="mips/iris5.h mips/iris5gas.h mips/iris6-o32-gas.h"
1712 if test x$stabs = xyes
1713 then
1714 tm_file="${tm_file} dbx.h"
1715 fi
1716 tmake_file=mips/t-iris5-gas
1717 else
1718 tm_file="mips/iris5.h mips/iris6-o32-as.h"
1719 tmake_file=mips/t-iris5-as
1720 fi
1721 tm_file="${tm_file} mips/iris6-o32.h"
1722 tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1723 xm_defines=POSIX
1724 xm_file=mips/xm-iris5.h
1725 # mips-tfile doesn't work yet
1726 # See comment in mips/iris5.h file.
1727 use_collect2=yes
1728 # if test x$enable_threads = xyes; then
1729 # thread_file='irix'
1730 # fi
1731 ;;
1732 mips-sgi-irix6*) # SGI System V.4., IRIX 6
1733 if test "x$gnu_ld" = xyes
1734 then
1735 tm_file="mips/iris6.h mips/iris6gld.h"
1736 else
1737 tm_file=mips/iris6.h
1738 fi
1739 tmake_file="mips/t-iris mips/t-iris5-6 mips/t-iris6"
1740 xm_defines=POSIX
1741 # if test x$enable_threads = xyes; then
1742 # thread_file='irix'
1743 # fi
1744 ;;
1745 mips-wrs-vxworks)
1746 tm_file="${tm_file} mips/elf.h mips/vxworks.h"
1747 tmake_file=mips/t-ecoff
1748 gas=yes
1749 gnu_ld=yes
1750 extra_parts="crtbegin.o crtend.o"
1751 thread_file='vxworks'
1752 ;;
1753 mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
1754 tm_file="mips/iris6.h mips/cross64.h"
1755 xm_defines=POSIX
1756 xm_file=mips/xm-iris5.h
1757 tmake_file="mips/t-iris mips/t-cross64"
1758 # See comment in mips/iris[56].h files.
1759 use_collect2=yes
1760 # if test x$enable_threads = xyes; then
1761 # thread_file='irix'
1762 # fi
1763 ;;
1764 mips-sni-sysv4)
1765 if test x$gas = xyes
1766 then
1767 if test x$stabs = xyes
1768 then
1769 tm_file=mips/iris5gdb.h
1770 else
1771 tm_file="mips/sni-svr4.h mips/sni-gas.h"
1772 fi
1773 else
1774 tm_file=mips/sni-svr4.h
1775 fi
1776 xm_defines=POSIX
1777 if test x$gnu_ld != xyes
1778 then
1779 use_collect2=yes
1780 fi
1781 ;;
1782 mips-sgi-irix5*) # SGI System V.4., IRIX 5
1783 if test x$gas = xyes
1784 then
1785 tm_file="mips/iris5.h mips/iris5gas.h"
1786 if test x$stabs = xyes
1787 then
1788 tm_file="${tm_file} dbx.h"
1789 fi
1790 tmake_file=mips/t-iris5-gas
1791 else
1792 tm_file=mips/iris5.h
1793 tmake_file=mips/t-iris5-as
1794 fi
1795 tmake_file="${tmake_file} mips/t-iris mips/t-iris5-6"
1796 xm_defines=POSIX
1797 xm_file=mips/xm-iris5.h
1798 # mips-tfile doesn't work yet
1799 # See comment in mips/iris5.h file.
1800 use_collect2=yes
1801 # if test x$enable_threads = xyes; then
1802 # thread_file='irix'
1803 # fi
1804 ;;
1805 mips-sgi-*) # would otherwise be caught by mips-*-elf*
1806 echo "*** Configuration $machine not supported" 1>&2
1807 exit 1
1808 ;;
1809 mips*-*-netbsd*) # NetBSD/mips, either endian.
1810 target_cpu_default="MASK_GAS|MASK_ABICALLS"
1811 tm_file="elfos.h ${tm_file} mips/netbsd.h"
1812 tmake_file="${tmake_file} mips/t-netbsd"
1813 ;;
1814 mips*-*-linux*) # Linux MIPS, either endian.
1815 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
1816 case $machine in
1817 mipsisa32*-*)
1818 target_cpu_default="MASK_SOFT_FLOAT"
1819 tm_defines="MIPS_ISA_DEFAULT=32"
1820 ;;
1821 esac
1822 tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux"
1823 ;;
1824 mips*el-*-openbsd*) # mips little endian
1825 target_cpu_default="MASK_GAS|MASK_ABICALLS"
1826 ;;
1827 mips*-*-openbsd*) # mips big endian
1828 target_cpu_default="MASK_GAS|MASK_ABICALLS"
1829 tm_file="mips/openbsd-be.h ${tm_file}"
1830 ;;
1831 mips-*-ecoff* | mipsel-*-ecoff*)
1832 if test x$stabs = xyes; then
1833 tm_file="${tm_file} dbx.h"
1834 fi
1835 tmake_file=mips/t-ecoff
1836 ;;
1837 mipsisa32-*-elf* | mipsisa32el-*-elf*)
1838 tm_file="${tm_file} mips/elf.h"
1839 tmake_file=mips/t-isa3264
1840 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_MEABI"
1841 ;;
1842 mipsisa64-*-elf* | mipsisa64el-*-elf*)
1843 tm_file="${tm_file} mips/elf.h"
1844 tmake_file=mips/t-isa3264
1845 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1846 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_MEABI"
1847 ;;
1848 mipsisa64sr71k-*-elf*)
1849 tm_file="${tm_file} mips/elf.h"
1850 tmake_file=mips/t-sr71k
1851 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1852 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_MEABI"
1853 ;;
1854 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1855 tm_file="${tm_file} mips/elf.h"
1856 tmake_file=mips/t-elf
1857 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1858 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1859 ;;
1860 mips-*-elf* | mipsel-*-elf*)
1861 tm_file="${tm_file} mips/elf.h"
1862 tmake_file=mips/t-elf
1863 ;;
1864 mips64-*-elf* | mips64el-*-elf*)
1865 tm_file="${tm_file} mips/elf64.h"
1866 tmake_file=mips/t-elf
1867 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1868 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1869 ;;
1870 mips64vr-*-elf* | mips64vrel-*-elf*)
1871 tm_file="mips/vr.h ${tm_file} mips/elf64.h"
1872 tm_defines="MIPS_ABI_DEFAULT=ABI_O64 MIPS_MARCH_CONTROLS_SOFT_FLOAT=1"
1873 tmake_file=mips/t-vr
1874 ;;
1875 mips64orion-*-elf* | mips64orionel-*-elf*)
1876 tm_file="${tm_file} mips/elforion.h mips/elf64.h"
1877 tmake_file=mips/t-elf
1878 tmake_file=mips/t-elf
1879 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1880 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1881 ;;
1882 mips64orion-*-rtems*)
1883 xm_defines=POSIX
1884 tm_file="${tm_file} mips/elforion.h mips/elf64.h mips/rtems64.h rtems.h"
1885 tmake_file="mips/t-elf t-rtems"
1886 tmake_file=mips/t-elf
1887 target_cpu_default="MASK_64BIT|MASK_FLOAT64|MASK_GAS"
1888 tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1889 if test x$enable_threads = xyes; then
1890 thread_file='rtems'
1891 fi
1892 ;;
1893 mips*-*-rtems*)
1894 xm_defines=POSIX
1895 tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h"
1896 tmake_file="mips/t-elf t-rtems"
1897 if test x$enable_threads = xyes; then
1898 thread_file='rtems'
1899 fi
1900 ;;
1901 mipstx39-*-elf* | mipstx39el-*-elf*)
1902 tm_file="${tm_file} mips/r3900.h mips/elf.h"
1903 tmake_file=mips/t-r3900
1904 ;;
1905 mmix-knuth-mmixware)
1906 ;;
1907 mn10200-*-*)
1908 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1909 if test x$stabs = xyes
1910 then
1911 tm_file="${tm_file} dbx.h"
1912 fi
1913 use_collect2=no
1914 ;;
1915 mn10300-*-*)
1916 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
1917 if test x$stabs = xyes
1918 then
1919 tm_file="${tm_file} dbx.h"
1920 fi
1921 use_collect2=no
1922 ;;
1923 ns32k-*-netbsdelf*)
1924 echo "GCC does not yet support the ${machine} target"; exit 1
1925 ;;
1926 ns32k-*-netbsd*)
1927 tm_file="${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
1928 # On NetBSD, the headers are already okay, except for math.h.
1929 tmake_file="t-netbsd ns32k/t-ns32k"
1930 use_collect2=yes
1931 ;;
1932 pdp11-*-bsd)
1933 tm_file="${tm_file} pdp11/2bsd.h"
1934 ;;
1935 pdp11-*-*)
1936 ;;
1937 avr-*-*)
1938 ;;
1939 ns32k-*-openbsd*)
1940 # Nothing special
1941 ;;
1942 romp-*-openbsd*)
1943 # Nothing special
1944 ;;
1945 powerpc-*-openbsd*)
1946 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
1947 extra_headers=
1948 ;;
1949 powerpc64-*-linux*)
1950 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h"
1951 out_file=rs6000/rs6000.c
1952 tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-linux rs6000/t-linux64"
1953 ;;
1954 powerpc64-*-gnu*)
1955 tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux64.h rs6000/gnu.h"
1956 out_file=rs6000/rs6000.c
1957 tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-gnu rs6000/t-linux64"
1958 ;;
1959 powerpc-*-beos*)
1960 tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h"
1961 xm_defines=POSIX
1962 tmake_file=rs6000/t-beos
1963 extra_headers=
1964 ;;
1965 powerpc-*-darwin*)
1966 tm_file="${tm_file} darwin.h rs6000/darwin.h"
1967 tm_p_file="${tm_p_file} darwin-protos.h"
1968 tmake_file="rs6000/t-rs6000 t-darwin rs6000/t-darwin"
1969 extra_objs="darwin.o"
1970 target_gtfiles="\$(srcdir)/config/darwin.c"
1971 c_target_objs="darwin-c.o"
1972 cxx_target_objs="darwin-c.o"
1973 extra_parts="crt2.o"
1974 # Darwin linker does collect2 functionality
1975 use_collect2=no
1976 extra_headers=altivec.h
1977 ;;
1978 powerpc*-*-freebsd*)
1979 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1980 xm_file=rs6000/xm-sysv4.h
1981 out_file=rs6000/rs6000.c
1982 tmake_file="rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1983 ;;
1984 powerpc-*-sysv*)
1985 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1986 xm_defines=POSIX
1987 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
1988 ;;
1989 powerpc-*-netbsd*)
1990 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1991 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
1992 ;;
1993 powerpc-*-chorusos*)
1994 xm_defines=POSIX
1995 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h"
1996 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
1997 case x${enable_threads} in
1998 xyes | xpthreads | xposix)
1999 thread_file='posix'
2000 ;;
2001 esac
2002 ;;
2003 powerpc-*-eabiaix*)
2004 xm_defines=POSIX
2005 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h"
2006 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2007 ;;
2008 powerpc-*-eabispe*)
2009 xm_defines=POSIX
2010 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabispe.h"
2011 tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2012 ;;
2013 powerpc-*-eabisimaltivec*)
2014 xm_defines=POSIX
2015 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"
2016 tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2017 ;;
2018 powerpc-*-eabisim*)
2019 xm_defines=POSIX
2020 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h"
2021 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2022 ;;
2023 powerpc-*-elf*)
2024 xm_defines=POSIX
2025 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
2026 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2027 ;;
2028 powerpc-*-eabialtivec*)
2029 xm_defines=POSIX
2030 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h"
2031 tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm"
2032 ;;
2033 powerpc-*-eabi*)
2034 xm_defines=POSIX
2035 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h"
2036 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2037 ;;
2038 powerpc-*-rtems*)
2039 xm_defines=POSIX
2040 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h"
2041 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2042 if test x$enable_threads = xyes; then
2043 thread_file='rtems'
2044 fi
2045 ;;
2046 powerpc-*-linux*libc1)
2047 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2048 out_file=rs6000/rs6000.c
2049 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2050 if test x$enable_threads = xyes; then
2051 thread_file='posix'
2052 fi
2053 ;;
2054 powerpc-*-linux-gnualtivec*)
2055 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
2056 out_file=rs6000/rs6000.c
2057 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2058 ;;
2059 powerpc-*-linux*)
2060 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h"
2061 out_file=rs6000/rs6000.c
2062 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm"
2063 ;;
2064 powerpc-*-gnu-gnualtivec*)
2065 tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h rs6000/gnu.h"
2066 out_file=rs6000/rs6000.c
2067 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2068 if test x$enable_threads = xyes; then
2069 thread_file='posix'
2070 fi
2071 ;;
2072 powerpc-*-gnu*)
2073 tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/gnu.h"
2074 out_file=rs6000/rs6000.c
2075 tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
2076 if test x$enable_threads = xyes; then
2077 thread_file='posix'
2078 fi
2079 ;;
2080 powerpc-wrs-vxworks*)
2081 xm_defines=POSIX
2082 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/vxppc.h"
2083 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2084 thread_file='vxworks'
2085 ;;
2086 powerpc-wrs-windiss*)
2087 xm_defines=POSIX
2088 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/windiss.h"
2089 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2090 thread_file=""
2091 ;;
2092 powerpcle-wrs-vxworks*)
2093 xm_defines=POSIX
2094 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h"
2095 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2096 thread_file='vxworks'
2097 ;;
2098 powerpcle-*-sysv*)
2099 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2100 xm_defines=POSIX
2101 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2102 ;;
2103 powerpcle-*-elf*)
2104 xm_defines=POSIX
2105 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
2106 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2107 ;;
2108 powerpcle-*-eabisim*)
2109 xm_defines=POSIX
2110 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"
2111 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2112 ;;
2113 powerpcle-*-eabi*)
2114 xm_defines=POSIX
2115 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h"
2116 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2117 ;;
2118 rs6000-ibm-aix3.[01]*)
2119 xm_defines=POSIX
2120 tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h"
2121 use_collect2=yes
2122 ;;
2123 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
2124 xm_defines=POSIX
2125 tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h"
2126 tmake_file=rs6000/t-newas
2127 use_collect2=yes
2128 extra_headers=
2129 ;;
2130 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
2131 xm_defines=POSIX
2132 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
2133 tmake_file=rs6000/t-newas
2134 use_collect2=yes
2135 extra_headers=
2136 ;;
2137 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
2138 xm_defines=POSIX
2139 tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
2140 tmake_file=rs6000/t-aix43
2141 use_collect2=yes
2142 thread_file='aix'
2143 extra_headers=
2144 ;;
2145 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
2146 xm_defines=POSIX
2147 tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
2148 tmake_file=rs6000/t-aix43
2149 use_collect2=yes
2150 thread_file='aix'
2151 extra_headers=
2152 ;;
2153 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
2154 xm_defines=POSIX
2155 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
2156 tmake_file=rs6000/t-aix52
2157 use_collect2=yes
2158 thread_file='aix'
2159 extra_headers=
2160 ;;
2161 rs6000-ibm-aix*)
2162 xm_defines=POSIX
2163 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2164 use_collect2=yes
2165 ;;
2166 rs6000-bull-bosx)
2167 xm_defines=POSIX
2168 tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h"
2169 use_collect2=yes
2170 ;;
2171 rs6000-*-mach*)
2172 tm_file="${tm_file} rs6000/mach.h"
2173 xm_defines=POSIX
2174 use_collect2=yes
2175 ;;
2176 rs6000-*-lynxos*)
2177 tm_file="lynx.h rs6000/lynx.h"
2178 tmake_file=rs6000/t-rs6000
2179 use_collect2=yes
2180 ;;
2181 s390-*-linux*)
2182 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
2183 tmake_file="t-slibgcc-elf-ver t-linux"
2184 ;;
2185 s390x-*-linux*)
2186 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
2187 tm_p_file=s390/s390-protos.h
2188 md_file=s390/s390.md
2189 extra_modes=s390/s390-modes.def
2190 out_file=s390/s390.c
2191 tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux64"
2192 ;;
2193 sh-*-elf* | sh[2346l]*-*-elf*)
2194 tmake_file="sh/t-sh sh/t-elf"
2195 case $machine in
2196 shl* | sh64l*)
2197 tm_file="sh/little.h ${tm_file}"
2198 tmake_file="${tmake_file} sh/t-le"
2199 ;;
2200 esac
2201 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h"
2202 case $machine in
2203 sh64*)
2204 tmake_file="${tmake_file} sh/t-sh64"
2205 tm_file="${tm_file} sh/sh64.h"
2206 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2207 ;;
2208 sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
2209 sh4*) target_cpu_default="SELECT_SH4" ;;
2210 sh3e*) target_cpu_default="SELECT_SH3E" ;;
2211 sh3*) target_cpu_default="SELECT_SH3" ;;
2212 sh2*) target_cpu_default="SELECT_SH2" ;;
2213 esac
2214 case $machine in
2215 sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
2216 esac
2217 ;;
2218 sh-*-rtemself*)
2219 xm_defines=POSIX
2220 tmake_file="sh/t-sh sh/t-elf t-rtems"
2221 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/embed-elf.h sh/rtemself.h rtems.h"
2222 if test x$enable_threads = xyes; then
2223 thread_file='rtems'
2224 fi
2225 ;;
2226 sh-*-rtems*)
2227 xm_defines=POSIX
2228 tmake_file="sh/t-sh t-rtems"
2229 tm_file="${tm_file} sh/coff.h sh/rtems.h rtems.h"
2230 if test x$enable_threads = xyes; then
2231 thread_file='rtems'
2232 fi
2233 ;;
2234 sh-*-linux* | sh[2346lbe]*-*-linux*)
2235 tmake_file="sh/t-sh sh/t-elf sh/t-linux"
2236 case $machine in
2237 sh*be-*-* | sh*eb-*-*) ;;
2238 *)
2239 tm_file="sh/little.h ${tm_file}"
2240 tmake_file="${tmake_file} sh/t-le"
2241 ;;
2242 esac
2243 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h"
2244 gas=yes gnu_ld=yes
2245 case $machine in
2246 sh64*)
2247 tmake_file="${tmake_file} sh/t-sh64"
2248 tm_file="${tm_file} sh/sh64.h"
2249 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2250 ;;
2251 sh4_single*) target_cpu_default="SELECT_SH4_SINGLE" ;;
2252 sh4*) target_cpu_default="SELECT_SH4" ;;
2253 sh3e[lb]e*) target_cpu_default="SELECT_SH3E" ;;
2254 sh3e[lb]*) target_cpu_default="SELECT_SH3" ;;
2255 sh3e*) target_cpu_default="SELECT_SH3E" ;;
2256 sh3*) target_cpu_default="SELECT_SH3" ;;
2257 sh2*) target_cpu_default="SELECT_SH2" ;;
2258 esac
2259 case $machine in
2260 sh[234]*) tmake_file="${tmake_file} sh/t-monolib" ;;
2261 esac
2262 ;;
2263 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2264 sh64-*-netbsd* | sh64l*-*-netbsd*)
2265 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2266 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2267 case $machine in
2268 sh*l*-*)
2269 tm_file="sh/little.h ${tm_file}"
2270 tmake_file="${tmake_file} sh/t-le"
2271 ;;
2272 *)
2273 tmake_file="${tmake_file} sh/t-be"
2274 ;;
2275 esac
2276 case $machine in
2277 sh5*-*)
2278 # SHmedia, 32-bit ABI
2279 target_cpu_default="SH5_BIT|SH4_BIT|SH3E_BIT"
2280 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5"
2281 ;;
2282 sh64*-*)
2283 # SHmedia, 64-bit ABI
2284 target_cpu_default="SH5_BIT|SH4_BIT"
2285 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd-sh5 sh/t-netbsd-sh5-64"
2286 ;;
2287 *)
2288 # SH3, software floating point
2289 target_cpu_default="SH1_BIT|SH2_BIT|SH3_BIT"
2290 tmake_file="${tmake_file} sh/t-netbsd"
2291 ;;
2292 esac
2293 ;;
2294 sh-*-*)
2295 tm_file="${tm_file} sh/coff.h"
2296 ;;
2297 sparc-tti-*)
2298 tm_file="${tm_file} sparc/pbd.h"
2299 xm_defines=POSIX
2300 ;;
2301 sparc64-wrs-vxworks*)
2302 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/biarch64.h gofast.h sparc/vxsparc64.h"
2303 tmake_file="sparc/t-vxsparc64 sparc/t-crtfm"
2304 use_collect2=yes
2305 ;;
2306 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
2307 tm_file="${tm_file} aoutos.h sparc/aout.h gofast.h sparc/vxsparc.h"
2308 tmake_file=sparc/t-vxsparc
2309 use_collect2=yes
2310 thread_file='vxworks'
2311 ;;
2312 sparc-*-aout*)
2313 tmake_file=sparc/t-sparcbare
2314 tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
2315 ;;
2316 sparc-*-netbsdelf*)
2317 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2318 ;;
2319 sparc-*-netbsd*)
2320 tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h"
2321 tmake_file=t-netbsd
2322 use_collect2=yes
2323 ;;
2324 sparc-*-openbsd*)
2325 tm_file="sparc/sparc.h ${tm_file}"
2326 # needed to unconfuse gdb
2327 tmake_file="t-libc-ok t-openbsd sparc/t-openbsd"
2328 # we need collect2 until our bug is fixed...
2329 use_collect2=yes
2330 ;;
2331 sparc64-*-openbsd*)
2332 tm_file="sparc/openbsd1-64.h sparc/sparc.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
2333 xm_file=sparc/xm-sp64.h
2334 gas=yes gnu_ld=yes
2335 with_cpu=ultrasparc
2336 ;;
2337 sparc-*-bsd*)
2338 tm_file="${tm_file} sparc/bsd.h"
2339 ;;
2340 sparc-*-chorusos*)
2341 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h chorus.h"
2342 tmake_file="sparc/t-chorus-elf sparc/t-crtfm"
2343 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2344 case x${enable_threads} in
2345 xyes | xpthreads | xposix)
2346 thread_file='posix'
2347 ;;
2348 esac
2349 ;;
2350 sparc-*-elf*)
2351 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h"
2352 tmake_file="sparc/t-elf sparc/t-crtfm"
2353 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2354 ;;
2355 sparc-*-linux*aout*) # SPARC's running GNU/Linux, a.out
2356 tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h"
2357 gnu_ld=yes
2358 ;;
2359 sparc-*-linux*libc1*) # SPARC's running GNU/Linux, libc5
2360 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
2361 tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 sparc/t-crtfm"
2362 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2363 gnu_ld=yes
2364 ;;
2365 sparc-*-linux*) # SPARC's running GNU/Linux, libc6
2366 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h"
2367 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm"
2368 ;;
2369 sparc-*-lynxos*)
2370 if test x$gas = xyes
2371 then
2372 tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h"
2373 else
2374 tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h"
2375 fi
2376 tmake_file=sparc/t-sunos41
2377 ;;
2378 sparc-*-rtemsaout*) # would otherwise be caught by sparc-*-rtems*
2379 echo "*** Configuration $machine not supported" 1>&2
2380 exit 1
2381 ;;
2382 sparc-*-rtems*)
2383 xm_defines=POSIX
2384 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h"
2385 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
2386 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2387 if test x$enable_threads = xyes; then
2388 thread_file='rtems'
2389 fi
2390 ;;
2391 sparc64-*-solaris2* | sparcv9-*-solaris2*)
2392 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
2393 if test x$gnu_ld = xyes; then
2394 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
2395 fi
2396 if test x$gas = xyes; then
2397 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2398 fi
2399 xm_defines=POSIX
2400 tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
2401 if test x$gnu_ld = xyes; then
2402 tmake_file="$tmake_file t-slibgcc-elf-ver"
2403 else
2404 tmake_file="$tmake_file t-slibgcc-sld"
2405 fi
2406 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
2407 if test x${enable_threads} = x ; then
2408 enable_threads=$have_pthread_h
2409 if test x${enable_threads} = x ; then
2410 enable_threads=$have_thread_h
2411 fi
2412 fi
2413 if test x${enable_threads} = xyes ; then
2414 if test x${have_pthread_h} = xyes ; then
2415 thread_file='posix'
2416 else
2417 thread_file='solaris'
2418 fi
2419 fi
2420 ;;
2421 sparc-hal-solaris2*)
2422 xm_defines=POSIX
2423 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/hal.h"
2424 tmake_file="sparc/t-halos sparc/t-sol2 sparc/t-crtfm"
2425 if test x$gnu_ld = xyes; then
2426 tm_file="${tm_file} sparc/sol2-gld.h"
2427 tmake_file="$tmake_file t-slibgcc-elf-ver"
2428 else
2429 tmake_file="$tmake_file t-slibgcc-sld"
2430 fi
2431 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
2432 thread_file='solaris'
2433 ;;
2434 sparc-*-solaris2*)
2435 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h"
2436 if test x$gnu_ld = xyes; then
2437 tm_file="${tm_file} sparc/sol2-gld.h"
2438 fi
2439 tmake_file="sparc/t-sol2 sparc/t-crtfm"
2440 if test x$gnu_ld = xyes; then
2441 tmake_file="$tmake_file t-slibgcc-elf-ver"
2442 else
2443 tmake_file="$tmake_file t-slibgcc-sld"
2444 fi
2445 case $machine in
2446 *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*)
2447 if test x$gnu_ld = xno; then
2448 tm_file="${tm_file} sparc/sol26-sld.h"
2449 fi
2450 ;;
2451 *-*-solaris2.[789])
2452 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
2453 if test x$gnu_ld = xyes; then
2454 tm_file="${tm_file} sparc/sol2-gld-bi.h"
2455 fi
2456 if test x$gas = xyes; then
2457 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2458 fi
2459 tmake_file="$tmake_file sparc/t-sol2-64"
2460 ;;
2461 esac
2462 xm_defines=POSIX
2463 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
2464 if test x${enable_threads} = x; then
2465 enable_threads=$have_pthread_h
2466 if test x${enable_threads} = x; then
2467 enable_threads=$have_thread_h
2468 fi
2469 fi
2470 if test x${enable_threads} = xyes; then
2471 if test x${have_pthread_h} = xyes; then
2472 thread_file='posix'
2473 else
2474 thread_file='solaris'
2475 fi
2476 fi
2477 ;;
2478 sparc-*-sunos4.0*)
2479 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
2480 use_collect2=yes
2481 ;;
2482 sparc-*-sunos4*)
2483 tm_file="${tm_file} sparc/aout.h sparc/sunos4.h"
2484 tmake_file=sparc/t-sunos41
2485 use_collect2=yes
2486 if test x$gas = xyes; then
2487 tm_file="${tm_file} sparc/sun4gas.h"
2488 fi
2489 ;;
2490 sparc-*-sunos3*)
2491 tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h"
2492 use_collect2=yes
2493 ;;
2494 sparc-*-sysv4*)
2495 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h"
2496 xm_defines=POSIX
2497 tmake_file=t-svr4
2498 extra_parts="crtbegin.o crtend.o"
2499 ;;
2500 sparc-*-vxsim*)
2501 xm_defines=POSIX
2502 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/vxsim.h"
2503 tmake_file=sparc/t-vxsparc
2504 ;;
2505 sparclet-*-aout*)
2506 tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h"
2507 tmake_file=sparc/t-splet
2508 ;;
2509 sparclite-*-coff*)
2510 tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h"
2511 tmake_file=sparc/t-sparclite
2512 ;;
2513 sparclite-*-aout*)
2514 tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h"
2515 tmake_file=sparc/t-sparclite
2516 ;;
2517 sparclite-*-elf*)
2518 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h"
2519 tmake_file="sparc/t-sparclite sparc/t-crtfm"
2520 extra_parts="crtbegin.o crtend.o"
2521 ;;
2522 sparc86x-*-aout*)
2523 tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h"
2524 tmake_file=sparc/t-sp86x
2525 ;;
2526 sparc86x-*-elf*)
2527 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h"
2528 tmake_file="sparc/t-sp86x sparc/t-crtfm"
2529 extra_parts="crtbegin.o crtend.o"
2530 ;;
2531 sparc64-*-aout*)
2532 tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h"
2533 ;;
2534 sparc64-*-elf*)
2535 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h sparc/sol2.h sparc/sp64-elf.h"
2536 tmake_file="${tmake_file} sparc/t-crtfm"
2537 extra_parts="crtbegin.o crtend.o"
2538 ;;
2539 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2540 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2541 tmake_file="${tmake_file} sparc/t-crtfm"
2542 xmake_file=none
2543 case "x$with_cpu" in
2544 xultrasparc) ;;
2545 x) with_cpu=ultrasparc ;;
2546 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2547 esac
2548 ;;
2549 sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
2550 tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64 sparc/t-crtfm"
2551 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h"
2552 ;;
2553 sparc64-*-netbsd*)
2554 tmake_file="${tmake_file} sparc/t-netbsd64"
2555 tm_file="sparc/biarch64.h ${tm_file}"
2556 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2557 ;;
2558 strongarm-*-elf*)
2559 tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2560 tmake_file=arm/t-strongarm-elf
2561 out_file=arm/arm.c
2562 md_file=arm/arm.md
2563 extra_modes=arm/arm-modes.def
2564 ;;
2565 strongarm-*-coff*)
2566 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h"
2567 tmake_file=arm/t-strongarm-coff
2568 out_file=arm/arm.c
2569 md_file=arm/arm.md
2570 extra_modes=arm/arm-modes.def
2571 ;;
2572 strongarm-*-pe)
2573 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"
2574 tmake_file=arm/t-strongarm-pe
2575 out_file=arm/arm.c
2576 md_file=arm/arm.md
2577 extra_modes=arm/arm-modes.def
2578 extra_objs=pe.o
2579 ;;
2580 thumb*-*-*)
2581 { echo "config.gcc: error:
2582 *** The Thumb targets have been deprecated. The equivalent
2583 *** ARM based toolchain can now generate Thumb instructions
2584 *** when the -mthumb switch is given to the compiler." 1>&2; exit 1; }
2585 ;;
2586 v850-*-rtems*)
2587 xm_defines=POSIX
2588 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/v850.h v850/rtems.h rtems.h"
2589 tmake_file="v850/t-v850 t-rtems"
2590 if test x$stabs = xyes
2591 then
2592 tm_file="${tm_file} dbx.h"
2593 fi
2594 use_collect2=no
2595 c_target_objs="v850-c.o"
2596 cxx_target_objs="v850-c.o"
2597 ;;
2598 v850e-*-*)
2599 target_cpu_default="TARGET_CPU_v850e"
2600 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
2601 tm_p_file=v850/v850-protos.h
2602 tmake_file=v850/t-v850
2603 md_file=v850/v850.md
2604 out_file=v850/v850.c
2605 if test x$stabs = xyes
2606 then
2607 tm_file="${tm_file} dbx.h"
2608 fi
2609 use_collect2=no
2610 c_target_objs="v850-c.o"
2611 cxx_target_objs="v850-c.o"
2612 ;;
2613 v850-*-*)
2614 target_cpu_default="TARGET_CPU_generic"
2615 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
2616 tmake_file=v850/t-v850
2617 if test x$stabs = xyes
2618 then
2619 tm_file="${tm_file} dbx.h"
2620 fi
2621 use_collect2=no
2622 c_target_objs="v850-c.o"
2623 cxx_target_objs="v850-c.o"
2624 ;;
2625 vax-*-bsd*) # VAXen running BSD
2626 tm_file="${tm_file} vax/bsd.h"
2627 use_collect2=yes
2628 ;;
2629 vax-*-sysv*) # VAXen running system V
2630 tm_file="${tm_file} vax/vaxv.h"
2631 xm_defines=POSIX
2632 ;;
2633 vax-*-netbsdelf*)
2634 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2635 float_format=vax
2636 ;;
2637 vax-*-netbsd*)
2638 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2639 tmake_file=t-netbsd
2640 use_collect2=yes
2641 ;;
2642 vax-*-openbsd*)
2643 tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}"
2644 use_collect2=yes
2645 ;;
2646 vax-*-ultrix*) # VAXen running ultrix
2647 tm_file="${tm_file} vax/ultrix.h"
2648 ;;
2649 vax-*-vms*) # VAXen running VMS
2650 xm_file=vax/xm-vms.h
2651 tm_file=vax/vms.h
2652 ;;
2653 vax-*-*) # VAX default entry
2654 ;;
2655 xscale-*-elf)
2656 tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
2657 tmake_file=arm/t-xscale-elf
2658 out_file=arm/arm.c
2659 md_file=arm/arm.md
2660 extra_modes=arm/arm-modes.def
2661 ;;
2662 xscale-*-coff)
2663 tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h"
2664 tmake_file=arm/t-xscale-coff
2665 out_file=arm/arm.c
2666 md_file=arm/arm.md
2667 extra_modes=arm/arm-modes.def
2668 ;;
2669 xstormy16-*-elf)
2670 # For historical reasons, the target files omit the 'x'.
2671 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
2672 tm_p_file=stormy16/stormy16-protos.h
2673 md_file=stormy16/stormy16.md
2674 out_file=stormy16/stormy16.c
2675 tmake_file="stormy16/t-stormy16"
2676 extra_parts="crtbegin.o crtend.o"
2677 ;;
2678 xtensa-*-elf*)
2679 tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
2680 with_newlib=yes
2681 tmake_file=xtensa/t-xtensa
2682 extra_parts="crtbegin.o crtend.o"
2683 fixincludes=Makefile.in # newlib headers should be OK
2684 ;;
2685 xtensa-*-linux*)
2686 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
2687 tmake_file="t-linux xtensa/t-xtensa"
2688 ;;
2689 *)
2690 echo "*** Configuration $machine not supported" 1>&2
2691 exit 1
2692 ;;
2693 esac
2694
2695 case $machine in
2696 *-*-sysv*)
2697 install_headers_dir=install-headers-cpio
2698 ;;
2699 esac
2700
2701 # Distinguish i[34567]86
2702 # Also, do not run mips-tfile on MIPS if using gas.
2703 # Process --with-cpu= for PowerPC/rs6000
2704 target_cpu_default2=
2705 case $machine in
2706 i486-*-*)
2707 target_cpu_default2=TARGET_CPU_DEFAULT_i486
2708 ;;
2709 i586-*-*)
2710 case $target_alias in
2711 k6_2-*)
2712 target_cpu_default2=TARGET_CPU_DEFAULT_k6_2
2713 ;;
2714 k6_3-*)
2715 target_cpu_default2=TARGET_CPU_DEFAULT_k6_3
2716 ;;
2717 k6-*)
2718 target_cpu_default2=TARGET_CPU_DEFAULT_k6
2719 ;;
2720 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2721 target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx
2722 ;;
2723 *)
2724 target_cpu_default2=TARGET_CPU_DEFAULT_pentium
2725 ;;
2726 esac
2727 ;;
2728 i686-*-* | i786-*-*)
2729 case $target_alias in
2730 athlon_xp-*|athlon_mp-*|athlon_4-*)
2731 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
2732 ;;
2733 athlon_tbird-*|athlon-*)
2734 target_cpu_default2=TARGET_CPU_DEFAULT_athlon
2735 ;;
2736 pentium2-*)
2737 target_cpu_default2=TARGET_CPU_DEFAULT_pentium2
2738 ;;
2739 pentium3-*)
2740 target_cpu_default2=TARGET_CPU_DEFAULT_pentium3
2741 ;;
2742 pentium4-*)
2743 target_cpu_default2=TARGET_CPU_DEFAULT_pentium4
2744 ;;
2745 *)
2746 target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro
2747 ;;
2748 esac
2749 ;;
2750 x86_64-*-*)
2751 # We should have hammer chip here, but it does not exist yet and
2752 # thus it is not supported. Athlon_SSE is probably equivalent feature
2753 # wise to hammer from our point of view except for 64bit mode.
2754 target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse
2755 ;;
2756 alpha*-*-*)
2757 case $machine in
2758 alphaev6[78]*)
2759 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX"
2760 ;;
2761 alphaev6*)
2762 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
2763 ;;
2764 alphapca56*)
2765 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
2766 ;;
2767 alphaev56*)
2768 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
2769 ;;
2770 alphaev5*)
2771 target_cpu_default2="MASK_CPU_EV5"
2772 ;;
2773 esac
2774
2775 if test x$gas = xyes
2776 then
2777 if test "$target_cpu_default2" = ""
2778 then
2779 target_cpu_default2="MASK_GAS"
2780 else
2781 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
2782 fi
2783 fi
2784 ;;
2785 arm*-*-*)
2786 case "x$with_cpu" in
2787 x)
2788 # The most generic
2789 target_cpu_default2="TARGET_CPU_generic"
2790 ;;
2791
2792 # Distinguish cores, and major variants
2793 # arm7m doesn't exist, but D & I don't affect code
2794 xarm[236789] | xarm250 | xarm[67][01]0 \
2795 | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \
2796 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
2797 | xxscale \
2798 | xstrongarm | xstrongarm110 | xstrongarm1100)
2799 target_cpu_default2="TARGET_CPU_$with_cpu"
2800 ;;
2801
2802 xyes | xno)
2803 echo "--with-cpu must be passed a value" 1>&2
2804 exit 1
2805 ;;
2806
2807 *)
2808 if test x$pass2done = xyes
2809 then
2810 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2811 exit 1
2812 fi
2813 ;;
2814 esac
2815 ;;
2816
2817 hppa*-*-* | parisc*-*-*)
2818 if test x$gas = xyes
2819 then
2820 target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY"
2821 fi
2822 case $machine in
2823 hppa1* | parisc1*)
2824 tm_defines="TARGET_SCHED_DEFAULT=\\\"7100LC\\\""
2825 ;;
2826 esac
2827 ;;
2828 mips*-*-*)
2829 case $machine in
2830 mips*-*-ecoff* | mips*-*-elf*)
2831 if test x$gas = xyes
2832 then
2833 if test x$gnu_ld = xyes
2834 then
2835 target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR"
2836 else
2837 target_cpu_default2="MASK_GAS"
2838 fi
2839 fi
2840 ;;
2841 mips*-*-*)
2842 if test x$gas = xyes
2843 then
2844 target_cpu_default2="MASK_GAS"
2845 fi
2846 ;;
2847 esac
2848 case $machine in
2849 mips*el-*-*)
2850 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
2851 ;;
2852 esac
2853 case $tm_file in
2854 *mips/elf.h* | *mips/elf64.h*)
2855 tm_defines="OBJECT_FORMAT_ELF $tm_defines"
2856 ;;
2857 esac
2858 if test "x$enable_gofast" = xyes
2859 then
2860 tm_defines="INIT_SUBTARGET_OPTABS=INIT_GOFAST_OPTABS $tm_defines"
2861 tm_file="gofast.h $tm_file"
2862 tmake_file="mips/t-gofast $tmake_file"
2863 else
2864 tmake_file="mips/t-mips $tmake_file"
2865 fi
2866 ;;
2867 powerpc*-*-* | rs6000-*-*)
2868 if test x$enable_altivec = xyes
2869 then
2870 tm_file="$tm_file rs6000/altivec-defs.h"
2871 fi
2872 case "x$with_cpu" in
2873 x)
2874 ;;
2875
2876 xcommon | xpower | xpower2 | xpower3 | xpowerpc | xpowerpc64 \
2877 | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \
2878 | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \
2879 | x740 | x750 | x7400 | x7450 | x505)
2880 target_cpu_default2="\\\"$with_cpu\\\""
2881 ;;
2882
2883 x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860)
2884 target_cpu_default2="\\\"$with_cpu\\\""
2885 ;;
2886
2887 xyes | xno)
2888 echo "--with-cpu must be passed a value" 1>&2
2889 exit 1
2890 ;;
2891
2892 *)
2893 if test x$pass2done = xyes
2894 then
2895 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2896 exit 1
2897 fi
2898 ;;
2899 esac
2900 c_target_objs="${c_target_objs} rs6000-c.o"
2901 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
2902 tmake_file="${tmake_file} rs6000/t-rs6000-c-rule"
2903 ;;
2904 sparc*-*-*)
2905 case ".$with_cpu" in
2906 .)
2907 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
2908 ;;
2909 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
2910 target_cpu_default2="TARGET_CPU_$with_cpu"
2911 ;;
2912 *)
2913 if test x$pass2done = xyes
2914 then
2915 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2916 exit 1
2917 fi
2918 ;;
2919 esac
2920 ;;
2921 v850*-*-*)
2922 case "x$with_cpu" in
2923 x)
2924 ;;
2925 xv850e)
2926 target_cpu_default2="TARGET_CPU_$with_cpu"
2927 ;;
2928 *)
2929 if test x$pass2done = xyes
2930 then
2931 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
2932 exit 1
2933 fi
2934 ;;
2935 esac
2936 ;;
2937 esac
2938
2939 if test "$target_cpu_default2" != ""
2940 then
2941 if test "$target_cpu_default" != ""
2942 then
2943 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
2944 else
2945 target_cpu_default=$target_cpu_default2
2946 fi
2947 fi
2948
2949 # Save data on machine being used to compile GCC in build_xm_file.
2950 # Save data on host machine in vars host_xm_file and host_xmake_file.
2951 if test x$pass1done = x
2952 then
2953 if test x$xm_file != x
2954 then build_xm_file=$xm_file
2955 fi
2956 build_xm_defines=$xm_defines
2957 build_install_headers_dir=$install_headers_dir
2958 build_exeext=$exeext
2959 pass1done=yes
2960 else
2961 if test x$pass2done = x
2962 then
2963 if test x$xm_file != x
2964 then host_xm_file=$xm_file
2965 fi
2966 host_xm_defines=$xm_defines
2967 host_xmake_file="$xmake_file"
2968 host_truncate_target=$truncate_target
2969 host_extra_gcc_objs=$extra_gcc_objs
2970 host_extra_objs=$extra_host_objs
2971 host_exeext=$exeext
2972 pass2done=yes
2973 fi
2974 fi