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