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