re PR preprocessor/36674 (#include location is offset by one row in errors from prepr...
[gcc.git] / gcc / config.gcc
1 # GCC target-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009 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 3, 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 COPYING3. If not see
19 #<http://www.gnu.org/licenses/>.
20
21 # This is the GCC target-specific configuration file
22 # where a configuration type is mapped to different system-specific
23 # definitions and files. This is invoked by the autoconf-generated
24 # configure script. Putting it in a separate shell file lets us skip
25 # running autoconf when modifying target-specific information.
26
27 # When you change the cases in the OS or target switches, consider
28 # updating ../libgcc/config.host also.
29
30 # This file switches on the shell variable ${target}, and also uses the
31 # following shell variables:
32 #
33 # with_* Various variables as set by configure.
34 #
35 # enable_threads Either the name, yes or no depending on whether
36 # threads support was requested.
37 #
38 # default_use_cxa_atexit
39 # The default value for the $enable___cxa_atexit
40 # variable. enable___cxa_atexit needs to be set to
41 # "yes" for the correct operation of C++ destructors
42 # but it relies upon the presence of a non-standard C
43 # library function called __cxa_atexit.
44 # Since not all C libraries provide __cxa_atexit the
45 # default value of $default_use_cxa_atexit is set to
46 # "no" except for targets which are known to be OK.
47 #
48 # gas_flag Either yes or no depending on whether GNU as was
49 # requested.
50 #
51 # gnu_ld_flag Either yes or no depending on whether GNU ld was
52 # requested.
53
54 # This file sets the following shell variables for use by the
55 # autoconf-generated configure script:
56 #
57 # cpu_type The name of the cpu, if different from the first
58 # chunk of the canonical target name.
59 #
60 # tm_defines List of target macros to define for all compilations.
61 #
62 # tm_file A list of target macro files, if different from
63 # "$cpu_type/$cpu_type.h". Usually it's constructed
64 # per target in a way like this:
65 # tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
66 # Note that the preferred order is:
67 # - specific target header "${cpu_type}/${cpu_type.h}"
68 # - generic headers like dbxelf.h elfos.h, etc.
69 # - specializing target headers like ${cpu_type.h}/elf.h
70 # This helps to keep OS specific stuff out of the CPU
71 # defining header ${cpu_type}/${cpu_type.h}.
72 #
73 # It is possible to include automatically-generated
74 # build-directory files by prefixing them with "./".
75 # All other files should relative to $srcdir/config.
76 #
77 # tm_p_file Location of file with declarations for functions
78 # in $out_file.
79 #
80 # out_file The name of the machine description C support
81 # file, if different from "$cpu_type/$cpu_type.c".
82 #
83 # md_file The name of the machine-description file, if
84 # different from "$cpu_type/$cpu_type.md".
85 #
86 # tmake_file A list of machine-description-specific
87 # makefile-fragments, if different from
88 # "$cpu_type/t-$cpu_type".
89 #
90 # extra_modes The name of the file containing a list of extra
91 # machine modes, if necessary and different from
92 # "$cpu_type/$cpu_type-modes.def".
93 #
94 # extra_objs List of extra objects that should be linked into
95 # the compiler proper (cc1, cc1obj, cc1plus)
96 # depending on target.
97 #
98 # extra_gcc_objs List of extra objects that should be linked into
99 # the compiler driver (gcc) depending on target.
100 #
101 # extra_headers List of used header files from the directory
102 # config/${cpu_type}.
103 #
104 # use_gcc_tgmath If set, add tgmath.h to the list of used header
105 # files.
106 #
107 # use_gcc_stdint If "wrap", install a version of stdint.h that
108 # wraps the system's copy for hosted compilations;
109 # if "provide", provide a version of systems without
110 # such a system header; otherwise "none", do not
111 # provide such a header at all.
112 #
113 # extra_passes List of extra executables compiled for this target
114 # machine, used for compiling from source to object.
115 #
116 # extra_parts List of extra object files that should be compiled
117 # for this target machine.
118 #
119 # extra_programs Like extra_passes, but these are used when linking.
120 #
121 # extra_options List of target-dependent .opt files.
122 #
123 # c_target_objs List of extra target-dependent objects that be
124 # linked into the C compiler only.
125 #
126 # cxx_target_objs List of extra target-dependent objects that be
127 # linked into the C++ compiler only.
128 #
129 # fortran_target_objs List of extra target-dependent objects that be
130 # linked into the fortran compiler only.
131 #
132 # target_gtfiles List of extra source files with type information.
133 #
134 # xm_defines List of macros to define when compiling for the
135 # target machine.
136 #
137 # xm_file List of files to include when compiling for the
138 # target machine.
139 #
140 # use_collect2 Set to yes or no, depending on whether collect2
141 # will be used.
142 #
143 # target_cpu_default Set to override the default target model.
144 #
145 # gdb_needs_out_file_path
146 # Set to yes if gdb needs a dir command with
147 # `dirname $out_file`.
148 #
149 # thread_file Set to control which thread package to use.
150 #
151 # gas Set to yes or no depending on whether the target
152 # system normally uses GNU as.
153 #
154 # need_64bit_hwint Set to yes if HOST_WIDE_INT must be 64 bits wide
155 # for this target. This is true if this target
156 # supports "long" or "wchar_t" wider than 32 bits,
157 # or BITS_PER_WORD is wider than 32 bits.
158 # The setting made here must match the one made in
159 # other locations such as libcpp/configure.ac
160 #
161 # configure_default_options
162 # Set to an initializer for configure_default_options
163 # in configargs.h, based on --with-cpu et cetera.
164
165 # The following variables are used in each case-construct to build up the
166 # outgoing variables:
167 #
168 # gnu_ld Set to yes or no depending on whether the target
169 # system normally uses GNU ld.
170
171 out_file=
172 tmake_file=
173 extra_headers=
174 use_gcc_tgmath=yes
175 use_gcc_stdint=none
176 extra_passes=
177 extra_parts=
178 extra_programs=
179 extra_objs=
180 extra_gcc_objs=
181 extra_options=
182 c_target_objs=
183 cxx_target_objs=
184 fortran_target_objs=
185 tm_defines=
186 xm_defines=
187 # Set this to force installation and use of collect2.
188 use_collect2=
189 # Set this to override the default target model.
190 target_cpu_default=
191 # Set this if gdb needs a dir command with `dirname $out_file`
192 gdb_needs_out_file_path=
193 # Set this to control which thread package will be used.
194 thread_file=
195 # Reinitialize these from the flag values every loop pass, since some
196 # configure entries modify them.
197 gas="$gas_flag"
198 gnu_ld="$gnu_ld_flag"
199 default_use_cxa_atexit=no
200 target_gtfiles=
201 need_64bit_hwint=
202
203 # Don't carry these over build->host->target. Please.
204 xm_file=
205 md_file=
206
207 # Obsolete configurations.
208 #case ${target} in
209 # )
210 # if test "x$enable_obsolete" != xyes; then
211 # echo "*** Configuration ${target} is obsolete." >&2
212 # echo "*** Specify --enable-obsolete to build it anyway." >&2
213 # echo "*** Support will be REMOVED in the next major release of GCC," >&2
214 # echo "*** unless a maintainer comes forward." >&2
215 # exit 1
216 # fi;;
217 #esac
218
219 # Unsupported targets list. Do not put an entry in this list unless
220 # it would otherwise be caught by a more permissive pattern. The list
221 # should be in alphabetical order.
222 case ${target} in
223 i[34567]86-go32-* \
224 | i[34567]86-*-go32* \
225 | mips64orion*-*-rtems* \
226 | pdp11-*-bsd \
227 | sparc-hal-solaris2* \
228 | thumb-*-* \
229 | *-*-linux*aout* \
230 | *-*-linux*coff* \
231 | *-*-linux*libc1* \
232 | *-*-linux*oldld* \
233 | *-*-rtemsaout* \
234 | *-*-rtemscoff* \
235 | *-*-solaris2.[0-6] \
236 | *-*-solaris2.[0-6].* \
237 | *-*-sysv* \
238 | vax-*-vms* \
239 )
240 echo "*** Configuration ${target} not supported" 1>&2
241 exit 1
242 ;;
243 esac
244
245 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
246 # updated in each machine entry. Also set default extra_headers for some
247 # machines.
248 tm_p_file=
249 cpu_type=`echo ${target} | sed 's/-.*$//'`
250 cpu_is_64bit=
251 case ${target} in
252 m32c*-*-*)
253 cpu_type=m32c
254 tmake_file=m32c/t-m32c
255 ;;
256 alpha*-*-*)
257 cpu_type=alpha
258 need_64bit_hwint=yes
259 ;;
260 am33_2.0-*-linux*)
261 cpu_type=mn10300
262 ;;
263 arm*-*-*)
264 cpu_type=arm
265 extra_headers="mmintrin.h arm_neon.h"
266 c_target_objs="arm-c.o"
267 cxx_target_objs="arm-c.o"
268 ;;
269 bfin*-*)
270 cpu_type=bfin
271 ;;
272 crisv32-*)
273 cpu_type=cris
274 ;;
275 frv*) cpu_type=frv
276 ;;
277 fido-*-*)
278 cpu_type=m68k
279 extra_headers=math-68881.h
280 ;;
281 i[34567]86-*-*)
282 cpu_type=i386
283 c_target_objs="i386-c.o"
284 cxx_target_objs="i386-c.o"
285 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
286 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
287 nmmintrin.h bmmintrin.h mmintrin-common.h
288 wmmintrin.h immintrin.h x86intrin.h avxintrin.h
289 cross-stdarg.h"
290 ;;
291 x86_64-*-*)
292 cpu_type=i386
293 c_target_objs="i386-c.o"
294 cxx_target_objs="i386-c.o"
295 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
296 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
297 nmmintrin.h bmmintrin.h mmintrin-common.h
298 wmmintrin.h immintrin.h x86intrin.h avxintrin.h
299 cross-stdarg.h"
300 need_64bit_hwint=yes
301 ;;
302 ia64-*-*)
303 extra_headers=ia64intrin.h
304 need_64bit_hwint=yes
305 ;;
306 hppa*-*-*)
307 cpu_type=pa
308 ;;
309 m32r*-*-*)
310 cpu_type=m32r
311 ;;
312 m68k-*-*)
313 extra_headers=math-68881.h
314 ;;
315 mips*-*-*)
316 cpu_type=mips
317 need_64bit_hwint=yes
318 extra_headers="loongson.h"
319 ;;
320 picochip-*-*)
321 cpu_type=picochip
322 ;;
323 powerpc*-*-*)
324 cpu_type=rs6000
325 extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h spu2vmx.h vec_types.h si2vmx.h"
326 need_64bit_hwint=yes
327 case x$with_cpu in
328 xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[34567]|xpower6x|xrs64a|xcell)
329 cpu_is_64bit=yes
330 ;;
331 esac
332 ;;
333 rs6000*-*-*)
334 need_64bit_hwint=yes
335 ;;
336 score*-*-*)
337 cpu_type=score
338 ;;
339 sparc*-*-*)
340 cpu_type=sparc
341 need_64bit_hwint=yes
342 ;;
343 spu*-*-*)
344 cpu_type=spu
345 need_64bit_hwint=yes
346 ;;
347 s390*-*-*)
348 cpu_type=s390
349 need_64bit_hwint=yes
350 ;;
351 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
352 sh[123456789lbe]*-*-* | sh-*-*)
353 cpu_type=sh
354 need_64bit_hwint=yes
355 ;;
356 esac
357
358 tm_file=${cpu_type}/${cpu_type}.h
359 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
360 then
361 tm_p_file=${cpu_type}/${cpu_type}-protos.h
362 fi
363 extra_modes=
364 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
365 then
366 extra_modes=${cpu_type}/${cpu_type}-modes.def
367 fi
368 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}.opt
369 then
370 extra_options="${extra_options} ${cpu_type}/${cpu_type}.opt"
371 fi
372
373 case ${target} in
374 i[34567]86-*-*)
375 if test "x$enable_cld" = xyes; then
376 tm_defines="${tm_defines} USE_IX86_CLD=1"
377 fi
378 tm_file="vxworks-dummy.h ${tm_file}"
379 ;;
380 x86_64-*-*)
381 tm_file="i386/biarch64.h ${tm_file}"
382 if test "x$enable_cld" = xyes; then
383 tm_defines="${tm_defines} USE_IX86_CLD=1"
384 fi
385 tm_file="vxworks-dummy.h ${tm_file}"
386 ;;
387 esac
388
389 # On a.out targets, we need to use collect2.
390 case ${target} in
391 *-*-*aout*)
392 use_collect2=yes
393 ;;
394 esac
395
396 # Common parts for widely ported systems.
397 case ${target} in
398 *-*-darwin*)
399 tm_file="${tm_file} darwin.h"
400 case ${target} in
401 *-*-darwin[912]*)
402 tm_file="${tm_file} darwin9.h"
403 ;;
404 esac
405 tm_file="${tm_file} ${cpu_type}/darwin.h"
406 tm_p_file="${tm_p_file} darwin-protos.h"
407 tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
408 target_gtfiles="\$(srcdir)/config/darwin.c"
409 extra_options="${extra_options} darwin.opt"
410 c_target_objs="${c_target_objs} darwin-c.o"
411 cxx_target_objs="${cxx_target_objs} darwin-c.o"
412 fortran_target_objs="darwin-f.o"
413 extra_objs="darwin.o"
414 extra_gcc_objs="darwin-driver.o"
415 default_use_cxa_atexit=yes
416 case ${enable_threads} in
417 "" | yes | posix) thread_file='posix' ;;
418 esac
419 ;;
420 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
421 # This is the place-holder for the generic a.out configuration
422 # of FreeBSD. No actual configuration resides here since
423 # there was only ever a bare-bones ix86 configuration for
424 # a.out and it exists solely in the machine-specific section.
425 # This place-holder must exist to avoid dropping into
426 # the generic ELF configuration of FreeBSD (i.e. it must be
427 # ordered before that section).
428 ;;
429 *-*-freebsd*)
430 # This is the generic ELF configuration of FreeBSD. Later
431 # machine-specific sections may refine and add to this
432 # configuration.
433 #
434 # Due to tm_file entry ordering issues that vary between cpu
435 # architectures, we only define fbsd_tm_file to allow the
436 # machine-specific section to dictate the final order of all
437 # entries of tm_file with the minor exception that components
438 # of the tm_file set here will always be of the form:
439 #
440 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
441 #
442 # The machine-specific section should not tamper with this
443 # ordering but may order all other entries of tm_file as it
444 # pleases around the provided core setting.
445 gas=yes
446 gnu_ld=yes
447 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
448 fbsd_major=`echo ${target} | sed -e 's/.*freebsd//g' | sed -e 's/\..*//g'`
449 tm_defines="${tm_defines} FBSD_MAJOR=${fbsd_major}"
450 tmake_file="t-slibgcc-elf-ver t-freebsd"
451 case ${enable_threads} in
452 no)
453 fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
454 ;;
455 "" | yes | posix)
456 thread_file='posix'
457 tmake_file="${tmake_file} t-freebsd-thread"
458 # Before 5.0, FreeBSD can't bind shared libraries to -lc
459 # when "optionally" threaded via weak pthread_* checks.
460 case ${target} in
461 *-*-freebsd[34] | *-*-freebsd[34].*)
462 tmake_file="${tmake_file} t-slibgcc-nolc-override"
463 ;;
464 esac
465 ;;
466 *)
467 echo 'Unknown thread configuration for FreeBSD'
468 exit 1
469 ;;
470 esac
471 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
472 ;;
473 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
474 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
475 gas=yes
476 gnu_ld=yes
477 case ${enable_threads} in
478 "" | yes | posix) thread_file='posix' ;;
479 esac
480 tmake_file="t-slibgcc-elf-ver t-linux"
481 case $target in
482 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-kopensolaris*-gnu)
483 :;;
484 *-*-gnu*)
485 tmake_file="$tmake_file t-gnu";;
486 esac
487 # glibc / uclibc switch. uclibc isn't usable for GNU/Hurd and neither for
488 # GNU/k*BSD.
489 case $target in
490 *linux*)
491 extra_options="$extra_options linux.opt";;
492 *)
493 tm_defines="$tm_defines OPTION_GLIBC=1";;
494 esac
495 case ${target} in
496 *-*-*uclibc*)
497 tm_defines="${tm_defines} UCLIBC_DEFAULT=1"
498 ;;
499 *)
500 tm_defines="${tm_defines} UCLIBC_DEFAULT=0"
501 ;;
502 esac
503 # Assume that glibc or uClibc are being used and so __cxa_atexit is provided.
504 default_use_cxa_atexit=yes
505 use_gcc_tgmath=no
506 use_gcc_stdint=wrap
507 ;;
508 *-*-netbsd*)
509 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
510 gas=yes
511 gnu_ld=yes
512
513 # NetBSD 2.0 and later get POSIX threads enabled by default.
514 # Allow them to be explicitly enabled on any other version.
515 case ${enable_threads} in
516 "")
517 case ${target} in
518 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
519 thread_file='posix'
520 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
521 ;;
522 esac
523 ;;
524 yes | posix)
525 thread_file='posix'
526 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
527 ;;
528 esac
529
530 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
531 # ELF configurations. We will clear extra_parts in the
532 # a.out configurations.
533 case ${target} in
534 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
535 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
536 ;;
537 esac
538
539 # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
540 # default (unless overridden by --disable-__cxa_atexit).
541 case ${target} in
542 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
543 default_use_cxa_atexit=yes
544 ;;
545 esac
546 ;;
547 *-*-openbsd*)
548 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
549 case ${enable_threads} in
550 yes)
551 thread_file='posix'
552 tmake_file="${tmake_file} t-openbsd-thread"
553 ;;
554 esac
555 case ${target} in
556 *-*-openbsd2.*|*-*-openbsd3.[012])
557 tm_defines="${tm_defines} HAS_LIBC_R=1" ;;
558 esac
559 ;;
560 *-*-rtems*)
561 case ${enable_threads} in
562 yes) thread_file='rtems' ;;
563 esac
564 use_gcc_stdint=wrap
565 ;;
566 *-*-uclinux*)
567 use_gcc_stdint=wrap
568 ;;
569 *-*-vxworks*)
570 tmake_file=t-vxworks
571 xm_defines=POSIX
572 extra_options="${extra_options} vxworks.opt"
573 extra_objs=vxworks.o
574 case ${enable_threads} in
575 no) ;;
576 "" | yes | vxworks) thread_file='vxworks' ;;
577 *) echo 'Unknown thread configuration for VxWorks'; exit 1 ;;
578 esac
579 ;;
580 *-*-elf)
581 # Assume that newlib is being used and so __cxa_atexit is provided.
582 default_use_cxa_atexit=yes
583 use_gcc_stdint=wrap
584 ;;
585 esac
586
587 case ${target} in
588 # Support site-specific machine types.
589 *local*)
590 rest=`echo ${target} | sed -e "s/$cpu_type-//"`
591 tm_file=${cpu_type}/$rest.h
592 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
593 then xm_file=${cpu_type}/xm-$rest.h
594 fi
595 if test -f $srcdir/config/${cpu_type}/t-$rest
596 then tmake_file=${cpu_type}/t-$rest
597 fi
598 ;;
599 alpha*-*-linux*)
600 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h glibc-stdint.h"
601 target_cpu_default="MASK_GAS"
602 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee alpha/t-linux"
603 ;;
604 alpha*-*-gnu*)
605 tm_file="$tm_file alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h glibc-stdint.h alpha/gnu.h"
606 target_cpu_default="MASK_GAS"
607 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
608 ;;
609 alpha*-*-freebsd*)
610 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
611 target_cpu_default="MASK_GAS"
612 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
613 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
614 ;;
615 alpha*-*-netbsd*)
616 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
617 target_cpu_default="MASK_GAS"
618 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
619 ;;
620 alpha*-*-openbsd*)
621 tm_defines="${tm_defines} OBSD_NO_DYNAMIC_LIBRARIES OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
622 tm_file="alpha/alpha.h openbsd.h alpha/openbsd.h"
623 # default x-alpha is only appropriate for dec-osf.
624 target_cpu_default="MASK_GAS"
625 tmake_file="alpha/t-alpha alpha/t-ieee"
626 ;;
627 alpha*-dec-osf[45]*)
628 if test x$stabs = xyes
629 then
630 tm_file="${tm_file} dbx.h"
631 fi
632 if test x$gas != xyes
633 then
634 extra_passes="mips-tfile mips-tdump"
635 fi
636 use_collect2=yes
637 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
638 tm_file="${tm_file} alpha/osf.h"
639 extra_headers=va_list.h
640 case ${target} in
641 *-*-osf4*)
642 # Define TARGET_SUPPORT_ARCH except on 4.0a.
643 case ${target} in
644 *-*-osf4.0a) ;;
645 *) tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
646 esac
647 ;;
648 *-*-osf5*)
649 tm_file="${tm_file} alpha/osf5.h"
650 tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
651 ;;
652 esac
653 case ${enable_threads} in
654 "" | yes | posix)
655 thread_file='posix'
656 tmake_file="${tmake_file} alpha/t-osf-pthread"
657 ;;
658 esac
659 ;;
660 alpha64-dec-*vms*)
661 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
662 xm_file="alpha/xm-vms.h"
663 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
664 prefix=/gnu
665 local_prefix=/gnu
666 ;;
667 alpha*-dec-*vms*)
668 tm_file="${tm_file} alpha/vms.h"
669 xm_file=alpha/xm-vms.h
670 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
671 prefix=/gnu
672 local_prefix=/gnu
673 ;;
674 arc-*-elf*)
675 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
676 extra_parts="crtinit.o crtfini.o"
677 ;;
678 arm-wrs-vxworks)
679 tm_file="elfos.h arm/elf.h arm/aout.h ${tm_file} vx-common.h vxworks.h arm/vxworks.h"
680 tmake_file="${tmake_file} arm/t-arm arm/t-vxworks"
681 ;;
682 arm*-*-freebsd*)
683 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
684 tmake_file="${tmake_file} arm/t-arm arm/t-strongarm-elf"
685 ;;
686 arm*-*-netbsdelf*)
687 tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
688 tmake_file="${tmake_file} arm/t-arm arm/t-netbsd"
689 ;;
690 arm*-*-netbsd*)
691 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
692 tmake_file="t-netbsd arm/t-arm arm/t-netbsd"
693 extra_parts=""
694 use_collect2=yes
695 ;;
696 arm*-*-linux*) # ARM GNU/Linux with ELF
697 tm_file="dbxelf.h elfos.h linux.h glibc-stdint.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
698 case $target in
699 arm*b-*)
700 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
701 ;;
702 esac
703 tmake_file="${tmake_file} t-linux arm/t-arm"
704 case ${target} in
705 arm*-*-linux-*eabi)
706 tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h"
707 tmake_file="$tmake_file arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
708 # The BPABI long long divmod functions return a 128-bit value in
709 # registers r0-r3. Correctly modeling that requires the use of
710 # TImode.
711 need_64bit_hwint=yes
712 # The EABI requires the use of __cxa_atexit.
713 default_use_cxa_atexit=yes
714 ;;
715 *)
716 tmake_file="$tmake_file arm/t-linux"
717 ;;
718 esac
719 tm_file="$tm_file arm/aout.h arm/arm.h"
720 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
721 ;;
722 arm*-*-uclinux*) # ARM ucLinux
723 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h glibc-stdint.h"
724 tmake_file="arm/t-arm arm/t-arm-elf"
725 case ${target} in
726 arm*-*-uclinux*eabi)
727 tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h"
728 tmake_file="$tmake_file arm/t-bpabi"
729 # The BPABI long long divmod functions return a 128-bit value in
730 # registers r0-r3. Correctly modeling that requires the use of
731 # TImode.
732 need_64bit_hwint=yes
733 # The EABI requires the use of __cxa_atexit.
734 default_use_cxa_atexit=yes
735 esac
736 tm_file="$tm_file arm/aout.h arm/arm.h"
737 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
738 ;;
739 arm*-*-ecos-elf)
740 tm_file="dbxelf.h elfos.h newlib-stdint.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
741 tmake_file="arm/t-arm arm/t-arm-elf"
742 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
743 ;;
744 arm*-*-eabi* | arm*-*-symbianelf* )
745 # The BPABI long long divmod functions return a 128-bit value in
746 # registers r0-r3. Correctly modeling that requires the use of
747 # TImode.
748 need_64bit_hwint=yes
749 default_use_cxa_atexit=yes
750 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
751 tmake_file="arm/t-arm arm/t-arm-elf"
752 case ${target} in
753 arm*-*-eabi*)
754 tm_file="$tm_file arm/eabi.h newlib-stdint.h"
755 tmake_file="${tmake_file} arm/t-bpabi"
756 extra_options="${extra_options} arm/eabi.opt"
757 use_gcc_stdint=wrap
758 ;;
759 arm*-*-symbianelf*)
760 tm_file="${tm_file} arm/symbian.h"
761 # We do not include t-bpabi for Symbian OS because the system
762 # provides its own implementation of the BPABI functions.
763 tmake_file="${tmake_file} arm/t-symbian"
764 ;;
765 esac
766 tm_file="${tm_file} arm/aout.h arm/arm.h"
767 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
768 ;;
769 arm*-*-rtems*)
770 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 newlib-stdint.h"
771 tmake_file="arm/t-arm arm/t-arm-elf t-rtems arm/t-rtems"
772 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
773 ;;
774 arm*-*-elf)
775 tm_file="dbxelf.h elfos.h newlib-stdint.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
776 tmake_file="arm/t-arm arm/t-arm-elf"
777 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
778 ;;
779 arm*-wince-pe*)
780 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
781 tmake_file="arm/t-arm arm/t-wince-pe"
782 extra_options="${extra_options} arm/pe.opt"
783 extra_objs="pe.o"
784 ;;
785 arm-*-pe*)
786 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h newlib-stdint.h"
787 tmake_file="arm/t-arm arm/t-pe"
788 use_gcc_stdint=wrap
789 extra_options="${extra_options} arm/pe.opt"
790 extra_objs="pe.o"
791 ;;
792 avr-*-rtems*)
793 tm_file="avr/avr.h dbxelf.h avr/rtems.h rtems.h newlib-stdint.h"
794 tmake_file="avr/t-avr t-rtems avr/t-rtems"
795 ;;
796 avr-*-*)
797 tm_file="avr/avr.h dbxelf.h newlib-stdint.h"
798 use_gcc_stdint=wrap
799 ;;
800 bfin*-elf*)
801 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
802 tmake_file=bfin/t-bfin-elf
803 use_collect2=no
804 ;;
805 bfin*-uclinux*)
806 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h linux.h glibc-stdint.h bfin/uclinux.h"
807 tmake_file=bfin/t-bfin-uclinux
808 tm_defines="${tm_defines} UCLIBC_DEFAULT=1"
809 extra_options="${extra_options} linux.opt"
810 use_collect2=no
811 ;;
812 bfin*-linux-uclibc*)
813 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h linux.h glibc-stdint.h bfin/linux.h ./linux-sysroot-suffix.h"
814 tmake_file="t-slibgcc-elf-ver bfin/t-bfin-linux"
815 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
816 use_collect2=no
817 ;;
818 bfin*-rtems*)
819 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h"
820 tmake_file="bfin/t-bfin t-rtems bfin/t-rtems"
821 ;;
822 bfin*-*)
823 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
824 tmake_file=bfin/t-bfin
825 use_collect2=no
826 use_gcc_stdint=wrap
827 ;;
828 crisv32-*-elf | crisv32-*-none)
829 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
830 tmake_file="cris/t-cris"
831 target_cpu_default=32
832 gas=yes
833 extra_options="${extra_options} cris/elf.opt"
834 use_gcc_stdint=wrap
835 ;;
836 cris-*-elf | cris-*-none)
837 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
838 tmake_file="cris/t-cris cris/t-elfmulti"
839 gas=yes
840 extra_options="${extra_options} cris/elf.opt"
841 use_gcc_stdint=wrap
842 ;;
843 crisv32-*-linux* | cris-*-linux*)
844 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h glibc-stdint.h cris/linux.h"
845 # We need to avoid using t-linux, so override default tmake_file
846 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
847 extra_options="${extra_options} cris/linux.opt"
848 case $target in
849 cris-*-*)
850 target_cpu_default=10
851 ;;
852 crisv32-*-*)
853 target_cpu_default=32
854 ;;
855 esac
856 ;;
857 crx-*-elf)
858 tm_file="elfos.h newlib-stdint.h ${tm_file}"
859 extra_parts="crtbegin.o crtend.o"
860 use_collect2=no
861 ;;
862 fr30-*-elf)
863 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
864 tmake_file=fr30/t-fr30
865 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
866 ;;
867 frv-*-elf)
868 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file} frv/frv-abi.h"
869 tmake_file=frv/t-frv
870 ;;
871 frv-*-*linux*)
872 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} \
873 linux.h glibc-stdint.h frv/linux.h frv/frv-abi.h"
874 tmake_file="${tmake_file} frv/t-frv frv/t-linux"
875 ;;
876 h8300-*-rtems*)
877 tmake_file="h8300/t-h8300 h8300/t-elf t-rtems h8300/t-rtems"
878 tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h h8300/rtems.h rtems.h newlib-stdint.h"
879 ;;
880 h8300-*-elf*)
881 tmake_file="h8300/t-h8300 h8300/t-elf"
882 tm_file="h8300/h8300.h dbxelf.h elfos.h newlib-stdint.h h8300/elf.h"
883 ;;
884 hppa*64*-*-linux*)
885 target_cpu_default="MASK_PA_11|MASK_PA_20"
886 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
887 glibc-stdint.h pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h \
888 pa/pa64-linux.h"
889 tmake_file="${tmake_file} pa/t-linux64"
890 gas=yes gnu_ld=yes
891 need_64bit_hwint=yes
892 ;;
893 hppa*-*-linux*)
894 target_cpu_default="MASK_PA_11|MASK_NO_SPACE_REGS"
895 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h pa/pa-linux.h \
896 pa/pa32-regs.h pa/pa32-linux.h"
897 tmake_file="${tmake_file} pa/t-linux"
898 # Set the libgcc version number
899 if test x$sjlj = x1; then
900 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
901 else
902 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
903 fi
904 ;;
905 # port not yet contributed.
906 #hppa*-*-openbsd*)
907 # target_cpu_default="MASK_PA_11"
908 # ;;
909 hppa[12]*-*-hpux10*)
910 case ${target} in
911 hppa1.1-*-* | hppa2*-*-*)
912 target_cpu_default="MASK_PA_11"
913 ;;
914 esac
915 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
916 pa/pa-hpux.h pa/pa-hpux10.h"
917 extra_options="${extra_options} pa/pa-hpux.opt"
918 case ${target} in
919 *-*-hpux10.[1-9]*)
920 tm_file="${tm_file} pa/pa-hpux1010.h"
921 extra_options="${extra_options} pa/pa-hpux1010.opt"
922 ;;
923 esac
924 tmake_file="pa/t-pa-hpux10 pa/t-pa-hpux pa/t-hpux-shlib"
925 case ${enable_threads} in
926 "")
927 if test x$have_pthread_h = xyes ; then
928 tmake_file="${tmake_file} pa/t-dce-thr"
929 fi
930 ;;
931 yes | dce)
932 tmake_file="${tmake_file} pa/t-dce-thr"
933 ;;
934 esac
935 # Set the libgcc version number
936 if test x$sjlj = x1; then
937 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
938 else
939 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
940 fi
941 use_collect2=yes
942 gas=yes
943 ;;
944 hppa*64*-*-hpux11*)
945 target_cpu_default="MASK_PA_11|MASK_PA_20"
946 if test x$gnu_ld = xyes
947 then
948 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
949 fi
950 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
951 pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \
952 pa/pa-hpux11.h"
953 case ${target} in
954 *-*-hpux11.[1-9]*)
955 tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h"
956 extra_options="${extra_options} pa/pa-hpux1111.opt"
957 ;;
958 *)
959 tm_file="${tm_file} pa/pa-64.h pa/pa64-hpux.h"
960 ;;
961 esac
962 extra_options="${extra_options} pa/pa-hpux.opt \
963 pa/pa-hpux1010.opt pa/pa64-hpux.opt"
964 need_64bit_hwint=yes
965 tmake_file="pa/t-pa64 pa/t-pa-hpux pa/t-hpux-shlib"
966 # Set the libgcc version number
967 if test x$sjlj = x1; then
968 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
969 else
970 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
971 fi
972 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
973 libgcc_stub.a"
974 case x${enable_threads} in
975 x | xyes | xposix )
976 thread_file=posix
977 ;;
978 esac
979 gas=yes
980 case ${target} in
981 *-*-hpux11.[01]*)
982 use_gcc_stdint=provide
983 tm_file="${tm_file} hpux-stdint.h"
984 ;;
985 *-*-hpux11.[23]*)
986 use_gcc_stdint=wrap
987 tm_file="${tm_file} hpux-stdint.h"
988 ;;
989 esac
990 ;;
991 hppa[12]*-*-hpux11*)
992 case ${target} in
993 hppa1.1-*-* | hppa2*-*-*)
994 target_cpu_default="MASK_PA_11"
995 ;;
996 esac
997 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
998 pa/pa-hpux.h pa/pa-hpux1010.h pa/pa-hpux11.h"
999 extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux1010.opt"
1000 case ${target} in
1001 *-*-hpux11.[1-9]*)
1002 tm_file="${tm_file} pa/pa-hpux1111.h"
1003 extra_options="${extra_options} pa/pa-hpux1111.opt"
1004 ;;
1005 esac
1006 tmake_file="pa/t-pa-hpux11 pa/t-pa-hpux pa/t-hpux-shlib"
1007 # Set the libgcc version number
1008 if test x$sjlj = x1; then
1009 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
1010 else
1011 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
1012 fi
1013 case x${enable_threads} in
1014 x | xyes | xposix )
1015 thread_file=posix
1016 ;;
1017 esac
1018 use_collect2=yes
1019 gas=yes
1020 case ${target} in
1021 *-*-hpux11.[01]*)
1022 use_gcc_stdint=provide
1023 tm_file="${tm_file} hpux-stdint.h"
1024 ;;
1025 *-*-hpux11.[23]*)
1026 use_gcc_stdint=wrap
1027 tm_file="${tm_file} hpux-stdint.h"
1028 ;;
1029 esac
1030 ;;
1031 i[34567]86-*-darwin*)
1032 need_64bit_hwint=yes
1033
1034 # This is so that '.../configure && make' doesn't fail due to
1035 # config.guess deciding that the configuration is i386-*-darwin* and
1036 # then this file using that to set --with-cpu=i386 which has no -m64
1037 # support.
1038 with_cpu=${with_cpu:-generic}
1039 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
1040 ;;
1041 x86_64-*-darwin*)
1042 with_cpu=${with_cpu:-generic}
1043 tmake_file="${tmake_file} t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin i386/t-crtpc i386/t-crtfm"
1044 tm_file="${tm_file} ${cpu_type}/darwin64.h"
1045 ;;
1046 i[34567]86-*-elf*)
1047 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h"
1048 tmake_file="${tmake_file} i386/t-i386elf t-svr4"
1049 ;;
1050 x86_64-*-elf*)
1051 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h"
1052 tmake_file="${tmake_file} i386/t-i386elf t-svr4"
1053 ;;
1054 i[34567]86-*-freebsd*)
1055 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
1056 ;;
1057 x86_64-*-freebsd*)
1058 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"
1059 tmake_file="${tmake_file} i386/t-crtstuff"
1060 ;;
1061 i[34567]86-*-netbsdelf*)
1062 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
1063 ;;
1064 i[34567]86-*-netbsd*)
1065 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
1066 tmake_file="${tmake_file} t-netbsd"
1067 extra_parts=""
1068 use_collect2=yes
1069 ;;
1070 x86_64-*-netbsd*)
1071 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"
1072 tmake_file="${tmake_file} i386/t-crtstuff"
1073 ;;
1074 i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
1075 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"
1076 # needed to unconfuse gdb
1077 tmake_file="${tmake_file} t-libc-ok t-openbsd i386/t-openbsd"
1078 # we need collect2 until our bug is fixed...
1079 use_collect2=yes
1080 ;;
1081 i[34567]86-*-openbsd*)
1082 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
1083 tm_file="${tm_file} openbsd.h i386/openbsdelf.h"
1084 gas=yes
1085 gnu_ld=yes
1086 ;;
1087 i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
1088 # Intel 80386's running GNU/*
1089 # with ELF format using glibc 2
1090 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h"
1091 case ${target} in
1092 i[34567]86-*-linux*)
1093 if test x$enable_targets = xall; then
1094 tm_file="${tm_file} i386/x86-64.h i386/linux64.h"
1095 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1096 tmake_file="${tmake_file} i386/t-linux64"
1097 need_64bit_hwint=yes
1098 case X"${with_cpu}" in
1099 Xgeneric|Xatom|Xcore2|Xnocona|Xx86-64|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx)
1100 ;;
1101 X)
1102 if test x$with_cpu_64 = x; then
1103 with_cpu_64=generic
1104 fi
1105 ;;
1106 *)
1107 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1108 echo "generic atom core2 nocona x86-64 amdfam10 barcelona k8 opteron athlon64 athlon-fx" 1>&2
1109 exit 1
1110 ;;
1111 esac
1112 else
1113 tm_file="${tm_file} i386/linux.h"
1114 fi
1115 ;;
1116 i[34567]86-*-knetbsd*-gnu) tm_file="${tm_file} i386/linux.h knetbsd-gnu.h i386/knetbsd-gnu.h" ;;
1117 i[34567]86-*-kfreebsd*-gnu) tm_file="${tm_file} i386/linux.h kfreebsd-gnu.h i386/kfreebsd-gnu.h" ;;
1118 i[34567]86-*-kopensolaris*-gnu) tm_file="${tm_file} i386/linux.h kopensolaris-gnu.h i386/kopensolaris-gnu.h" ;;
1119 i[34567]86-*-gnu*) tm_file="$tm_file i386/linux.h gnu.h i386/gnu.h";;
1120 esac
1121 tmake_file="${tmake_file} i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
1122 ;;
1123 x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
1124 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h \
1125 i386/x86-64.h i386/linux64.h"
1126 case ${target} in
1127 x86_64-*-kfreebsd*-gnu) tm_file="${tm_file} kfreebsd-gnu.h" ;;
1128 x86_64-*-knetbsd*-gnu) tm_file="${tm_file} knetbsd-gnu.h" ;;
1129 esac
1130 tmake_file="${tmake_file} i386/t-linux64 i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
1131 ;;
1132 i[34567]86-pc-msdosdjgpp*)
1133 xm_file=i386/xm-djgpp.h
1134 tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
1135 tmake_file="${tmake_file} i386/t-djgpp"
1136 extra_options="${extra_options} i386/djgpp.opt"
1137 gnu_ld=yes
1138 gas=yes
1139 ;;
1140 i[34567]86-*-lynxos*)
1141 xm_defines=POSIX
1142 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
1143 tmake_file="${tmake_file} i386/t-crtstuff t-lynx"
1144 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1145 extra_options="${extra_options} lynx.opt"
1146 thread_file=lynx
1147 gnu_ld=yes
1148 gas=yes
1149 ;;
1150 i[3456x]86-*-netware*)
1151 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h tm-dwarf2.h i386/netware.h"
1152 tmake_file="${tmake_file} i386/t-netware"
1153 extra_objs=netware.o
1154 case /${with_ld} in
1155 */nwld)
1156 extra_objs="$extra_objs nwld.o"
1157 tm_file="${tm_file} i386/nwld.h"
1158 tmake_file="${tmake_file} i386/t-nwld"
1159 extra_parts="crt0.o libgcc.def libc.def libcpre.def posixpre.def"
1160 ;;
1161 esac
1162 case x${enable_threads} in
1163 x | xyes | xposix) thread_file='posix';;
1164 xnks) thread_file='nks';;
1165 xno) ;;
1166 *) echo 'Unknown thread configuration for NetWare' >&2; exit 1;;
1167 esac
1168 ;;
1169 i[34567]86-*-nto-qnx*)
1170 tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
1171 tmake_file="${tmake_file} i386/t-nto"
1172 gnu_ld=yes
1173 gas=yes
1174 ;;
1175 i[34567]86-*-rtems*)
1176 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h newlib-stdint.h"
1177 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1178 tmake_file="${tmake_file} i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1179 ;;
1180 i[34567]86-*-solaris2*)
1181 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h"
1182 case ${target} in
1183 *-*-solaris2.1[0-9]*)
1184 tm_file="${tm_file} sol2-10.h"
1185 ;;
1186 esac
1187 tm_file="${tm_file} i386/sol2.h"
1188 tmake_file="${tmake_file} t-sol2 t-svr4"
1189 c_target_objs="${c_target_objs} sol2-c.o"
1190 cxx_target_objs="${cxx_target_objs} sol2-c.o"
1191 extra_objs="sol2.o"
1192 tm_p_file="${tm_p_file} sol2-protos.h"
1193 if test x$gnu_ld = xyes; then
1194 tmake_file="$tmake_file t-slibgcc-elf-ver"
1195 tm_defines="${tm_defines} TARGET_GNU_LD=1"
1196 else
1197 tmake_file="$tmake_file t-slibgcc-sld"
1198 fi
1199 if test x$gas = xyes; then
1200 tm_file="usegas.h ${tm_file}"
1201 fi
1202 tm_file="$tm_file tm-dwarf2.h"
1203 case ${target} in
1204 *-*-solaris2.1[0-9]*)
1205 tm_file="${tm_file} i386/x86-64.h i386/sol2-10.h"
1206 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
1207 tmake_file="$tmake_file i386/t-sol2-10"
1208 # i386/t-crtstuff only affects libgcc. Its inclusion
1209 # depends on a runtime test and is thus performed in
1210 # libgcc/configure.ac instead.
1211 need_64bit_hwint=yes
1212 use_gcc_stdint=wrap
1213 case X"${with_cpu}" in
1214 Xgeneric|Xatom|Xcore2|Xnocona|Xx86-64|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx)
1215 ;;
1216 X)
1217 if test x$with_cpu_64 = x; then
1218 with_cpu_64=generic
1219 fi
1220 ;;
1221 *)
1222 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1223 echo "generic atom core2 nocona x86-64 amdfam10 barcelona k8 opteron athlon64 athlon-fx" 1>&2
1224 exit 1
1225 ;;
1226 esac
1227 ;;
1228 *)
1229 use_gcc_stdint=provide
1230 ;;
1231 esac
1232 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
1233 "":yes:* | yes:yes:* )
1234 thread_file=posix
1235 ;;
1236 "":*:yes | yes:*:yes )
1237 thread_file=solaris
1238 ;;
1239 esac
1240 ;;
1241 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
1242 tm_file="${tm_file} i386/unix.h i386/att.h elfos.h svr4.h vx-common.h"
1243 case ${target} in
1244 *-vxworksae*)
1245 tm_file="${tm_file} vxworksae.h i386/vx-common.h i386/vxworksae.h"
1246 tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
1247 ;;
1248 *)
1249 tm_file="${tm_file} vxworks.h i386/vx-common.h i386/vxworks.h"
1250 tmake_file="${tmake_file} i386/t-vxworks"
1251 ;;
1252 esac
1253 ;;
1254 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1255 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h i386/cygwin-stdint.h"
1256 xm_file=i386/xm-cygwin.h
1257 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
1258 if test x$sjlj = x0; then
1259 tmake_eh_file="i386/t-dw2-eh"
1260 else
1261 tmake_eh_file="i386/t-sjlj-eh"
1262 fi
1263 tmake_file="${tmake_file} ${tmake_eh_file} i386/t-cygming i386/t-cygwin"
1264 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1265 extra_options="${extra_options} i386/cygming.opt"
1266 extra_objs="winnt.o winnt-stubs.o"
1267 c_target_objs="${c_target_objs} cygwin2.o msformat-c.o"
1268 cxx_target_objs="${cxx_target_objs} cygwin2.o winnt-cxx.o msformat-c.o"
1269 extra_gcc_objs=cygwin1.o
1270 if test x$enable_threads = xyes; then
1271 thread_file='posix'
1272 fi
1273 use_gcc_stdint=wrap
1274 ;;
1275 i[34567]86-*-mingw* | x86_64-*-mingw*)
1276 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
1277 xm_file=i386/xm-mingw32.h
1278 # This makes the logic if mingw's or the w64 feature set has to be used
1279 case ${target} in
1280 *-w64-*)
1281 tm_file="${tm_file} i386/mingw-w64.h"
1282 tmake_file="${tmake_file} i386/t-mingw-w64"
1283 ;;
1284 *)
1285 tmake_file="${tmake_file} i386/t-mingw32"
1286 ;;
1287 esac
1288 tm_file="${tm_file} i386/mingw-stdint.h"
1289 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
1290 if test x$sjlj = x0; then
1291 tmake_eh_file="i386/t-dw2-eh"
1292 else
1293 tmake_eh_file="i386/t-sjlj-eh"
1294 fi
1295 tmake_file="${tmake_file} ${tmake_eh_file} i386/t-cygming"
1296 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1297 extra_options="${extra_options} i386/cygming.opt i386/mingw.opt"
1298 case ${target} in
1299 *-w64-*)
1300 extra_options="${extra_options} i386/mingw-w64.opt"
1301 ;;
1302 *)
1303 ;;
1304 esac
1305 extra_objs="winnt.o winnt-stubs.o"
1306 c_target_objs="${c_target_objs} msformat-c.o"
1307 cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1308 default_use_cxa_atexit=yes
1309 use_gcc_stdint=wrap
1310 case ${enable_threads} in
1311 "" | yes | win32)
1312 thread_file='win32'
1313 tmake_file="${tmake_file} i386/t-gthr-win32"
1314 ;;
1315 esac
1316 case ${target} in
1317 x86_64-*-mingw*)
1318 tmake_file="${tmake_file} i386/t-crtfm"
1319 ;;
1320 *)
1321 ;;
1322 esac
1323 case ${target} in
1324 *mingw32crt*)
1325 tm_file="${tm_file} i386/crtdll.h"
1326 ;;
1327 *mingw32msv* | *mingw*)
1328 ;;
1329 esac
1330 ;;
1331 i[34567]86-*-interix3*)
1332 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"
1333 tmake_file="${tmake_file} i386/t-interix"
1334 extra_objs=winnt.o
1335 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
1336 if test x$enable_threads = xyes ; then
1337 thread_file='posix'
1338 fi
1339 if test x$stabs = xyes ; then
1340 tm_file="${tm_file} dbxcoff.h"
1341 fi
1342 ;;
1343 ia64*-*-elf*)
1344 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h ia64/sysv4.h ia64/elf.h"
1345 tmake_file="ia64/t-ia64"
1346 target_cpu_default="0"
1347 if test x$gas = xyes
1348 then
1349 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1350 fi
1351 if test x$gnu_ld = xyes
1352 then
1353 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1354 fi
1355 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1356 ;;
1357 ia64*-*-freebsd*)
1358 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
1359 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1360 tmake_file="${tmake_file} ia64/t-ia64"
1361 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1362 ;;
1363 ia64*-*-linux*)
1364 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h ia64/sysv4.h ia64/linux.h"
1365 tmake_file="${tmake_file} ia64/t-ia64 t-libunwind ia64/t-glibc"
1366 if test x$with_system_libunwind != xyes ; then
1367 tmake_file="${tmake_file} t-libunwind-elf ia64/t-glibc-libunwind"
1368 fi
1369 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1370 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
1371 ;;
1372 ia64*-*-hpux*)
1373 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h"
1374 tmake_file="ia64/t-ia64 ia64/t-hpux"
1375 target_cpu_default="MASK_GNU_AS"
1376 case x$enable_threads in
1377 x | xyes | xposix )
1378 thread_file=posix
1379 ;;
1380 esac
1381 use_collect2=no
1382 c_target_objs="ia64-c.o"
1383 cxx_target_objs="ia64-c.o"
1384 extra_options="${extra_options} ia64/ilp32.opt"
1385 use_gcc_stdint=wrap
1386 tm_file="${tm_file} hpux-stdint.h"
1387 ;;
1388 iq2000*-*-elf*)
1389 tm_file="svr4.h elfos.h newlib-stdint.h iq2000/iq2000.h"
1390 tmake_file=iq2000/t-iq2000
1391 out_file=iq2000/iq2000.c
1392 md_file=iq2000/iq2000.md
1393 ;;
1394 m32r-*-elf*)
1395 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
1396 extra_parts="crtinit.o crtfini.o"
1397 ;;
1398 m32rle-*-elf*)
1399 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h m32r/little.h ${tm_file}"
1400 extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
1401 ;;
1402 m32r-*-rtems*)
1403 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} m32r/rtems.h rtems.h newlib-stdint.h"
1404 tmake_file="m32r/t-m32r t-rtems"
1405 extra_parts="crtinit.o crtfini.o"
1406 ;;
1407 m32r-*-linux*)
1408 tm_file="dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h ${tm_file} m32r/linux.h"
1409 # We override the tmake_file for linux -- why?
1410 tmake_file="t-slibgcc-elf-ver m32r/t-linux"
1411 gnu_ld=yes
1412 if test x$enable_threads = xyes; then
1413 thread_file='posix'
1414 fi
1415 ;;
1416 m32rle-*-linux*)
1417 tm_file="dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h m32r/little.h ${tm_file} m32r/linux.h"
1418 # We override the tmake_file for linux -- why?
1419 tmake_file="t-slibgcc-elf-ver m32r/t-linux"
1420 gnu_ld=yes
1421 if test x$enable_threads = xyes; then
1422 thread_file='posix'
1423 fi
1424 ;;
1425 # m68hc11 and m68hc12 share the same machine description.
1426 m68hc11-*-*|m6811-*-*)
1427 tm_file="dbxelf.h elfos.h usegas.h newlib-stdint.h m68hc11/m68hc11.h"
1428 tm_p_file="m68hc11/m68hc11-protos.h"
1429 md_file="m68hc11/m68hc11.md"
1430 out_file="m68hc11/m68hc11.c"
1431 tmake_file="m68hc11/t-m68hc11"
1432 use_gcc_stdint=wrap
1433 ;;
1434 m68hc12-*-*|m6812-*-*)
1435 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h usegas.h newlib-stdint.h m68hc11/m68hc11.h"
1436 tm_p_file="m68hc11/m68hc11-protos.h"
1437 md_file="m68hc11/m68hc11.md"
1438 out_file="m68hc11/m68hc11.c"
1439 tmake_file="m68hc11/t-m68hc11"
1440 extra_options="${extra_options} m68hc11/m68hc11.opt"
1441 use_gcc_stdint=wrap
1442 ;;
1443 m68k-*-elf* | fido-*-elf*)
1444 case ${target} in
1445 fido-*-elf*)
1446 # Check that $with_cpu makes sense.
1447 case $with_cpu in
1448 "" | "fidoa")
1449 ;;
1450 *)
1451 echo "Cannot accept --with-cpu=$with_cpu"
1452 exit 1
1453 ;;
1454 esac
1455 with_cpu=fidoa
1456 ;;
1457 *)
1458 default_m68k_cpu=68020
1459 default_cf_cpu=5206
1460 ;;
1461 esac
1462 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h newlib-stdint.h m68k/m68kemb.h m68k/m68020-elf.h"
1463 tm_defines="${tm_defines} MOTOROLA=1"
1464 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
1465 # Add multilibs for targets other than fido.
1466 case ${target} in
1467 fido-*-elf*)
1468 ;;
1469 *)
1470 tmake_file="$tmake_file m68k/t-mlibs"
1471 ;;
1472 esac
1473 extra_parts="crtbegin.o crtend.o"
1474 ;;
1475 m68k*-*-netbsdelf*)
1476 default_m68k_cpu=68020
1477 default_cf_cpu=5475
1478 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
1479 tm_defines="${tm_defines} MOTOROLA=1"
1480 ;;
1481 m68k*-*-openbsd*)
1482 default_m68k_cpu=68020
1483 default_cf_cpu=5475
1484 # needed to unconfuse gdb
1485 tm_defines="${tm_defines} OBSD_OLD_GAS"
1486 tm_file="${tm_file} openbsd.h m68k/openbsd.h"
1487 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
1488 # we need collect2 until our bug is fixed...
1489 use_collect2=yes
1490 ;;
1491 m68k-*-uclinuxoldabi*) # Motorola m68k/ColdFire running uClinux
1492 # with uClibc, using the original
1493 # m68k-elf-based ABI
1494 default_m68k_cpu=68020
1495 default_cf_cpu=5206
1496 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/uclinux-oldabi.h glibc-stdint.h"
1497 tm_defines="${tm_defines} MOTOROLA=1"
1498 tmake_file="m68k/t-floatlib m68k/t-uclinux"
1499 ;;
1500 m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux
1501 # with uClibc, using the new GNU/Linux-style
1502 # ABI.
1503 default_m68k_cpu=68020
1504 default_cf_cpu=5206
1505 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h flat.h m68k/linux.h m68k/uclinux.h ./sysroot-suffix.h"
1506 tm_defines="${tm_defines} MOTOROLA=1 UCLIBC_DEFAULT=1"
1507 extra_options="${extra_options} linux.opt"
1508 tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
1509 ;;
1510 m68k-*-linux*) # Motorola m68k's running GNU/Linux
1511 # with ELF format using glibc 2
1512 # aka the GNU/Linux C library 6.
1513 default_m68k_cpu=68020
1514 default_cf_cpu=5475
1515 with_arch=${with_arch:-m68k}
1516 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h m68k/linux.h ./sysroot-suffix.h"
1517 extra_options="${extra_options} m68k/ieee.opt"
1518 tm_defines="${tm_defines} MOTOROLA=1"
1519 tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs"
1520 # if not configured with --enable-sjlj-exceptions, bump the
1521 # libgcc version number
1522 if test x$sjlj != x1; then
1523 tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
1524 fi
1525 ;;
1526 m68k-*-rtems*)
1527 default_m68k_cpu=68020
1528 default_cf_cpu=5206
1529 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems m68k/t-mlibs"
1530 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h newlib-stdint.h"
1531 tm_defines="${tm_defines} MOTOROLA=1"
1532 extra_parts="crtbegin.o crtend.o"
1533 ;;
1534 mcore-*-elf)
1535 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file} mcore/mcore-elf.h"
1536 tmake_file=mcore/t-mcore
1537 inhibit_libc=true
1538 ;;
1539 mcore-*-pe*)
1540 tm_file="svr3.h dbxcoff.h newlib-stdint.h ${tm_file} mcore/mcore-pe.h"
1541 tmake_file=mcore/t-mcore-pe
1542 inhibit_libc=true
1543 use_gcc_stdint=wrap
1544 ;;
1545 mips-sgi-irix[56]*)
1546 tm_file="elfos.h ${tm_file} mips/iris.h"
1547 tmake_file="mips/t-iris mips/t-slibgcc-irix"
1548 target_cpu_default="MASK_ABICALLS"
1549 case ${target} in
1550 *-*-irix5*)
1551 tm_file="${tm_file} mips/iris5.h"
1552 ;;
1553
1554 *-*-irix6*)
1555 tm_file="${tm_file} mips/iris6.h"
1556 tmake_file="${tmake_file} mips/t-iris6"
1557 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
1558 ;;
1559 esac
1560 if test "x$stabs" = xyes
1561 then
1562 tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
1563 fi
1564 if test "x$gnu_ld" = xyes
1565 then
1566 tm_defines="${tm_defines} IRIX_USING_GNU_LD"
1567 fi
1568 case ${enable_threads}:${have_pthread_h} in
1569 "":yes | yes:yes ) thread_file=posix ;;
1570 esac
1571 ;;
1572 mips*-*-netbsd*) # NetBSD/mips, either endian.
1573 target_cpu_default="MASK_ABICALLS"
1574 tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
1575 ;;
1576 mips64*-*-linux* | mipsisa64*-*-linux*)
1577 tm_file="dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h ${tm_file} mips/linux.h mips/linux64.h"
1578 tmake_file="${tmake_file} mips/t-linux64 mips/t-libgcc-mips16"
1579 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32"
1580 case ${target} in
1581 mips64el-st-linux-gnu)
1582 tm_file="${tm_file} mips/st.h"
1583 tmake_file="${tmake_file} mips/t-st"
1584 ;;
1585 mips64octeon*-*-linux*)
1586 tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
1587 target_cpu_default=MASK_SOFT_FLOAT_ABI
1588 ;;
1589 mipsisa64r2*-*-linux*)
1590 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
1591 ;;
1592 esac
1593 gnu_ld=yes
1594 gas=yes
1595 test x$with_llsc != x || with_llsc=yes
1596 ;;
1597 mips*-*-linux*) # Linux MIPS, either endian.
1598 tm_file="dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h ${tm_file} mips/linux.h"
1599 tmake_file="${tmake_file} mips/t-libgcc-mips16"
1600 case ${target} in
1601 mipsisa32r2*)
1602 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1603 ;;
1604 mipsisa32*)
1605 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1606 esac
1607 test x$with_llsc != x || with_llsc=yes
1608 ;;
1609 mips*-*-openbsd*)
1610 tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
1611 target_cpu_default="MASK_ABICALLS"
1612 tm_file="mips/mips.h openbsd.h mips/openbsd.h mips/sdb.h"
1613 case ${target} in
1614 mips*el-*-openbsd*)
1615 tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
1616 *) tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
1617 esac
1618 ;;
1619 mips*-sde-elf*)
1620 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/sde.h"
1621 tmake_file="mips/t-sde mips/t-libgcc-mips16"
1622 case "${with_newlib}" in
1623 yes)
1624 # newlib / libgloss.
1625 ;;
1626 *)
1627 # MIPS toolkit libraries.
1628 tm_file="$tm_file mips/sdemtk.h"
1629 tmake_file="$tmake_file mips/t-sdemtk"
1630 extra_options="$extra_options mips/sdemtk.opt"
1631 case ${enable_threads} in
1632 "" | yes | mipssde)
1633 thread_file='mipssde'
1634 ;;
1635 esac
1636 ;;
1637 esac
1638 case ${target} in
1639 mipsisa32r2*)
1640 tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
1641 ;;
1642 mipsisa32*)
1643 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
1644 ;;
1645 mipsisa64r2*)
1646 tm_defines="MIPS_ISA_DEFAULT=65 MIPS_ABI_DEFAULT=ABI_N32"
1647 ;;
1648 mipsisa64*)
1649 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
1650 ;;
1651 esac
1652 ;;
1653 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
1654 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
1655 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
1656 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
1657 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1658 tmake_file="mips/t-isa3264 mips/t-libgcc-mips16"
1659 case ${target} in
1660 mipsisa32r2*)
1661 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
1662 ;;
1663 mipsisa32*)
1664 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
1665 ;;
1666 mipsisa64r2*)
1667 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
1668 ;;
1669 mipsisa64*)
1670 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
1671 ;;
1672 esac
1673 case ${target} in
1674 mipsisa32*-*-elfoabi*)
1675 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
1676 tm_file="${tm_file} mips/elfoabi.h"
1677 ;;
1678 mipsisa64*-*-elfoabi*)
1679 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
1680 tm_file="${tm_file} mips/elfoabi.h"
1681 ;;
1682 *-*-elf*)
1683 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
1684 ;;
1685 esac
1686 ;;
1687 mipsisa64sr71k-*-elf*)
1688 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1689 tmake_file=mips/t-sr71k
1690 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1691 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
1692 ;;
1693 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
1694 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1695 tmake_file="mips/t-elf mips/t-libgcc-mips16 mips/t-sb1"
1696 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1697 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
1698 ;;
1699 mips-*-elf* | mipsel-*-elf*)
1700 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1701 tmake_file="mips/t-elf mips/t-libgcc-mips16"
1702 ;;
1703 mips64-*-elf* | mips64el-*-elf*)
1704 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
1705 tmake_file="mips/t-elf mips/t-libgcc-mips16"
1706 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1707 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1708 ;;
1709 mips64vr-*-elf* | mips64vrel-*-elf*)
1710 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/vr.h mips/elf.h"
1711 tmake_file=mips/t-vr
1712 ;;
1713 mips64orion-*-elf* | mips64orionel-*-elf*)
1714 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elforion.h mips/elf.h"
1715 tmake_file="mips/t-elf mips/t-libgcc-mips16"
1716 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
1717 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
1718 ;;
1719 mips*-*-rtems*)
1720 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
1721 tmake_file="mips/t-elf mips/t-libgcc-mips16 t-rtems mips/t-rtems"
1722 ;;
1723 mips-wrs-vxworks)
1724 tm_file="elfos.h ${tm_file} svr4.h mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
1725 tmake_file="${tmake_file} mips/t-vxworks"
1726 ;;
1727 mipstx39-*-elf* | mipstx39el-*-elf*)
1728 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/r3900.h mips/elf.h"
1729 tmake_file="mips/t-r3900 mips/t-libgcc-mips16"
1730 ;;
1731 mmix-knuth-mmixware)
1732 tm_file="${tm_file} newlib-stdint.h"
1733 need_64bit_hwint=yes
1734 use_gcc_stdint=wrap
1735 ;;
1736 mn10300-*-*)
1737 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
1738 if test x$stabs = xyes
1739 then
1740 tm_file="${tm_file} dbx.h"
1741 fi
1742 use_collect2=no
1743 use_gcc_stdint=wrap
1744 ;;
1745 pdp11-*-*)
1746 tm_file="${tm_file} newlib-stdint.h"
1747 use_gcc_stdint=wrap
1748 ;;
1749 picochip-*)
1750 tm_file="${tm_file} newlib-stdint.h"
1751 use_gcc_stdint=wrap
1752 ;;
1753 # port not yet contributed
1754 #powerpc-*-openbsd*)
1755 # tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit "
1756 # extra_headers=
1757 # ;;
1758 powerpc-*-darwin*)
1759 extra_options="${extra_options} rs6000/darwin.opt"
1760 extra_parts="crt2.o"
1761 case ${target} in
1762 *-darwin1[0-9]* | *-darwin[8-9]*)
1763 tmake_file="${tmake_file} rs6000/t-darwin8"
1764 tm_file="${tm_file} rs6000/darwin8.h"
1765 ;;
1766 *-darwin7*)
1767 tm_file="${tm_file} rs6000/darwin7.h"
1768 ;;
1769 *-darwin[0-6]*)
1770 ;;
1771 esac
1772 extra_headers=altivec.h
1773 ;;
1774 powerpc64-*-darwin*)
1775 tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
1776 extra_options="${extra_options} ${cpu_type}/darwin.opt"
1777 # We're omitting t-darwin8 to avoid building any multilibs
1778 extra_headers=altivec.h
1779 ;;
1780 powerpc*-*-freebsd*)
1781 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
1782 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1783 extra_options="${extra_options} rs6000/sysv4.opt"
1784 ;;
1785 powerpc-*-netbsd*)
1786 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
1787 tmake_file="${tmake_file} rs6000/t-netbsd"
1788 extra_options="${extra_options} rs6000/sysv4.opt"
1789 ;;
1790 powerpc-*-eabispe*)
1791 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabispe.h"
1792 extra_options="${extra_options} rs6000/sysv4.opt"
1793 tmake_file="rs6000/t-spe rs6000/t-ppccomm"
1794 use_gcc_stdint=wrap
1795 ;;
1796 powerpc-*-eabisimaltivec*)
1797 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h rs6000/eabialtivec.h"
1798 extra_options="${extra_options} rs6000/sysv4.opt"
1799 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
1800 use_gcc_stdint=wrap
1801 ;;
1802 powerpc-*-eabisim*)
1803 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
1804 extra_options="${extra_options} rs6000/sysv4.opt"
1805 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
1806 use_gcc_stdint=wrap
1807 ;;
1808 powerpc-*-elf*)
1809 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h"
1810 extra_options="${extra_options} rs6000/sysv4.opt"
1811 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
1812 ;;
1813 powerpc-*-eabialtivec*)
1814 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabialtivec.h"
1815 extra_options="${extra_options} rs6000/sysv4.opt"
1816 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
1817 use_gcc_stdint=wrap
1818 ;;
1819 powerpc-xilinx-eabi*)
1820 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/singlefp.h rs6000/xfpu.h rs6000/xilinx.h"
1821 extra_options="${extra_options} rs6000/sysv4.opt"
1822 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm rs6000/t-xilinx"
1823 use_gcc_stdint=wrap
1824 ;;
1825 powerpc-*-eabi*)
1826 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h"
1827 extra_options="${extra_options} rs6000/sysv4.opt"
1828 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
1829 use_gcc_stdint=wrap
1830 ;;
1831 powerpc-*-rtems*)
1832 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/rtems.h rtems.h"
1833 extra_options="${extra_options} rs6000/sysv4.opt"
1834 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm"
1835 ;;
1836 powerpc-*-linux* | powerpc64-*-linux*)
1837 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1838 extra_options="${extra_options} rs6000/sysv4.opt"
1839 tmake_file="t-dfprules rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
1840 maybe_biarch=yes
1841 case ${target} in
1842 powerpc64-*-linux*spe* | powerpc64-*-linux*paired*)
1843 echo "*** Configuration ${target} not supported" 1>&2
1844 exit 1
1845 ;;
1846 powerpc-*-linux*spe* | powerpc-*-linux*paired*)
1847 maybe_biarch=
1848 ;;
1849 powerpc64-*-linux*)
1850 test x$with_cpu != x || cpu_is_64bit=yes
1851 maybe_biarch=always
1852 ;;
1853 esac
1854 case ${maybe_biarch}:${enable_targets}:${cpu_is_64bit} in
1855 always:* | yes:*powerpc64* | yes:all:* | yes:*:yes)
1856 if test x$cpu_is_64bit = xyes; then
1857 tm_file="${tm_file} rs6000/default64.h"
1858 fi
1859 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h glibc-stdint.h"
1860 tmake_file="$tmake_file rs6000/t-linux64"
1861 extra_options="${extra_options} rs6000/linux64.opt"
1862 ;;
1863 *)
1864 tm_file="${tm_file} rs6000/linux.h glibc-stdint.h"
1865 ;;
1866 esac
1867 tmake_file="${tmake_file} rs6000/t-fprules-softfp soft-fp/t-softfp"
1868 case ${target} in
1869 powerpc*-*-linux*altivec*)
1870 tm_file="${tm_file} rs6000/linuxaltivec.h" ;;
1871 powerpc*-*-linux*spe*)
1872 tm_file="${tm_file} rs6000/linuxspe.h rs6000/e500.h" ;;
1873 powerpc*-*-linux*paired*)
1874 tm_file="${tm_file} rs6000/750cl.h" ;;
1875 esac
1876 if test x${enable_secureplt} = xyes; then
1877 tm_file="rs6000/secureplt.h ${tm_file}"
1878 fi
1879 ;;
1880 powerpc64-*-gnu*)
1881 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/default64.h rs6000/linux64.h rs6000/gnu.h glibc-stdint.h"
1882 extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
1883 tmake_file="t-slibgcc-elf-ver t-gnu"
1884 ;;
1885 powerpc-*-gnu-gnualtivec*)
1886 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 glibc-stdint.h"
1887 extra_options="${extra_options} rs6000/sysv4.opt"
1888 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1889 if test x$enable_threads = xyes; then
1890 thread_file='posix'
1891 fi
1892 ;;
1893 powerpc-*-gnu*)
1894 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 glibc-stdint.h"
1895 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
1896 extra_options="${extra_options} rs6000/sysv4.opt"
1897 if test x$enable_threads = xyes; then
1898 thread_file='posix'
1899 fi
1900 ;;
1901 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
1902 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
1903 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppccomm rs6000/t-vxworks"
1904 extra_options="${extra_options} rs6000/sysv4.opt"
1905 extra_headers=ppc-asm.h
1906 case ${target} in
1907 *-vxworksae*)
1908 tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksae.h"
1909 tmake_file="${tmake_file} rs6000/t-vxworksae"
1910 ;;
1911 *-vxworks*)
1912 tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
1913 ;;
1914 esac
1915 ;;
1916 powerpc-*-lynxos*)
1917 xm_defines=POSIX
1918 tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
1919 tmake_file="t-lynx rs6000/t-lynx"
1920 extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
1921 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1922 extra_options="${extra_options} lynx.opt"
1923 thread_file=lynx
1924 gnu_ld=yes
1925 gas=yes
1926 ;;
1927 powerpcle-*-elf*)
1928 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h"
1929 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
1930 extra_options="${extra_options} rs6000/sysv4.opt"
1931 ;;
1932 powerpcle-*-eabisim*)
1933 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
1934 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
1935 extra_options="${extra_options} rs6000/sysv4.opt"
1936 use_gcc_stdint=wrap
1937 ;;
1938 powerpcle-*-eabi*)
1939 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h"
1940 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
1941 extra_options="${extra_options} rs6000/sysv4.opt"
1942 use_gcc_stdint=wrap
1943 ;;
1944 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
1945 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h rs6000/aix-stdint.h"
1946 tmake_file=rs6000/t-aix43
1947 extra_options="${extra_options} rs6000/aix64.opt"
1948 use_collect2=yes
1949 thread_file='aix'
1950 use_gcc_stdint=provide
1951 extra_headers=
1952 ;;
1953 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
1954 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h rs6000/aix-stdint.h"
1955 extra_options="${extra_options} rs6000/aix64.opt"
1956 tmake_file=rs6000/t-aix43
1957 use_collect2=yes
1958 thread_file='aix'
1959 use_gcc_stdint=wrap
1960 extra_headers=
1961 ;;
1962 rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
1963 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h rs6000/aix-stdint.h"
1964 tmake_file=rs6000/t-aix52
1965 extra_options="${extra_options} rs6000/aix64.opt"
1966 use_collect2=yes
1967 thread_file='aix'
1968 use_gcc_stdint=wrap
1969 extra_headers=
1970 ;;
1971 rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
1972 tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h rs6000/aix-stdint.h"
1973 tmake_file=rs6000/t-aix52
1974 extra_options="${extra_options} rs6000/aix64.opt"
1975 use_collect2=yes
1976 thread_file='aix'
1977 use_gcc_stdint=wrap
1978 extra_headers=altivec.h
1979 ;;
1980 rs6000-ibm-aix[6789].* | powerpc-ibm-aix[6789].*)
1981 tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h rs6000/aix-stdint.h"
1982 tmake_file=rs6000/t-aix52
1983 extra_options="${extra_options} rs6000/aix64.opt"
1984 use_collect2=yes
1985 thread_file='aix'
1986 use_gcc_stdint=wrap
1987 extra_headers=altivec.h
1988 ;;
1989 s390-*-linux*)
1990 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h s390/linux.h"
1991 tmake_file="${tmake_file} t-dfprules s390/t-crtstuff s390/t-linux"
1992 ;;
1993 s390x-*-linux*)
1994 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h s390/linux.h"
1995 tm_p_file=s390/s390-protos.h
1996 md_file=s390/s390.md
1997 extra_modes=s390/s390-modes.def
1998 out_file=s390/s390.c
1999 tmake_file="${tmake_file} t-dfprules s390/t-crtstuff s390/t-linux s390/t-linux64"
2000 ;;
2001 s390x-ibm-tpf*)
2002 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h s390/tpf.h"
2003 tm_p_file=s390/s390-protos.h
2004 md_file=s390/s390.md
2005 extra_modes=s390/s390-modes.def
2006 out_file=s390/s390.c
2007 extra_parts="crtbeginS.o crtendS.o"
2008 tmake_file="s390/t-crtstuff s390/t-tpf"
2009 thread_file='tpf'
2010 extra_options="${extra_options} s390/tpf.opt"
2011 ;;
2012 score-*-elf)
2013 tm_file="dbxelf.h elfos.h score/elf.h score/score.h newlib-stdint.h"
2014 tmake_file=score/t-score-elf
2015 extra_objs="score7.o score3.o"
2016 ;;
2017 sh-*-elf* | sh[12346l]*-*-elf* | \
2018 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
2019 sh-*-linux* | sh[2346lbe]*-*-linux* | \
2020 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2021 sh64-*-netbsd* | sh64l*-*-netbsd*)
2022 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2023 if test x${with_endian} = x; then
2024 case ${target} in
2025 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2026 shbe-*-* | sheb-*-*) with_endian=big,little ;;
2027 sh[1234]l* | sh[34]*-*-linux*) with_endian=little ;;
2028 shl* | sh64l* | sh*-*-linux* | \
2029 sh5l* | sh-superh-elf) with_endian=little,big ;;
2030 sh[1234]*-*-*) with_endian=big ;;
2031 *) with_endian=big,little ;;
2032 esac
2033 fi
2034 # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2035 # First word : the default endian.
2036 # Second word: the secondary endian (optional).
2037 case ${with_endian} in
2038 big) TM_ENDIAN_CONFIG=mb ;;
2039 little) TM_ENDIAN_CONFIG=ml ;;
2040 big,little) TM_ENDIAN_CONFIG="mb ml" ;;
2041 little,big) TM_ENDIAN_CONFIG="ml mb" ;;
2042 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
2043 esac
2044 case ${with_endian} in
2045 little*) tm_file="sh/little.h ${tm_file}" ;;
2046 esac
2047 tm_file="${tm_file} dbxelf.h elfos.h"
2048 case ${target} in
2049 sh*-*-netbsd*) ;;
2050 *) tm_file="${tm_file} svr4.h" ;;
2051 esac
2052 tm_file="${tm_file} sh/elf.h"
2053 case ${target} in
2054 sh*-*-linux*) tmake_file="${tmake_file} sh/t-linux"
2055 tm_file="${tm_file} linux.h glibc-stdint.h sh/linux.h" ;;
2056 sh*-*-netbsd*) tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h" ;;
2057 sh*-superh-elf) if test x$with_libgloss != xno; then
2058 with_libgloss=yes
2059 tm_file="${tm_file} sh/newlib.h"
2060 fi
2061 tm_file="${tm_file} sh/embed-elf.h sh/superh.h"
2062 tmake_file="${tmake_file} sh/t-superh"
2063 extra_options="${extra_options} sh/superh.opt" ;;
2064 *) if test x$with_newlib = xyes \
2065 && test x$with_libgloss = xyes; then
2066 tm_file="${tm_file} sh/newlib.h"
2067 fi
2068 tm_file="${tm_file} sh/embed-elf.h" ;;
2069 esac
2070 case ${target} in
2071 sh5*-*-netbsd*)
2072 # SHmedia, 32-bit ABI
2073 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
2074 ;;
2075 sh64*-netbsd*)
2076 # SHmedia, 64-bit ABI
2077 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
2078 ;;
2079 *-*-netbsd)
2080 tmake_file="${tmake_file} sh/t-netbsd"
2081 ;;
2082 sh64*-*-linux*)
2083 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
2084 tm_file="${tm_file} sh/sh64.h"
2085 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2086 ;;
2087 sh64*)
2088 tmake_file="${tmake_file} sh/t-sh64"
2089 tm_file="${tm_file} sh/sh64.h"
2090 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2091 ;;
2092 *-*-symbianelf*)
2093 tmake_file="sh/t-symbian"
2094 tm_file="sh/symbian-pre.h sh/little.h ${tm_file} sh/symbian-post.h"
2095 extra_objs="symbian.o"
2096 extra_parts="crt1.o crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
2097 ;;
2098 *-*-elf*)
2099 tm_file="${tm_file} newlib-stdint.h"
2100 ;;
2101 esac
2102 # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2103 case `echo ${target} | sed 's/e[lb]-/-/'` in
2104 sh64*-*-netbsd*) sh_cpu_target=sh5-64media ;;
2105 sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
2106 sh4a_single_only*) sh_cpu_target=sh4a-single-only ;;
2107 sh4a_single*) sh_cpu_target=sh4a-single ;;
2108 sh4a_nofpu*) sh_cpu_target=sh4a-nofpu ;;
2109 sh4al) sh_cpu_target=sh4al ;;
2110 sh4a*) sh_cpu_target=sh4a ;;
2111 sh4_single_only*) sh_cpu_target=sh4-single-only ;;
2112 sh4_single*) sh_cpu_target=sh4-single ;;
2113 sh4_nofpu*) sh_cpu_target=sh4-nofpu ;;
2114 sh4* | sh-superh-*) sh_cpu_target=sh4 ;;
2115 sh3e*) sh_cpu_target=sh3e ;;
2116 sh*-*-netbsd* | sh3*) sh_cpu_target=sh3 ;;
2117 sh2a_single_only*) sh_cpu_target=sh2a-single-only ;;
2118 sh2a_single*) sh_cpu_target=sh2a-single ;;
2119 sh2a_nofpu*) sh_cpu_target=sh2a-nofpu ;;
2120 sh2a*) sh_cpu_target=sh2a ;;
2121 sh2e*) sh_cpu_target=sh2e ;;
2122 sh2*) sh_cpu_target=sh2 ;;
2123 *) sh_cpu_target=sh1 ;;
2124 esac
2125 # did the user say --without-fp ?
2126 if test x$with_fp = xno; then
2127 case ${sh_cpu_target} in
2128 sh5-*media) sh_cpu_target=${sh_cpu_target}-nofpu ;;
2129 sh4al | sh1) ;;
2130 sh4a* ) sh_cpu_target=sh4a-nofpu ;;
2131 sh4*) sh_cpu_target=sh4-nofpu ;;
2132 sh3*) sh_cpu_target=sh3 ;;
2133 sh2a*) sh_cpu_target=sh2a-nofpu ;;
2134 sh2*) sh_cpu_target=sh2 ;;
2135 *) echo --without-fp not available for $target: ignored
2136 esac
2137 tm_defines="$tm_defines STRICT_NOFPU=1"
2138 fi
2139 sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2140 case $sh_cpu_default in
2141 sh5-64media-nofpu | sh5-64media | \
2142 sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
2143 sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
2144 sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
2145 sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
2146 sh3e | sh3 | sh2e | sh2 | sh1) ;;
2147 "") sh_cpu_default=${sh_cpu_target} ;;
2148 *) echo "with_cpu=$with_cpu not supported"; exit 1 ;;
2149 esac
2150 sh_multilibs=${with_multilib_list}
2151 if test "$sh_multilibs" = "default" ; then
2152 case ${target} in
2153 sh64-superh-linux* | \
2154 sh[1234]*) sh_multilibs=${sh_cpu_target} ;;
2155 sh64* | sh5*) sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
2156 sh-superh-*) sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2157 sh*-*-linux*) sh_multilibs=m1,m3e,m4 ;;
2158 sh*-*-netbsd*) sh_multilibs=m3,m3e,m4 ;;
2159 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
2160 esac
2161 if test x$with_fp = xno; then
2162 sh_multilibs="`echo $sh_multilibs|sed -e s/m4/sh4-nofpu/ -e s/,m4-[^,]*//g -e s/,m[23]e// -e s/m2a,m2a-single/m2a-nofpu/ -e s/m5-..m....,//g`"
2163 fi
2164 fi
2165 target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
2166 tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
2167 tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2168 sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^sh/m/i' -e 's/ sh/ m/gi' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
2169 for sh_multilib in ${sh_multilibs}; do
2170 case ${sh_multilib} in
2171 m1 | m2 | m2e | m3 | m3e | \
2172 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2173 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
2174 m2a | m2a-single | m2a-single-only | m2a-nofpu | \
2175 m5-64media | m5-64media-nofpu | \
2176 m5-32media | m5-32media-nofpu | \
2177 m5-compact | m5-compact-nofpu)
2178 # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2179 # It is passed to MULTIILIB_OPTIONS verbatim.
2180 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2181 tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
2182 ;;
2183 \!*) # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2184 # It is passed the MULTILIB_EXCEPTIONS verbatim.
2185 TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
2186 *)
2187 echo "with_multilib_list=${sh_multilib} not supported."
2188 exit 1
2189 ;;
2190 esac
2191 done
2192 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
2193 if test x${enable_incomplete_targets} = xyes ; then
2194 tm_defines="$tm_defines SUPPORT_SH1=1 SUPPORT_SH2E=1 SUPPORT_SH4=1 SUPPORT_SH4_SINGLE=1 SUPPORT_SH2A=1 SUPPORT_SH2A_SINGLE=1 SUPPORT_SH5_32MEDIA=1 SUPPORT_SH5_32MEDIA_NOFPU=1 SUPPORT_SH5_64MEDIA=1 SUPPORT_SH5_64MEDIA_NOFPU=1"
2195 fi
2196 tm_file="$tm_file ./sysroot-suffix.h"
2197 tmake_file="$tmake_file t-sysroot-suffix"
2198 ;;
2199 sh-*-rtems*)
2200 tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
2201 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
2202 ;;
2203 sh-wrs-vxworks)
2204 tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
2205 tm_file="${tm_file} elfos.h svr4.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
2206 ;;
2207 sparc-*-netbsdelf*)
2208 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2209 extra_options="${extra_options} sparc/long-double-switch.opt"
2210 ;;
2211 sparc64-*-openbsd*)
2212 tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
2213 extra_options="${extra_options} sparc/little-endian.opt"
2214 gas=yes gnu_ld=yes
2215 with_cpu=ultrasparc
2216 ;;
2217 sparc-*-elf*)
2218 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h svr4.h sparc/sysv4.h sparc/sp-elf.h"
2219 tmake_file="sparc/t-elf sparc/t-crtfm"
2220 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2221 ;;
2222 sparc-*-linux*) # SPARC's running GNU/Linux, libc6
2223 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h linux.h glibc-stdint.h"
2224 extra_options="${extra_options} sparc/long-double-switch.opt"
2225 tmake_file="${tmake_file} sparc/t-linux"
2226 if test x$enable_targets = xall; then
2227 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
2228 tmake_file="${tmake_file} sparc/t-linux64"
2229 else
2230 tm_file="${tm_file} sparc/linux.h"
2231 fi
2232 tmake_file="${tmake_file} sparc/t-crtfm"
2233 ;;
2234 sparc-*-rtems*)
2235 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
2236 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
2237 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
2238 ;;
2239 sparc64-*-solaris2* | sparcv9-*-solaris2*)
2240 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h"
2241 case ${target} in
2242 *-*-solaris2.1[0-9]*)
2243 tm_file="${tm_file} sol2-10.h"
2244 use_gcc_stdint=wrap
2245 ;;
2246 *)
2247 use_gcc_stdint=provide
2248 ;;
2249 esac
2250 tm_file="${tm_file} sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
2251 if test x$gnu_ld = xyes; then
2252 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
2253 fi
2254 if test x$gas = xyes; then
2255 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
2256 fi
2257 tm_file="${tm_file} tm-dwarf2.h"
2258 tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
2259 if test x$gnu_ld = xyes; then
2260 tmake_file="$tmake_file t-slibgcc-elf-ver"
2261 else
2262 tmake_file="$tmake_file t-slibgcc-sld"
2263 fi
2264 c_target_objs="sol2-c.o"
2265 cxx_target_objs="sol2-c.o"
2266 extra_objs="sol2.o"
2267 tm_p_file="${tm_p_file} sol2-protos.h"
2268 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
2269 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
2270 "":yes:* | yes:yes:* ) thread_file=posix ;;
2271 "":*:yes | yes:*:yes ) thread_file=solaris ;;
2272 esac
2273 ;;
2274 sparc-*-solaris2*)
2275 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h"
2276 case ${target} in
2277 *-*-solaris2.1[0-9]*)
2278 tm_file="${tm_file} sol2-10.h"
2279 use_gcc_stdint=wrap
2280 ;;
2281 *)
2282 use_gcc_stdint=provide
2283 ;;
2284 esac
2285 tm_file="${tm_file} sparc/sol2.h"
2286 if test x$gnu_ld = xyes; then
2287 tm_file="${tm_file} sparc/sol2-gld.h"
2288 fi
2289 if test x$gas = xyes; then
2290 tm_file="${tm_file} sparc/sol2-gas.h"
2291 fi
2292 tmake_file="t-sol2 sparc/t-sol2 sparc/t-crtfm"
2293 if test x$gnu_ld = xyes; then
2294 tmake_file="$tmake_file t-slibgcc-elf-ver"
2295 else
2296 tmake_file="$tmake_file t-slibgcc-sld"
2297 fi
2298 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
2299 if test x$gnu_ld = xyes; then
2300 tm_file="${tm_file} sparc/sol2-gld-bi.h"
2301 fi
2302 if test x$gas = xyes; then
2303 tm_file="${tm_file} sparc/sol2-gas-bi.h"
2304 fi
2305 tm_file="${tm_file} tm-dwarf2.h"
2306 tmake_file="$tmake_file sparc/t-sol2-64"
2307 test x$with_cpu != x || with_cpu=v9
2308 c_target_objs="sol2-c.o"
2309 cxx_target_objs="sol2-c.o"
2310 extra_objs="sol2.o"
2311 tm_p_file="${tm_p_file} sol2-protos.h"
2312 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
2313 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
2314 "":yes:* | yes:yes:* )
2315 thread_file=posix
2316 ;;
2317 "":*:yes | yes:*:yes )
2318 thread_file=solaris
2319 ;;
2320 esac
2321 ;;
2322 sparc-wrs-vxworks)
2323 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
2324 tmake_file="${tmake_file} sparc/t-vxworks"
2325 ;;
2326 sparc64-*-elf*)
2327 tm_file="${tm_file} dbxelf.h elfos.h svr4.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
2328 extra_options="${extra_options} sparc/little-endian.opt"
2329 tmake_file="${tmake_file} sparc/t-crtfm"
2330 extra_parts="crtbegin.o crtend.o"
2331 ;;
2332 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2333 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
2334 extra_options="${extra_options} sparc/long-double-switch.opt"
2335 tmake_file="${tmake_file} sparc/t-crtfm"
2336 case "x$with_cpu" in
2337 xultrasparc) ;;
2338 x) with_cpu=ultrasparc ;;
2339 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2340 esac
2341 ;;
2342 sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
2343 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h linux.h glibc-stdint.h sparc/linux64.h"
2344 extra_options="${extra_options} sparc/long-double-switch.opt"
2345 tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
2346 ;;
2347 sparc64-*-netbsd*)
2348 tm_file="sparc/biarch64.h ${tm_file}"
2349 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
2350 extra_options="${extra_options} sparc/long-double-switch.opt"
2351 tmake_file="${tmake_file} sparc/t-netbsd64"
2352 ;;
2353 spu-*-elf*)
2354 tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
2355 tmake_file="spu/t-spu-elf"
2356 extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h"
2357 extra_modes=spu/spu-modes.def
2358 c_target_objs="${c_target_objs} spu-c.o"
2359 cxx_target_objs="${cxx_target_objs} spu-c.o"
2360 ;;
2361 v850e1-*-*)
2362 target_cpu_default="TARGET_CPU_v850e1"
2363 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h v850/v850.h"
2364 tm_p_file=v850/v850-protos.h
2365 tmake_file=v850/t-v850e
2366 md_file=v850/v850.md
2367 out_file=v850/v850.c
2368 extra_options="${extra_options} v850/v850.opt"
2369 if test x$stabs = xyes
2370 then
2371 tm_file="${tm_file} dbx.h"
2372 fi
2373 use_collect2=no
2374 c_target_objs="v850-c.o"
2375 cxx_target_objs="v850-c.o"
2376 use_gcc_stdint=wrap
2377 ;;
2378 v850e-*-*)
2379 target_cpu_default="TARGET_CPU_v850e"
2380 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h v850/v850.h"
2381 tm_p_file=v850/v850-protos.h
2382 tmake_file=v850/t-v850e
2383 md_file=v850/v850.md
2384 out_file=v850/v850.c
2385 extra_options="${extra_options} v850/v850.opt"
2386 if test x$stabs = xyes
2387 then
2388 tm_file="${tm_file} dbx.h"
2389 fi
2390 use_collect2=no
2391 c_target_objs="v850-c.o"
2392 cxx_target_objs="v850-c.o"
2393 use_gcc_stdint=wrap
2394 ;;
2395 v850-*-*)
2396 target_cpu_default="TARGET_CPU_generic"
2397 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
2398 tmake_file=v850/t-v850
2399 if test x$stabs = xyes
2400 then
2401 tm_file="${tm_file} dbx.h"
2402 fi
2403 use_collect2=no
2404 c_target_objs="v850-c.o"
2405 cxx_target_objs="v850-c.o"
2406 use_gcc_stdint=wrap
2407 ;;
2408 vax-*-linux*)
2409 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h vax/elf.h vax/linux.h"
2410 ;;
2411 vax-*-netbsdelf*)
2412 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
2413 ;;
2414 vax-*-netbsd*)
2415 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
2416 tmake_file=t-netbsd
2417 extra_parts=""
2418 use_collect2=yes
2419 ;;
2420 vax-*-openbsd*)
2421 tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
2422 use_collect2=yes
2423 ;;
2424 xstormy16-*-elf)
2425 # For historical reasons, the target files omit the 'x'.
2426 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h stormy16/stormy16.h"
2427 tm_p_file=stormy16/stormy16-protos.h
2428 md_file=stormy16/stormy16.md
2429 out_file=stormy16/stormy16.c
2430 extra_options=stormy16/stormy16.opt
2431 tmake_file="stormy16/t-stormy16"
2432 extra_parts="crtbegin.o crtend.o"
2433 ;;
2434 xtensa*-*-elf*)
2435 tm_file="${tm_file} dbxelf.h elfos.h svr4.h newlib-stdint.h xtensa/elf.h"
2436 tmake_file="xtensa/t-xtensa xtensa/t-elf"
2437 ;;
2438 xtensa*-*-linux*)
2439 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h xtensa/linux.h"
2440 tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
2441 ;;
2442 am33_2.0-*-linux*)
2443 tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h glibc-stdint.h mn10300/linux.h"
2444 tmake_file="${tmake_file} mn10300/t-linux"
2445 gas=yes gnu_ld=yes
2446 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2447 use_collect2=no
2448 ;;
2449 m32c-*-rtems*)
2450 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
2451 tmake_file="${tmake_file} t-rtems"
2452 c_target_objs="m32c-pragma.o"
2453 cxx_target_objs="m32c-pragma.o"
2454 ;;
2455 m32c-*-elf*)
2456 tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
2457 c_target_objs="m32c-pragma.o"
2458 cxx_target_objs="m32c-pragma.o"
2459 ;;
2460 *)
2461 echo "*** Configuration ${target} not supported" 1>&2
2462 exit 1
2463 ;;
2464 esac
2465
2466 case ${target} in
2467 i[34567]86-*-linux* | x86_64-*-linux*)
2468 tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
2469 ;;
2470 i[34567]86-*-* | x86_64-*-*)
2471 tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
2472 ;;
2473 powerpc*-*-* | rs6000-*-*)
2474 tm_file="${tm_file} rs6000/option-defaults.h"
2475 esac
2476
2477 # Support for --with-cpu and related options (and a few unrelated options,
2478 # too).
2479 case ${with_cpu} in
2480 yes | no)
2481 echo "--with-cpu must be passed a value" 1>&2
2482 exit 1
2483 ;;
2484 esac
2485
2486 # If there is no $with_cpu option, try to infer one from ${target}.
2487 # This block sets nothing except for with_cpu.
2488 if test x$with_cpu = x ; then
2489 case ${target} in
2490 i386-*-*)
2491 with_cpu=i386
2492 ;;
2493 i486-*-*)
2494 with_cpu=i486
2495 ;;
2496 i586-*-*)
2497 case ${target_noncanonical} in
2498 k6_2-*)
2499 with_cpu=k6-2
2500 ;;
2501 k6_3-*)
2502 with_cpu=k6-3
2503 ;;
2504 k6-*)
2505 with_cpu=k6
2506 ;;
2507 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2508 with_cpu=pentium-mmx
2509 ;;
2510 *)
2511 with_cpu=pentium
2512 ;;
2513 esac
2514 ;;
2515 i686-*-* | i786-*-*)
2516 case ${target_noncanonical} in
2517 amdfam10-*|barcelona-*)
2518 with_cpu=amdfam10
2519 ;;
2520 k8-*|opteron-*|athlon_64-*)
2521 with_cpu=k8
2522 ;;
2523 athlon_xp-*|athlon_mp-*|athlon_4-*)
2524 with_cpu=athlon-4
2525 ;;
2526 athlon_tbird-*|athlon-*)
2527 with_cpu=athlon
2528 ;;
2529 geode-*)
2530 with_cpu=geode
2531 ;;
2532 pentium2-*)
2533 with_cpu=pentium2
2534 ;;
2535 pentium3-*|pentium3m-*)
2536 with_cpu=pentium3
2537 ;;
2538 pentium4-*|pentium4m-*)
2539 with_cpu=pentium4
2540 ;;
2541 prescott-*)
2542 with_cpu=prescott
2543 ;;
2544 nocona-*)
2545 with_cpu=nocona
2546 ;;
2547 core2-*)
2548 with_cpu=core2
2549 ;;
2550 pentium_m-*)
2551 with_cpu=pentium-m
2552 ;;
2553 pentiumpro-*)
2554 with_cpu=pentiumpro
2555 ;;
2556 *)
2557 with_cpu=generic
2558 ;;
2559 esac
2560 ;;
2561 x86_64-*-*)
2562 case ${target_noncanonical} in
2563 amdfam10-*|barcelona-*)
2564 with_cpu=amdfam10
2565 ;;
2566 k8-*|opteron-*|athlon_64-*)
2567 with_cpu=k8
2568 ;;
2569 nocona-*)
2570 with_cpu=nocona
2571 ;;
2572 core2-*)
2573 with_cpu=core2
2574 ;;
2575 *)
2576 with_cpu=generic
2577 ;;
2578 esac
2579 ;;
2580 alphaev6[78]*-*-*)
2581 with_cpu=ev67
2582 ;;
2583 alphaev6*-*-*)
2584 with_cpu=ev6
2585 ;;
2586 alphapca56*-*-*)
2587 with_cpu=pca56
2588 ;;
2589 alphaev56*-*-*)
2590 with_cpu=ev56
2591 ;;
2592 alphaev5*-*-*)
2593 with_cpu=ev5
2594 ;;
2595 frv-*-*linux* | frv400-*-*linux*)
2596 with_cpu=fr400
2597 ;;
2598 frv550-*-*linux*)
2599 with_cpu=fr550
2600 ;;
2601 m68k*-*-*)
2602 case "$with_arch" in
2603 "cf")
2604 with_cpu=${default_cf_cpu}
2605 ;;
2606 "" | "m68k")
2607 with_cpu=m${default_m68k_cpu}
2608 ;;
2609 esac
2610 ;;
2611 mips*-*-vxworks)
2612 with_arch=mips2
2613 ;;
2614 sparc*-*-*)
2615 with_cpu="`echo ${target} | sed 's/-.*$//'`"
2616 ;;
2617 esac
2618
2619 # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
2620 case ${target} in
2621 i[34567]86-*-*|x86_64-*-*)
2622 if test x$with_cpu != x; then
2623 if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
2624 if test x$with_cpu_32 = x; then
2625 with_cpu_32=$with_cpu
2626 fi
2627 if test x$with_cpu_64 = x; then
2628 with_cpu_64=$with_cpu
2629 fi
2630 with_cpu=
2631 fi
2632 fi
2633 ;;
2634 esac
2635 fi
2636
2637 # Similarly for --with-schedule.
2638 if test x$with_schedule = x; then
2639 case ${target} in
2640 hppa1*)
2641 # Override default PA8000 scheduling model.
2642 with_schedule=7100LC
2643 ;;
2644 esac
2645 fi
2646
2647 # Validate and mark as valid any --with options supported
2648 # by this target. In order to use a particular --with option
2649 # you must list it in supported_defaults; validating the value
2650 # is optional. This case statement should set nothing besides
2651 # supported_defaults.
2652
2653 supported_defaults=
2654 case "${target}" in
2655 alpha*-*-*)
2656 supported_defaults="cpu tune"
2657 for which in cpu tune; do
2658 eval "val=\$with_$which"
2659 case "$val" in
2660 "" \
2661 | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
2662 | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
2663 | 21264a)
2664 ;;
2665 *)
2666 echo "Unknown CPU used in --with-$which=$val" 1>&2
2667 exit 1
2668 ;;
2669 esac
2670 done
2671 ;;
2672
2673 arm*-*-*)
2674 supported_defaults="arch cpu float tune fpu abi mode"
2675 for which in cpu tune; do
2676 # See if it matches any of the entries in arm-cores.def
2677 eval "val=\$with_$which"
2678 if [ x"$val" = x ] \
2679 || grep "^ARM_CORE(\"$val\"," \
2680 ${srcdir}/config/arm/arm-cores.def \
2681 > /dev/null; then
2682 # Ok
2683 new_val=`grep "^ARM_CORE(\"$val\"," \
2684 ${srcdir}/config/arm/arm-cores.def | \
2685 sed -e 's/^[^,]*,[ ]*//' | \
2686 sed -e 's/,.*$//'`
2687 eval "target_${which}_cname=$new_val"
2688 echo "For $val real value is $new_val"
2689 true
2690 else
2691 echo "Unknown CPU used in --with-$which=$val" 1>&2
2692 exit 1
2693 fi
2694 done
2695
2696 case "$with_arch" in
2697 "" \
2698 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
2699 | armv5te | armv6j |armv6k | armv6z | armv6zk | armv6-m \
2700 | armv7 | armv7-a | armv7-r | armv7-m \
2701 | iwmmxt | ep9312)
2702 # OK
2703 ;;
2704 *)
2705 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
2706 exit 1
2707 ;;
2708 esac
2709
2710 case "$with_float" in
2711 "" \
2712 | soft | hard | softfp)
2713 # OK
2714 ;;
2715 *)
2716 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2717 exit 1
2718 ;;
2719 esac
2720
2721 case "$with_fpu" in
2722 "" \
2723 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | neon )
2724 # OK
2725 ;;
2726 *)
2727 echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
2728 exit 1
2729 ;;
2730 esac
2731
2732 case "$with_abi" in
2733 "" \
2734 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
2735 #OK
2736 ;;
2737 *)
2738 echo "Unknown ABI used in --with-abi=$with_abi"
2739 exit 1
2740 ;;
2741 esac
2742
2743 case "$with_mode" in
2744 "" \
2745 | arm | thumb )
2746 #OK
2747 ;;
2748 *)
2749 echo "Unknown mode used in --with-mode=$with_mode"
2750 exit 1
2751 ;;
2752 esac
2753
2754 if test "x$with_arch" != x && test "x$with_cpu" != x; then
2755 echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
2756 fi
2757 ;;
2758
2759 fr*-*-*linux*)
2760 supported_defaults=cpu
2761 case "$with_cpu" in
2762 fr400) ;;
2763 fr550) ;;
2764 *)
2765 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
2766 exit 1
2767 ;;
2768 esac
2769 ;;
2770
2771 fido-*-* | m68k*-*-*)
2772 supported_defaults="arch cpu"
2773 case "$with_arch" in
2774 "" | "m68k"| "cf")
2775 m68k_arch_family="$with_arch"
2776 ;;
2777 *)
2778 echo "Invalid --with-arch=$with_arch" 1>&2
2779 exit 1
2780 ;;
2781 esac
2782
2783 # We always have a $with_cpu setting here.
2784 case "$with_cpu" in
2785 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
2786 m68k_cpu_ident=$with_cpu
2787 ;;
2788 "m68020-40")
2789 m68k_cpu_ident=m68020
2790 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
2791 ;;
2792 "m68020-60")
2793 m68k_cpu_ident=m68020
2794 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
2795 ;;
2796 *)
2797 # We need the C identifier rather than the string.
2798 m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
2799 'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
2800 $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
2801 ${srcdir}/config/m68k/m68k-devices.def`
2802 if [ x"$m68k_cpu_ident" = x ] ; then
2803 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
2804 exit 1
2805 fi
2806 with_cpu="mcpu=$with_cpu"
2807 ;;
2808 esac
2809 ;;
2810
2811 hppa*-*-*)
2812 supported_defaults="arch schedule"
2813
2814 case "$with_arch" in
2815 "" | 1.0 | 1.1 | 2.0)
2816 # OK
2817 ;;
2818 *)
2819 echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
2820 exit 1
2821 ;;
2822 esac
2823
2824 case "$with_schedule" in
2825 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
2826 # OK
2827 ;;
2828 *)
2829 echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
2830 exit 1
2831 ;;
2832 esac
2833 ;;
2834
2835 i[34567]86-*-* | x86_64-*-*)
2836 supported_defaults="arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
2837 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
2838 eval "val=\$with_$which"
2839 case ${val} in
2840 i386 | i486 \
2841 | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
2842 | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
2843 | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
2844 | athlon-4 | athlon-xp | athlon-mp | geode \
2845 | prescott | pentium-m | pentium4m | pentium3m)
2846 case "${target}" in
2847 x86_64-*-*)
2848 case "x$which" in
2849 *_32)
2850 ;;
2851 *)
2852 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
2853 exit 1
2854 ;;
2855 esac
2856 ;;
2857 esac
2858 # OK
2859 ;;
2860 "" | amdfam10 | barcelona | k8 | opteron | athlon64 | athlon-fx | nocona | core2 | atom | generic)
2861 # OK
2862 ;;
2863 *)
2864 echo "Unknown CPU given in --with-$which=$val." 1>&2
2865 exit 1
2866 ;;
2867 esac
2868 done
2869 ;;
2870
2871 mips*-*-*)
2872 supported_defaults="abi arch float tune divide llsc mips-plt"
2873
2874 case ${with_float} in
2875 "" | soft | hard)
2876 # OK
2877 ;;
2878 *)
2879 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
2880 exit 1
2881 ;;
2882 esac
2883
2884 case ${with_abi} in
2885 "" | 32 | o64 | n32 | 64 | eabi)
2886 # OK
2887 ;;
2888 *)
2889 echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
2890 exit 1
2891 ;;
2892 esac
2893
2894 case ${with_divide} in
2895 "" | breaks | traps)
2896 # OK
2897 ;;
2898 *)
2899 echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
2900 exit 1
2901 ;;
2902 esac
2903
2904 case ${with_llsc} in
2905 yes)
2906 with_llsc=llsc
2907 ;;
2908 no)
2909 with_llsc="no-llsc"
2910 ;;
2911 "")
2912 # OK
2913 ;;
2914 *)
2915 echo "Unknown llsc type used in --with-llsc" 1>&2
2916 exit 1
2917 ;;
2918 esac
2919
2920 case ${with_mips_plt} in
2921 yes)
2922 with_mips_plt=plt
2923 ;;
2924 no)
2925 with_mips_plt=no-plt
2926 ;;
2927 "")
2928 ;;
2929 *)
2930 echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
2931 exit 1
2932 ;;
2933 esac
2934 ;;
2935
2936 powerpc*-*-* | rs6000-*-*)
2937 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
2938
2939 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
2940 eval "val=\$with_$which"
2941 case ${val} in
2942 default32 | default64)
2943 case $which in
2944 cpu | tune)
2945 ;;
2946 *)
2947 echo "$val only valid for --with-cpu and --with-tune." 1>&2
2948 exit 1
2949 ;;
2950 esac
2951 with_which="with_$which"
2952 eval $with_which=
2953 ;;
2954 405cr)
2955 tm_defines="${tm_defines} CONFIG_PPC405CR"
2956 eval "with_$which=405"
2957 ;;
2958 "" | common \
2959 | power | power[234567] | power6x | powerpc | powerpc64 \
2960 | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
2961 | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
2962 | 505 | 601 | 602 | 603 | 603e | ec603e | 604 \
2963 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
2964 | e300c[23] | 854[08] | e500mc \
2965 | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
2966 # OK
2967 ;;
2968 *)
2969 echo "Unknown cpu used in --with-$which=$val." 1>&2
2970 exit 1
2971 ;;
2972 esac
2973 done
2974 ;;
2975
2976 s390*-*-*)
2977 supported_defaults="arch mode tune"
2978
2979 for which in arch tune; do
2980 eval "val=\$with_$which"
2981 case ${val} in
2982 "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10)
2983 # OK
2984 ;;
2985 *)
2986 echo "Unknown cpu used in --with-$which=$val." 1>&2
2987 exit 1
2988 ;;
2989 esac
2990 done
2991
2992 case ${with_mode} in
2993 "" | esa | zarch)
2994 # OK
2995 ;;
2996 *)
2997 echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
2998 exit 1
2999 ;;
3000 esac
3001 ;;
3002
3003 sh[123456ble]-*-* | sh-*-*)
3004 supported_defaults="cpu"
3005 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
3006 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
3007 # OK
3008 ;;
3009 m2a | m2a-single | m2a-single-only | m2a-nofpu)
3010 ;;
3011 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
3012 ;;
3013 *)
3014 echo "Unknown CPU used in --with-cpu=$with_cpu, known values:" 1>&2
3015 echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
3016 echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
3017 echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
3018 exit 1
3019 ;;
3020 esac
3021 ;;
3022 sparc*-*-*)
3023 supported_defaults="cpu float tune"
3024
3025 for which in cpu tune; do
3026 eval "val=\$with_$which"
3027 case ${val} in
3028 "" | sparc | sparcv9 | sparc64 | sparc86x \
3029 | v7 | cypress | v8 | supersparc | sparclite | f930 \
3030 | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
3031 | v9 | ultrasparc | ultrasparc3 | niagara | niagara2)
3032 # OK
3033 ;;
3034 *)
3035 echo "Unknown cpu used in --with-$which=$val" 1>&2
3036 exit 1
3037 ;;
3038 esac
3039 done
3040
3041 case ${with_float} in
3042 "" | soft | hard)
3043 # OK
3044 ;;
3045 *)
3046 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
3047 exit 1
3048 ;;
3049 esac
3050 ;;
3051
3052 spu-*-*)
3053 supported_defaults="arch tune"
3054
3055 for which in arch tune; do
3056 eval "val=\$with_$which"
3057 case ${val} in
3058 "" | cell | celledp)
3059 # OK
3060 ;;
3061 *)
3062 echo "Unknown cpu used in --with-$which=$val." 1>&2
3063 exit 1
3064 ;;
3065 esac
3066 done
3067 ;;
3068
3069 v850*-*-*)
3070 supported_defaults=cpu
3071 case ${with_cpu} in
3072 "" | v850e | v850e1)
3073 # OK
3074 ;;
3075 *)
3076 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3077 exit 1
3078 ;;
3079 esac
3080 ;;
3081 esac
3082
3083 # Set some miscellaneous flags for particular targets.
3084 target_cpu_default2=
3085 case ${target} in
3086 alpha*-*-*)
3087 if test x$gas = xyes
3088 then
3089 target_cpu_default2="MASK_GAS"
3090 fi
3091 ;;
3092
3093 arm*-*-*)
3094 if test x$target_cpu_cname = x
3095 then
3096 target_cpu_default2=TARGET_CPU_generic
3097 else
3098 target_cpu_default2=TARGET_CPU_$target_cpu_cname
3099 fi
3100 ;;
3101
3102 hppa*-*-*)
3103 target_cpu_default2="MASK_BIG_SWITCH"
3104 if test x$gas = xyes
3105 then
3106 target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
3107 fi
3108 ;;
3109
3110 fido*-*-* | m68k*-*-*)
3111 target_cpu_default2=$m68k_cpu_ident
3112 if [ x"$m68k_arch_family" != x ]; then
3113 tmake_file="m68k/t-$m68k_arch_family $tmake_file"
3114 fi
3115 ;;
3116
3117 i[34567]86-*-darwin* | x86_64-*-darwin*)
3118 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3119 ;;
3120 i[34567]86-*-linux* | x86_64-*-linux* | i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu)
3121 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux"
3122 ;;
3123 ia64*-*-linux*)
3124 tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp"
3125 ;;
3126
3127 mips*-*-*)
3128 if test x$gnu_ld = xyes
3129 then
3130 target_cpu_default2="MASK_SPLIT_ADDRESSES"
3131 fi
3132 case ${target} in
3133 mips*el-*-*)
3134 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
3135 ;;
3136 esac
3137 if test "x$enable_gofast" = xyes
3138 then
3139 tm_defines="US_SOFTWARE_GOFAST $tm_defines"
3140 tmake_file="mips/t-gofast $tmake_file"
3141 else
3142 tmake_file="mips/t-mips $tmake_file"
3143 fi
3144 ;;
3145
3146 powerpc*-*-* | rs6000-*-*)
3147 # FIXME: The PowerPC port uses the value set at compile time,
3148 # although it's only cosmetic.
3149 if test "x$with_cpu" != x
3150 then
3151 target_cpu_default2="\\\"$with_cpu\\\""
3152 fi
3153 out_file=rs6000/rs6000.c
3154 c_target_objs="${c_target_objs} rs6000-c.o"
3155 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
3156 tmake_file="rs6000/t-rs6000 ${tmake_file}"
3157
3158 if test x$enable_e500_double = xyes
3159 then
3160 tm_file="$tm_file rs6000/e500-double.h"
3161 fi
3162 ;;
3163
3164 sh[123456ble]*-*-* | sh-*-*)
3165 c_target_objs="${c_target_objs} sh-c.o"
3166 cxx_target_objs="${cxx_target_objs} sh-c.o"
3167 ;;
3168
3169 sparc*-*-*)
3170 # Some standard aliases.
3171 case x$with_cpu in
3172 xsparc)
3173 with_cpu=v7
3174 ;;
3175 xsparcv9 | xsparc64)
3176 with_cpu=v9
3177 ;;
3178 esac
3179
3180 # The SPARC port checks this value at compile-time.
3181 target_cpu_default2="TARGET_CPU_$with_cpu"
3182 ;;
3183 v850*-*-*)
3184 # FIXME: The v850 is "special" in that it does not support
3185 # runtime CPU selection, only --with-cpu.
3186 case "x$with_cpu" in
3187 x)
3188 ;;
3189 xv850e)
3190 target_cpu_default2="TARGET_CPU_$with_cpu"
3191 ;;
3192 esac
3193 ;;
3194 esac
3195
3196 t=
3197 all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu divide llsc mips-plt"
3198 for option in $all_defaults
3199 do
3200 eval "val=\$with_"`echo $option | sed s/-/_/g`
3201 if test -n "$val"; then
3202 case " $supported_defaults " in
3203 *" $option "*)
3204 ;;
3205 *)
3206 echo "This target does not support --with-$option." 2>&1
3207 echo "Valid --with options are: $supported_defaults" 2>&1
3208 exit 1
3209 ;;
3210 esac
3211
3212 if test "x$t" = x
3213 then
3214 t="{ \"$option\", \"$val\" }"
3215 else
3216 t="${t}, { \"$option\", \"$val\" }"
3217 fi
3218 fi
3219 done
3220
3221 if test "x$t" = x
3222 then
3223 configure_default_options="{ { NULL, NULL} }"
3224 else
3225 configure_default_options="{ ${t} }"
3226 fi
3227
3228 if test "$target_cpu_default2" != ""
3229 then
3230 if test "$target_cpu_default" != ""
3231 then
3232 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3233 else
3234 target_cpu_default=$target_cpu_default2
3235 fi
3236 fi