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