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