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