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