]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config.gcc
* MAINTAINERS: Update myself as score backend maintainer, updatemy e-mail address.
[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)
f3449a3c 2309 tm_file="dbxelf.h elfos.h score/elf.h score/score.h newlib-stdint.h"
3dbfe3e4 2310 tmake_file=score/t-score-elf
c0f96d15 2311 extra_objs="score7.o score3.o"
3dbfe3e4 2312 ;;
6af9f7ea 2313sh-*-elf* | sh[12346l]*-*-elf* | \
db281f5a 2314sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
ccf1c0f1 2315 sh-*-linux* | sh[2346lbe]*-*-linux* | \
07168dd9 2316 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
2317 sh64-*-netbsd* | sh64l*-*-netbsd*)
2318 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2319 if test x${with_endian} = x; then
2320 case ${target} in
2321 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2322 shbe-*-* | sheb-*-*) with_endian=big,little ;;
2323 sh[1234]l* | sh[34]*-*-linux*) with_endian=little ;;
2324 shl* | sh64l* | sh*-*-linux* | \
2325 sh5l* | sh-superh-elf) with_endian=little,big ;;
2326 sh[1234]*-*-*) with_endian=big ;;
2327 *) with_endian=big,little ;;
2328 esac
2329 fi
f555bf81 2330 # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2331 # First word : the default endian.
2332 # Second word: the secondary endian (optional).
07168dd9 2333 case ${with_endian} in
f555bf81 2334 big) TM_ENDIAN_CONFIG=mb ;;
2335 little) TM_ENDIAN_CONFIG=ml ;;
2336 big,little) TM_ENDIAN_CONFIG="mb ml" ;;
2337 little,big) TM_ENDIAN_CONFIG="ml mb" ;;
07168dd9 2338 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
2339 esac
2340 case ${with_endian} in
2341 little*) tm_file="sh/little.h ${tm_file}" ;;
2342 esac
9bc320a5 2343 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h"
09c6646e 2344 case ${target} in
07168dd9 2345 sh*-*-linux*) tmake_file="${tmake_file} sh/t-linux"
deb14f24 2346 tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
f466b0a0 2347 sh*-*-netbsd*)
2348 tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2349 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2350
2351 ;;
cfcf8539 2352 sh*-superh-elf) if test x$with_libgloss != xno; then
2353 with_libgloss=yes
2354 tm_file="${tm_file} sh/newlib.h"
2355 fi
0e6b6360 2356 tm_file="${tm_file} sh/embed-elf.h"
cfcf8539 2357 tm_file="${tm_file} sh/superh.h"
2358 tmake_file="${tmake_file} sh/t-superh"
2359 extra_options="${extra_options} sh/superh.opt" ;;
65a1f1e9 2360 *) if test x$with_newlib = xyes \
2361 && test x$with_libgloss = xyes; then
2362 tm_file="${tm_file} sh/newlib.h"
2363 fi
2364 tm_file="${tm_file} sh/embed-elf.h" ;;
07168dd9 2365 esac
2366 case ${target} in
2367 sh5*-*-netbsd*)
2368 # SHmedia, 32-bit ABI
2369 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
2370 ;;
2371 sh64*-netbsd*)
2372 # SHmedia, 64-bit ABI
2373 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
2374 ;;
2375 *-*-netbsd)
2376 tmake_file="${tmake_file} sh/t-netbsd"
2377 ;;
2378 sh64*-*-linux*)
2379 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
2380 tm_file="${tm_file} sh/sh64.h"
2381 extra_headers="shmedia.h ushmedia.h sshmedia.h"
2382 ;;
febf5bcd 2383 sh64*)
2384 tmake_file="${tmake_file} sh/t-sh64"
2385 tm_file="${tm_file} sh/sh64.h"
50147a3f 2386 if test x$with_newlib = xyes; then
2387 tm_file="${tm_file} newlib-stdint.h"
2388 fi
febf5bcd 2389 extra_headers="shmedia.h ushmedia.h sshmedia.h"
febf5bcd 2390 ;;
db281f5a 2391 *-*-symbianelf*)
2392 tmake_file="sh/t-symbian"
2393 tm_file="sh/symbian-pre.h sh/little.h ${tm_file} sh/symbian-post.h"
6f88e480 2394 c_target_objs="symbian-base.o symbian-c.o"
2395 cxx_target_objs="symbian-base.o symbian-cxx.o"
db281f5a 2396 extra_parts="crt1.o crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
3ebc7dec 2397 ;;
f3449a3c 2398 *-*-elf*)
2399 tm_file="${tm_file} newlib-stdint.h"
2400 ;;
493914a8 2401 esac
07168dd9 2402 # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2403 case `echo ${target} | sed 's/e[lb]-/-/'` in
2404 sh64*-*-netbsd*) sh_cpu_target=sh5-64media ;;
2405 sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
9435e831 2406 sh4a_single_only*) sh_cpu_target=sh4a-single-only ;;
2407 sh4a_single*) sh_cpu_target=sh4a-single ;;
2408 sh4a_nofpu*) sh_cpu_target=sh4a-nofpu ;;
2409 sh4al) sh_cpu_target=sh4al ;;
2410 sh4a*) sh_cpu_target=sh4a ;;
07168dd9 2411 sh4_single_only*) sh_cpu_target=sh4-single-only ;;
2412 sh4_single*) sh_cpu_target=sh4-single ;;
2413 sh4_nofpu*) sh_cpu_target=sh4-nofpu ;;
2414 sh4* | sh-superh-*) sh_cpu_target=sh4 ;;
2415 sh3e*) sh_cpu_target=sh3e ;;
2416 sh*-*-netbsd* | sh3*) sh_cpu_target=sh3 ;;
7105fb72 2417 sh2a_single_only*) sh_cpu_target=sh2a-single-only ;;
2418 sh2a_single*) sh_cpu_target=sh2a-single ;;
2419 sh2a_nofpu*) sh_cpu_target=sh2a-nofpu ;;
2420 sh2a*) sh_cpu_target=sh2a ;;
07168dd9 2421 sh2e*) sh_cpu_target=sh2e ;;
2422 sh2*) sh_cpu_target=sh2 ;;
2423 *) sh_cpu_target=sh1 ;;
aa76b2b5 2424 esac
65a1f1e9 2425 # did the user say --without-fp ?
2426 if test x$with_fp = xno; then
2427 case ${sh_cpu_target} in
2428 sh5-*media) sh_cpu_target=${sh_cpu_target}-nofpu ;;
2429 sh4al | sh1) ;;
2430 sh4a* ) sh_cpu_target=sh4a-nofpu ;;
2431 sh4*) sh_cpu_target=sh4-nofpu ;;
2432 sh3*) sh_cpu_target=sh3 ;;
2433 sh2a*) sh_cpu_target=sh2a-nofpu ;;
2434 sh2*) sh_cpu_target=sh2 ;;
2435 *) echo --without-fp not available for $target: ignored
2436 esac
2437 tm_defines="$tm_defines STRICT_NOFPU=1"
2438 fi
07168dd9 2439 sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2440 case $sh_cpu_default in
2441 sh5-64media-nofpu | sh5-64media | \
2442 sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
7105fb72 2443 sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
9435e831 2444 sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
99b0f6d9 2445 sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
eb4e5153 2446 sh3e | sh3 | sh2e | sh2 | sh1) ;;
07168dd9 2447 "") sh_cpu_default=${sh_cpu_target} ;;
2448 *) echo "with_cpu=$with_cpu not supported"; exit 1 ;;
febf5bcd 2449 esac
07168dd9 2450 sh_multilibs=${with_multilib_list}
f555bf81 2451 if test "$sh_multilibs" = "default" ; then
07168dd9 2452 case ${target} in
65a1f1e9 2453 sh64-superh-linux* | \
07168dd9 2454 sh[1234]*) sh_multilibs=${sh_cpu_target} ;;
2455 sh64* | sh5*) sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
2456 sh-superh-*) sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
2457 sh*-*-linux*) sh_multilibs=m1,m3e,m4 ;;
2458 sh*-*-netbsd*) sh_multilibs=m3,m3e,m4 ;;
7105fb72 2459 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
07168dd9 2460 esac
65a1f1e9 2461 if test x$with_fp = xno; then
2462 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`"
2463 fi
07168dd9 2464 fi
3a6994f8 2465 target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
07168dd9 2466 tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
f555bf81 2467 tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
b56481ad 2468 sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^[Ss][Hh]/m/' -e 's/ [Ss][Hh]/ m/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
07168dd9 2469 for sh_multilib in ${sh_multilibs}; do
2470 case ${sh_multilib} in
f555bf81 2471 m1 | m2 | m2e | m3 | m3e | \
2472 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2473 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
2474 m2a | m2a-single | m2a-single-only | m2a-nofpu | \
2475 m5-64media | m5-64media-nofpu | \
2476 m5-32media | m5-32media-nofpu | \
2477 m5-compact | m5-compact-nofpu)
2478 # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2479 # It is passed to MULTIILIB_OPTIONS verbatim.
2480 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2481 tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
07168dd9 2482 ;;
f555bf81 2483 \!*) # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2484 # It is passed the MULTILIB_EXCEPTIONS verbatim.
2485 TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
07168dd9 2486 *)
2487 echo "with_multilib_list=${sh_multilib} not supported."
2488 exit 1
2489 ;;
2490 esac
2491 done
f555bf81 2492 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
3a6994f8 2493 if test x${enable_incomplete_targets} = xyes ; then
156fac8b 2494 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 2495 fi
fa22494c 2496 tm_file="$tm_file ./sysroot-suffix.h"
2497 tmake_file="$tmake_file t-sysroot-suffix"
87e19636 2498 ;;
26f6dfe2 2499sh-*-rtems*)
0e0debcf 2500 tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
9bc320a5 2501 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
26f6dfe2 2502 ;;
d9799238 2503sh-wrs-vxworks)
2504 tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
9bc320a5 2505 tm_file="${tm_file} elfos.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
d9799238 2506 ;;
bb607926 2507sparc-*-elf*)
1bb0ad55 2508 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp-elf.h"
b0168e11 2509 case ${target} in
2510 *-leon-*)
2511 tmake_file="sparc/t-leon"
2512 ;;
2513 *-leon[3-9]*)
2514 tmake_file="sparc/t-leon3"
2515 ;;
2516 *)
2517 tmake_file="sparc/t-elf"
2518 ;;
2519 esac
2520 tmake_file="${tmake_file} sparc/t-crtfm"
2521 extra_parts="crtbegin.o crtend.o"
bb607926 2522 ;;
a711a067 2523sparc-*-rtems*)
1bb0ad55 2524 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
a711a067 2525 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
b0168e11 2526 extra_parts="crtbegin.o crtend.o"
a711a067 2527 ;;
2528sparc-*-linux*)
deb14f24 2529 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h"
a9341855 2530 extra_options="${extra_options} sparc/long-double-switch.opt"
b0168e11 2531 case ${target} in
2532 *-leon-*)
2533 tmake_file="${tmake_file} sparc/t-leon"
2534 ;;
2535 *-leon[3-9]*)
2536 tmake_file="${tmake_file} sparc/t-leon3"
2537 ;;
2538 *)
2539 tmake_file="${tmake_file} sparc/t-linux"
2540 ;;
2541 esac
1168681b 2542 if test x$enable_targets = xall; then
2543 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
64c6f17e 2544 tmake_file="${tmake_file} sparc/t-linux64"
1168681b 2545 else
2546 tm_file="${tm_file} sparc/linux.h"
1168681b 2547 fi
64c6f17e 2548 tmake_file="${tmake_file} sparc/t-crtfm"
bb607926 2549 ;;
a711a067 2550sparc-*-netbsdelf*)
1bb0ad55 2551 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
f466b0a0 2552 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
a711a067 2553 extra_options="${extra_options} sparc/long-double-switch.opt"
9afa4711 2554 ;;
8acfe9c6 2555sparc*-*-solaris2*)
1bb0ad55 2556 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sol2.h"
517cabaa 2557 case ${target} in
8acfe9c6 2558 *-*-solaris2.1[0-9]*)
517cabaa 2559 tm_file="${tm_file} sol2-10.h"
f3449a3c 2560 use_gcc_stdint=wrap
2561 ;;
8acfe9c6 2562 *)
f3449a3c 2563 use_gcc_stdint=provide
517cabaa 2564 ;;
2565 esac
8acfe9c6 2566 tm_file="${tm_file} sparc/sol2.h"
8fde03ba 2567 case ${target} in
8acfe9c6 2568 sparc64-*-* | sparcv9-*-*)
2569 tm_file="${tm_file} sparc/sol2-64.h"
f3449a3c 2570 ;;
8acfe9c6 2571 *)
2572 test x$with_cpu != x || with_cpu=v9
517cabaa 2573 ;;
8fde03ba 2574 esac
8acfe9c6 2575 tm_file="${tm_file} sparc/sol2-bi.h"
7d6171f2 2576 if test x$gas = xyes; then
16528046 2577 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
7d6171f2 2578 fi
16528046 2579 if test x$gnu_ld = xyes; then
9232c3b6 2580 tm_file="${tm_file} sol2-gld.h sparc/sol2-gld-bi.h"
16528046 2581 fi
2582 tm_file="${tm_file} tm-dwarf2.h"
2583 tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
bb607926 2584 if test x$gnu_ld = xyes; then
32e8a7fc 2585 tmake_file="$tmake_file t-slibgcc-elf-ver"
bb607926 2586 else
32e8a7fc 2587 tmake_file="$tmake_file t-slibgcc-sld"
bb607926 2588 fi
7d070520 2589 if test x$gas = xyes; then
2590 tm_file="usegas.h ${tm_file}"
2591 fi
1e9af880 2592 c_target_objs="sol2-c.o"
2593 cxx_target_objs="sol2-c.o"
e02a1225 2594 extra_objs="sol2.o"
2595 tm_p_file="${tm_p_file} sol2-protos.h"
d5a614bc 2596 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
334c8279 2597 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
8fde03ba 2598 "":yes:* | yes:yes:* )
6af9f7ea 2599 thread_file=posix
8fde03ba 2600 ;;
2601 "":*:yes | yes:*:yes )
2602 thread_file=solaris
2603 ;;
334c8279 2604 esac
bb607926 2605 ;;
723e1902 2606sparc-wrs-vxworks)
1bb0ad55 2607 tm_file="${tm_file} elfos.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
723e1902 2608 tmake_file="${tmake_file} sparc/t-vxworks"
2609 ;;
bb607926 2610sparc64-*-elf*)
1bb0ad55 2611 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
a9341855 2612 extra_options="${extra_options} sparc/little-endian.opt"
8c9facdb 2613 tmake_file="${tmake_file} sparc/t-crtfm"
bb607926 2614 extra_parts="crtbegin.o crtend.o"
2615 ;;
a711a067 2616sparc64-*-rtems*)
1bb0ad55 2617 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h sparc/rtemself.h rtems.h"
a711a067 2618 extra_options="${extra_options} sparc/little-endian.opt"
2619 tmake_file="${tmake_file} sparc/t-crtfm t-rtems"
2620 extra_parts="crtbegin.o crtend.o"
2621 ;;
2622sparc64-*-linux*)
deb14f24 2623 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 2624 extra_options="${extra_options} sparc/long-double-switch.opt"
2625 tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
2626 ;;
cf481f89 2627sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2628 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
a9341855 2629 extra_options="${extra_options} sparc/long-double-switch.opt"
8c9facdb 2630 tmake_file="${tmake_file} sparc/t-crtfm"
cf481f89 2631 case "x$with_cpu" in
68345096 2632 xultrasparc) ;;
cf481f89 2633 x) with_cpu=ultrasparc ;;
2634 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2635 esac
2636 ;;
1897a3df 2637sparc64-*-netbsd*)
1897a3df 2638 tm_file="sparc/biarch64.h ${tm_file}"
1bb0ad55 2639 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
f466b0a0 2640 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
a9341855 2641 extra_options="${extra_options} sparc/long-double-switch.opt"
2642 tmake_file="${tmake_file} sparc/t-netbsd64"
1897a3df 2643 ;;
a711a067 2644sparc64-*-openbsd*)
1bb0ad55 2645 tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h"
a711a067 2646 tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h sparc/openbsd64.h"
1a0fb050 2647 extra_options="${extra_options} openbsd.opt"
a711a067 2648 extra_options="${extra_options} sparc/little-endian.opt"
2649 gas=yes gnu_ld=yes
2650 with_cpu=ultrasparc
2651 ;;
644459d0 2652spu-*-elf*)
f3449a3c 2653 tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
644459d0 2654 tmake_file="spu/t-spu-elf"
6cf5579e 2655 extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h spu_cache.h"
644459d0 2656 extra_modes=spu/spu-modes.def
2657 c_target_objs="${c_target_objs} spu-c.o"
2658 cxx_target_objs="${cxx_target_objs} spu-c.o"
2659 ;;
00b114bf 2660v850e1-*-*)
2661 target_cpu_default="TARGET_CPU_v850e1"
156edce8 2662 tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
00b114bf 2663 tm_p_file=v850/v850-protos.h
2664 tmake_file=v850/t-v850e
2665 md_file=v850/v850.md
65b688d7 2666 extra_modes=v850/v850-modes.def
00b114bf 2667 out_file=v850/v850.c
bfb701b0 2668 extra_options="${extra_options} v850/v850.opt"
00b114bf 2669 if test x$stabs = xyes
2670 then
2671 tm_file="${tm_file} dbx.h"
2672 fi
2673 use_collect2=no
2674 c_target_objs="v850-c.o"
2675 cxx_target_objs="v850-c.o"
f3449a3c 2676 use_gcc_stdint=wrap
00b114bf 2677 ;;
5dd3389c 2678v850e-*-*)
2679 target_cpu_default="TARGET_CPU_v850e"
156edce8 2680 tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
5dd3389c 2681 tm_p_file=v850/v850-protos.h
c7feb70c 2682 tmake_file=v850/t-v850e
5dd3389c 2683 md_file=v850/v850.md
65b688d7 2684 extra_modes=v850/v850-modes.def
5dd3389c 2685 out_file=v850/v850.c
bfb701b0 2686 extra_options="${extra_options} v850/v850.opt"
5dd3389c 2687 if test x$stabs = xyes
2688 then
2689 tm_file="${tm_file} dbx.h"
2690 fi
2691 use_collect2=no
2692 c_target_objs="v850-c.o"
2693 cxx_target_objs="v850-c.o"
f3449a3c 2694 use_gcc_stdint=wrap
5dd3389c 2695 ;;
bb607926 2696v850-*-*)
2697 target_cpu_default="TARGET_CPU_generic"
156edce8 2698 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
bb607926 2699 tmake_file=v850/t-v850
2700 if test x$stabs = xyes
2701 then
2702 tm_file="${tm_file} dbx.h"
2703 fi
2704 use_collect2=no
e101acea 2705 c_target_objs="v850-c.o"
2706 cxx_target_objs="v850-c.o"
f3449a3c 2707 use_gcc_stdint=wrap
bb607926 2708 ;;
6718899e 2709vax-*-linux*)
deb14f24 2710 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h vax/elf.h vax/linux.h"
6b9d66b3 2711 extra_options="${extra_options} vax/elf.opt"
fdeaa5f1 2712 tmake_file="${tmake_file} vax/t-linux"
6718899e 2713 ;;
f470dade 2714vax-*-netbsdelf*)
83accbc0 2715 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
6b9d66b3 2716 extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
f470dade 2717 ;;
bb607926 2718vax-*-netbsd*)
4ace673e 2719 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
f466b0a0 2720 extra_options="${extra_options} netbsd.opt"
bb607926 2721 tmake_file=t-netbsd
9a33b00e 2722 extra_parts=""
87a1ff8e 2723 use_collect2=yes
bb607926 2724 ;;
2725vax-*-openbsd*)
8e6600a1 2726 tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-pthread.h vax/openbsd.h"
1a0fb050 2727 extra_options="${extra_options} openbsd.opt"
bb607926 2728 use_collect2=yes
2729 ;;
9b954fed 2730xstormy16-*-elf)
2731 # For historical reasons, the target files omit the 'x'.
2487a409 2732 tm_file="dbxelf.h elfos.h newlib-stdint.h stormy16/stormy16.h"
9b954fed 2733 tm_p_file=stormy16/stormy16-protos.h
2734 md_file=stormy16/stormy16.md
2735 out_file=stormy16/stormy16.c
840f1481 2736 extra_options=stormy16/stormy16.opt
9b954fed 2737 tmake_file="stormy16/t-stormy16"
2738 extra_parts="crtbegin.o crtend.o"
2739 ;;
a76109da 2740xtensa*-*-elf*)
be47c99e 2741 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h xtensa/elf.h"
b0a67e36 2742 extra_options="${extra_options} xtensa/elf.opt"
54a0bb9d 2743 tmake_file="xtensa/t-xtensa xtensa/t-elf"
f6b7ba2b 2744 ;;
a76109da 2745xtensa*-*-linux*)
deb14f24 2746 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/linux.h"
1afa774a 2747 tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
f6b7ba2b 2748 ;;
1acdfc69 2749am33_2.0-*-linux*)
deb14f24 2750 tm_file="mn10300/mn10300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h mn10300/linux.h"
1afa774a 2751 tmake_file="${tmake_file} mn10300/t-linux"
1acdfc69 2752 gas=yes gnu_ld=yes
1acdfc69 2753 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
2754 use_collect2=no
2755 ;;
a41d0b5e 2756m32c-*-rtems*)
3a0201c8 2757 tm_file="dbxelf.h elfos.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
a41d0b5e 2758 tmake_file="${tmake_file} t-rtems"
2759 c_target_objs="m32c-pragma.o"
2760 cxx_target_objs="m32c-pragma.o"
2761 ;;
85c84d5c 2762m32c-*-elf*)
3a0201c8 2763 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
85c84d5c 2764 c_target_objs="m32c-pragma.o"
2765 cxx_target_objs="m32c-pragma.o"
85c84d5c 2766 ;;
bb607926 2767*)
09c6646e 2768 echo "*** Configuration ${target} not supported" 1>&2
bb607926 2769 exit 1
2770 ;;
2771esac
2772
561866ed 2773case ${target} in
561866ed 2774i[34567]86-*-linux* | x86_64-*-linux*)
46f8e3b0 2775 tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
561866ed 2776 ;;
2777i[34567]86-*-* | x86_64-*-*)
46f8e3b0 2778 tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
561866ed 2779 ;;
cf61fe8d 2780powerpc*-*-* | rs6000-*-*)
2781 tm_file="${tm_file} rs6000/option-defaults.h"
561866ed 2782esac
2783
3864b642 2784# Support for --with-cpu and related options (and a few unrelated options,
973f8bf3 2785# too).
370a1d10 2786case ${with_cpu} in
2787 yes | no)
2788 echo "--with-cpu must be passed a value" 1>&2
2789 exit 1
2790 ;;
2791esac
f0b281fe 2792
1f64ad21 2793# Set arch and cpu from ${target} and ${target_noncanonical}. Set cpu
2794# to generic if there is no processor scheduler model for the target.
2795arch=
2796cpu=
05b38372 2797arch_without_sse2=no
ed2b8f56 2798arch_without_64bit=no
1f64ad21 2799case ${target} in
0be8ff0a 2800 i386-*-freebsd*)
2801 if test $fbsd_major -ge 6; then
2802 arch=i486
2803 else
2804 arch=i386
2805 fi
2806 cpu=generic
2807 arch_without_sse2=yes
2808 arch_without_64bit=yes
2809 ;;
1f64ad21 2810 i386-*-*)
2811 arch=i386
2812 cpu=i386
05b38372 2813 arch_without_sse2=yes
ed2b8f56 2814 arch_without_64bit=yes
1f64ad21 2815 ;;
2816 i486-*-*)
2817 arch=i486
2818 cpu=i486
05b38372 2819 arch_without_sse2=yes
ed2b8f56 2820 arch_without_64bit=yes
1f64ad21 2821 ;;
2822 i586-*-*)
05b38372 2823 arch_without_sse2=yes
ed2b8f56 2824 arch_without_64bit=yes
1f64ad21 2825 case ${target_noncanonical} in
2826 k6_2-*)
2827 arch=k6-2
2828 cpu=k6-2
2829 ;;
2830 k6_3-*)
2831 arch=k6-3
2832 cpu=k6-3
2833 ;;
2834 k6-*)
2835 arch=k6
2836 cpu=k6
2837 ;;
2838 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
2839 arch=pentium-mmx
2840 cpu=pentium-mmx
2841 ;;
2842 *)
2843 arch=pentium
2844 cpu=pentium
2845 ;;
2846 esac
2847 ;;
2848 i686-*-* | i786-*-*)
2849 case ${target_noncanonical} in
6fc76bb0 2850 bdver1-*)
2851 arch=bdver1
2852 cpu=bdver1
2853 ;;
a97faf6b 2854 btver1-*)
2855 arch=btver1
2856 cpu=btver1
2857 ;;
1f64ad21 2858 amdfam10-*|barcelona-*)
2859 arch=amdfam10
2860 cpu=amdfam10
2861 ;;
2862 k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2863 arch=k8-sse3
2864 cpu=k8-sse3
2865 ;;
2866 k8-*|opteron-*|athlon64-*|athlon_fx-*)
2867 arch=k8
2868 cpu=k8
2869 ;;
2870 athlon_xp-*|athlon_mp-*|athlon_4-*)
2871 arch=athlon-4
2872 cpu=athlon-4
05b38372 2873 arch_without_sse2=yes
ed2b8f56 2874 arch_without_64bit=yes
1f64ad21 2875 ;;
2876 athlon_tbird-*|athlon-*)
2877 arch=athlon
2878 cpu=athlon
05b38372 2879 arch_without_sse2=yes
1f64ad21 2880 ;;
2881 geode-*)
2882 arch=geode
2883 cpu=geode
05b38372 2884 arch_without_sse2=yes
1f64ad21 2885 ;;
2886 pentium2-*)
2887 arch=pentium2
2888 cpu=pentium2
05b38372 2889 arch_without_sse2=yes
1f64ad21 2890 ;;
2891 pentium3-*|pentium3m-*)
2892 arch=pentium3
2893 cpu=pentium3
05b38372 2894 arch_without_sse2=yes
1f64ad21 2895 ;;
2896 pentium4-*|pentium4m-*)
2897 arch=pentium4
2898 cpu=pentium4
2899 ;;
2900 prescott-*)
2901 arch=prescott
2902 cpu=prescott
2903 ;;
2904 nocona-*)
2905 arch=nocona
2906 cpu=nocona
2907 ;;
2908 atom-*)
2909 arch=atom
2910 cpu=atom
2911 ;;
2912 core2-*)
2913 arch=core2
2914 cpu=core2
2915 ;;
b0298715 2916 corei7-*)
2917 arch=corei7
2918 cpu=corei7
2919 ;;
e4168d53 2920 corei7_avx-*)
2921 arch=corei7-avx
2922 cpu=corei7-avx
2923 ;;
1f64ad21 2924 pentium_m-*)
2925 arch=pentium-m
2926 cpu=pentium-m
2927 ;;
2928 pentiumpro-*)
2929 arch=pentiumpro
2930 cpu=pentiumpro
05b38372 2931 arch_without_sse2=yes
1f64ad21 2932 ;;
2933 *)
2934 arch=pentiumpro
2935 cpu=generic
05b38372 2936 arch_without_sse2=yes
ed2b8f56 2937 arch_without_64bit=yes
1f64ad21 2938 ;;
2939 esac
2940 ;;
2941 x86_64-*-*)
2942 case ${target_noncanonical} in
6fc76bb0 2943 bdver1-*)
2944 arch=bdver1
2945 cpu=bdver1
2946 ;;
a97faf6b 2947 btver1-*)
2948 arch=btver1
2949 cpu=btver1
2950 ;;
1f64ad21 2951 amdfam10-*|barcelona-*)
2952 arch=amdfam10
2953 cpu=amdfam10
2954 ;;
2955 k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
2956 arch=k8-sse3
2957 cpu=k8-sse3
2958 ;;
2959 k8-*|opteron-*|athlon_64-*)
2960 arch=k8
2961 cpu=k8
2962 ;;
2963 nocona-*)
2964 arch=nocona
2965 cpu=nocona
2966 ;;
2967 atom-*)
2968 arch=atom
2969 cpu=atom
2970 ;;
2971 core2-*)
2972 arch=core2
2973 cpu=core2
2974 ;;
b0298715 2975 corei7-*)
2976 arch=corei7
2977 cpu=corei7
2978 ;;
1f64ad21 2979 *)
2980 arch=x86-64
2981 cpu=generic
2982 ;;
2983 esac
2984 ;;
2985esac
2986
370a1d10 2987# If there is no $with_cpu option, try to infer one from ${target}.
2988# This block sets nothing except for with_cpu.
2989if test x$with_cpu = x ; then
2990 case ${target} in
1f64ad21 2991 i[34567]86-*-*|x86_64-*-*)
2992 with_cpu=$cpu
370a1d10 2993 ;;
2994 alphaev6[78]*-*-*)
2995 with_cpu=ev67
2996 ;;
2997 alphaev6*-*-*)
2998 with_cpu=ev6
2999 ;;
3000 alphapca56*-*-*)
3001 with_cpu=pca56
3002 ;;
3003 alphaev56*-*-*)
3004 with_cpu=ev56
3005 ;;
3006 alphaev5*-*-*)
3007 with_cpu=ev5
3008 ;;
de6e318c 3009 frv-*-*linux* | frv400-*-*linux*)
3e7f6cce 3010 with_cpu=fr400
3011 ;;
de6e318c 3012 frv550-*-*linux*)
3013 with_cpu=fr550
3014 ;;
f84195ec 3015 m68k*-*-*)
558b196a 3016 case "$with_arch" in
3017 "cf")
3018 with_cpu=${default_cf_cpu}
3019 ;;
3020 "" | "m68k")
3021 with_cpu=m${default_m68k_cpu}
3022 ;;
3023 esac
f84195ec 3024 ;;
223f6dbc 3025 mips*-*-vxworks)
3026 with_arch=mips2
3027 ;;
b0168e11 3028 sparc-leon*-*)
3029 with_cpu=v8;
3030 ;;
370a1d10 3031 sparc*-*-*)
3032 with_cpu="`echo ${target} | sed 's/-.*$//'`"
370a1d10 3033 ;;
3034 esac
f067c6b7 3035
3036 # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
3037 case ${target} in
3038 i[34567]86-*-*|x86_64-*-*)
1f64ad21 3039 if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
3040 if test x$with_cpu_32 = x; then
3041 with_cpu_32=$with_cpu
3042 fi
3043 if test x$with_cpu_64 = x; then
3044 with_cpu_64=$with_cpu
3045 fi
3046 with_cpu=
3047 fi
3048 ;;
3049 esac
3050fi
3051
3052# Support for --with-arch and related options (and a few unrelated options,
3053# too).
3054case ${with_arch} in
3055 yes | no)
3056 echo "--with-arch must be passed a value" 1>&2
3057 exit 1
3058 ;;
3059esac
3060
3061# If there is no $with_arch option, try to infer one from ${target}.
3062# This block sets nothing except for with_arch.
3063if test x$with_arch = x ; then
3064 case ${target} in
ffcf29bf 3065 i[34567]86-*-darwin*|x86_64-*-darwin*)
3066 # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3067 # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3068 ;;
2d2e1f85 3069 i[34567]86-*-*)
05b38372 3070 # --with-fpmath sets the default ISA to SSE2, which is the same
3071 # ISA supported by Pentium 4.
3072 if test x$with_fpmath = x || test $arch_without_sse2 = no; then
3073 with_arch=$arch
3074 else
3075 with_arch=pentium4
2d2e1f85 3076 fi
3077 ;;
3078 x86_64-*-*)
1f64ad21 3079 with_arch=$arch
3080 ;;
3081 esac
3082
3083 # Avoid overriding --with-arch-32 and --with-arch-64 values.
3084 case ${target} in
ffcf29bf 3085 i[34567]86-*-darwin*|x86_64-*-darwin*)
3086 # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3087 # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3088 ;;
1f64ad21 3089 i[34567]86-*-*|x86_64-*-*)
3090 if test x$with_arch_32 != x || test x$with_arch_64 != x; then
3091 if test x$with_arch_32 = x; then
525b174b 3092 with_arch_32=$with_arch
1f64ad21 3093 fi
3094 if test x$with_arch_64 = x; then
ed2b8f56 3095 if test $arch_without_64bit = yes; then
3096 # Set the default 64bit arch to x86-64 if the default arch
3097 # doesn't support 64bit.
3098 with_arch_64=x86-64
3099 else
525b174b 3100 with_arch_64=$with_arch
ed2b8f56 3101 fi
1f64ad21 3102 fi
3103 with_arch=
ed2b8f56 3104 elif test $arch_without_64bit$need_64bit_isa = yesyes; then
3105 # Set the default 64bit arch to x86-64 if the default arch
3106 # doesn't support 64bit and we need 64bit ISA.
525b174b 3107 with_arch_32=$with_arch
ed2b8f56 3108 with_arch_64=x86-64
3109 with_arch=
f067c6b7 3110 fi
3111 ;;
3112 esac
370a1d10 3113fi
f0b281fe 3114
2d2e1f85 3115# Support --with-fpmath.
3116if test x$with_fpmath != x; then
3117 case ${target} in
3118 i[34567]86-*-* | x86_64-*-*)
3119 case ${with_fpmath} in
e69704a5 3120 avx)
3121 tm_file="${tm_file} i386/avxmath.h"
3122 ;;
2d2e1f85 3123 sse)
3124 tm_file="${tm_file} i386/ssemath.h"
3125 ;;
3126 *)
3127 echo "Invalid --with-fpmath=$with_fpmath" 1>&2
3128 exit 1
3129 ;;
3130 esac
3131 ;;
3132 *)
3133 echo "--with-fpmath isn't supported for $target." 1>&2
3134 exit 1
3135 ;;
3136 esac
3137fi
3138
0a76a4fd 3139# Similarly for --with-schedule.
3140if test x$with_schedule = x; then
3141 case ${target} in
6af9f7ea 3142 hppa1*)
0a76a4fd 3143 # Override default PA8000 scheduling model.
3144 with_schedule=7100LC
3145 ;;
3146 esac
3147fi
f0b281fe 3148
0a76a4fd 3149# Validate and mark as valid any --with options supported
3150# by this target. In order to use a particular --with option
3151# you must list it in supported_defaults; validating the value
3152# is optional. This case statement should set nothing besides
3153# supported_defaults.
7dd97ab6 3154
0a76a4fd 3155supported_defaults=
3156case "${target}" in
f0b281fe 3157 alpha*-*-*)
7dd97ab6 3158 supported_defaults="cpu tune"
3159 for which in cpu tune; do
3160 eval "val=\$with_$which"
8d520382 3161 case "$val" in
3162 "" \
3163 | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
3164 | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
3165 | 21264a)
7dd97ab6 3166 ;;
3167 *)
3168 echo "Unknown CPU used in --with-$which=$val" 1>&2
3169 exit 1
3170 ;;
3171 esac
3172 done
3173 ;;
3174
3175 arm*-*-*)
086571a4 3176 supported_defaults="arch cpu float tune fpu abi mode"
7dd97ab6 3177 for which in cpu tune; do
70ac928b 3178 # See if it matches any of the entries in arm-cores.def
7dd97ab6 3179 eval "val=\$with_$which"
1cfd705e 3180 if [ x"$val" = x ] \
61b58075 3181 || grep "^ARM_CORE(\"$val\"," \
1cfd705e 3182 ${srcdir}/config/arm/arm-cores.def \
3183 > /dev/null; then
3184 # Ok
61b58075 3185 new_val=`grep "^ARM_CORE(\"$val\"," \
3186 ${srcdir}/config/arm/arm-cores.def | \
3187 sed -e 's/^[^,]*,[ ]*//' | \
3188 sed -e 's/,.*$//'`
346bfe2d 3189 eval "target_${which}_cname=$new_val"
61b58075 3190 echo "For $val real value is $new_val"
1cfd705e 3191 true
3192 else
3193 echo "Unknown CPU used in --with-$which=$val" 1>&2
3194 exit 1
70ac928b 3195 fi
7dd97ab6 3196 done
3197
8d520382 3198 case "$with_arch" in
3199 "" \
a2cd141b 3200 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
b77c60b7 3201 | armv5te | armv6j |armv6k | armv6z | armv6zk | armv6-m \
3202 | armv7 | armv7-a | armv7-r | armv7-m \
6b4d6063 3203 | iwmmxt | ep9312)
f0b281fe 3204 # OK
bb678e49 3205 ;;
3206 *)
7dd97ab6 3207 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
f0b281fe 3208 exit 1
3864b642 3209 ;;
3210 esac
f0b281fe 3211
8d520382 3212 case "$with_float" in
3213 "" \
a2cd141b 3214 | soft | hard | softfp)
f0b281fe 3215 # OK
3864b642 3216 ;;
f0b281fe 3217 *)
7dd97ab6 3218 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
f0b281fe 3219 exit 1
3864b642 3220 ;;
3221 esac
7dd97ab6 3222
a2cd141b 3223 case "$with_fpu" in
3224 "" \
414f0dcb 3225 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | vfpv3 \
3226 | vfpv3-fp16 | vfpv3-d16 | vfpv3-d16-fp16 | vfpv3xd \
3227 | vfpv3xd-fp16 | neon | neon-fp16 | vfpv4 | vfpv4-d16 \
3228 | fpv4-sp-d16 | neon-vfpv4)
a2cd141b 3229 # OK
3230 ;;
3231 *)
f9273c43 3232 echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
3233 exit 1
3234 ;;
3235 esac
3236
3237 case "$with_abi" in
3238 "" \
6cac4dc0 3239 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
f9273c43 3240 #OK
3241 ;;
3242 *)
3243 echo "Unknown ABI used in --with-abi=$with_abi"
a2cd141b 3244 exit 1
3245 ;;
3246 esac
3247
086571a4 3248 case "$with_mode" in
3249 "" \
3250 | arm | thumb )
3251 #OK
3252 ;;
3253 *)
3254 echo "Unknown mode used in --with-mode=$with_mode"
3255 exit 1
3256 ;;
3257 esac
3258
7dd97ab6 3259 if test "x$with_arch" != x && test "x$with_cpu" != x; then
f9273c43 3260 echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
7dd97ab6 3261 fi
3864b642 3262 ;;
3864b642 3263
3e7f6cce 3264 fr*-*-*linux*)
3265 supported_defaults=cpu
3266 case "$with_cpu" in
3267 fr400) ;;
de6e318c 3268 fr550) ;;
3e7f6cce 3269 *)
3270 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3271 exit 1
3272 ;;
3273 esac
3274 ;;
3275
6af9f7ea 3276 fido-*-* | m68k*-*-*)
558b196a 3277 supported_defaults="arch cpu"
3278 case "$with_arch" in
3279 "" | "m68k"| "cf")
3280 m68k_arch_family="$with_arch"
3281 ;;
3282 *)
3283 echo "Invalid --with-arch=$with_arch" 1>&2
3284 exit 1
3285 ;;
3286 esac
f84195ec 3287
3288 # We always have a $with_cpu setting here.
8e80b452 3289 case "$with_cpu" in
8aed3cb3 3290 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
3291 m68k_cpu_ident=$with_cpu
3292 ;;
3293 "m68020-40")
3294 m68k_cpu_ident=m68020
3295 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
3296 ;;
3297 "m68020-60")
3298 m68k_cpu_ident=m68020
3299 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
8e80b452 3300 ;;
3301 *)
8aed3cb3 3302 # We need the C identifier rather than the string.
3303 m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
3304 'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
3305 $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
3306 ${srcdir}/config/m68k/m68k-devices.def`
3307 if [ x"$m68k_cpu_ident" = x ] ; then
3308 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
3309 exit 1
3310 fi
3311 with_cpu="mcpu=$with_cpu"
8e80b452 3312 ;;
3313 esac
3314 ;;
3315
6af9f7ea 3316 hppa*-*-*)
7dd97ab6 3317 supported_defaults="arch schedule"
3318
8d520382 3319 case "$with_arch" in
3320 "" | 1.0 | 1.1 | 2.0)
7dd97ab6 3321 # OK
3322 ;;
3323 *)
3324 echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
3325 exit 1
3326 ;;
3327 esac
3328
8d520382 3329 case "$with_schedule" in
3330 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
f0b281fe 3331 # OK
3332 ;;
3333 *)
3334 echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
3335 exit 1
3336 ;;
3337 esac
3864b642 3338 ;;
3864b642 3339
f0b281fe 3340 i[34567]86-*-* | x86_64-*-*)
f067c6b7 3341 supported_defaults="arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
3342 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
7dd97ab6 3343 eval "val=\$with_$which"
e83e5390 3344 case ${val} in
9db3d688 3345 i386 | i486 \
e83e5390 3346 | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
3347 | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
3348 | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
3451fffd 3349 | athlon-4 | athlon-xp | athlon-mp | geode \
9db3d688 3350 | prescott | pentium-m | pentium4m | pentium3m)
3351 case "${target}" in
3352 x86_64-*-*)
f067c6b7 3353 case "x$which" in
3354 *_32)
3355 ;;
3356 *)
3357 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
3358 exit 1
3359 ;;
3360 esac
9db3d688 3361 ;;
3362 esac
3363 # OK
3364 ;;
414f0dcb 3365 "" | x86-64 | generic | native \
3366 | k8 | k8-sse3 | athlon64 | athlon64-sse3 | opteron \
a97faf6b 3367 | opteron-sse3 | athlon-fx | bdver1 | btver1 | amdfam10 \
e4168d53 3368 | barcelona | nocona | core2 | corei7 | corei7-avx | atom)
7dd97ab6 3369 # OK
3370 ;;
3371 *)
3372 echo "Unknown CPU given in --with-$which=$val." 1>&2
3373 exit 1
3374 ;;
3375 esac
3376 done
3377 ;;
3378
3379 mips*-*-*)
1af9587c 3380 supported_defaults="abi arch arch_32 arch_64 float tune tune_32 tune_64 divide llsc mips-plt synci"
7dd97ab6 3381
e83e5390 3382 case ${with_float} in
3383 "" | soft | hard)
f0b281fe 3384 # OK
3385 ;;
3386 *)
7dd97ab6 3387 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
f0b281fe 3388 exit 1
3389 ;;
3390 esac
3864b642 3391
e83e5390 3392 case ${with_abi} in
3393 "" | 32 | o64 | n32 | 64 | eabi)
f0b281fe 3394 # OK
3395 ;;
3396 *)
7dd97ab6 3397 echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
f0b281fe 3398 exit 1
3399 ;;
3400 esac
f9262d1e 3401
3402 case ${with_divide} in
3403 "" | breaks | traps)
3404 # OK
3405 ;;
3406 *)
3407 echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
3408 exit 1
bc4c18f7 3409 ;;
3410 esac
3411
3412 case ${with_llsc} in
3413 yes)
3414 with_llsc=llsc
3415 ;;
3416 no)
3417 with_llsc="no-llsc"
3418 ;;
3419 "")
3420 # OK
3421 ;;
3422 *)
3423 echo "Unknown llsc type used in --with-llsc" 1>&2
3424 exit 1
3425 ;;
f9262d1e 3426 esac
4a909f69 3427
3428 case ${with_mips_plt} in
3429 yes)
3430 with_mips_plt=plt
3431 ;;
3432 no)
3433 with_mips_plt=no-plt
3434 ;;
3435 "")
3436 ;;
3437 *)
3438 echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
3439 exit 1
3440 ;;
3441 esac
1af9587c 3442
3443 case ${with_synci} in
3444 yes)
3445 with_synci=synci
3446 ;;
3447 "" | no)
3448 # No is the default.
3449 with_synci=no-synci
3450 ;;
3451 *)
3452 echo "Unknown synci type used in --with-synci" 1>&2
3453 exit 1
3454 ;;
3455 esac
3864b642 3456 ;;
3864b642 3457
7dd97ab6 3458 powerpc*-*-* | rs6000-*-*)
cf61fe8d 3459 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
7dd97ab6 3460
cf61fe8d 3461 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
7dd97ab6 3462 eval "val=\$with_$which"
e83e5390 3463 case ${val} in
83ae44d6 3464 default32 | default64)
cf61fe8d 3465 case $which in
3466 cpu | tune)
3467 ;;
3468 *)
3469 echo "$val only valid for --with-cpu and --with-tune." 1>&2
3470 exit 1
3471 ;;
3472 esac
83ae44d6 3473 with_which="with_$which"
3474 eval $with_which=
3475 ;;
e2fcf81b 3476 405cr)
3477 tm_defines="${tm_defines} CONFIG_PPC405CR"
3478 eval "with_$which=405"
3479 ;;
83ae44d6 3480 "" | common \
94f7a54b 3481 | power | power[234567] | power6x | powerpc | powerpc64 \
e83e5390 3482 | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
257bc844 3483 | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
ed08558a 3484 | 476 | 476fp | 505 | 601 | 602 | 603 | 603e | ec603e \
3485 | 604 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
81a88188 3486 | a2 | e300c[23] | 854[08] | e500mc | e500mc64 | titan\
2b3ae3ef 3487 | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
7dd97ab6 3488 # OK
3489 ;;
3490 *)
3491 echo "Unknown cpu used in --with-$which=$val." 1>&2
3492 exit 1
3493 ;;
3494 esac
3495 done
3496 ;;
3497
b8c0043c 3498 s390*-*-*)
3499 supported_defaults="arch mode tune"
3500
3501 for which in arch tune; do
3502 eval "val=\$with_$which"
e83e5390 3503 case ${val} in
33d033da 3504 "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10 | z196)
b8c0043c 3505 # OK
3506 ;;
3507 *)
3508 echo "Unknown cpu used in --with-$which=$val." 1>&2
3509 exit 1
3510 ;;
3511 esac
3512 done
3513
e83e5390 3514 case ${with_mode} in
3515 "" | esa | zarch)
b8c0043c 3516 # OK
3517 ;;
3518 *)
3519 echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
3520 exit 1
3521 ;;
3522 esac
3523 ;;
3524
07168dd9 3525 sh[123456ble]-*-* | sh-*-*)
3526 supported_defaults="cpu"
3a6994f8 3527 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
07168dd9 3528 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
3529 # OK
3530 ;;
7105fb72 3531 m2a | m2a-single | m2a-single-only | m2a-nofpu)
3532 ;;
9435e831 3533 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
3534 ;;
07168dd9 3535 *)
3536 echo "Unknown CPU used in --with-cpu=$with_cpu, known values:" 1>&2
3537 echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
9435e831 3538 echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
7105fb72 3539 echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
07168dd9 3540 exit 1
3541 ;;
3542 esac
3543 ;;
f0b281fe 3544 sparc*-*-*)
7dd97ab6 3545 supported_defaults="cpu float tune"
3546
3547 for which in cpu tune; do
3548 eval "val=\$with_$which"
e83e5390 3549 case ${val} in
b0168e11 3550 "" | sparc | sparcv9 | sparc64 \
3551 | v7 | cypress \
3552 | v8 | supersparc | hypersparc | leon \
3553 | sparclite | f930 | f934 | sparclite86x \
3554 | sparclet | tsc701 \
d6ecc3a3 3555 | v9 | ultrasparc | ultrasparc3 | niagara | niagara2)
7dd97ab6 3556 # OK
3557 ;;
3558 *)
3559 echo "Unknown cpu used in --with-$which=$val" 1>&2
3560 exit 1
3561 ;;
3562 esac
3563 done
3864b642 3564
e83e5390 3565 case ${with_float} in
3566 "" | soft | hard)
f0b281fe 3567 # OK
3568 ;;
3569 *)
7dd97ab6 3570 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
f0b281fe 3571 exit 1
3572 ;;
3573 esac
3864b642 3574 ;;
3864b642 3575
5474166e 3576 spu-*-*)
3577 supported_defaults="arch tune"
3578
3579 for which in arch tune; do
3580 eval "val=\$with_$which"
3581 case ${val} in
3582 "" | cell | celledp)
3583 # OK
3584 ;;
3585 *)
3586 echo "Unknown cpu used in --with-$which=$val." 1>&2
3587 exit 1
3588 ;;
3589 esac
3590 done
3591 ;;
3592
f0b281fe 3593 v850*-*-*)
7dd97ab6 3594 supported_defaults=cpu
e83e5390 3595 case ${with_cpu} in
3596 "" | v850e | v850e1)
f0b281fe 3597 # OK
3598 ;;
3599 *)
3600 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3601 exit 1
3602 ;;
3603 esac
3864b642 3604 ;;
0a76a4fd 3605esac
3864b642 3606
0a76a4fd 3607# Set some miscellaneous flags for particular targets.
3608target_cpu_default2=
3609case ${target} in
f0b281fe 3610 alpha*-*-*)
f0b281fe 3611 if test x$gas = xyes
3612 then
7dd97ab6 3613 target_cpu_default2="MASK_GAS"
f0b281fe 3614 fi
3864b642 3615 ;;
3864b642 3616
f0b281fe 3617 arm*-*-*)
346bfe2d 3618 if test x$target_cpu_cname = x
3619 then
3620 target_cpu_default2=TARGET_CPU_generic
3621 else
3622 target_cpu_default2=TARGET_CPU_$target_cpu_cname
3623 fi
f0b281fe 3624 ;;
582b17a6 3625
6af9f7ea 3626 hppa*-*-*)
8ab32933 3627 target_cpu_default2="MASK_BIG_SWITCH"
f0b281fe 3628 if test x$gas = xyes
bb607926 3629 then
8ab32933 3630 target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
f0b281fe 3631 fi
3864b642 3632 ;;
3864b642 3633
6af9f7ea 3634 fido*-*-* | m68k*-*-*)
8aed3cb3 3635 target_cpu_default2=$m68k_cpu_ident
558b196a 3636 if [ x"$m68k_arch_family" != x ]; then
3637 tmake_file="m68k/t-$m68k_arch_family $tmake_file"
3638 fi
8aed3cb3 3639 ;;
3640
b3fd46a0 3641 i[34567]86-*-darwin* | x86_64-*-darwin*)
3642 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3643 ;;
8a84c748 3644 i[34567]86-*-linux* | x86_64-*-linux* | \
3645 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
3646 i[34567]86-*-gnu*)
b3fd46a0 3647 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux"
3648 ;;
20be3c56 3649 i[34567]86-*-solaris2*)
3650 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3651 ;;
f7ef49da 3652 i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw*)
6471e33b 3653 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3654 ;;
278afeb5 3655 i[34567]86-*-freebsd* | x86_64-*-freebsd*)
3656 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
3657 ;;
8b21beb2 3658 ia64*-*-linux*)
3659 tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp"
3660 ;;
b3fd46a0 3661
f0b281fe 3662 mips*-*-*)
b93bf04a 3663 if test x$gnu_ld = xyes
3664 then
dfae4483 3665 target_cpu_default2="MASK_SPLIT_ADDRESSES"
b93bf04a 3666 fi
09c6646e 3667 case ${target} in
f0b281fe 3668 mips*el-*-*)
3669 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
3670 ;;
3671 esac
1d88eb71 3672 tmake_file="mips/t-mips $tmake_file"
f4deb416 3673 ;;
f0b281fe 3674
3675 powerpc*-*-* | rs6000-*-*)
7dd97ab6 3676 # FIXME: The PowerPC port uses the value set at compile time,
3677 # although it's only cosmetic.
f0b281fe 3678 if test "x$with_cpu" != x
bb607926 3679 then
f0b281fe 3680 target_cpu_default2="\\\"$with_cpu\\\""
bb607926 3681 fi
f0b281fe 3682 out_file=rs6000/rs6000.c
3683 c_target_objs="${c_target_objs} rs6000-c.o"
3684 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
3685 tmake_file="rs6000/t-rs6000 ${tmake_file}"
63f9fa57 3686
3687 if test x$enable_e500_double = xyes
3688 then
3689 tm_file="$tm_file rs6000/e500-double.h"
3690 fi
f4deb416 3691 ;;
3864b642 3692
57d5535b 3693 sh[123456ble]*-*-* | sh-*-*)
3694 c_target_objs="${c_target_objs} sh-c.o"
3695 cxx_target_objs="${cxx_target_objs} sh-c.o"
3696 ;;
3697
b0168e11 3698 sparc-leon*-*)
3699 if test x$with_tune = x ; then
3700 with_tune=leon;
3701 fi
3702
3703 # The SPARC port checks this value at compile-time.
3704 target_cpu_default2="TARGET_CPU_$with_cpu"
3705 ;;
3706
f0b281fe 3707 sparc*-*-*)
7dd97ab6 3708 # Some standard aliases.
3709 case x$with_cpu in
3710 xsparc)
3711 with_cpu=v7
3712 ;;
7dd97ab6 3713 xsparcv9 | xsparc64)
3714 with_cpu=v9
3715 ;;
3716 esac
3717
3ce7ff97 3718 # The SPARC port checks this value at compile-time.
3864b642 3719 target_cpu_default2="TARGET_CPU_$with_cpu"
3720 ;;
b0168e11 3721
f0b281fe 3722 v850*-*-*)
7dd97ab6 3723 # FIXME: The v850 is "special" in that it does not support
3724 # runtime CPU selection, only --with-cpu.
f0b281fe 3725 case "x$with_cpu" in
3726 x)
3727 ;;
3728 xv850e)
3729 target_cpu_default2="TARGET_CPU_$with_cpu"
3730 ;;
3731 esac
3732 ;;
0a76a4fd 3733esac
bb607926 3734
0a76a4fd 3735t=
1af9587c 3736all_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 3737for option in $all_defaults
3738do
4a909f69 3739 eval "val=\$with_"`echo $option | sed s/-/_/g`
0a76a4fd 3740 if test -n "$val"; then
3741 case " $supported_defaults " in
3742 *" $option "*)
3743 ;;
3744 *)
3745 echo "This target does not support --with-$option." 2>&1
fc3e831e 3746 echo "Valid --with options are: $supported_defaults" 2>&1
0a76a4fd 3747 exit 1
3748 ;;
3749 esac
7dd97ab6 3750
0a76a4fd 3751 if test "x$t" = x
3752 then
3753 t="{ \"$option\", \"$val\" }"
3754 else
3755 t="${t}, { \"$option\", \"$val\" }"
7dd97ab6 3756 fi
7dd97ab6 3757 fi
0a76a4fd 3758done
7dd97ab6 3759
0a76a4fd 3760if test "x$t" = x
3761then
3762 configure_default_options="{ { NULL, NULL} }"
3763else
3764 configure_default_options="{ ${t} }"
3765fi
3766
3767if test "$target_cpu_default2" != ""
3768then
3769 if test "$target_cpu_default" != ""
bb607926 3770 then
0a76a4fd 3771 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3772 else
3773 target_cpu_default=$target_cpu_default2
bb607926 3774 fi
0a76a4fd 3775fi