]> gcc.gnu.org Git - gcc.git/blame - gcc/config.gcc
PR64903 simplify last fix to std::is_partitioned
[gcc.git] / gcc / config.gcc
CommitLineData
a89ea0df 1# GCC target-specific configuration file.
cbe34bb5 2# Copyright (C) 1997-2017 Free Software Foundation, Inc.
61ed06c3 3
1322177d 4#This file is part of GCC.
61ed06c3 5
1322177d
LB
6#GCC is free software; you can redistribute it and/or modify it under
7#the terms of the GNU General Public License as published by the Free
9dcd6f09 8#Software Foundation; either version 3, or (at your option) any later
1322177d 9#version.
61ed06c3 10
1322177d
LB
11#GCC is distributed in the hope that it will be useful, but WITHOUT
12#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14#for more details.
61ed06c3
HPN
15
16#You should have received a copy of the GNU General Public License
9dcd6f09
NC
17#along with GCC; see the file COPYING3. If not see
18#<http://www.gnu.org/licenses/>.
61ed06c3 19
a89ea0df
NN
20# This is the GCC target-specific configuration file
21# where a configuration type is mapped to different system-specific
22# definitions and files. This is invoked by the autoconf-generated
23# configure script. Putting it in a separate shell file lets us skip
24# running autoconf when modifying target-specific information.
61ed06c3 25
fa958513
DJ
26# When you change the cases in the OS or target switches, consider
27# updating ../libgcc/config.host also.
28
b01bc573 29# This file switches on the shell variable ${target}, and also uses the
61ed06c3
HPN
30# following shell variables:
31#
32# with_* Various variables as set by configure.
33#
615be2cf 34# enable_threads Either the name, yes or no depending on whether
61ed06c3
HPN
35# threads support was requested.
36#
2121a768 37# default_use_cxa_atexit
c5dde55b
NC
38# The default value for the $enable___cxa_atexit
39# variable. enable___cxa_atexit needs to be set to
40# "yes" for the correct operation of C++ destructors
41# but it relies upon the presence of a non-standard C
42# library function called __cxa_atexit.
43# Since not all C libraries provide __cxa_atexit the
44# default value of $default_use_cxa_atexit is set to
45# "no" except for targets which are known to be OK.
2121a768 46#
f6c5fbfd
NS
47# default_gnu_indirect_function
48# The default value for the $enable_gnu_indirect_function
49# variable. enable_gnu_indirect_function relies
50# upon the presence of a non-standard gnu ifunc support
51# in the assembler, linker and dynamic linker.
52# Since not all libraries provide the dynamic linking
53# support, the default value of
54# $default_gnu_indirect_function is set to
55# "no" except for targets which are known to be OK.
56#
61ed06c3
HPN
57# gas_flag Either yes or no depending on whether GNU as was
58# requested.
59#
60# gnu_ld_flag Either yes or no depending on whether GNU ld was
61# requested.
62
63# This file sets the following shell variables for use by the
64# autoconf-generated configure script:
65#
b01bc573
NN
66# cpu_type The name of the cpu, if different from the first
67# chunk of the canonical target name.
61ed06c3 68#
d5355cb2
JDA
69# tm_defines List of target macros to define for all compilations.
70#
61ed06c3 71# tm_file A list of target macro files, if different from
32fb7c9d
FS
72# "$cpu_type/$cpu_type.h". Usually it's constructed
73# per target in a way like this:
57809813 74# tm_file="${tm_file} dbxelf.h elfos.h ${cpu_type.h}/elf.h"
32fb7c9d
FS
75# Note that the preferred order is:
76# - specific target header "${cpu_type}/${cpu_type.h}"
a4a4b1d3 77# - generic headers like dbxelf.h elfos.h, etc.
32fb7c9d
FS
78# - specializing target headers like ${cpu_type.h}/elf.h
79# This helps to keep OS specific stuff out of the CPU
80# defining header ${cpu_type}/${cpu_type.h}.
61ed06c3 81#
9c63c208
SL
82# It is possible to include automatically-generated
83# build-directory files by prefixing them with "./".
84# All other files should relative to $srcdir/config.
85#
61ed06c3
HPN
86# tm_p_file Location of file with declarations for functions
87# in $out_file.
88#
89# out_file The name of the machine description C support
90# file, if different from "$cpu_type/$cpu_type.c".
91#
c49a6962
JM
92# common_out_file The name of the source file for code shared between
93# the compiler proper and the driver.
94#
61ed06c3
HPN
95# md_file The name of the machine-description file, if
96# different from "$cpu_type/$cpu_type.md".
97#
98# tmake_file A list of machine-description-specific
99# makefile-fragments, if different from
100# "$cpu_type/t-$cpu_type".
101#
1c0ca89d
ZW
102# extra_modes The name of the file containing a list of extra
103# machine modes, if necessary and different from
104# "$cpu_type/$cpu_type-modes.def".
105#
61ed06c3
HPN
106# extra_objs List of extra objects that should be linked into
107# the compiler proper (cc1, cc1obj, cc1plus)
108# depending on target.
109#
30500d84
KC
110# extra_gcc_objs List of extra objects that should be linked into
111# the compiler driver (gcc) depending on target.
112#
61ed06c3 113# extra_headers List of used header files from the directory
817e13c4 114# config/${cpu_type}.
61ed06c3 115#
9b91e436
KT
116# user_headers_inc_next_pre
117# List of header file names of internal gcc header
118# files, which should be prefixed by an include_next.
119# user_headers_inc_next_post
120# List of header file names of internal gcc header
121# files, which should be postfixed by an include_next.
1617e5ee
GK
122# use_gcc_tgmath If set, add tgmath.h to the list of used header
123# files.
124#
207bf79d
JM
125# use_gcc_stdint If "wrap", install a version of stdint.h that
126# wraps the system's copy for hosted compilations;
127# if "provide", provide a version of systems without
128# such a system header; otherwise "none", do not
129# provide such a header at all.
130#
d82c57a8
RO
131# extra_programs List of extra executables compiled for this target
132# machine, used when linking.
61ed06c3 133#
75685792
RS
134# extra_options List of target-dependent .opt files.
135#
ff7cc307 136# c_target_objs List of extra target-dependent objects that be
aac69a49 137# linked into the C compiler only.
0e5a4ad8 138#
ff7cc307 139# cxx_target_objs List of extra target-dependent objects that be
aac69a49 140# linked into the C++ compiler only.
0e5a4ad8 141#
c776a6d0
DF
142# fortran_target_objs List of extra target-dependent objects that be
143# linked into the fortran compiler only.
144#
ef69da62
SS
145# target_gtfiles List of extra source files with type information.
146#
61ed06c3
HPN
147# xm_defines List of macros to define when compiling for the
148# target machine.
149#
150# xm_file List of files to include when compiling for the
151# target machine.
152#
153# use_collect2 Set to yes or no, depending on whether collect2
154# will be used.
155#
156# target_cpu_default Set to override the default target model.
157#
61ed06c3
HPN
158# gdb_needs_out_file_path
159# Set to yes if gdb needs a dir command with
160# `dirname $out_file`.
161#
61ed06c3
HPN
162# thread_file Set to control which thread package to use.
163#
164# gas Set to yes or no depending on whether the target
165# system normally uses GNU as.
4977bab6 166#
7816bea0
DJ
167# configure_default_options
168# Set to an initializer for configure_default_options
169# in configargs.h, based on --with-cpu et cetera.
08b2bad2
SB
170#
171# native_system_header_dir
172# Where system header files are found for this
173# target. This defaults to /usr/include. If
174# the --with-sysroot configure option or the
175# --sysroot command line option is used this
176# will be relative to the sysroot.
5ab22850
RR
177# target_type_format_char
178# The default character to be used for formatting
179# the attribute in a
180# .type symbol_name, ${t_t_f_c}<property>
181# directive.
61ed06c3
HPN
182
183# The following variables are used in each case-construct to build up the
184# outgoing variables:
185#
61ed06c3
HPN
186# gnu_ld Set to yes or no depending on whether the target
187# system normally uses GNU ld.
acce4e77
JM
188#
189# target_has_targetcm Set to yes or no depending on whether the target
190# has its own definition of targetcm.
c49a6962
JM
191#
192# target_has_targetm_common Set to yes or no depending on whether the
193# target has its own definition of targetm_common.
61ed06c3
HPN
194
195out_file=
c49a6962 196common_out_file=
61ed06c3
HPN
197tmake_file=
198extra_headers=
9b91e436
KT
199user_headers_inc_next_pre=
200user_headers_inc_next_post=
1617e5ee 201use_gcc_tgmath=yes
207bf79d 202use_gcc_stdint=none
61ed06c3
HPN
203extra_programs=
204extra_objs=
61ed06c3 205extra_gcc_objs=
75685792 206extra_options=
aac69a49
NC
207c_target_objs=
208cxx_target_objs=
c776a6d0 209fortran_target_objs=
acce4e77 210target_has_targetcm=no
677f3fa8 211target_has_targetm_common=yes
d5355cb2 212tm_defines=
61ed06c3 213xm_defines=
61ed06c3
HPN
214# Set this to force installation and use of collect2.
215use_collect2=
216# Set this to override the default target model.
217target_cpu_default=
61ed06c3
HPN
218# Set this if gdb needs a dir command with `dirname $out_file`
219gdb_needs_out_file_path=
61ed06c3
HPN
220# Set this to control which thread package will be used.
221thread_file=
222# Reinitialize these from the flag values every loop pass, since some
223# configure entries modify them.
224gas="$gas_flag"
225gnu_ld="$gnu_ld_flag"
2121a768 226default_use_cxa_atexit=no
f6c5fbfd 227default_gnu_indirect_function=no
6ab185d6 228target_gtfiles=
c6b9174f 229need_64bit_isa=
08b2bad2 230native_system_header_dir=/usr/include
5ab22850 231target_type_format_char='@'
61ed06c3 232
6a38414a
NN
233# Don't carry these over build->host->target. Please.
234xm_file=
235md_file=
236
9340544b 237# Obsolete configurations.
32243d46 238case ${target} in
0609abda 239 nothing \
32243d46
JM
240 )
241 if test "x$enable_obsolete" != xyes; then
242 echo "*** Configuration ${target} is obsolete." >&2
243 echo "*** Specify --enable-obsolete to build it anyway." >&2
244 echo "*** Support will be REMOVED in the next major release of GCC," >&2
245 echo "*** unless a maintainer comes forward." >&2
246 exit 1
247 fi;;
248esac
9340544b 249
7c942e17
ZW
250# Unsupported targets list. Do not put an entry in this list unless
251# it would otherwise be caught by a more permissive pattern. The list
252# should be in alphabetical order.
b01bc573 253case ${target} in
c4cc7bc1
RE
254 # Avoid special cases that are not obsolete
255 arm*-*-*eabi* \
256 )
257 ;;
258 arm*-wince-pe* \
259 | arm*-*-ecos-elf \
260 | arm*-*-elf \
c4cc7bc1 261 | arm*-*-linux* \
c4cc7bc1
RE
262 | arm*-*-uclinux* \
263 | i[34567]86-go32-* \
7c942e17 264 | i[34567]86-*-go32* \
ebb9f8b0 265 | m68k-*-uclinuxoldabi* \
7c942e17 266 | mips64orion*-*-rtems* \
52c0e446 267 | pdp11-*-bsd \
7c942e17
ZW
268 | sparc-hal-solaris2* \
269 | thumb-*-* \
0db8fa89
GP
270 | *-*-freebsd[12] | *-*-freebsd[12].* \
271 | *-*-freebsd*aout* \
cd985f66 272 | *-*-linux*aout* \
7c942e17 273 | *-*-linux*coff* \
cd985f66 274 | *-*-linux*libc1* \
7c942e17
ZW
275 | *-*-linux*oldld* \
276 | *-*-rtemsaout* \
277 | *-*-rtemscoff* \
1500b428 278 | *-*-solaris2 \
d9f069ab
RO
279 | *-*-solaris2.[0-9] \
280 | *-*-solaris2.[0-9].* \
7888f266 281 | *-*-sysv* \
9ab346a1 282 | vax-*-vms* \
7c942e17 283 )
b01bc573 284 echo "*** Configuration ${target} not supported" 1>&2
7c942e17
ZW
285 exit 1
286 ;;
287esac
288
61ed06c3 289# Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
ba1e6c0b
JM
290# updated in each machine entry. Also set default extra_headers for some
291# machines.
61ed06c3 292tm_p_file=
b01bc573 293cpu_type=`echo ${target} | sed 's/-.*$//'`
a8e04fe6 294cpu_is_64bit=
b01bc573 295case ${target} in
38b2d076
DD
296m32c*-*-*)
297 cpu_type=m32c
298 tmake_file=m32c/t-m32c
41dfca87 299 target_has_targetm_common=no
38b2d076 300 ;;
24034425
IB
301aarch64*-*-*)
302 cpu_type=aarch64
d7f33f07 303 extra_headers="arm_fp16.h arm_neon.h arm_acle.h"
e4ea20c8
KT
304 c_target_objs="aarch64-c.o"
305 cxx_target_objs="aarch64-c.o"
fde9b31b 306 extra_objs="aarch64-builtins.o aarch-common.o cortex-a57-fma-steering.o"
3c03d39d 307 target_gtfiles="\$(srcdir)/config/aarch64/aarch64-builtins.c"
24034425
IB
308 target_has_targetm_common=yes
309 ;;
61ed06c3
HPN
310alpha*-*-*)
311 cpu_type=alpha
34251c0e 312 extra_options="${extra_options} g.opt"
61ed06c3 313 ;;
2beef00e
AO
314am33_2.0-*-linux*)
315 cpu_type=mn10300
316 ;;
53426f6c
JR
317arc*-*-*)
318 cpu_type=arc
cf07c3de
CZ
319 c_target_objs="arc-c.o"
320 cxx_target_objs="arc-c.o"
f9ccf899 321 extra_options="${extra_options} arc/arc-tables.opt"
53426f6c 322 ;;
150b72ed
DJ
323arm*-*-*)
324 cpu_type=arm
33857df2 325 extra_objs="arm-builtins.o aarch-common.o"
de7b5723 326 extra_headers="mmintrin.h arm_neon.h arm_acle.h arm_fp16.h arm_cmse.h"
5ab22850 327 target_type_format_char='%'
b76c3c4b
PB
328 c_target_objs="arm-c.o"
329 cxx_target_objs="arm-c.o"
ad7be009 330 extra_options="${extra_options} arm/arm-tables.opt"
33857df2 331 target_gtfiles="\$(srcdir)/config/arm/arm-builtins.c"
150b72ed 332 ;;
17fad361
AH
333avr-*-*)
334 cpu_type=avr
335 c_target_objs="avr-c.o"
336 cxx_target_objs="avr-c.o"
337 ;;
0d4a78eb
BS
338bfin*-*)
339 cpu_type=bfin
340 ;;
99c5227a
HPN
341crisv32-*)
342 cpu_type=cris
343 ;;
faf9ab98 344frv*) cpu_type=frv
34251c0e 345 extra_options="${extra_options} g.opt"
faf9ab98 346 ;;
fef939d6
JB
347ft32*) cpu_type=ft32
348 target_has_targetm_common=no
349 ;;
cceb575c 350moxie*) cpu_type=moxie
677f3fa8 351 target_has_targetm_common=no
cceb575c 352 ;;
7d33c31d
KH
353fido-*-*)
354 cpu_type=m68k
355 extra_headers=math-68881.h
47c94d21 356 extra_options="${extra_options} m68k/m68k-tables.opt"
7d33c31d 357 ;;
61ed06c3
HPN
358i[34567]86-*-*)
359 cpu_type=i386
ab442df7
MM
360 c_target_objs="i386-c.o"
361 cxx_target_objs="i386-c.o"
d48e78d6 362 extra_options="${extra_options} fused-madd.opt"
b3172cab 363 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
3b8dd071 364 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
cbf2e4d4 365 nmmintrin.h bmmintrin.h fma4intrin.h wmmintrin.h
43a8b705 366 immintrin.h x86intrin.h avxintrin.h xopintrin.h
7fccdfcf 367 ia32intrin.h cross-stdarg.h lwpintrin.h popcntintrin.h
82feeb8d 368 lzcntintrin.h bmiintrin.h bmi2intrin.h tbmintrin.h
756c5857
AI
369 avx2intrin.h avx512fintrin.h fmaintrin.h f16cintrin.h
370 rtmintrin.h xtestintrin.h rdseedintrin.h prfchwintrin.h
371 adxintrin.h fxsrintrin.h xsaveintrin.h xsaveoptintrin.h
c1618f82 372 avx512cdintrin.h avx512erintrin.h avx512pfintrin.h
9cdea277 373 shaintrin.h clflushoptintrin.h xsavecintrin.h
936c0fe4 374 xsavesintrin.h avx512dqintrin.h avx512bwintrin.h
4190ea38 375 avx512vlintrin.h avx512vlbwintrin.h avx512vldqintrin.h
3dcc8af5 376 avx512ifmaintrin.h avx512ifmavlintrin.h avx512vbmiintrin.h
5fbb13a7 377 avx512vbmivlintrin.h avx5124fmapsintrin.h avx5124vnniwintrin.h
79fc8ffe 378 avx512vpopcntdqintrin.h clwbintrin.h mwaitxintrin.h
73e32c47 379 clzerointrin.h pkuintrin.h sgxintrin.h"
61ed06c3 380 ;;
14f73b5a
JH
381x86_64-*-*)
382 cpu_type=i386
ab442df7
MM
383 c_target_objs="i386-c.o"
384 cxx_target_objs="i386-c.o"
d48e78d6 385 extra_options="${extra_options} fused-madd.opt"
b3172cab 386 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
3b8dd071 387 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
cbf2e4d4 388 nmmintrin.h bmmintrin.h fma4intrin.h wmmintrin.h
43a8b705 389 immintrin.h x86intrin.h avxintrin.h xopintrin.h
7fccdfcf 390 ia32intrin.h cross-stdarg.h lwpintrin.h popcntintrin.h
82feeb8d 391 lzcntintrin.h bmiintrin.h tbmintrin.h bmi2intrin.h
756c5857
AI
392 avx2intrin.h avx512fintrin.h fmaintrin.h f16cintrin.h
393 rtmintrin.h xtestintrin.h rdseedintrin.h prfchwintrin.h
394 adxintrin.h fxsrintrin.h xsaveintrin.h xsaveoptintrin.h
c1618f82 395 avx512cdintrin.h avx512erintrin.h avx512pfintrin.h
9cdea277 396 shaintrin.h clflushoptintrin.h xsavecintrin.h
936c0fe4 397 xsavesintrin.h avx512dqintrin.h avx512bwintrin.h
4190ea38 398 avx512vlintrin.h avx512vlbwintrin.h avx512vldqintrin.h
3dcc8af5 399 avx512ifmaintrin.h avx512ifmavlintrin.h avx512vbmiintrin.h
5fbb13a7 400 avx512vbmivlintrin.h avx5124fmapsintrin.h avx5124vnniwintrin.h
79fc8ffe 401 avx512vpopcntdqintrin.h clwbintrin.h mwaitxintrin.h
73e32c47 402 clzerointrin.h pkuintrin.h sgxintrin.h"
14f73b5a 403 ;;
817e13c4
JM
404ia64-*-*)
405 extra_headers=ia64intrin.h
f19f1e5e 406 extra_options="${extra_options} g.opt fused-madd.opt"
817e13c4 407 ;;
cd985f66 408hppa*-*-*)
61ed06c3
HPN
409 cpu_type=pa
410 ;;
34251c0e
JM
411lm32*)
412 extra_options="${extra_options} g.opt"
413 ;;
ad126521
KI
414m32r*-*-*)
415 cpu_type=m32r
34251c0e 416 extra_options="${extra_options} g.opt"
ad126521 417 ;;
ba1e6c0b
JM
418m68k-*-*)
419 extra_headers=math-68881.h
47c94d21 420 extra_options="${extra_options} m68k/m68k-tables.opt"
61ed06c3 421 ;;
80920132
ME
422microblaze*-*-*)
423 cpu_type=microblaze
424 extra_options="${extra_options} g.opt"
425 ;;
61ed06c3
HPN
426mips*-*-*)
427 cpu_type=mips
6cf538da 428 extra_headers="loongson.h msa.h"
d41c8b4c 429 extra_objs="frame-header-opt.o"
e5aac417 430 extra_options="${extra_options} g.opt fused-madd.opt mips/mips-tables.opt"
61ed06c3 431 ;;
9304f876
CJW
432nds32*)
433 cpu_type=nds32
434 extra_headers="nds32_intrinsic.h"
c0c935b5 435 extra_objs="nds32-cost.o nds32-intrinsic.o nds32-isr.o nds32-md-auxiliary.o nds32-pipelines-auxiliary.o nds32-predicates.o nds32-memory-manipulation.o nds32-fp-as-gp.o"
9304f876 436 ;;
e430824f
CLT
437nios2-*-*)
438 cpu_type=nios2
439 extra_options="${extra_options} g.opt"
00020dda 440 ;;
738f2522
BS
441nvptx-*-*)
442 cpu_type=nvptx
443 ;;
61ed06c3
HPN
444powerpc*-*-*)
445 cpu_type=rs6000
0258b6e4 446 extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h spu2vmx.h vec_types.h si2vmx.h htmintrin.h htmxlintrin.h"
a8e04fe6 447 case x$with_cpu in
1840c953 448 xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456789]|xpower6x|xrs64a|xcell|xa2|xe500mc64|xe5500|xe6500)
a8e04fe6
AM
449 cpu_is_64bit=yes
450 ;;
451 esac
f10d3ac9 452 extra_options="${extra_options} g.opt fused-madd.opt rs6000/rs6000-tables.opt"
4977bab6
ZW
453 ;;
454rs6000*-*-*)
f10d3ac9 455 extra_options="${extra_options} g.opt fused-madd.opt rs6000/rs6000-tables.opt"
4977bab6 456 ;;
61ed06c3
HPN
457sparc*-*-*)
458 cpu_type=sparc
8d12174d
DM
459 c_target_objs="sparc-c.o"
460 cxx_target_objs="sparc-c.o"
e7f799ce 461 extra_headers="visintrin.h"
61ed06c3 462 ;;
85d9c13c
TS
463spu*-*-*)
464 cpu_type=spu
85d9c13c 465 ;;
4977bab6 466s390*-*-*)
6cecb0aa 467 cpu_type=s390
d7ecb504 468 extra_options="${extra_options} fused-madd.opt"
3af82a61 469 extra_headers="s390intrin.h htmintrin.h htmxlintrin.h vecintrin.h"
4977bab6 470 ;;
b4eb03fe 471# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
a1fcb9a1 472sh[123456789lbe]*-*-* | sh-*-*)
fa5322fa 473 cpu_type=sh
159b4b2f 474 extra_options="${extra_options} fused-madd.opt"
ac973375 475 extra_objs="${extra_objs} sh_treg_combine.o sh-mem.o sh_optimize_sett_clrt.o"
fa5322fa 476 ;;
fd4df33d
NC
477v850*-*-*)
478 cpu_type=v850
479 ;;
bcead286
BS
480tic6x-*-*)
481 cpu_type=c6x
482 extra_headers="c6x_intrinsics.h"
483 extra_options="${extra_options} c6x/c6x-tables.opt"
484 ;;
47c21725
RH
485xtensa*-*-*)
486 extra_options="${extra_options} fused-madd.opt"
487 ;;
dd552284
WL
488tilegx*-*-*)
489 cpu_type=tilegx
dd552284 490 ;;
341c653c 491tilepro*-*-*)
dd552284 492 cpu_type=tilepro
dd552284 493 ;;
61ed06c3
HPN
494esac
495
496tm_file=${cpu_type}/${cpu_type}.h
b6d7afec 497if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
61ed06c3 498then
b6d7afec
ZW
499 tm_p_file=${cpu_type}/${cpu_type}-protos.h
500fi
1c0ca89d
ZW
501extra_modes=
502if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
503then
504 extra_modes=${cpu_type}/${cpu_type}-modes.def
505fi
75685792
RS
506if test -f ${srcdir}/config/${cpu_type}/${cpu_type}.opt
507then
508 extra_options="${extra_options} ${cpu_type}/${cpu_type}.opt"
509fi
e564e618 510
b01bc573 511case ${target} in
17a819cb 512aarch64*-*-*)
c451f4d6 513 tm_p_file="${tm_p_file} arm/aarch-common-protos.h"
17a819cb
YZ
514 case ${with_abi} in
515 "")
516 if test "x$with_multilib_list" = xilp32; then
517 tm_file="aarch64/biarchilp32.h ${tm_file}"
518 else
519 tm_file="aarch64/biarchlp64.h ${tm_file}"
520 fi
521 ;;
522 ilp32)
523 tm_file="aarch64/biarchilp32.h ${tm_file}"
524 ;;
525 lp64)
526 tm_file="aarch64/biarchlp64.h ${tm_file}"
527 ;;
528 *)
529 echo "Unknown ABI used in --with-abi=$with_abi"
530 exit 1
531 esac
532 ;;
922e3e33 533i[34567]86-*-*)
0465e49e
L
534 if test "x$with_abi" != x; then
535 echo "This target does not support --with-abi."
536 exit 1
537 fi
0e462a95 538 if test "x$enable_cld" = xyes; then
922e3e33
UB
539 tm_defines="${tm_defines} USE_IX86_CLD=1"
540 fi
d79389af
L
541 if test "x$enable_frame_pointer" = xyes; then
542 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
543 fi
bf016de8 544 tm_file="vxworks-dummy.h ${tm_file}"
922e3e33 545 ;;
e564e618 546x86_64-*-*)
0465e49e
L
547 case ${with_abi} in
548 "")
549 if test "x$with_multilib_list" = xmx32; then
550 tm_file="i386/biarchx32.h ${tm_file}"
551 else
552 tm_file="i386/biarch64.h ${tm_file}"
553 fi
554 ;;
555 64 | m64)
556 tm_file="i386/biarch64.h ${tm_file}"
557 ;;
558 x32 | mx32)
559 tm_file="i386/biarchx32.h ${tm_file}"
560 ;;
561 *)
562 echo "Unknown ABI used in --with-abi=$with_abi"
563 exit 1
564 esac
0e462a95 565 if test "x$enable_cld" = xyes; then
922e3e33
UB
566 tm_defines="${tm_defines} USE_IX86_CLD=1"
567 fi
d79389af
L
568 if test "x$enable_frame_pointer" = xyes; then
569 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
570 fi
bf016de8 571 tm_file="vxworks-dummy.h ${tm_file}"
e564e618 572 ;;
c3f35647
SN
573arm*-*-*)
574 tm_p_file="${tm_p_file} arm/aarch-common-protos.h"
575 tm_file="vxworks-dummy.h ${tm_file}"
576 ;;
577mips*-*-* | sh*-*-* | sparc*-*-*)
1bfa5973
JJ
578 tm_file="vxworks-dummy.h ${tm_file}"
579 ;;
e564e618
DB
580esac
581
61ed06c3 582# On a.out targets, we need to use collect2.
b01bc573 583case ${target} in
61ed06c3
HPN
584*-*-*aout*)
585 use_collect2=yes
586 ;;
0e5a4ad8 587esac
61ed06c3 588
2c8f43e6 589# Common C libraries.
755658a5 590tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 LIBC_MUSL=4"
2c8f43e6 591
646bdeab
L
592# 32-bit x86 processors supported by --with-arch=. Each processor
593# MUST be separated by exactly one space.
594x86_archs="athlon athlon-4 athlon-fx athlon-mp athlon-tbird \
595athlon-xp k6 k6-2 k6-3 geode c3 c3-2 winchip-c6 winchip2 i386 i486 \
596i586 i686 pentium pentium-m pentium-mmx pentium2 pentium3 pentium3m \
2d6b2e28 597pentium4 pentium4m pentiumpro prescott lakemont"
646bdeab
L
598
599# 64-bit x86 processors supported by --with-arch=. Each processor
600# MUST be separated by exactly one space.
601x86_64_archs="amdfam10 athlon64 athlon64-sse3 barcelona bdver1 bdver2 \
9ce29eb0 602bdver3 bdver4 znver1 btver1 btver2 k8 k8-sse3 opteron opteron-sse3 nocona \
646bdeab 603core2 corei7 corei7-avx core-avx-i core-avx2 atom slm nehalem westmere \
06caf59d
KY
604sandybridge ivybridge haswell broadwell bonnell silvermont knl \
605skylake-avx512 x86-64 native"
646bdeab
L
606
607# Additional x86 processors supported by --with-cpu=. Each processor
608# MUST be separated by exactly one space.
609x86_cpus="generic intel"
610
4977bab6 611# Common parts for widely ported systems.
b01bc573 612case ${target} in
4d6d5bb2 613*-*-darwin*)
c3a9a336 614 tmake_file="t-darwin ${cpu_type}/t-darwin"
80c85ca2
MS
615 tm_file="${tm_file} darwin.h"
616 case ${target} in
c9c80434 617 *-*-darwin9*)
80c85ca2
MS
618 tm_file="${tm_file} darwin9.h"
619 ;;
0674c9de 620 *-*-darwin[1][01]*)
c9c80434
JH
621 tm_file="${tm_file} darwin9.h darwin10.h"
622 ;;
0674c9de
JH
623 *-*-darwin[1][2-9]* | *-*-darwin[2][0-9]*)
624 tm_file="${tm_file} darwin9.h darwin10.h darwin12.h"
625 ;;
80c85ca2
MS
626 esac
627 tm_file="${tm_file} ${cpu_type}/darwin.h"
4d6d5bb2 628 tm_p_file="${tm_p_file} darwin-protos.h"
4d6d5bb2 629 target_gtfiles="\$(srcdir)/config/darwin.c"
6ac49599 630 extra_options="${extra_options} darwin.opt"
ab442df7
MM
631 c_target_objs="${c_target_objs} darwin-c.o"
632 cxx_target_objs="${cxx_target_objs} darwin-c.o"
c776a6d0 633 fortran_target_objs="darwin-f.o"
acce4e77 634 target_has_targetcm=yes
4d6d5bb2 635 extra_objs="darwin.o"
e46b55d0 636 extra_gcc_objs="darwin-driver.o"
747b9f55 637 default_use_cxa_atexit=yes
428ddbf0 638 use_gcc_stdint=wrap
4d6d5bb2
NN
639 case ${enable_threads} in
640 "" | yes | posix) thread_file='posix' ;;
641 esac
642 ;;
dbed5a9b
JM
643*-*-dragonfly*)
644 gas=yes
645 gnu_ld=yes
646 tmake_file="t-slibgcc"
647 case ${enable_threads} in
648 "" | yes | posix)
649 thread_file='posix'
650 ;;
651 no | single)
652 # Let these non-posix thread selections fall through if requested
653 ;;
654 *)
655 echo 'Unknown thread configuration for DragonFly BSD'
656 exit 1
657 ;;
658 esac
659 extra_options="$extra_options rpath.opt dragonfly.opt"
660 default_use_cxa_atexit=yes
661 use_gcc_stdint=wrap
662 ;;
4d6d5bb2
NN
663*-*-freebsd*)
664 # This is the generic ELF configuration of FreeBSD. Later
665 # machine-specific sections may refine and add to this
666 # configuration.
667 #
668 # Due to tm_file entry ordering issues that vary between cpu
669 # architectures, we only define fbsd_tm_file to allow the
670 # machine-specific section to dictate the final order of all
671 # entries of tm_file with the minor exception that components
672 # of the tm_file set here will always be of the form:
673 #
674 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
675 #
676 # The machine-specific section should not tamper with this
677 # ordering but may order all other entries of tm_file as it
678 # pleases around the provided core setting.
679 gas=yes
680 gnu_ld=yes
b2449d40 681 fbsd_major=`echo ${target} | sed -e 's/.*freebsd//g' | sed -e 's/\..*//g'`
faabf788
AT
682 if test "$fbsd_major" = ""; then
683 echo "Specify the major version number of the targeted FreeBSD release"
684 echo "like this: --target=amd64-unknown-freebsd10.1"
685 exit 1
686 fi
b2449d40 687 tm_defines="${tm_defines} FBSD_MAJOR=${fbsd_major}"
f9989b51 688 tmake_file="t-slibgcc"
4d6d5bb2
NN
689 case ${enable_threads} in
690 no)
691 fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
692 ;;
769e49eb 693 "" | yes | posix)
4d6d5bb2 694 thread_file='posix'
4d6d5bb2 695 ;;
f7288899 696 *)
4d6d5bb2
NN
697 echo 'Unknown thread configuration for FreeBSD'
698 exit 1
699 ;;
700 esac
5ac69a80 701 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h freebsd-stdint.h"
baf3ead6 702 extra_options="$extra_options rpath.opt freebsd.opt"
8a47c6c4
LR
703 case ${target} in
704 *-*-freebsd[345].*)
705 :;;
706 *)
707 default_use_cxa_atexit=yes;;
708 esac
5ac69a80 709 use_gcc_stdint=wrap
4d6d5bb2 710 ;;
491b3c5f
JC
711*-*-fuchsia*)
712 native_system_header_dir=/include
713 ;;
8466af06 714*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
b8e7038e 715 extra_options="$extra_options gnu-user.opt"
e3029773
NN
716 gas=yes
717 gnu_ld=yes
718 case ${enable_threads} in
719 "" | yes | posix) thread_file='posix' ;;
720 esac
f9989b51 721 tmake_file="t-slibgcc"
3328a3b7 722 case $target in
8466af06 723 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-kopensolaris*-gnu)
3328a3b7
TS
724 :;;
725 *-*-gnu*)
08b2bad2
SB
726 native_system_header_dir=/include
727 ;;
3328a3b7 728 esac
5fa747a7 729 # Linux C libraries selection switch: glibc / uclibc / bionic.
74c70253 730 # uclibc and bionic aren't usable for GNU/Hurd and neither for GNU/k*BSD.
3328a3b7
TS
731 case $target in
732 *linux*)
5fa747a7
MK
733 tm_p_file="${tm_p_file} linux-protos.h"
734 tmake_file="${tmake_file} t-linux"
735 extra_objs="${extra_objs} linux.o"
736 extra_options="${extra_options} linux.opt"
737 ;;
3328a3b7 738 esac
74c70253
MK
739 case $target in
740 *-*-*android*)
741 tm_defines="$tm_defines DEFAULT_LIBC=LIBC_BIONIC"
742 ;;
464aea98 743 *-*-*uclibc*)
74c70253 744 tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC"
7bd85ce0 745 ;;
755658a5
GR
746 *-*-*musl*)
747 tm_defines="$tm_defines DEFAULT_LIBC=LIBC_MUSL"
748 ;;
7bd85ce0 749 *)
74c70253 750 tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC"
464aea98
JM
751 ;;
752 esac
74c70253
MK
753 # Assume that glibc or uClibc or Bionic are being used and so __cxa_atexit
754 # is provided.
c5dde55b 755 default_use_cxa_atexit=yes
1617e5ee 756 use_gcc_tgmath=no
207bf79d 757 use_gcc_stdint=wrap
51b9db92
MK
758 # Enable compilation for Android by default for *android* targets.
759 case $target in
760 *-*-*android*)
761 tm_defines="$tm_defines ANDROID_DEFAULT=1"
762 ;;
763 *)
764 tm_defines="$tm_defines ANDROID_DEFAULT=0"
765 ;;
766 esac
1efcb8c6
JM
767 c_target_objs="${c_target_objs} glibc-c.o"
768 cxx_target_objs="${cxx_target_objs} glibc-c.o"
769 tmake_file="${tmake_file} t-glibc"
770 target_has_targetcm=yes
e3029773 771 ;;
f982f805 772*-*-netbsd*)
f9989b51 773 tmake_file="t-slibgcc"
e3029773
NN
774 gas=yes
775 gnu_ld=yes
0333b8d0 776 use_gcc_stdint=wrap
51b7c247 777
e3029773
NN
778 # NetBSD 2.0 and later get POSIX threads enabled by default.
779 # Allow them to be explicitly enabled on any other version.
780 case ${enable_threads} in
781 "")
782 case ${target} in
783 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
784 thread_file='posix'
785 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
786 ;;
787 esac
788 ;;
789 yes | posix)
790 thread_file='posix'
791 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
792 ;;
793 esac
1169f9e0 794
e3029773
NN
795 # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
796 # default (unless overridden by --disable-__cxa_atexit).
797 case ${target} in
798 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
799 default_use_cxa_atexit=yes
800 ;;
801 esac
802 ;;
4d6d5bb2 803*-*-openbsd*)
f9989b51 804 tmake_file="t-openbsd"
e3029773 805 case ${enable_threads} in
4d6d5bb2 806 yes)
e3029773 807 thread_file='posix'
e3029773
NN
808 ;;
809 esac
af9e6b74
MK
810 case ${target} in
811 *-*-openbsd4.[3-9]|*-*-openbsd[5-9]*)
812 default_use_cxa_atexit=yes
813 ;;
814 esac
e3029773 815 ;;
bfdd80d4
JS
816*-*-phoenix*)
817 gas=yes
818 gnu_ld=yes
819 default_use_cxa_atexit=yes
820 ;;
8179b3c8
NN
821*-*-rtems*)
822 case ${enable_threads} in
776c9a0d
SH
823 "" | yes | rtems) thread_file='rtems' ;;
824 posix) thread_file='posix' ;;
825 no) ;;
826 *)
827 echo 'Unknown thread configuration for RTEMS'
828 exit 1
829 ;;
8179b3c8 830 esac
aefe4056 831 tmake_file="${tmake_file} t-rtems"
cd33a412 832 extra_options="${extra_options} rtems.opt"
228c1313 833 default_use_cxa_atexit=yes
207bf79d
JM
834 use_gcc_stdint=wrap
835 ;;
836*-*-uclinux*)
b8e7038e 837 extra_options="$extra_options gnu-user.opt"
207bf79d 838 use_gcc_stdint=wrap
09955a32
WB
839 case ${enable_threads} in
840 "" | yes | posix) thread_file='posix' ;;
841 esac
b5a54c03 842 tm_defines="$tm_defines DEFAULT_LIBC=LIBC_UCLIBC SINGLE_LIBC"
8179b3c8 843 ;;
5a579c3b
LE
844*-*-rdos*)
845 use_gcc_stdint=wrap
846 ;;
c28aa982 847*-*-solaris2*)
7ecfa34f
RO
848 # i?86-*-solaris2* needs to insert headers between cpu default and
849 # Solaris 2 specific ones.
2cf03b11
RO
850 sol2_tm_file_head="dbxelf.h elfos.h ${cpu_type}/sysv4.h"
851 sol2_tm_file_tail="${cpu_type}/sol2.h sol2.h"
852 sol2_tm_file="${sol2_tm_file_head} ${sol2_tm_file_tail}"
29424c7b
RO
853 case ${target} in
854 *-*-solaris2.1[2-9]*)
855 # __cxa_atexit was introduced in Solaris 12.
856 default_use_cxa_atexit=yes
857 ;;
858 esac
d9f069ab 859 use_gcc_stdint=wrap
7ecfa34f
RO
860 if test x$gnu_ld = xyes; then
861 tm_file="usegld.h ${tm_file}"
862 fi
863 if test x$gas = xyes; then
864 tm_file="usegas.h ${tm_file}"
865 fi
866 tm_p_file="${tm_p_file} sol2-protos.h"
b040f2be 867 tmake_file="${tmake_file} t-sol2 t-slibgcc"
7ecfa34f 868 c_target_objs="${c_target_objs} sol2-c.o"
5b880ea6
RO
869 cxx_target_objs="${cxx_target_objs} sol2-c.o sol2-cxx.o"
870 extra_objs="sol2.o sol2-stubs.o"
c28aa982 871 extra_options="${extra_options} sol2.opt"
7ecfa34f
RO
872 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
873 "":yes:* | yes:yes:* )
874 thread_file=posix
875 ;;
876 esac
c28aa982 877 ;;
18a24fed
TG
878*-*-*vms*)
879 extra_options="${extra_options} vms/vms.opt"
880 xmake_file=vms/x-vms
b040f2be 881 tmake_file="vms/t-vms t-slibgcc"
db8b22ef
TG
882 extra_objs="vms.o"
883 target_gtfiles="$target_gtfiles \$(srcdir)/config/vms/vms.c"
884 tm_p_file="${tm_p_file} vms/vms-protos.h"
d8aba32a 885 xm_file="vms/xm-vms.h"
c750e768
TG
886 c_target_objs="vms-c.o"
887 cxx_target_objs="vms-c.o"
c531f06a 888 fortran_target_objs="vms-f.o"
20bfad56
TG
889 use_gcc_stdint=provide
890 tm_file="${tm_file} vms/vms-stdint.h"
18a24fed
TG
891 if test x$gnu_ld != xyes; then
892 # Build wrappers for native case.
893 extra_programs="ld\$(exeext) ar\$(exeext)"
894 tmake_file="$tmake_file vms/t-vmsnative"
895 fi
896 ;;
4977bab6 897*-*-vxworks*)
e3029773 898 tmake_file=t-vxworks
2eab15c9
PE
899 xm_defines=POSIX
900 extra_options="${extra_options} vxworks.opt"
6994430a 901 extra_objs="$extra_objs vxworks.o"
55047c9d
PE
902 case ${enable_threads} in
903 no) ;;
904 "" | yes | vxworks) thread_file='vxworks' ;;
905 *) echo 'Unknown thread configuration for VxWorks'; exit 1 ;;
906 esac
e3029773 907 ;;
53426f6c 908*-*-elf|arc*-*-elf*)
c5dde55b
NC
909 # Assume that newlib is being used and so __cxa_atexit is provided.
910 default_use_cxa_atexit=yes
207bf79d 911 use_gcc_stdint=wrap
c5dde55b 912 ;;
61ed06c3
HPN
913esac
914
b01bc573 915case ${target} in
491b3c5f 916aarch64*-*-elf | aarch64*-*-fuchsia* | aarch64*-*-rtems*)
24034425
IB
917 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h"
918 tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-elf-raw.h"
919 tmake_file="${tmake_file} aarch64/t-aarch64"
11779999
JS
920 case $target in
921 aarch64-*-elf*)
922 use_gcc_stdint=wrap
923 ;;
491b3c5f
JC
924 aarch64-*-fuchsia*)
925 tm_file="${tm_file} fuchsia.h"
926 ;;
11779999
JS
927 aarch64-*-rtems*)
928 tm_file="${tm_file} rtems.h aarch64/rtems.h"
929 ;;
930 esac
24034425
IB
931 case $target in
932 aarch64_be-*)
933 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
934 ;;
935 esac
17a819cb
YZ
936 aarch64_multilibs="${with_multilib_list}"
937 if test "$aarch64_multilibs" = "default"; then
938 aarch64_multilibs="lp64,ilp32"
939 fi
940 aarch64_multilibs=`echo $aarch64_multilibs | sed -e 's/,/ /g'`
941 for aarch64_multilib in ${aarch64_multilibs}; do
942 case ${aarch64_multilib} in
943 ilp32 | lp64 )
944 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${aarch64_multilib}"
945 ;;
946 *)
947 echo "--with-multilib-list=${aarch64_multilib} not supported."
948 exit 1
949 esac
950 done
951 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
24034425 952 ;;
b20e7532
AT
953aarch64*-*-freebsd*)
954 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file}"
955 tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-freebsd.h"
956 tmake_file="${tmake_file} aarch64/t-aarch64 aarch64/t-aarch64-freebsd"
957 ;;
24034425
IB
958aarch64*-*-linux*)
959 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h"
960 tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-linux.h"
961 tmake_file="${tmake_file} aarch64/t-aarch64 aarch64/t-aarch64-linux"
962 case $target in
963 aarch64_be-*)
964 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
965 ;;
966 esac
17a819cb
YZ
967 aarch64_multilibs="${with_multilib_list}"
968 if test "$aarch64_multilibs" = "default"; then
969 # TODO: turn on ILP32 multilib build after its support is mature.
970 # aarch64_multilibs="lp64,ilp32"
971 aarch64_multilibs="lp64"
972 fi
973 aarch64_multilibs=`echo $aarch64_multilibs | sed -e 's/,/ /g'`
974 for aarch64_multilib in ${aarch64_multilibs}; do
975 case ${aarch64_multilib} in
976 ilp32 | lp64 )
977 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${aarch64_multilib}"
978 ;;
979 *)
980 echo "--with-multilib-list=${aarch64_multilib} not supported."
981 exit 1
982 esac
983 done
984 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
24034425 985 ;;
61ed06c3 986alpha*-*-linux*)
8f27fc6b 987 tm_file="elfos.h ${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h glibc-stdint.h"
a32fc216 988 tmake_file="${tmake_file} alpha/t-linux alpha/t-alpha"
183c38a4 989 extra_options="${extra_options} alpha/elf.opt"
61ed06c3
HPN
990 ;;
991alpha*-*-freebsd*)
8f27fc6b 992 tm_file="elfos.h ${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
a32fc216 993 tmake_file="${tmake_file} alpha/t-alpha"
183c38a4 994 extra_options="${extra_options} alpha/elf.opt"
61ed06c3
HPN
995 ;;
996alpha*-*-netbsd*)
8f27fc6b 997 tm_file="elfos.h ${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
a32fc216 998 tmake_file="${tmake_file} alpha/t-alpha"
183c38a4
JM
999 extra_options="${extra_options} netbsd.opt netbsd-elf.opt \
1000 alpha/elf.opt"
61ed06c3 1001 ;;
61ed06c3 1002alpha*-*-openbsd*)
aa58f943 1003 tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
8f27fc6b 1004 tm_file="elfos.h alpha/alpha.h alpha/elf.h openbsd.h openbsd-stdint.h alpha/openbsd.h openbsd-libpthread.h"
a32fc216 1005 tmake_file="${tmake_file} alpha/t-alpha"
183c38a4 1006 extra_options="${extra_options} openbsd.opt alpha/elf.opt"
61ed06c3 1007 # default x-alpha is only appropriate for dec-osf.
61ed06c3 1008 ;;
ef057c45 1009alpha*-dec-*vms*)
ba89fcb6 1010 tm_file="${tm_file} vms/vms.h alpha/vms.h"
a32fc216 1011 tmake_file="${tmake_file} alpha/t-vms alpha/t-alpha"
61ed06c3 1012 ;;
53426f6c
JR
1013arc*-*-elf*)
1014 extra_headers="arc-simd.h"
f9ccf899
CZ
1015 tm_file="arc/arc-arch.h dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1016 tmake_file="arc/t-multilib arc/t-arc"
1017 extra_gcc_objs="driver-arc.o"
1018 if test "x$with_cpu" != x; then
1019 tm_defines="${tm_defines} TARGET_CPU_BUILD=PROCESSOR_$with_cpu"
1020 fi
53426f6c
JR
1021 if test x${with_endian} = x; then
1022 case ${target} in
1023 arc*be-*-* | arc*eb-*-*) with_endian=big ;;
1024 *) with_endian=little ;;
1025 esac
1026 fi
1027 case ${with_endian} in
1028 big|little) ;;
1029 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
1030 esac
1031 case ${with_endian} in
1032 big*) tm_defines="DRIVER_ENDIAN_SELF_SPECS=\\\"%{!EL:%{!mlittle-endian:-mbig-endian}}\\\" ${tm_defines}"
1033 esac
1034 ;;
1035arc*-*-linux-uclibc*)
1036 extra_headers="arc-simd.h"
62440b4f 1037 tm_file="arc/arc-arch.h dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}"
f9ccf899 1038 tmake_file="${tmake_file} arc/t-uClibc arc/t-arc"
53426f6c
JR
1039 tm_defines="${tm_defines} TARGET_SDATA_DEFAULT=0"
1040 tm_defines="${tm_defines} TARGET_MMEDIUM_CALLS_DEFAULT=1"
f9ccf899
CZ
1041 extra_gcc_objs="driver-arc.o"
1042 if test "x$with_cpu" != x; then
1043 tm_defines="${tm_defines} TARGET_CPU_BUILD=PROCESSOR_$with_cpu"
1044 fi
53426f6c
JR
1045 if test x${with_endian} = x; then
1046 case ${target} in
1047 arc*be-*-* | arc*eb-*-*) with_endian=big ;;
1048 *) with_endian=little ;;
1049 esac
1050 fi
1051 case ${with_endian} in
1052 big|little) ;;
1053 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
1054 esac
1055 case ${with_endian} in
1056 big*) tm_defines="DRIVER_ENDIAN_SELF_SPECS=\\\"%{!EL:%{!mlittle-endian:-mbig-endian}}\\\" ${tm_defines}"
1057 esac
1058 ;;
55047c9d 1059arm-wrs-vxworks)
c447f774 1060 tm_file="elfos.h arm/elf.h arm/aout.h ${tm_file} vx-common.h vxworks.h arm/vxworks.h"
59793c51 1061 extra_options="${extra_options} arm/vxworks.opt"
2f71a20a 1062 tmake_file="${tmake_file} arm/t-arm arm/t-vxworks"
d3d3f1af 1063 target_cpu_cname="arm6"
55047c9d 1064 ;;
82a19768
AT
1065arm*-*-freebsd*) # ARM FreeBSD EABI
1066 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h"
1067 case $target in
1068 arm*b-*-freebsd*)
1069 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
1070 ;;
1071 esac
1072 tmake_file="${tmake_file} arm/t-arm arm/t-bpabi"
1073 tm_file="${tm_file} arm/bpabi.h arm/freebsd.h arm/aout.h arm/arm.h"
1074 case $target in
1075 armv6*-*-freebsd*)
d3d3f1af 1076 target_cpu_cname="arm1176jzfs"
82a19768 1077 tm_defines="${tm_defines} TARGET_FREEBSD_ARMv6=1"
c8743fc5
AT
1078 if test $fbsd_major -ge 11; then
1079 tm_defines="${tm_defines} TARGET_FREEBSD_ARM_HARD_FLOAT=1"
1080 fi
82a19768 1081 ;;
d3d3f1af
RE
1082 *)
1083 target_cpu_cname="arm9"
1084 ;;
82a19768
AT
1085 esac
1086 with_tls=${with_tls:-gnu}
1087 ;;
69474c3c 1088arm*-*-netbsdelf*)
1bfa5973 1089 tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h ${tm_file} arm/netbsd-elf.h"
a4714d14 1090 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
f9989b51 1091 tmake_file="${tmake_file} arm/t-arm"
d3d3f1af 1092 target_cpu_cname="arm6"
69474c3c 1093 ;;
9945a876 1094arm*-*-linux-*) # ARM GNU/Linux with ELF
8e38461c 1095 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"
5fa747a7 1096 extra_options="${extra_options} linux-android.opt"
d3a9662c 1097 case $target in
e3ed9d60 1098 arm*b-*-linux*)
c4cc7bc1
RE
1099 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
1100 ;;
d3a9662c 1101 esac
f423a9e4 1102 tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
4e4fa3c5 1103 tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h arm/aout.h vxworks-dummy.h arm/arm.h"
d3d3f1af 1104 target_cpu_cname="arm10tdmi"
c4cc7bc1 1105 # Define multilib configuration for arm-linux-androideabi.
077fc835 1106 case ${target} in
c4cc7bc1
RE
1107 *-androideabi)
1108 tmake_file="$tmake_file arm/t-linux-androideabi"
077fc835
KH
1109 ;;
1110 esac
c4cc7bc1
RE
1111 # The EABI requires the use of __cxa_atexit.
1112 default_use_cxa_atexit=yes
7cf13d1f 1113 with_tls=${with_tls:-gnu}
61ed06c3 1114 ;;
c4cc7bc1 1115arm*-*-uclinux*eabi*) # ARM ucLinux
207bf79d 1116 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h glibc-stdint.h"
aefe4056 1117 tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf arm/t-bpabi"
1bfa5973 1118 tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h arm/aout.h vxworks-dummy.h arm/arm.h"
d3d3f1af 1119 target_cpu_cname="arm7tdmi"
c4cc7bc1
RE
1120 # The EABI requires the use of __cxa_atexit.
1121 default_use_cxa_atexit=yes
0e5a4ad8 1122 ;;
bfdd80d4
JS
1123arm*-*-phoenix*)
1124 tm_file="elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
1125 tm_file="${tm_file} newlib-stdint.h phoenix.h"
1126 tm_file="${tm_file} arm/aout.h arm/arm.h"
1127 tmake_file="${tmake_file} arm/t-arm arm/t-bpabi arm/t-phoenix"
d3d3f1af 1128 target_cpu_cname="arm7tdmi"
bfdd80d4 1129 ;;
491b3c5f 1130arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems* | arm*-*-fuchsia*)
ac8d93a7
SL
1131 case ${target} in
1132 arm*eb-*-eabi*)
1133 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
1134 esac
e6fc6c9b 1135 default_use_cxa_atexit=yes
b3f8d95d 1136 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
aefe4056 1137 tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf"
d3d3f1af 1138 target_cpu_cname="arm7tdmi"
b3f8d95d 1139 case ${target} in
f9a02408 1140 arm*-*-eabi*)
51b9db92 1141 tm_file="$tm_file newlib-stdint.h"
e04d8a63 1142 tmake_file="${tmake_file} arm/t-bpabi"
207bf79d 1143 use_gcc_stdint=wrap
f9a02408 1144 ;;
491b3c5f
JC
1145 arm*-*-fuchsia*)
1146 tm_file="${tm_file} fuchsia.h arm/fuchsia-elf.h glibc-stdint.h"
1147 tmake_file="${tmake_file} arm/t-bpabi"
1148 target_cpu_cname="genericv7a"
1149 ;;
05242957 1150 arm*-*-rtems*)
5be0a29b
SH
1151 tm_file="${tm_file} rtems.h arm/rtems.h newlib-stdint.h"
1152 tmake_file="${tmake_file} arm/t-bpabi arm/t-rtems"
e36c5271 1153 ;;
b3f8d95d
MM
1154 arm*-*-symbianelf*)
1155 tm_file="${tm_file} arm/symbian.h"
f9a02408
MM
1156 # We do not include t-bpabi for Symbian OS because the system
1157 # provides its own implementation of the BPABI functions.
c0354bf4 1158 tmake_file="${tmake_file} arm/t-symbian"
d3d3f1af 1159 target_cpu_cname="arm10tdmi"
b3f8d95d
MM
1160 ;;
1161 esac
1bfa5973 1162 tm_file="${tm_file} arm/aout.h vxworks-dummy.h arm/arm.h"
336bd6ac 1163 ;;
61ed06c3 1164avr-*-*)
4a2caf6c 1165 tm_file="elfos.h avr/elf.h avr/avr-arch.h avr/avr.h avr/specs.h dbxelf.h avr/avr-stdint.h"
b588ae30
GJL
1166 if test x${with_avrlibc} != xno; then
1167 tm_file="${tm_file} ${cpu_type}/avrlibc.h"
1168 tm_defines="${tm_defines} WITH_AVRLIBC"
1169 fi
4de80584 1170 tmake_file="${tmake_file} avr/t-avr avr/t-multilib"
207bf79d 1171 use_gcc_stdint=wrap
4a2caf6c 1172 extra_gcc_objs="driver-avr.o avr-devices.o"
6c7dfafe 1173 extra_objs="avr-devices.o avr-log.o"
61ed06c3 1174 ;;
0d4a78eb 1175bfin*-elf*)
207bf79d 1176 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
6bad46f7
JZ
1177 tmake_file=bfin/t-bfin-elf
1178 use_collect2=no
1179 ;;
1f4174d4 1180bfin*-uclinux*)
8e38461c 1181 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h glibc-stdint.h bfin/uclinux.h"
6bad46f7 1182 tmake_file=bfin/t-bfin-uclinux
6bad46f7
JZ
1183 use_collect2=no
1184 ;;
344189f9 1185bfin*-linux-uclibc*)
8e38461c 1186 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"
e08cf345 1187 tmake_file="${tmake_file} bfin/t-bfin-linux"
6bad46f7
JZ
1188 use_collect2=no
1189 ;;
152167d5 1190bfin*-rtems*)
1ddc8057 1191 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h newlib-stdint.h"
aefe4056 1192 tmake_file="${tmake_file} bfin/t-rtems"
6bad46f7 1193 ;;
0d4a78eb 1194bfin*-*)
207bf79d 1195 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h bfin/elf.h"
6bad46f7 1196 use_collect2=no
207bf79d 1197 use_gcc_stdint=wrap
6bad46f7 1198 ;;
b25364a0 1199cr16-*-elf)
db48a9e3 1200 tm_file="elfos.h ${tm_file} newlib-stdint.h"
b25364a0
S
1201 tmake_file="${tmake_file} cr16/t-cr16 "
1202 use_collect2=no
1203 ;;
99c5227a 1204crisv32-*-elf | crisv32-*-none)
207bf79d 1205 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
99c5227a
HPN
1206 tmake_file="cris/t-cris"
1207 target_cpu_default=32
1208 gas=yes
1209 extra_options="${extra_options} cris/elf.opt"
207bf79d 1210 use_gcc_stdint=wrap
99c5227a 1211 ;;
0b85d816 1212cris-*-elf | cris-*-none)
207bf79d 1213 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
0b85d816
HPN
1214 tmake_file="cris/t-cris cris/t-elfmulti"
1215 gas=yes
2a186d97 1216 extra_options="${extra_options} cris/elf.opt"
207bf79d 1217 use_gcc_stdint=wrap
0b85d816 1218 ;;
99c5227a 1219crisv32-*-linux* | cris-*-linux*)
8e38461c 1220 tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h glibc-stdint.h cris/linux.h"
3a213afb 1221 tmake_file="${tmake_file} cris/t-cris cris/t-linux"
2a186d97 1222 extra_options="${extra_options} cris/linux.opt"
99c5227a
HPN
1223 case $target in
1224 cris-*-*)
1225 target_cpu_default=10
1226 ;;
1227 crisv32-*-*)
1228 target_cpu_default=32
1229 ;;
1230 esac
0b85d816 1231 ;;
feeeff5c
JR
1232epiphany-*-elf )
1233 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1234 tmake_file="epiphany/t-epiphany"
1235 extra_options="${extra_options} fused-madd.opt"
1236 extra_objs="$extra_objs mode-switch-use.o resolve-sw-modes.o"
1237 tm_defines="${tm_defines} EPIPHANY_STACK_OFFSET=${with_stack_offset:-8}"
1238 extra_headers="epiphany_intrinsics.h"
1239 ;;
61ed06c3 1240fr30-*-elf)
35766c1d 1241 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
61ed06c3 1242 ;;
36a05131 1243frv-*-elf)
a3724010 1244 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
36a05131
BS
1245 tmake_file=frv/t-frv
1246 ;;
34208acf 1247frv-*-*linux*)
a3724010 1248 tm_file="dbxelf.h elfos.h ${tm_file} \
8e38461c 1249 gnu-user.h linux.h glibc-stdint.h frv/linux.h"
65d151a7 1250 tmake_file="${tmake_file} frv/t-frv frv/t-linux"
34208acf 1251 ;;
fef939d6
JB
1252ft32-*-elf)
1253 gas=yes
1254 gnu_ld=yes
1255 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
1256 tmake_file="${tmake_file} ft32/t-ft32"
1257 ;;
cceb575c
AG
1258moxie-*-elf)
1259 gas=yes
1260 gnu_ld=yes
804a304d 1261 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
aca0b0b3 1262 tmake_file="${tmake_file} moxie/t-moxie"
cceb575c 1263 ;;
23865616
AG
1264moxie-*-uclinux*)
1265 gas=yes
1266 gnu_ld=yes
8e38461c 1267 tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h glibc-stdint.h moxie/uclinux.h"
aca0b0b3 1268 tmake_file="${tmake_file} moxie/t-moxie"
23865616 1269 ;;
1242723c 1270moxie-*-rtems*)
aefe4056 1271 tmake_file="${tmake_file} moxie/t-moxie"
1242723c
AG
1272 tm_file="moxie/moxie.h dbxelf.h elfos.h moxie/rtems.h rtems.h newlib-stdint.h"
1273 ;;
17522262
AG
1274moxie-*-moxiebox*)
1275 gas=yes
1276 gnu_ld=yes
1277 tm_file="${tm_file} dbxelf.h elfos.h moxie/moxiebox.h newlib-stdint.h"
1278 tmake_file="${tmake_file} moxie/t-moxiebox"
1279 ;;
9f5b774b 1280h8300-*-elf*)
5f73c6cc 1281 tmake_file="h8300/t-h8300"
207bf79d 1282 tm_file="h8300/h8300.h dbxelf.h elfos.h newlib-stdint.h h8300/elf.h"
9f5b774b 1283 ;;
2f6bd6eb
YS
1284h8300-*-linux*)
1285 tmake_file="${tmake_file} h8300/t-h8300 h8300/t-linux"
1286 tm_file="h8300/h8300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h h8300/linux.h"
1287 ;;
cd985f66 1288hppa*64*-*-linux*)
d711cf67 1289 target_cpu_default="MASK_PA_11|MASK_PA_20"
8e38461c 1290 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h gnu-user.h linux.h \
207bf79d
JM
1291 glibc-stdint.h pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h \
1292 pa/pa64-linux.h"
c21a2372
AM
1293 gas=yes gnu_ld=yes
1294 ;;
cd985f66 1295hppa*-*-linux*)
d711cf67 1296 target_cpu_default="MASK_PA_11|MASK_NO_SPACE_REGS"
8e38461c 1297 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h pa/pa-linux.h \
c21a2372 1298 pa/pa32-regs.h pa/pa32-linux.h"
26841e45 1299 tmake_file="${tmake_file} pa/t-linux"
61ed06c3 1300 ;;
17f293b0
MK
1301hppa*-*-openbsd*)
1302 target_cpu_default="MASK_PA_11"
1303 tm_file="${tm_file} dbxelf.h elfos.h openbsd.h openbsd-stdint.h openbsd-libpthread.h \
1304 pa/pa-openbsd.h pa/pa32-regs.h pa/pa32-openbsd.h"
17f293b0
MK
1305 extra_options="${extra_options} openbsd.opt"
1306 gas=yes
1307 gnu_ld=yes
1308 ;;
d711cf67
JDA
1309hppa[12]*-*-hpux10*)
1310 case ${target} in
1311 hppa1.1-*-* | hppa2*-*-*)
1312 target_cpu_default="MASK_PA_11"
1313 ;;
1314 esac
1315 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
1316 pa/pa-hpux.h pa/pa-hpux10.h"
b24d1acf 1317 extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux10.opt"
d711cf67
JDA
1318 case ${target} in
1319 *-*-hpux10.[1-9]*)
1320 tm_file="${tm_file} pa/pa-hpux1010.h"
66617831 1321 extra_options="${extra_options} pa/pa-hpux1010.opt"
d711cf67 1322 ;;
61ed06c3 1323 esac
be3e4ef6
JDA
1324 use_gcc_stdint=provide
1325 tm_file="${tm_file} hpux-stdint.h"
f9989b51 1326 tmake_file="t-slibgcc"
615be2cf
NN
1327 case ${enable_threads} in
1328 "")
1329 if test x$have_pthread_h = xyes ; then
1330 tmake_file="${tmake_file} pa/t-dce-thr"
1331 fi
1332 ;;
1333 yes | dce)
1334 tmake_file="${tmake_file} pa/t-dce-thr"
1335 ;;
61ed06c3 1336 esac
61ed06c3 1337 use_collect2=yes
543b6009 1338 gas=yes
a65264ae 1339 if test "x$with_dwarf2" != x; then
5cdb5d59 1340 echo "Warning: dwarf2 debug format is not supported for this target, --with-dwarf2 ignored" 1>&2
a65264ae
JDA
1341 dwarf2=no
1342 fi
61ed06c3
HPN
1343 ;;
1344hppa*64*-*-hpux11*)
d711cf67 1345 target_cpu_default="MASK_PA_11|MASK_PA_20"
7b79fe71
JDA
1346 if test x$gnu_ld = xyes
1347 then
d711cf67 1348 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
7b79fe71 1349 fi
543b6009
SE
1350 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
1351 pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \
1352 pa/pa-hpux11.h"
d711cf67 1353 case ${target} in
fc4538e4 1354 *-*-hpux11.[12]*)
d711cf67 1355 tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h"
66617831 1356 extra_options="${extra_options} pa/pa-hpux1111.opt"
d711cf67 1357 ;;
fc4538e4
SE
1358 *-*-hpux11.[3-9]*)
1359 tm_file="${tm_file} pa/pa-hpux1131.h pa/pa-64.h pa/pa64-hpux.h"
1360 extra_options="${extra_options} pa/pa-hpux1131.opt"
1361 ;;
d711cf67
JDA
1362 *)
1363 tm_file="${tm_file} pa/pa-64.h pa/pa64-hpux.h"
1364 ;;
1365 esac
66617831 1366 extra_options="${extra_options} pa/pa-hpux.opt \
e543b94c 1367 pa/pa-hpux1010.opt pa/pa64-hpux.opt hpux11.opt"
f9989b51 1368 tmake_file="t-slibgcc"
7e2055ec 1369 case x${enable_threads} in
27ca3a61 1370 x | xyes | xposix )
f7288899 1371 thread_file=posix
7e2055ec
ZW
1372 ;;
1373 esac
543b6009 1374 gas=yes
9a17c91d
SE
1375 case ${target} in
1376 *-*-hpux11.[01]*)
1377 use_gcc_stdint=provide
1378 tm_file="${tm_file} hpux-stdint.h"
1379 ;;
1380 *-*-hpux11.[23]*)
1381 use_gcc_stdint=wrap
1382 tm_file="${tm_file} hpux-stdint.h"
1383 ;;
1384 esac
61ed06c3 1385 ;;
d711cf67
JDA
1386hppa[12]*-*-hpux11*)
1387 case ${target} in
1388 hppa1.1-*-* | hppa2*-*-*)
1389 target_cpu_default="MASK_PA_11"
1390 ;;
1391 esac
1392 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
66617831 1393 pa/pa-hpux.h pa/pa-hpux1010.h pa/pa-hpux11.h"
e543b94c
JM
1394 extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux1010.opt \
1395 hpux11.opt"
d711cf67 1396 case ${target} in
fc4538e4 1397 *-*-hpux11.[12]*)
d711cf67 1398 tm_file="${tm_file} pa/pa-hpux1111.h"
66617831 1399 extra_options="${extra_options} pa/pa-hpux1111.opt"
7e2055ec 1400 ;;
fc4538e4
SE
1401 *-*-hpux11.[3-9]*)
1402 tm_file="${tm_file} pa/pa-hpux1131.h"
1403 extra_options="${extra_options} pa/pa-hpux1131.opt"
1404 ;;
7e2055ec 1405 esac
f9989b51 1406 tmake_file="t-slibgcc"
7e2055ec 1407 case x${enable_threads} in
27ca3a61 1408 x | xyes | xposix )
f7288899 1409 thread_file=posix
7e2055ec
ZW
1410 ;;
1411 esac
61ed06c3 1412 use_collect2=yes
543b6009 1413 gas=yes
9a17c91d
SE
1414 case ${target} in
1415 *-*-hpux11.[01]*)
1416 use_gcc_stdint=provide
1417 tm_file="${tm_file} hpux-stdint.h"
1418 ;;
1419 *-*-hpux11.[23]*)
1420 use_gcc_stdint=wrap
1421 tm_file="${tm_file} hpux-stdint.h"
1422 ;;
1423 esac
a65264ae 1424 if test "x$with_dwarf2" != x; then
5cdb5d59 1425 echo "Warning: dwarf2 debug format is not supported for this target, --with-dwarf2 ignored" 1>&2
a65264ae
JDA
1426 dwarf2=no
1427 fi
61ed06c3 1428 ;;
b069de3b 1429i[34567]86-*-darwin*)
c6b9174f 1430 need_64bit_isa=yes
c0aefbbe
IS
1431 # Baseline choice for a machine that allows m64 support.
1432 with_cpu=${with_cpu:-core2}
b040f2be 1433 tmake_file="${tmake_file} t-slibgcc"
b069de3b 1434 ;;
9519e677 1435x86_64-*-darwin*)
c0aefbbe 1436 with_cpu=${with_cpu:-core2}
b040f2be 1437 tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc"
9519e677
EC
1438 tm_file="${tm_file} ${cpu_type}/darwin64.h"
1439 ;;
d9063947
L
1440i[34567]86-*-elfiamcu)
1441 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/iamcu.h"
1442 ;;
61ed06c3 1443i[34567]86-*-elf*)
207bf79d 1444 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h"
a10dc289
HK
1445 ;;
1446x86_64-*-elf*)
207bf79d 1447 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h"
61ed06c3 1448 ;;
d6944908 1449x86_64-*-rtems*)
d445d739 1450 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h i386/rtemself.h"
d6944908 1451 ;;
5a579c3b
LE
1452i[34567]86-*-rdos*)
1453 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/rdos.h"
1454 ;;
1455x86_64-*-rdos*)
1456 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h i386/rdos.h i386/rdos64.h"
1457 tmake_file="i386/t-i386elf t-svr4"
1458 ;;
dbed5a9b
JM
1459i[34567]86-*-dragonfly*)
1460 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h dragonfly.h dragonfly-stdint.h i386/dragonfly.h"
1461 tmake_file="${tmake_file} i386/t-crtstuff"
1462 ;;
1463x86_64-*-dragonfly*)
1464 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h dragonfly.h dragonfly-stdint.h i386/x86-64.h i386/dragonfly.h"
1465 tmake_file="${tmake_file} i386/t-crtstuff"
1466 ;;
61ed06c3 1467i[34567]86-*-freebsd*)
39ed301b 1468 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
e564e618
DB
1469 ;;
1470x86_64-*-freebsd*)
39ed301b 1471 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"
61ed06c3 1472 ;;
6ea0279f 1473i[34567]86-*-netbsdelf*)
82e435c3 1474 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-stdint.h netbsd-elf.h i386/netbsd-elf.h"
a4714d14 1475 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
6ea0279f 1476 ;;
7c884404 1477x86_64-*-netbsd*)
82e435c3 1478 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-stdint.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h"
a4714d14 1479 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
7c884404 1480 ;;
378b66d4 1481i[34567]86-*-openbsd*)
75a3bd9d 1482 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
aa58f943 1483 tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h i386/openbsdelf.h"
5369e2d4 1484 extra_options="${extra_options} openbsd.opt"
378b66d4
ME
1485 gas=yes
1486 gnu_ld=yes
378b66d4 1487 ;;
613061fd
MK
1488x86_64-*-openbsd*)
1489 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
1490 tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h i386/x86-64.h i386/openbsdelf.h"
1491 extra_options="${extra_options} openbsd.opt"
1492 gas=yes
1493 gnu_ld=yes
1494 ;;
8466af06 1495i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
cfafe973 1496 # Intel 80386's running GNU/*
61ed06c3 1497 # with ELF format using glibc 2
6c0170ea 1498 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h glibc-stdint.h"
cfafe973 1499 case ${target} in
0f45f0f5 1500 i[34567]86-*-linux*)
5fa747a7
MK
1501 tm_file="${tm_file} linux.h linux-android.h"
1502 extra_options="${extra_options} linux-android.opt"
ba86734c
L
1503 # Assume modern glibc if not targeting Android nor uclibc.
1504 case ${target} in
5aadf16c 1505 *-*-*android*|*-*-*uclibc*|*-*-*musl*)
ba86734c
L
1506 ;;
1507 *)
1508 default_gnu_indirect_function=yes
1509 ;;
1510 esac
0f45f0f5 1511 if test x$enable_targets = xall; then
6acc8a3c 1512 tm_file="${tm_file} i386/x86-64.h i386/gnu-user-common.h i386/gnu-user64.h i386/linux-common.h i386/linux64.h"
0f45f0f5 1513 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
ff473280 1514 tmake_file="${tmake_file} i386/t-linux64"
f0ea7581
L
1515 x86_multilibs="${with_multilib_list}"
1516 if test "$x86_multilibs" = "default"; then
1517 x86_multilibs="m64,m32"
1518 fi
1519 x86_multilibs=`echo $x86_multilibs | sed -e 's/,/ /g'`
1520 for x86_multilib in ${x86_multilibs}; do
1521 case ${x86_multilib} in
1522 m32 | m64 | mx32)
1523 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${x86_multilib}"
1524 ;;
1525 *)
1526 echo "--with-multilib-list=${x86_with_multilib} not supported."
1527 exit 1
1528 esac
1529 done
1530 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
c6b9174f 1531 need_64bit_isa=yes
646bdeab 1532 if test x$with_cpu = x; then
8981c15b
JM
1533 if test x$with_cpu_64 = x; then
1534 with_cpu_64=generic
1535 fi
646bdeab
L
1536 else
1537 case " $x86_cpus $x86_archs $x86_64_archs " in
1538 *" $with_cpu "*)
1539 ;;
1540 *)
1541 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1542 echo "$x86_cpus $x86_archs $x86_64_archs " 1>&2
1543 exit 1
1544 ;;
1545 esac
1546 fi
0f45f0f5 1547 else
6acc8a3c 1548 tm_file="${tm_file} i386/gnu-user-common.h i386/gnu-user.h i386/linux-common.h i386/linux.h"
0f45f0f5
JM
1549 fi
1550 ;;
63708bf5 1551 i[34567]86-*-kfreebsd*-gnu)
70a69509 1552 tm_file="${tm_file} i386/gnu-user-common.h i386/gnu-user.h kfreebsd-gnu.h i386/kfreebsd-gnu.h"
63708bf5
UB
1553 ;;
1554 i[34567]86-*-kopensolaris*-gnu)
70a69509 1555 tm_file="${tm_file} i386/gnu-user-common.h i386/gnu-user.h kopensolaris-gnu.h i386/kopensolaris-gnu.h"
63708bf5
UB
1556 ;;
1557 i[34567]86-*-gnu*)
70a69509 1558 tm_file="$tm_file i386/gnu-user-common.h i386/gnu-user.h gnu.h i386/gnu.h"
63708bf5 1559 ;;
cfafe973 1560 esac
61ed06c3 1561 ;;
8466af06 1562x86_64-*-linux* | x86_64-*-kfreebsd*-gnu)
6c0170ea 1563 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h gnu-user.h glibc-stdint.h \
70a69509 1564 i386/x86-64.h i386/gnu-user-common.h i386/gnu-user64.h"
44379973 1565 case ${target} in
f6c5fbfd 1566 x86_64-*-linux*)
5fa747a7
MK
1567 tm_file="${tm_file} linux.h linux-android.h i386/linux-common.h i386/linux64.h"
1568 extra_options="${extra_options} linux-android.opt"
ba86734c
L
1569 # Assume modern glibc if not targeting Android nor uclibc.
1570 case ${target} in
5aadf16c 1571 *-*-*android*|*-*-*uclibc*|*-*-*musl*)
ba86734c
L
1572 ;;
1573 *)
1574 default_gnu_indirect_function=yes
1575 ;;
1576 esac
63708bf5
UB
1577 ;;
1578 x86_64-*-kfreebsd*-gnu)
1579 tm_file="${tm_file} kfreebsd-gnu.h i386/kfreebsd-gnu64.h"
1580 ;;
44379973 1581 esac
5f73c6cc 1582 tmake_file="${tmake_file} i386/t-linux64"
f0ea7581
L
1583 x86_multilibs="${with_multilib_list}"
1584 if test "$x86_multilibs" = "default"; then
9287b168
L
1585 case ${with_abi} in
1586 x32 | mx32)
1587 x86_multilibs="mx32"
1588 ;;
1589 *)
1590 x86_multilibs="m64,m32"
1591 ;;
1592 esac
f0ea7581
L
1593 fi
1594 x86_multilibs=`echo $x86_multilibs | sed -e 's/,/ /g'`
1595 for x86_multilib in ${x86_multilibs}; do
1596 case ${x86_multilib} in
1597 m32 | m64 | mx32)
1598 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG},${x86_multilib}"
1599 ;;
1600 *)
1601 echo "--with-multilib-list=${x86_with_multilib} not supported."
1602 exit 1
1603 esac
1604 done
1605 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's/^,//'`
14f73b5a 1606 ;;
61ed06c3
HPN
1607i[34567]86-pc-msdosdjgpp*)
1608 xm_file=i386/xm-djgpp.h
27f98305 1609 tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h i386/djgpp-stdint.h"
08b2bad2 1610 native_system_header_dir=/dev/env/DJDIR/include
6ac49599 1611 extra_options="${extra_options} i386/djgpp.opt"
61ed06c3
HPN
1612 gnu_ld=yes
1613 gas=yes
3e3877f8 1614 use_gcc_stdint=wrap
61ed06c3 1615 ;;
61ed06c3 1616i[34567]86-*-lynxos*)
4f587cb0
AN
1617 xm_defines=POSIX
1618 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
5f73c6cc 1619 tmake_file="${tmake_file} t-lynx"
6ac49599 1620 extra_options="${extra_options} lynx.opt"
4f587cb0
AN
1621 thread_file=lynx
1622 gnu_ld=yes
1623 gas=yes
61ed06c3 1624 ;;
f2feed2c 1625i[34567]86-*-nto-qnx*)
7f260570 1626 tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h i386/unix.h i386/nto.h"
fc523387 1627 extra_options="${extra_options} i386/nto.opt"
f2feed2c
GP
1628 gnu_ld=yes
1629 gas=yes
1630 ;;
c7bdf0a6 1631i[34567]86-*-rtems*)
207bf79d 1632 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"
aefe4056 1633 tmake_file="${tmake_file} i386/t-rtems"
61ed06c3 1634 ;;
fbdd5d87 1635i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
9d151aff
RO
1636 # Set default arch_32 to pentium4, tune_32 to generic like the other
1637 # i386 targets, although config.guess defaults to i386-pc-solaris2*.
d9f069ab 1638 with_arch_32=${with_arch_32:-pentium4}
9af27220 1639 with_tune_32=${with_tune_32:-generic}
2cf03b11 1640 tm_file="${tm_file} i386/unix.h i386/att.h ${sol2_tm_file_head} i386/x86-64.h ${sol2_tm_file_tail}"
d9f069ab 1641 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
2cf03b11 1642 tmake_file="$tmake_file i386/t-sol2"
d9f069ab
RO
1643 need_64bit_isa=yes
1644 if test x$with_cpu = x; then
1645 if test x$with_cpu_64 = x; then
1646 with_cpu_64=generic
646bdeab 1647 fi
d9f069ab
RO
1648 else
1649 case " $x86_cpus $x86_archs $x86_64_archs " in
1650 *" $with_cpu "*)
1651 ;;
1652 *)
1653 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1654 echo "$x86_cpus $x86_archs $x86_64_archs" 1>&2
1655 exit 1
1656 ;;
1657 esac
1658 fi
61ed06c3 1659 ;;
d442d7d9 1660i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
7f260570 1661 tm_file="${tm_file} i386/unix.h i386/att.h elfos.h vx-common.h"
d442d7d9
PE
1662 case ${target} in
1663 *-vxworksae*)
4ce351de 1664 tm_file="${tm_file} vxworksae.h i386/vxworks.h i386/vxworksae.h"
d442d7d9
PE
1665 tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
1666 ;;
1667 *)
4ce351de 1668 tm_file="${tm_file} vxworks.h i386/vxworks.h"
d442d7d9
PE
1669 tmake_file="${tmake_file} i386/t-vxworks"
1670 ;;
1671 esac
55047c9d 1672 ;;
ebb9f8b0 1673i[34567]86-*-cygwin*)
bb2aaded 1674 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"
4dc0535b 1675 xm_file=i386/xm-cygwin.h
f9989b51 1676 tmake_file="${tmake_file} i386/t-cygming t-slibgcc"
90aa6719 1677 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
301f4402 1678 extra_options="${extra_options} i386/cygming.opt i386/cygwin.opt"
43d9ad1d 1679 extra_objs="winnt.o winnt-stubs.o"
3edeb30d
DK
1680 c_target_objs="${c_target_objs} msformat-c.o"
1681 cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
61ed06c3 1682 if test x$enable_threads = xyes; then
70e5e841 1683 thread_file='posix'
61ed06c3 1684 fi
301f4402 1685 default_use_cxa_atexit=yes
bb2aaded 1686 use_gcc_stdint=wrap
61ed06c3 1687 ;;
b802ae5c
KT
1688x86_64-*-cygwin*)
1689 need_64bit_isa=yes
1690 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h i386/cygwin-w64.h i386/cygwin-stdint.h"
1691 xm_file=i386/xm-cygwin.h
1692 tmake_file="${tmake_file} i386/t-cygming t-slibgcc i386/t-cygwin-w64"
1693 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
301f4402 1694 extra_options="${extra_options} i386/cygming.opt i386/cygwin.opt"
b802ae5c
KT
1695 extra_objs="winnt.o winnt-stubs.o"
1696 c_target_objs="${c_target_objs} msformat-c.o"
1697 cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
1698 if test x$enable_threads = xyes; then
1699 thread_file='posix'
1700 fi
301f4402 1701 default_use_cxa_atexit=yes
b802ae5c
KT
1702 use_gcc_stdint=wrap
1703 tm_defines="${tm_defines} TARGET_CYGWIN64=1"
1704 ;;
e8930cc1 1705i[34567]86-*-mingw* | x86_64-*-mingw*)
c04bdac0 1706 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h"
4dc0535b 1707 xm_file=i386/xm-mingw32.h
88b0e79e
JC
1708 c_target_objs="${c_target_objs} winnt-c.o"
1709 cxx_target_objs="${cxx_target_objs} winnt-c.o"
1710 target_has_targetcm="yes"
933608b7
KT
1711 case ${target} in
1712 x86_64-*-* | *-w64-*)
c6b9174f 1713 need_64bit_isa=yes
933608b7
KT
1714 ;;
1715 *)
1716 ;;
1717 esac
c04bdac0
KT
1718 if test x$enable_threads = xposix ; then
1719 tm_file="${tm_file} i386/mingw-pthread.h"
1720 fi
1721 tm_file="${tm_file} i386/mingw32.h"
35091630
KT
1722 # This makes the logic if mingw's or the w64 feature set has to be used
1723 case ${target} in
1724 *-w64-*)
9b91e436
KT
1725 user_headers_inc_next_post="${user_headers_inc_next_post} float.h"
1726 user_headers_inc_next_pre="${user_headers_inc_next_pre} stddef.h stdarg.h"
35091630 1727 tm_file="${tm_file} i386/mingw-w64.h"
933608b7
KT
1728 if test x$enable_targets = xall; then
1729 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
646bdeab 1730 if test x$with_cpu = x; then
933608b7
KT
1731 if test x$with_cpu_64 = x; then
1732 with_cpu_64=generic
1733 fi
646bdeab
L
1734 else
1735 case " $x86_cpus $x86_archs $x86_64_archs " in
1736 *" $with_cpu "*)
1737 ;;
1738 *)
1739 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
1740 echo "$x86_cpus $x86_archs $x86_64_archs" 1>&2
1741 exit 1
1742 ;;
1743 esac
1744 fi
933608b7 1745 fi
35091630
KT
1746 ;;
1747 *)
35091630
KT
1748 ;;
1749 esac
1750 tm_file="${tm_file} i386/mingw-stdint.h"
88b0e79e 1751 tmake_file="${tmake_file} t-winnt i386/t-cygming t-slibgcc"
8370a62a 1752 case ${target} in
917ed773 1753 x86_64-w64-*)
8370a62a
KT
1754 tmake_file="${tmake_file} i386/t-mingw-w64"
1755 ;;
917ed773
KT
1756 i[34567]86-w64-*)
1757 tmake_file="${tmake_file} i386/t-mingw-w32"
1758 ;;
8370a62a 1759 esac
08b2bad2 1760 native_system_header_dir=/mingw/include
90aa6719 1761 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
94564826 1762 extra_options="${extra_options} i386/cygming.opt i386/mingw.opt"
35091630
KT
1763 case ${target} in
1764 *-w64-*)
1765 extra_options="${extra_options} i386/mingw-w64.opt"
1766 ;;
1767 *)
1768 ;;
1769 esac
43d9ad1d 1770 extra_objs="winnt.o winnt-stubs.o"
ab442df7
MM
1771 c_target_objs="${c_target_objs} msformat-c.o"
1772 cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
b993039f
EB
1773 gas=yes
1774 gnu_ld=yes
97388150 1775 default_use_cxa_atexit=yes
7d253f6e 1776 use_gcc_stdint=wrap
50c0d3fd 1777 case ${enable_threads} in
f9989b51
RO
1778 "" | yes | win32)
1779 thread_file='win32'
c04bdac0
KT
1780 ;;
1781 posix)
1782 thread_file='posix'
c04bdac0 1783 ;;
50c0d3fd 1784 esac
e8930cc1
KT
1785 case ${target} in
1786 *mingw32crt*)
1787 tm_file="${tm_file} i386/crtdll.h"
1788 ;;
1789 *mingw32msv* | *mingw*)
09eaf5a5 1790 ;;
61ed06c3
HPN
1791 esac
1792 ;;
491b3c5f
JC
1793x86_64-*-fuchsia*)
1794 tmake_file="${tmake_file} i386/t-x86_64-elf"
1795 tm_file="${tm_file} i386/unix.h i386/att.h elfos.h newlib-stdint.h i386/i386elf.h i386/x86-64.h fuchsia.h"
1796 ;;
61ed06c3 1797ia64*-*-elf*)
207bf79d 1798 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h ia64/sysv4.h ia64/elf.h"
61ed06c3
HPN
1799 tmake_file="ia64/t-ia64"
1800 target_cpu_default="0"
1801 if test x$gas = xyes
1802 then
1803 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1804 fi
1805 if test x$gnu_ld = xyes
1806 then
1807 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
1808 fi
61ed06c3 1809 ;;
243a7070 1810ia64*-*-freebsd*)
fee42cc1 1811 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
243a7070
DB
1812 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
1813 tmake_file="${tmake_file} ia64/t-ia64"
243a7070 1814 ;;
61ed06c3 1815ia64*-*-linux*)
8e38461c 1816 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ia64/sysv4.h ia64/linux.h"
a9011c94 1817 tmake_file="${tmake_file} ia64/t-ia64 ia64/t-linux t-libunwind"
61ed06c3 1818 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
61ed06c3 1819 ;;
7e5b9908 1820ia64*-*-hpux*)
2337b6b7 1821 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/hpux.h"
b040f2be 1822 tmake_file="ia64/t-ia64 ia64/t-hpux t-slibgcc"
7e5b9908 1823 target_cpu_default="MASK_GNU_AS"
7e2055ec 1824 case x$enable_threads in
79e8b6c0 1825 x | xyes | xposix )
7e2055ec
ZW
1826 thread_file=posix
1827 ;;
1828 esac
cad61762 1829 use_collect2=no
34c1864f
SE
1830 c_target_objs="ia64-c.o"
1831 cxx_target_objs="ia64-c.o"
e543b94c 1832 extra_options="${extra_options} ia64/ilp32.opt hpux11.opt"
9a17c91d
SE
1833 use_gcc_stdint=wrap
1834 tm_file="${tm_file} hpux-stdint.h"
fc4538e4
SE
1835 case ${target} in
1836 *-*-hpux11.3*)
1837 tm_file="${tm_file} ia64/hpux-unix2003.h"
1838 ;;
1839 esac
7e5b9908 1840 ;;
a9a25daa 1841ia64-hp-*vms*)
d8aba32a
TG
1842 tm_file="${tm_file} elfos.h ia64/sysv4.h vms/vms.h ia64/vms.h"
1843 tmake_file="${tmake_file} ia64/t-ia64"
a9a25daa
DR
1844 target_cpu_default="0"
1845 if test x$gas = xyes
1846 then
1847 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
1848 fi
18a24fed 1849 extra_options="${extra_options} ia64/vms.opt"
a9a25daa 1850 ;;
6b3d1e47 1851iq2000*-*-elf*)
248a9e94 1852 tm_file="elfos.h newlib-stdint.h iq2000/iq2000.h"
6b3d1e47 1853 out_file=iq2000/iq2000.c
6b3d1e47
SC
1854 md_file=iq2000/iq2000.md
1855 ;;
aa4945c1 1856lm32-*-elf*)
7c9bb341 1857 tm_file="dbxelf.h elfos.h ${tm_file} newlib-stdint.h"
aca0b0b3 1858 tmake_file="${tmake_file} lm32/t-lm32"
aa4945c1 1859 ;;
d7856dc7 1860lm32-*-rtems*)
1ddc8057 1861 tm_file="dbxelf.h elfos.h ${tm_file} lm32/rtems.h rtems.h newlib-stdint.h"
aca0b0b3 1862 tmake_file="${tmake_file} lm32/t-lm32"
4ce7e3a9 1863 tmake_file="${tmake_file} lm32/t-rtems"
d7856dc7 1864 ;;
aa4945c1 1865lm32-*-uclinux*)
8e38461c 1866 tm_file="dbxelf.h elfos.h ${tm_file} gnu-user.h linux.h lm32/uclinux-elf.h"
aca0b0b3 1867 tmake_file="${tmake_file} lm32/t-lm32"
aa4945c1 1868 ;;
61ed06c3 1869m32r-*-elf*)
cfe5b8ea 1870 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
37ec8b7a 1871 ;;
ad126521 1872m32rle-*-elf*)
cfe5b8ea 1873 tm_file="dbxelf.h elfos.h newlib-stdint.h m32r/little.h ${tm_file}"
ad126521
KI
1874 ;;
1875m32r-*-linux*)
8e38461c 1876 tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} m32r/linux.h"
133b1a8e 1877 tmake_file="${tmake_file} m32r/t-linux t-slibgcc"
ad126521 1878 gnu_ld=yes
ad126521
KI
1879 if test x$enable_threads = xyes; then
1880 thread_file='posix'
1881 fi
1882 ;;
1883m32rle-*-linux*)
8e38461c 1884 tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m32r/little.h ${tm_file} m32r/linux.h"
133b1a8e 1885 tmake_file="${tmake_file} m32r/t-linux t-slibgcc"
ad126521 1886 gnu_ld=yes
ad126521
KI
1887 if test x$enable_threads = xyes; then
1888 thread_file='posix'
1889 fi
1890 ;;
cd985f66 1891m68k-*-elf* | fido-*-elf*)
7d33c31d
KH
1892 case ${target} in
1893 fido-*-elf*)
1894 # Check that $with_cpu makes sense.
1895 case $with_cpu in
1896 "" | "fidoa")
1897 ;;
1898 *)
1899 echo "Cannot accept --with-cpu=$with_cpu"
1900 exit 1
1901 ;;
1902 esac
1903 with_cpu=fidoa
1904 ;;
1905 *)
1906 default_m68k_cpu=68020
1907 default_cf_cpu=5206
1908 ;;
1909 esac
207bf79d 1910 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"
cf909b0d 1911 tm_defines="${tm_defines} MOTOROLA=1"
7d33c31d
KH
1912 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
1913 # Add multilibs for targets other than fido.
1914 case ${target} in
1915 fido-*-elf*)
1916 ;;
1917 *)
1918 tmake_file="$tmake_file m68k/t-mlibs"
1919 ;;
1920 esac
61ed06c3 1921 ;;
cd985f66 1922m68k*-*-netbsdelf*)
59fbf3cb 1923 default_m68k_cpu=68020
10e96df4 1924 default_cf_cpu=5475
2fd95d71 1925 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
a4714d14 1926 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
cf909b0d 1927 tm_defines="${tm_defines} MOTOROLA=1"
2fd95d71 1928 ;;
7ea98c5a 1929m68k*-*-openbsd*)
59fbf3cb 1930 default_m68k_cpu=68020
10e96df4 1931 default_cf_cpu=5475
7ea98c5a 1932 # needed to unconfuse gdb
59fbf3cb 1933 tm_defines="${tm_defines} OBSD_OLD_GAS"
aa58f943 1934 tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h m68k/openbsd.h"
5369e2d4 1935 extra_options="${extra_options} openbsd.opt"
5f73c6cc 1936 tmake_file="t-openbsd m68k/t-openbsd"
7ea98c5a
GN
1937 # we need collect2 until our bug is fixed...
1938 use_collect2=yes
1939 ;;
4529dbf1
RS
1940m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux
1941 # with uClibc, using the new GNU/Linux-style
1942 # ABI.
59fbf3cb 1943 default_m68k_cpu=68020
10e96df4 1944 default_cf_cpu=5206
8e38461c 1945 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"
4254bbfe 1946 extra_options="${extra_options} m68k/uclinux.opt"
b5a54c03 1947 tm_defines="${tm_defines} MOTOROLA=1"
10e96df4 1948 tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
ba591f5a 1949 ;;
5f73c6cc 1950m68k-*-linux*) # Motorola m68k's running GNU/Linux
61ed06c3
HPN
1951 # with ELF format using glibc 2
1952 # aka the GNU/Linux C library 6.
59fbf3cb 1953 default_m68k_cpu=68020
10e96df4 1954 default_cf_cpu=5475
368b55f6 1955 with_arch=${with_arch:-m68k}
8e38461c 1956 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h m68k/linux.h ./sysroot-suffix.h"
4af06170 1957 extra_options="${extra_options} m68k/ieee.opt"
cf909b0d 1958 tm_defines="${tm_defines} MOTOROLA=1"
368b55f6 1959 tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs"
61ed06c3 1960 ;;
c7bdf0a6 1961m68k-*-rtems*)
59fbf3cb 1962 default_m68k_cpu=68020
10e96df4 1963 default_cf_cpu=5206
aefe4056 1964 tmake_file="${tmake_file} m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff m68k/t-rtems m68k/t-mlibs"
207bf79d 1965 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"
cf909b0d 1966 tm_defines="${tm_defines} MOTOROLA=1"
61ed06c3 1967 ;;
61ed06c3 1968mcore-*-elf)
ed38428f 1969 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file} mcore/mcore-elf.h"
61ed06c3 1970 tmake_file=mcore/t-mcore
a929bc28 1971 inhibit_libc=true
61ed06c3 1972 ;;
80920132 1973microblaze*-linux*)
76ef61fb
EI
1974 case $target in
1975 microblazeel-*)
1976 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=0"
1977 ;;
1978 microblaze-*)
1979 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=4321"
1980 ;;
1981 esac
8e38461c 1982 tm_file="${tm_file} dbxelf.h gnu-user.h linux.h microblaze/linux.h"
fbf0cf90 1983 tm_file="${tm_file} glibc-stdint.h"
80920132
ME
1984 c_target_objs="${c_target_objs} microblaze-c.o"
1985 cxx_target_objs="${cxx_target_objs} microblaze-c.o"
fbf0cf90 1986 tmake_file="${tmake_file} microblaze/t-microblaze"
76ef61fb 1987 tmake_file="${tmake_file} microblaze/t-microblaze-linux"
80920132 1988 ;;
479f4358 1989microblaze*-*-rtems*)
c6adc8b3
RC
1990 case $target in
1991 microblazeel-*)
1992 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=0"
1993 ;;
1994 microblaze-*)
1995 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=4321"
1996 ;;
1997 esac
479f4358
RC
1998 tm_file="${tm_file} dbxelf.h"
1999 tm_file="${tm_file} microblaze/rtems.h rtems.h newlib-stdint.h"
2000 c_target_objs="${c_target_objs} microblaze-c.o"
2001 cxx_target_objs="${cxx_target_objs} microblaze-c.o"
2002 tmake_file="${tmake_file} microblaze/t-microblaze"
aefe4056 2003 tmake_file="${tmake_file} microblaze/t-rtems"
479f4358 2004 ;;
6f14eef2 2005microblaze*-*-elf)
76ef61fb
EI
2006 case $target in
2007 microblazeel-*)
2008 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=0"
2009 ;;
2010 microblaze-*)
2011 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=4321"
2012 ;;
2013 esac
6f14eef2 2014 tm_file="${tm_file} dbxelf.h newlib-stdint.h"
80920132
ME
2015 c_target_objs="${c_target_objs} microblaze-c.o"
2016 cxx_target_objs="${cxx_target_objs} microblaze-c.o"
6f14eef2 2017 tmake_file="${tmake_file} microblaze/t-microblaze"
80920132 2018 ;;
f982f805 2019mips*-*-netbsd*) # NetBSD/mips, either endian.
5811cb27 2020 target_cpu_default="MASK_ABICALLS"
ca11c37c 2021 tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
a4714d14 2022 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
61ed06c3 2023 ;;
58c9330b
MF
2024mips*-img-linux*)
2025 tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/linux.h mips/linux-common.h mips/mti-linux.h"
2026 extra_options="${extra_options} linux-android.opt"
2027 tmake_file="${tmake_file} mips/t-img-linux"
2028 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=37 MIPS_ABI_DEFAULT=ABI_32"
38e9658c
MF
2029 with_arch_32="mips32r6"
2030 with_arch_64="mips64r6"
58c9330b
MF
2031 gnu_ld=yes
2032 gas=yes
2033 ;;
965c1798 2034mips*-mti-linux*)
9a7451a5 2035 tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/linux.h mips/linux-common.h mips/mti-linux.h"
ed9cbf7c 2036 extra_options="${extra_options} linux-android.opt"
965c1798
SE
2037 tmake_file="${tmake_file} mips/t-mti-linux"
2038 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
38e9658c
MF
2039 with_arch_32="mips32r2"
2040 with_arch_64="mips64r2"
965c1798
SE
2041 gnu_ld=yes
2042 gas=yes
965c1798 2043 ;;
77893d0b 2044mips*-*-linux*) # Linux MIPS, either endian.
9a7451a5 2045 tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/linux.h mips/linux-common.h"
ed9cbf7c 2046 extra_options="${extra_options} linux-android.opt"
900e3ae5 2047 case ${target} in
82f84ecb
MF
2048 mipsisa32r6*)
2049 default_mips_arch=mips32r6
2050 ;;
77893d0b 2051 mipsisa32r2*)
8cfebf86 2052 default_mips_arch=mips32r2
77893d0b
SE
2053 ;;
2054 mipsisa32*)
8cfebf86 2055 default_mips_arch=mips32
77893d0b 2056 ;;
900e3ae5 2057 mips64el-st-linux-gnu)
8cfebf86 2058 default_mips_abi=n32
900e3ae5
DJ
2059 tm_file="${tm_file} mips/st.h"
2060 tmake_file="${tmake_file} mips/t-st"
77893d0b 2061 enable_mips_multilibs="yes"
900e3ae5 2062 ;;
d97e6aca 2063 mips64octeon*-*-linux*)
8cfebf86 2064 default_mips_abi=n32
d97e6aca
AN
2065 tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
2066 target_cpu_default=MASK_SOFT_FLOAT_ABI
77893d0b 2067 enable_mips_multilibs="yes"
d97e6aca 2068 ;;
82f84ecb
MF
2069 mipsisa64r6*-*-linux*)
2070 default_mips_abi=n32
2071 default_mips_arch=mips64r6
2072 enable_mips_multilibs="yes"
2073 ;;
f2d6ca50 2074 mipsisa64r2*-*-linux*)
8cfebf86
SE
2075 default_mips_abi=n32
2076 default_mips_arch=mips64r2
77893d0b
SE
2077 enable_mips_multilibs="yes"
2078 ;;
2079 mips64*-*-linux* | mipsisa64*-*-linux*)
8cfebf86 2080 default_mips_abi=n32
77893d0b 2081 enable_mips_multilibs="yes"
f2d6ca50 2082 ;;
900e3ae5 2083 esac
bd5ab709 2084 if test x$enable_targets = xall; then
77893d0b
SE
2085 enable_mips_multilibs="yes"
2086 fi
2087 if test x$enable_mips_multilibs = xyes; then
bd5ab709 2088 tmake_file="${tmake_file} mips/t-linux64"
bd5ab709 2089 fi
61ed06c3 2090 ;;
992bcfac 2091mips*-mti-elf*)
a290fcda 2092 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h mips/sde.h mips/mti-elf.h"
992bcfac
SE
2093 tmake_file="mips/t-mti-elf"
2094 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
38e9658c
MF
2095 with_arch_32="mips32r2"
2096 with_arch_64="mips64r2"
992bcfac 2097 ;;
58c9330b
MF
2098mips*-img-elf*)
2099 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h mips/sde.h mips/mti-elf.h"
2100 tmake_file="mips/t-img-elf"
2101 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=37 MIPS_ABI_DEFAULT=ABI_32"
38e9658c
MF
2102 with_arch_32="mips32r6"
2103 with_arch_64="mips64r6"
58c9330b 2104 ;;
0ea339ea 2105mips*-sde-elf*)
a290fcda 2106 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h mips/sde.h"
45b86625 2107 tmake_file="mips/t-sde"
d1583032 2108 extra_options="${extra_options} mips/sde.opt"
d9dced13
RS
2109 case "${with_newlib}" in
2110 yes)
2111 # newlib / libgloss.
2112 ;;
2113 *)
2114 # MIPS toolkit libraries.
2115 tm_file="$tm_file mips/sdemtk.h"
2116 tmake_file="$tmake_file mips/t-sdemtk"
d9dced13
RS
2117 case ${enable_threads} in
2118 "" | yes | mipssde)
2119 thread_file='mipssde'
2120 ;;
2121 esac
2122 ;;
2123 esac
0ea339ea 2124 case ${target} in
82f84ecb
MF
2125 mipsisa32r6*)
2126 tm_defines="MIPS_ISA_DEFAULT=37 MIPS_ABI_DEFAULT=ABI_32"
2127 ;;
0ea339ea
NS
2128 mipsisa32r2*)
2129 tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
2130 ;;
2131 mipsisa32*)
2132 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
2133 ;;
82f84ecb
MF
2134 mipsisa64r6*)
2135 tm_defines="MIPS_ISA_DEFAULT=69 MIPS_ABI_DEFAULT=ABI_N32"
2136 ;;
0a4a51c7
AN
2137 mipsisa64r2*)
2138 tm_defines="MIPS_ISA_DEFAULT=65 MIPS_ABI_DEFAULT=ABI_N32"
2139 ;;
0ea339ea
NS
2140 mipsisa64*)
2141 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
2142 ;;
2143 esac
2144 ;;
e2c14f5d
RS
2145mipsisa32-*-elf* | mipsisa32el-*-elf* | \
2146mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
82f84ecb 2147mipsisa32r6-*-elf* | mipsisa32r6el-*-elf* | \
0a4a51c7 2148mipsisa64-*-elf* | mipsisa64el-*-elf* | \
82f84ecb
MF
2149mipsisa64r2-*-elf* | mipsisa64r2el-*-elf* | \
2150mipsisa64r6-*-elf* | mipsisa64r6el-*-elf*)
207bf79d 2151 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
45b86625 2152 tmake_file="mips/t-isa3264"
e2c14f5d 2153 case ${target} in
82f84ecb
MF
2154 mipsisa32r6*)
2155 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=37"
2156 ;;
e2c14f5d
RS
2157 mipsisa32r2*)
2158 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
2159 ;;
2160 mipsisa32*)
2161 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
2162 ;;
82f84ecb
MF
2163 mipsisa64r6*)
2164 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=69"
2165 ;;
0a4a51c7
AN
2166 mipsisa64r2*)
2167 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
2168 ;;
e2c14f5d
RS
2169 mipsisa64*)
2170 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
2171 ;;
2172 esac
2173 case ${target} in
2174 mipsisa32*-*-elfoabi*)
2175 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
2176 tm_file="${tm_file} mips/elfoabi.h"
2177 ;;
2178 mipsisa64*-*-elfoabi*)
2179 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
2180 tm_file="${tm_file} mips/elfoabi.h"
2181 ;;
2182 *-*-elf*)
2183 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
2184 ;;
2185 esac
5c44e275 2186 ;;
5ce6f47b 2187mipsisa64sr71k-*-elf*)
207bf79d 2188 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
5ce6f47b 2189 tmake_file=mips/t-sr71k
620b87b3 2190 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
5ce6f47b 2191 ;;
3d41dbb0 2192mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
207bf79d 2193 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
45b86625 2194 tmake_file="mips/t-elf mips/t-sb1"
620b87b3 2195 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
3d41dbb0 2196 ;;
107eea2c 2197mips-*-elf* | mipsel-*-elf* | mipsr5900-*-elf* | mipsr5900el-*-elf*)
207bf79d 2198 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
45b86625 2199 tmake_file="mips/t-elf"
61ed06c3 2200 ;;
107eea2c 2201mips64r5900-*-elf* | mips64r5900el-*-elf*)
a290fcda 2202 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/n32-elf.h"
107eea2c
JU
2203 tmake_file="mips/t-elf"
2204 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
2205 ;;
74826b0f 2206mips64-*-elf* | mips64el-*-elf*)
207bf79d 2207 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h"
45b86625 2208 tmake_file="mips/t-elf"
620b87b3 2209 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
61ed06c3 2210 ;;
5ce6f47b 2211mips64vr-*-elf* | mips64vrel-*-elf*)
207bf79d 2212 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/vr.h mips/elf.h"
5ce6f47b 2213 tmake_file=mips/t-vr
c4023c19 2214 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
5ce6f47b 2215 ;;
74826b0f 2216mips64orion-*-elf* | mips64orionel-*-elf*)
207bf79d 2217 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elforion.h mips/elf.h"
45b86625 2218 tmake_file="mips/t-elf"
620b87b3 2219 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
61ed06c3 2220 ;;
bc98ef7f 2221mips*-*-rtems*)
207bf79d 2222 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
aefe4056 2223 tmake_file="${tmake_file} mips/t-elf mips/t-rtems"
61ed06c3 2224 ;;
55047c9d 2225mips-wrs-vxworks)
efa58006 2226 tm_file="elfos.h ${tm_file} mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
55047c9d 2227 tmake_file="${tmake_file} mips/t-vxworks"
55047c9d 2228 ;;
74826b0f 2229mipstx39-*-elf* | mipstx39el-*-elf*)
207bf79d 2230 tm_file="elfos.h newlib-stdint.h ${tm_file} mips/r3900.h mips/elf.h"
45b86625 2231 tmake_file="mips/t-r3900"
61ed06c3 2232 ;;
bcf684c7 2233mmix-knuth-mmixware)
207bf79d 2234 tm_file="${tm_file} newlib-stdint.h"
207bf79d 2235 use_gcc_stdint=wrap
bcf684c7 2236 ;;
61ed06c3 2237mn10300-*-*)
6b9b8b34 2238 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
61ed06c3
HPN
2239 if test x$stabs = xyes
2240 then
2241 tm_file="${tm_file} dbx.h"
2242 fi
2243 use_collect2=no
207bf79d 2244 use_gcc_stdint=wrap
61ed06c3 2245 ;;
f6a83b4a
DD
2246msp430*-*-*)
2247 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2248 c_target_objs="msp430-c.o"
2249 cxx_target_objs="msp430-c.o"
f6a83b4a 2250 tmake_file="${tmake_file} msp430/t-msp430"
04a9ae28 2251 extra_gcc_objs="driver-msp430.o"
f6a83b4a 2252 ;;
9304f876
CJW
2253nds32le-*-*)
2254 target_cpu_default="0"
2255 tm_defines="${tm_defines}"
2256 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
c0c935b5 2257 tmake_file="nds32/t-nds32 nds32/t-mlibs"
9304f876
CJW
2258 ;;
2259nds32be-*-*)
2260 target_cpu_default="0|MASK_BIG_ENDIAN"
2261 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
2262 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
c0c935b5 2263 tmake_file="nds32/t-nds32 nds32/t-mlibs"
9304f876 2264 ;;
e430824f
CLT
2265nios2-*-*)
2266 tm_file="elfos.h ${tm_file}"
2267 tmake_file="${tmake_file} nios2/t-nios2"
2268 case ${target} in
2269 nios2-*-linux*)
2270 tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h nios2/linux.h "
2271 ;;
2272 nios2-*-elf*)
2273 tm_file="${tm_file} newlib-stdint.h nios2/elf.h"
2274 extra_options="${extra_options} nios2/elf.opt"
2275 ;;
00020dda
SH
2276 nios2-*-rtems*)
2277 tm_file="${tm_file} newlib-stdint.h nios2/rtems.h rtems.h"
2278 tmake_file="${tmake_file} t-rtems nios2/t-rtems"
2279 ;;
e430824f
CLT
2280 esac
2281 ;;
738f2522
BS
2282nvptx-*)
2283 tm_file="${tm_file} newlib-stdint.h"
2284 tmake_file="nvptx/t-nvptx"
1f83528e
TS
2285 if test x$enable_as_accelerator = xyes; then
2286 extra_programs="${extra_programs} mkoffload\$(exeext)"
2287 tm_file="${tm_file} nvptx/offload.h"
2288 fi
738f2522 2289 ;;
61ed06c3 2290pdp11-*-*)
207bf79d
JM
2291 tm_file="${tm_file} newlib-stdint.h"
2292 use_gcc_stdint=wrap
61ed06c3 2293 ;;
ca11c37c
ZW
2294# port not yet contributed
2295#powerpc-*-openbsd*)
569dc494 2296# tmake_file="${tmake_file} rs6000/t-fprules"
ca11c37c
ZW
2297# extra_headers=
2298# ;;
18922061 2299powerpc-*-darwin*)
78f5898b 2300 extra_options="${extra_options} rs6000/darwin.opt"
f0b81cbc 2301 case ${target} in
ed5b9f96 2302 *-darwin1[0-9]* | *-darwin[8-9]*)
f7288899 2303 tmake_file="${tmake_file} rs6000/t-darwin8"
ed5b9f96
GK
2304 tm_file="${tm_file} rs6000/darwin8.h"
2305 ;;
2306 *-darwin7*)
2307 tm_file="${tm_file} rs6000/darwin7.h"
2308 ;;
2309 *-darwin[0-6]*)
2310 ;;
f0b81cbc 2311 esac
b040f2be 2312 tmake_file="${tmake_file} t-slibgcc"
5fb4cf24 2313 extra_headers=altivec.h
18922061 2314 ;;
b8ec3cc8 2315powerpc64-*-darwin*)
b8ec3cc8 2316 extra_options="${extra_options} ${cpu_type}/darwin.opt"
b040f2be 2317 tmake_file="${tmake_file} ${cpu_type}/t-darwin64 t-slibgcc"
9a2d05e0 2318 tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
b8ec3cc8
EC
2319 extra_headers=altivec.h
2320 ;;
a26f86dc
AT
2321powerpc*-*-freebsd*)
2322 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h"
78f5898b 2323 extra_options="${extra_options} rs6000/sysv4.opt"
a26f86dc 2324 tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
252a969e 2325 case ${target} in
a26f86dc
AT
2326 powerpc64*)
2327 tm_file="${tm_file} rs6000/default64.h rs6000/freebsd64.h"
2328 tmake_file="${tmake_file} rs6000/t-freebsd64"
2329 extra_options="${extra_options} rs6000/linux64.opt"
2330 ;;
2331 *)
2332 tm_file="${tm_file} rs6000/freebsd.h"
2333 ;;
2334 esac
b91da81f 2335 ;;
edf1b3f3 2336powerpc-*-netbsd*)
a4967b8d 2337 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
a4714d14 2338 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
a4967b8d 2339 tmake_file="${tmake_file} rs6000/t-netbsd"
78f5898b 2340 extra_options="${extra_options} rs6000/sysv4.opt"
edf1b3f3 2341 ;;
518878e1 2342powerpc-*-eabispe*)
a1cd969e 2343 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"
78f5898b 2344 extra_options="${extra_options} rs6000/sysv4.opt"
00c060a4 2345 tmake_file="rs6000/t-spe rs6000/t-ppccomm"
207bf79d 2346 use_gcc_stdint=wrap
518878e1 2347 ;;
cf6ede82 2348powerpc-*-eabisimaltivec*)
a1cd969e 2349 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"
78f5898b 2350 extra_options="${extra_options} rs6000/sysv4.opt"
569dc494 2351 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
207bf79d 2352 use_gcc_stdint=wrap
cf6ede82 2353 ;;
61ed06c3 2354powerpc-*-eabisim*)
a1cd969e 2355 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"
78f5898b 2356 extra_options="${extra_options} rs6000/sysv4.opt"
569dc494 2357 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
207bf79d 2358 use_gcc_stdint=wrap
61ed06c3
HPN
2359 ;;
2360powerpc-*-elf*)
a1cd969e 2361 tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h"
78f5898b 2362 extra_options="${extra_options} rs6000/sysv4.opt"
569dc494 2363 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
61ed06c3 2364 ;;
10baca6b 2365powerpc-*-eabialtivec*)
a1cd969e 2366 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"
78f5898b 2367 extra_options="${extra_options} rs6000/sysv4.opt"
569dc494 2368 tmake_file="rs6000/t-fprules rs6000/t-ppcendian rs6000/t-ppccomm"
207bf79d 2369 use_gcc_stdint=wrap
10baca6b 2370 ;;
696e45ba 2371powerpc-xilinx-eabi*)
a1cd969e 2372 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"
a64a8e5a 2373 extra_options="${extra_options} rs6000/sysv4.opt rs6000/xilinx.opt"
569dc494 2374 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm rs6000/t-xilinx"
207bf79d 2375 use_gcc_stdint=wrap
696e45ba 2376 ;;
61ed06c3 2377powerpc-*-eabi*)
a1cd969e 2378 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"
78f5898b 2379 extra_options="${extra_options} rs6000/sysv4.opt"
569dc494 2380 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
207bf79d 2381 use_gcc_stdint=wrap
61ed06c3
HPN
2382 ;;
2383powerpc-*-rtems*)
a1cd969e 2384 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"
78f5898b 2385 extra_options="${extra_options} rs6000/sysv4.opt"
aefe4056 2386 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-rtems rs6000/t-ppccomm"
61ed06c3 2387 ;;
b9a7eb5d 2388powerpc*-*-linux*)
f0c5fd44 2389 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h freebsd-spec.h rs6000/sysv4.h"
78f5898b 2390 extra_options="${extra_options} rs6000/sysv4.opt"
864396ff 2391 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm"
9193fb05 2392 extra_objs="$extra_objs rs6000-linux.o"
b9a7eb5d
AM
2393 case ${target} in
2394 powerpc*le-*-*)
93ed07e2 2395 tm_file="${tm_file} rs6000/sysv4le.h" ;;
b9a7eb5d 2396 esac
864396ff
AM
2397 case ${target}:${with_cpu} in
2398 powerpc64*: | powerpc64*:native) cpu_is_64bit=yes ;;
2399 esac
2400 maybe_biarch=${cpu_is_64bit}
2401 case ${enable_targets} in
2402 *powerpc64*) maybe_biarch=yes ;;
b9b1573b 2403 all) maybe_biarch=yes ;;
864396ff 2404 esac
457d1d00 2405 case ${target} in
b9a7eb5d 2406 powerpc64*-*-linux*spe* | powerpc64*-*-linux*paired*)
864396ff 2407 echo "*** Configuration ${target} not supported" 1>&2
633dd061
AM
2408 exit 1
2409 ;;
b9a7eb5d 2410 powerpc*-*-linux*spe* | powerpc*-*-linux*paired*)
633dd061
AM
2411 maybe_biarch=
2412 ;;
457d1d00 2413 esac
864396ff
AM
2414 case ${target}:${enable_targets}:${maybe_biarch} in
2415 powerpc64-* | powerpc-*:*:yes | *:*powerpc64-*:yes | *:all:yes \
2416 | powerpc64le*:*powerpcle* | powerpc64le*:*powerpc-* \
2417 | powerpcle-*:*powerpc64le*:yes)
a8e04fe6
AM
2418 if test x$cpu_is_64bit = xyes; then
2419 tm_file="${tm_file} rs6000/default64.h"
2420 fi
207bf79d 2421 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h glibc-stdint.h"
a8e04fe6 2422 tmake_file="$tmake_file rs6000/t-linux64"
93ed07e2
AM
2423 case ${target} in
2424 powerpc*le-*-*)
2425 tmake_file="$tmake_file rs6000/t-linux64le"
2426 case ${enable_targets} in
2427 all | *powerpc64-* | *powerpc-*)
2428 tmake_file="$tmake_file rs6000/t-linux64lebe" ;;
2429 esac ;;
2430 *)
2431 case ${enable_targets} in
2432 all | *powerpc64le-* | *powerpcle-*)
2433 tmake_file="$tmake_file rs6000/t-linux64bele" ;;
2434 esac ;;
2435 esac
f75aac9e 2436 extra_options="${extra_options} rs6000/linux64.opt"
a8e04fe6 2437 ;;
864396ff
AM
2438 powerpc64*)
2439 tm_file="${tm_file} rs6000/default64.h rs6000/linux64.h glibc-stdint.h"
2440 extra_options="${extra_options} rs6000/linux64.opt"
2441 tmake_file="${tmake_file} rs6000/t-linux"
2442 ;;
a8e04fe6 2443 *)
207bf79d 2444 tm_file="${tm_file} rs6000/linux.h glibc-stdint.h"
864396ff 2445 tmake_file="${tmake_file} rs6000/t-ppcos rs6000/t-linux"
a8e04fe6
AM
2446 ;;
2447 esac
457d1d00 2448 case ${target} in
be26142a
PB
2449 powerpc*-*-linux*ppc476*)
2450 tm_file="${tm_file} rs6000/476.h"
2451 extra_options="${extra_options} rs6000/476.opt" ;;
457d1d00
AM
2452 powerpc*-*-linux*altivec*)
2453 tm_file="${tm_file} rs6000/linuxaltivec.h" ;;
2454 powerpc*-*-linux*spe*)
2455 tm_file="${tm_file} rs6000/linuxspe.h rs6000/e500.h" ;;
2456 powerpc*-*-linux*paired*)
2457 tm_file="${tm_file} rs6000/750cl.h" ;;
2458 esac
0d6be0b1
GR
2459 case ${target} in
2460 *-linux*-musl*)
2461 enable_secureplt=yes ;;
2462 esac
7f970b70
AM
2463 if test x${enable_secureplt} = xyes; then
2464 tm_file="rs6000/secureplt.h ${tm_file}"
2465 fi
25207f51
MM
2466 # Assume modern glibc if not targeting Android nor uclibc.
2467 case ${target} in
2468 *-*-*android*|*-*-*uclibc*|*-*-*musl*)
2469 ;;
2470 *)
2471 default_gnu_indirect_function=yes
2472 ;;
2473 esac
61ed06c3 2474 ;;
3a8fe7c6 2475powerpc-wrs-vxworks|powerpc-wrs-vxworksae|powerpc-wrs-vxworksmils)
a1cd969e 2476 tm_file="${tm_file} elfos.h freebsd-spec.h rs6000/sysv4.h"
569dc494 2477 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppccomm rs6000/t-vxworks"
78f5898b 2478 extra_options="${extra_options} rs6000/sysv4.opt"
4977bab6 2479 extra_headers=ppc-asm.h
2eab15c9 2480 case ${target} in
3a8fe7c6
OH
2481 *-vxworksmils*)
2482 tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksmils.h"
2483 tmake_file="${tmake_file} rs6000/t-vxworksmils"
2484 ;;
2eab15c9 2485 *-vxworksae*)
49664873 2486 tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksae.h"
2eab15c9
PE
2487 tmake_file="${tmake_file} rs6000/t-vxworksae"
2488 ;;
2489 *-vxworks*)
eca0d5e8 2490 tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
2eab15c9
PE
2491 ;;
2492 esac
4977bab6 2493 ;;
4f587cb0
AN
2494powerpc-*-lynxos*)
2495 xm_defines=POSIX
2496 tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
2497 tmake_file="t-lynx rs6000/t-lynx"
78f5898b 2498 extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
4f587cb0
AN
2499 thread_file=lynx
2500 gnu_ld=yes
2501 gas=yes
2502 ;;
61ed06c3 2503powerpcle-*-elf*)
a1cd969e 2504 tm_file="${tm_file} dbxelf.h elfos.h usegas.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/sysv4le.h"
569dc494 2505 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2506 extra_options="${extra_options} rs6000/sysv4.opt"
61ed06c3
HPN
2507 ;;
2508powerpcle-*-eabisim*)
a1cd969e 2509 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"
569dc494 2510 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2511 extra_options="${extra_options} rs6000/sysv4.opt"
207bf79d 2512 use_gcc_stdint=wrap
61ed06c3
HPN
2513 ;;
2514powerpcle-*-eabi*)
a1cd969e 2515 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"
569dc494 2516 tmake_file="rs6000/t-fprules rs6000/t-ppcgas rs6000/t-ppccomm"
78f5898b 2517 extra_options="${extra_options} rs6000/sysv4.opt"
207bf79d 2518 use_gcc_stdint=wrap
61ed06c3 2519 ;;
61ed06c3 2520rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
557cc596 2521 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h rs6000/aix-stdint.h"
b040f2be 2522 tmake_file="rs6000/t-aix43 t-slibgcc"
432218ba 2523 extra_options="${extra_options} rs6000/aix64.opt"
61ed06c3
HPN
2524 use_collect2=yes
2525 thread_file='aix'
557cc596 2526 use_gcc_stdint=provide
ba1e6c0b 2527 extra_headers=
61ed06c3 2528 ;;
5f5d5417 2529rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
557cc596 2530 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h rs6000/aix-stdint.h"
432218ba 2531 extra_options="${extra_options} rs6000/aix64.opt"
b040f2be 2532 tmake_file="rs6000/t-aix43 t-slibgcc"
61ed06c3
HPN
2533 use_collect2=yes
2534 thread_file='aix'
557cc596 2535 use_gcc_stdint=wrap
ba1e6c0b 2536 extra_headers=
61ed06c3 2537 ;;
ca94e524 2538rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
557cc596 2539 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h rs6000/aix-stdint.h"
b040f2be 2540 tmake_file="rs6000/t-aix52 t-slibgcc"
432218ba 2541 extra_options="${extra_options} rs6000/aix64.opt"
5f5d5417
DE
2542 use_collect2=yes
2543 thread_file='aix'
557cc596 2544 use_gcc_stdint=wrap
5f5d5417
DE
2545 extra_headers=
2546 ;;
ba6a1b78 2547rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
557cc596 2548 tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h rs6000/aix-stdint.h"
b040f2be 2549 tmake_file="rs6000/t-aix52 t-slibgcc"
ca94e524
DE
2550 extra_options="${extra_options} rs6000/aix64.opt"
2551 use_collect2=yes
2552 thread_file='aix'
557cc596 2553 use_gcc_stdint=wrap
c4a79427 2554 extra_headers=altivec.h
ca94e524 2555 ;;
51fbbb92 2556rs6000-ibm-aix6.* | powerpc-ibm-aix6.*)
557cc596 2557 tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h rs6000/aix-stdint.h"
b040f2be 2558 tmake_file="rs6000/t-aix52 t-slibgcc"
ba6a1b78
DE
2559 extra_options="${extra_options} rs6000/aix64.opt"
2560 use_collect2=yes
2561 thread_file='aix'
557cc596 2562 use_gcc_stdint=wrap
ba6a1b78 2563 extra_headers=altivec.h
b9584cb5 2564 default_use_cxa_atexit=yes
51fbbb92
DE
2565 ;;
2566rs6000-ibm-aix[789].* | powerpc-ibm-aix[789].*)
2567 tm_file="${tm_file} rs6000/aix.h rs6000/aix71.h rs6000/xcoff.h rs6000/aix-stdint.h"
2568 tmake_file="rs6000/t-aix52 t-slibgcc"
2569 extra_options="${extra_options} rs6000/aix64.opt"
2570 use_collect2=yes
2571 thread_file='aix'
2572 use_gcc_stdint=wrap
2573 extra_headers=altivec.h
b9584cb5 2574 default_use_cxa_atexit=yes
ba6a1b78 2575 ;;
85b8555e
DD
2576rl78-*-elf*)
2577 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
2578 target_has_targetm_common=no
2579 c_target_objs="rl78-c.o"
2580 cxx_target_objs="rl78-c.o"
2581 tmake_file="${tmake_file} rl78/t-rl78"
2582 ;;
65a324b4 2583rx-*-elf*)
80cf2e08 2584 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
65a324b4
NC
2585 tmake_file="${tmake_file} rx/t-rx"
2586 ;;
0e5a4ad8 2587s390-*-linux*)
604fbe51 2588 default_gnu_indirect_function=yes
8e38461c 2589 tm_file="s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
3af82a61
AK
2590 c_target_objs="${c_target_objs} s390-c.o"
2591 cxx_target_objs="${cxx_target_objs} s390-c.o"
f3054223
AL
2592 if test x$enable_targets = xall; then
2593 tmake_file="${tmake_file} s390/t-linux64"
2594 fi
3af82a61 2595 tmake_file="${tmake_file} s390/t-s390"
9628a767 2596 ;;
0e5a4ad8 2597s390x-*-linux*)
604fbe51 2598 default_gnu_indirect_function=yes
8e38461c 2599 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h"
ed9cbf7c 2600 tm_p_file="linux-protos.h s390/s390-protos.h"
3af82a61
AK
2601 c_target_objs="${c_target_objs} s390-c.o"
2602 cxx_target_objs="${cxx_target_objs} s390-c.o"
70eeb10b 2603 md_file=s390/s390.md
1c0ca89d 2604 extra_modes=s390/s390-modes.def
70eeb10b 2605 out_file=s390/s390.c
3af82a61 2606 tmake_file="${tmake_file} s390/t-linux64 s390/t-s390"
9628a767 2607 ;;
24fe22c9 2608s390x-ibm-tpf*)
3af82a61
AK
2609 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h s390/tpf.h"
2610 tm_p_file=s390/s390-protos.h
2611 c_target_objs="${c_target_objs} s390-c.o"
2612 cxx_target_objs="${cxx_target_objs} s390-c.o"
2613 md_file=s390/s390.md
2614 extra_modes=s390/s390-modes.def
2615 out_file=s390/s390.c
2616 thread_file='tpf'
a8ba31f2 2617 extra_options="${extra_options} s390/tpf.opt"
3af82a61 2618 tmake_file="${tmake_file} s390/t-s390"
24fe22c9 2619 ;;
cd985f66 2620sh-*-elf* | sh[12346l]*-*-elf* | \
93fea8d3 2621 sh-*-linux* | sh[2346lbe]*-*-linux* | \
bc6d9014 2622 sh-*-netbsdelf* | shl*-*-netbsdelf*)
da28a3b9
JR
2623 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
2624 if test x${with_endian} = x; then
2625 case ${target} in
2626 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
2627 shbe-*-* | sheb-*-*) with_endian=big,little ;;
2628 sh[1234]l* | sh[34]*-*-linux*) with_endian=little ;;
bc6d9014
OE
2629 shl* | sh*-*-linux* | \
2630 sh-superh-elf) with_endian=little,big ;;
da28a3b9
JR
2631 sh[1234]*-*-*) with_endian=big ;;
2632 *) with_endian=big,little ;;
2633 esac
2634 fi
aca600aa
AS
2635 # TM_ENDIAN_CONFIG is used by t-sh to determine multilibs.
2636 # First word : the default endian.
2637 # Second word: the secondary endian (optional).
da28a3b9 2638 case ${with_endian} in
aca600aa
AS
2639 big) TM_ENDIAN_CONFIG=mb ;;
2640 little) TM_ENDIAN_CONFIG=ml ;;
2641 big,little) TM_ENDIAN_CONFIG="mb ml" ;;
2642 little,big) TM_ENDIAN_CONFIG="ml mb" ;;
da28a3b9
JR
2643 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
2644 esac
2645 case ${with_endian} in
2646 little*) tm_file="sh/little.h ${tm_file}" ;;
2647 esac
9e08f9e2 2648 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h"
b01bc573 2649 case ${target} in
da28a3b9 2650 sh*-*-linux*) tmake_file="${tmake_file} sh/t-linux"
1e44e857
DJ
2651 if test x$enable_fdpic = xyes; then
2652 tm_defines="$tm_defines FDPIC_DEFAULT=1"
2653 fi
8e38461c 2654 tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
a4714d14
JM
2655 sh*-*-netbsd*)
2656 tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h"
2657 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
2658
2659 ;;
c68e4eed
CB
2660 sh*-superh-elf) if test x$with_libgloss != xno; then
2661 with_libgloss=yes
2662 tm_file="${tm_file} sh/newlib.h"
2663 fi
2d606e03 2664 tm_file="${tm_file} sh/embed-elf.h"
c68e4eed 2665 tm_file="${tm_file} sh/superh.h"
c68e4eed 2666 extra_options="${extra_options} sh/superh.opt" ;;
8c1aaf26
R
2667 *) if test x$with_newlib = xyes \
2668 && test x$with_libgloss = xyes; then
2669 tm_file="${tm_file} sh/newlib.h"
2670 fi
2671 tm_file="${tm_file} sh/embed-elf.h" ;;
da28a3b9
JR
2672 esac
2673 case ${target} in
da28a3b9 2674 *-*-netbsd)
da28a3b9 2675 ;;
207bf79d
JM
2676 *-*-elf*)
2677 tm_file="${tm_file} newlib-stdint.h"
2678 ;;
8bc6e101 2679 esac
da28a3b9
JR
2680 # sed el/eb endian suffixes away to avoid confusion with sh[23]e
2681 case `echo ${target} | sed 's/e[lb]-/-/'` in
312209c6
AO
2682 sh4a_single_only*) sh_cpu_target=sh4a-single-only ;;
2683 sh4a_single*) sh_cpu_target=sh4a-single ;;
2684 sh4a_nofpu*) sh_cpu_target=sh4a-nofpu ;;
2685 sh4al) sh_cpu_target=sh4al ;;
2686 sh4a*) sh_cpu_target=sh4a ;;
da28a3b9
JR
2687 sh4_single_only*) sh_cpu_target=sh4-single-only ;;
2688 sh4_single*) sh_cpu_target=sh4-single ;;
2689 sh4_nofpu*) sh_cpu_target=sh4-nofpu ;;
2690 sh4* | sh-superh-*) sh_cpu_target=sh4 ;;
2691 sh3e*) sh_cpu_target=sh3e ;;
2692 sh*-*-netbsd* | sh3*) sh_cpu_target=sh3 ;;
157371cf
AO
2693 sh2a_single_only*) sh_cpu_target=sh2a-single-only ;;
2694 sh2a_single*) sh_cpu_target=sh2a-single ;;
2695 sh2a_nofpu*) sh_cpu_target=sh2a-nofpu ;;
2696 sh2a*) sh_cpu_target=sh2a ;;
da28a3b9
JR
2697 sh2e*) sh_cpu_target=sh2e ;;
2698 sh2*) sh_cpu_target=sh2 ;;
2699 *) sh_cpu_target=sh1 ;;
8f48afc1 2700 esac
8c1aaf26
R
2701 # did the user say --without-fp ?
2702 if test x$with_fp = xno; then
2703 case ${sh_cpu_target} in
8c1aaf26
R
2704 sh4al | sh1) ;;
2705 sh4a* ) sh_cpu_target=sh4a-nofpu ;;
2706 sh4*) sh_cpu_target=sh4-nofpu ;;
2707 sh3*) sh_cpu_target=sh3 ;;
2708 sh2a*) sh_cpu_target=sh2a-nofpu ;;
2709 sh2*) sh_cpu_target=sh2 ;;
2710 *) echo --without-fp not available for $target: ignored
2711 esac
2712 tm_defines="$tm_defines STRICT_NOFPU=1"
2713 fi
da28a3b9
JR
2714 sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
2715 case $sh_cpu_default in
157371cf 2716 sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
312209c6 2717 sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
27a0ce7d 2718 sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
bf09b512 2719 sh3e | sh3 | sh2e | sh2 | sh1) ;;
da28a3b9
JR
2720 "") sh_cpu_default=${sh_cpu_target} ;;
2721 *) echo "with_cpu=$with_cpu not supported"; exit 1 ;;
dbf87f32 2722 esac
da28a3b9 2723 sh_multilibs=${with_multilib_list}
aca600aa 2724 if test "$sh_multilibs" = "default" ; then
da28a3b9
JR
2725 case ${target} in
2726 sh[1234]*) sh_multilibs=${sh_cpu_target} ;;
da28a3b9 2727 sh-superh-*) sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
8f6d1c86 2728 sh*-*-linux*) sh_multilibs=m1,m2,m2a,m3e,m4 ;;
da28a3b9 2729 sh*-*-netbsd*) sh_multilibs=m3,m3e,m4 ;;
157371cf 2730 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
da28a3b9 2731 esac
8c1aaf26
R
2732 if test x$with_fp = xno; then
2733 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`"
2734 fi
da28a3b9 2735 fi
25e651ca 2736 target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
da28a3b9 2737 tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
aca600aa 2738 tm_defines="$tm_defines SUPPORT_`echo $sh_cpu_default | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
47e5ff44 2739 sh_multilibs=`echo $sh_multilibs | sed -e 's/,/ /g' -e 's/^[Ss][Hh]/m/' -e 's/ [Ss][Hh]/ m/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
da28a3b9
JR
2740 for sh_multilib in ${sh_multilibs}; do
2741 case ${sh_multilib} in
aca600aa
AS
2742 m1 | m2 | m2e | m3 | m3e | \
2743 m4 | m4-single | m4-single-only | m4-nofpu | m4-300 |\
2744 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al | \
bc6d9014 2745 m2a | m2a-single | m2a-single-only | m2a-nofpu)
aca600aa
AS
2746 # TM_MULTILIB_CONFIG is used by t-sh for the non-endian multilib definition
2747 # It is passed to MULTIILIB_OPTIONS verbatim.
2748 TM_MULTILIB_CONFIG="${TM_MULTILIB_CONFIG}/${sh_multilib}"
2749 tm_defines="$tm_defines SUPPORT_`echo $sh_multilib | sed 's/^m/sh/' | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
da28a3b9 2750 ;;
aca600aa
AS
2751 \!*) # TM_MULTILIB_EXCEPTIONS_CONFIG is used by t-sh
2752 # It is passed the MULTILIB_EXCEPTIONS verbatim.
2753 TM_MULTILIB_EXCEPTIONS_CONFIG="${TM_MULTILIB_EXCEPTIONS_CONFIG} `echo $sh_multilib | sed 's/^!//'`" ;;
da28a3b9
JR
2754 *)
2755 echo "with_multilib_list=${sh_multilib} not supported."
2756 exit 1
2757 ;;
2758 esac
2759 done
aca600aa 2760 TM_MULTILIB_CONFIG=`echo $TM_MULTILIB_CONFIG | sed 's:^/::'`
25e651ca 2761 if test x${enable_incomplete_targets} = xyes ; then
bc6d9014 2762 tm_defines="$tm_defines SUPPORT_SH1=1 SUPPORT_SH2E=1 SUPPORT_SH4=1 SUPPORT_SH4_SINGLE=1 SUPPORT_SH2A=1 SUPPORT_SH2A_SINGLE=1"
da28a3b9 2763 fi
44509946
AS
2764 tm_file="$tm_file ./sysroot-suffix.h"
2765 tmake_file="$tmake_file t-sysroot-suffix"
fa5322fa 2766 ;;
314733e2 2767sh-*-rtems*)
aefe4056 2768 tmake_file="${tmake_file} sh/t-sh sh/t-rtems"
9e08f9e2 2769 tm_file="${tm_file} dbxelf.h elfos.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h newlib-stdint.h"
314733e2 2770 ;;
55047c9d 2771sh-wrs-vxworks)
5f73c6cc 2772 tmake_file="$tmake_file sh/t-sh sh/t-vxworks"
9e08f9e2 2773 tm_file="${tm_file} elfos.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
55047c9d 2774 ;;
61ed06c3 2775sparc-*-elf*)
ec047df4 2776 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp-elf.h"
07981468
KE
2777 case ${target} in
2778 *-leon-*)
8d12174d 2779 tmake_file="sparc/t-sparc sparc/t-leon"
07981468
KE
2780 ;;
2781 *-leon[3-9]*)
8d12174d 2782 tmake_file="sparc/t-sparc sparc/t-leon3"
07981468
KE
2783 ;;
2784 *)
8d12174d 2785 tmake_file="sparc/t-sparc sparc/t-elf"
07981468
KE
2786 ;;
2787 esac
61ed06c3 2788 ;;
ad234fc7 2789sparc-*-rtems*)
ec047df4 2790 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h newlib-stdint.h"
9c281312 2791 tmake_file="${tmake_file} sparc/t-sparc sparc/t-rtems"
ad234fc7
EB
2792 ;;
2793sparc-*-linux*)
6cc7fb90 2794 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h sparc/tso.h"
fe609b0f 2795 extra_options="${extra_options} sparc/long-double-switch.opt"
07981468
KE
2796 case ${target} in
2797 *-leon-*)
8d12174d 2798 tmake_file="${tmake_file} sparc/t-sparc sparc/t-leon"
07981468
KE
2799 ;;
2800 *-leon[3-9]*)
8d12174d 2801 tmake_file="${tmake_file} sparc/t-sparc sparc/t-leon3"
07981468
KE
2802 ;;
2803 *)
b040f2be 2804 tmake_file="${tmake_file} sparc/t-sparc"
07981468
KE
2805 ;;
2806 esac
5f7ca34b
DM
2807 if test x$enable_targets = xall; then
2808 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
ccbdd3bc 2809 tmake_file="${tmake_file} sparc/t-linux64"
5f7ca34b
DM
2810 else
2811 tm_file="${tm_file} sparc/linux.h"
d3547cab 2812 tmake_file="${tmake_file} sparc/t-linux"
5f7ca34b 2813 fi
61ed06c3 2814 ;;
ad234fc7 2815sparc-*-netbsdelf*)
ec047df4 2816 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
a4714d14 2817 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
ad234fc7 2818 extra_options="${extra_options} sparc/long-double-switch.opt"
8d12174d 2819 tmake_file="${tmake_file} sparc/t-sparc"
3943fe02 2820 ;;
2587aa3b 2821sparc*-*-solaris2*)
2cf03b11 2822 tm_file="sparc/biarch64.h ${tm_file} ${sol2_tm_file} sparc/tso.h"
18167442 2823 case ${target} in
2587aa3b 2824 sparc64-*-* | sparcv9-*-*)
7c7dae65 2825 tm_file="sparc/default64.h ${tm_file}"
207bf79d 2826 ;;
2587aa3b
EB
2827 *)
2828 test x$with_cpu != x || with_cpu=v9
ec23ed60 2829 ;;
18167442 2830 esac
2cf03b11 2831 tmake_file="${tmake_file} sparc/t-sparc sparc/t-sol2"
61ed06c3 2832 ;;
1910440e 2833sparc-wrs-vxworks)
ec047df4 2834 tm_file="${tm_file} elfos.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
8d12174d 2835 tmake_file="${tmake_file} sparc/t-sparc sparc/t-vxworks"
1910440e 2836 ;;
61ed06c3 2837sparc64-*-elf*)
ec047df4 2838 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h"
ae5f5715 2839 extra_options="${extra_options}"
8d12174d 2840 tmake_file="${tmake_file} sparc/t-sparc"
61ed06c3 2841 ;;
ad234fc7 2842sparc64-*-rtems*)
ec047df4 2843 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h sparc/sysv4.h sparc/sp64-elf.h sparc/rtemself.h rtems.h"
ae5f5715 2844 extra_options="${extra_options}"
aefe4056 2845 tmake_file="${tmake_file} sparc/t-sparc sparc/t-rtems-64"
ad234fc7
EB
2846 ;;
2847sparc64-*-linux*)
7c7dae65 2848 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h gnu-user.h linux.h glibc-stdint.h sparc/default64.h sparc/linux64.h sparc/tso.h"
ad234fc7 2849 extra_options="${extra_options} sparc/long-double-switch.opt"
b040f2be 2850 tmake_file="${tmake_file} sparc/t-sparc sparc/t-linux64"
ad234fc7 2851 ;;
c7240cbd
DB
2852sparc64-*-freebsd*|ultrasparc-*-freebsd*)
2853 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
fe609b0f 2854 extra_options="${extra_options} sparc/long-double-switch.opt"
c7240cbd 2855 case "x$with_cpu" in
e0054185 2856 xultrasparc) ;;
c7240cbd
DB
2857 x) with_cpu=ultrasparc ;;
2858 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
2859 esac
8d12174d 2860 tmake_file="${tmake_file} sparc/t-sparc"
c7240cbd 2861 ;;
4cb7482c 2862sparc64-*-netbsd*)
4cb7482c 2863 tm_file="sparc/biarch64.h ${tm_file}"
ec047df4 2864 tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
a4714d14 2865 extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
fe609b0f 2866 extra_options="${extra_options} sparc/long-double-switch.opt"
8d12174d 2867 tmake_file="${tmake_file} sparc/t-sparc sparc/t-netbsd64"
4cb7482c 2868 ;;
ad234fc7 2869sparc64-*-openbsd*)
ec047df4 2870 tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h"
ad234fc7 2871 tm_file="${tm_file} openbsd.h openbsd-stdint.h openbsd-libpthread.h sparc/openbsd64.h"
5369e2d4 2872 extra_options="${extra_options} openbsd.opt"
ae5f5715 2873 extra_options="${extra_options}"
ad234fc7
EB
2874 gas=yes gnu_ld=yes
2875 with_cpu=ultrasparc
8d12174d 2876 tmake_file="${tmake_file} sparc/t-sparc"
ad234fc7 2877 ;;
85d9c13c 2878spu-*-elf*)
207bf79d 2879 tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h newlib-stdint.h"
85d9c13c 2880 tmake_file="spu/t-spu-elf"
08b2bad2 2881 native_system_header_dir=/include
299456f3 2882 extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h spu_cache.h"
85d9c13c
TS
2883 extra_modes=spu/spu-modes.def
2884 c_target_objs="${c_target_objs} spu-c.o"
2885 cxx_target_objs="${cxx_target_objs} spu-c.o"
2886 ;;
bcead286
BS
2887tic6x-*-elf)
2888 tm_file="elfos.h ${tm_file} c6x/elf-common.h c6x/elf.h"
2889 tm_file="${tm_file} dbxelf.h tm-dwarf2.h newlib-stdint.h"
bcead286 2890 tmake_file="c6x/t-c6x c6x/t-c6x-elf"
bcead286
BS
2891 use_collect2=no
2892 ;;
2893tic6x-*-uclinux)
2894 tm_file="elfos.h ${tm_file} gnu-user.h linux.h c6x/elf-common.h c6x/uclinux-elf.h"
2895 tm_file="${tm_file} dbxelf.h tm-dwarf2.h glibc-stdint.h"
2896 tm_file="${tm_file} ./sysroot-suffix.h"
b040f2be 2897 tmake_file="t-sysroot-suffix t-slibgcc"
bcead286 2898 tmake_file="${tmake_file} c6x/t-c6x c6x/t-c6x-elf c6x/t-c6x-uclinux"
bcead286
BS
2899 use_collect2=no
2900 ;;
341c653c 2901tilegx*-*-linux*)
dd552284
WL
2902 tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilegx/linux.h ${tm_file}"
2903 tmake_file="${tmake_file} tilegx/t-tilegx"
92be22dc 2904 extra_objs="${extra_objs} mul-tables.o"
1efcb8c6
JM
2905 c_target_objs="${c_target_objs} tilegx-c.o"
2906 cxx_target_objs="${cxx_target_objs} tilegx-c.o"
fd199491 2907 extra_headers="feedback.h"
341c653c
WL
2908 case $target in
2909 tilegxbe-*)
2910 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
2911 ;;
2912 esac
dd552284 2913 ;;
341c653c 2914tilepro*-*-linux*)
dd552284
WL
2915 tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilepro/linux.h ${tm_file}"
2916 tmake_file="${tmake_file} tilepro/t-tilepro"
92be22dc 2917 extra_objs="${extra_objs} mul-tables.o"
1efcb8c6
JM
2918 c_target_objs="${c_target_objs} tilepro-c.o"
2919 cxx_target_objs="${cxx_target_objs} tilepro-c.o"
fd199491 2920 extra_headers="feedback.h"
dd552284 2921 ;;
cc5476cb
RC
2922v850-*-rtems*)
2923 target_cpu_default="TARGET_CPU_generic"
2924 tm_file="dbxelf.h elfos.h v850/v850.h"
2925 tm_file="${tm_file} rtems.h v850/rtems.h newlib-stdint.h"
2926 tmake_file="${tmake_file} v850/t-v850"
aefe4056 2927 tmake_file="${tmake_file} v850/t-rtems"
cc5476cb
RC
2928 use_collect2=no
2929 c_target_objs="v850-c.o"
2930 cxx_target_objs="v850-c.o"
2931 ;;
1dcad079
NC
2932v850*-*-*)
2933 case ${target} in
dbdbd982
NC
2934 v850e3v5-*-*)
2935 target_cpu_default="TARGET_CPU_v850e3v5"
2936 ;;
1dcad079
NC
2937 v850e2v3-*-*)
2938 target_cpu_default="TARGET_CPU_v850e2v3"
2939 ;;
2940 v850e2-*-*)
2941 target_cpu_default="TARGET_CPU_v850e2"
2942 ;;
2943 v850e1-*-* | v850es-*-*)
2944 target_cpu_default="TARGET_CPU_v850e1"
2945 ;;
2946 v850e-*-*)
2947 target_cpu_default="TARGET_CPU_v850e"
2948 ;;
2949 v850-*-*)
2950 target_cpu_default="TARGET_CPU_generic"
2951 ;;
2952 esac
fcbf5a00 2953 tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h"
b4378319
NC
2954 if test x$stabs = xyes
2955 then
2956 tm_file="${tm_file} dbx.h"
2957 fi
2958 use_collect2=no
2959 c_target_objs="v850-c.o"
2960 cxx_target_objs="v850-c.o"
207bf79d 2961 use_gcc_stdint=wrap
b4378319 2962 ;;
c4e75102 2963vax-*-linux*)
8e38461c 2964 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h vax/elf.h vax/linux.h"
4ad70280 2965 extra_options="${extra_options} vax/elf.opt"
c4e75102 2966 ;;
69474c3c 2967vax-*-netbsdelf*)
ec20cffb 2968 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
4ad70280 2969 extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
69474c3c 2970 ;;
61ed06c3 2971vax-*-openbsd*)
a42014a3 2972 tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-libpthread.h vax/openbsd.h"
5369e2d4 2973 extra_options="${extra_options} openbsd.opt"
61ed06c3
HPN
2974 use_collect2=yes
2975 ;;
0969ec7d
EB
2976visium-*-elf*)
2977 tm_file="dbxelf.h elfos.h ${tm_file} visium/elf.h newlib-stdint.h"
2978 tmake_file="visium/t-visium visium/t-crtstuff"
2979 ;;
14d269bb
GK
2980xstormy16-*-elf)
2981 # For historical reasons, the target files omit the 'x'.
5519175f 2982 tm_file="dbxelf.h elfos.h newlib-stdint.h stormy16/stormy16.h"
14d269bb
GK
2983 tm_p_file=stormy16/stormy16-protos.h
2984 md_file=stormy16/stormy16.md
2985 out_file=stormy16/stormy16.c
d45d2353 2986 extra_options=stormy16/stormy16.opt
14d269bb 2987 tmake_file="stormy16/t-stormy16"
14d269bb 2988 ;;
6d656178 2989xtensa*-*-elf*)
416ea725 2990 tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h xtensa/elf.h"
4933ae74 2991 extra_options="${extra_options} xtensa/elf.opt"
03984308 2992 ;;
6d656178 2993xtensa*-*-linux*)
8e38461c 2994 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/linux.h"
5f73c6cc 2995 tmake_file="${tmake_file} xtensa/t-xtensa"
03984308 2996 ;;
4a0a9457
MF
2997xtensa*-*-uclinux*)
2998 tm_file="${tm_file} dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h xtensa/uclinux.h"
2999 tmake_file="${tmake_file} xtensa/t-xtensa"
3000 extra_options="${extra_options} xtensa/uclinux.opt"
3001 ;;
2beef00e 3002am33_2.0-*-linux*)
8e38461c 3003 tm_file="mn10300/mn10300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h mn10300/linux.h"
2beef00e 3004 gas=yes gnu_ld=yes
2beef00e
AO
3005 use_collect2=no
3006 ;;
7f05b779 3007m32c-*-rtems*)
24b00560 3008 tm_file="dbxelf.h elfos.h ${tm_file} m32c/rtems.h rtems.h newlib-stdint.h"
7f05b779
JS
3009 c_target_objs="m32c-pragma.o"
3010 cxx_target_objs="m32c-pragma.o"
3011 ;;
38b2d076 3012m32c-*-elf*)
24b00560 3013 tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
38b2d076
DD
3014 c_target_objs="m32c-pragma.o"
3015 cxx_target_objs="m32c-pragma.o"
38b2d076 3016 ;;
61ed06c3 3017*)
b01bc573 3018 echo "*** Configuration ${target} not supported" 1>&2
61ed06c3
HPN
3019 exit 1
3020 ;;
3021esac
3022
f6bc51cb 3023case ${target} in
f6bc51cb 3024i[34567]86-*-linux* | x86_64-*-linux*)
ab442df7 3025 tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
f6bc51cb
L
3026 ;;
3027i[34567]86-*-* | x86_64-*-*)
ab442df7 3028 tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
f6bc51cb 3029 ;;
c5f0fe67
JM
3030powerpc*-*-* | rs6000-*-*)
3031 tm_file="${tm_file} rs6000/option-defaults.h"
f6bc51cb
L
3032esac
3033
87b6c18c
IV
3034# Build mkoffload tool
3035case ${target} in
3036*-intelmic-* | *-intelmicemul-*)
3037 tmake_file="${tmake_file} i386/t-intelmic"
41dbbb37 3038 tm_file="${tm_file} i386/intelmic-offload.h"
87b6c18c
IV
3039 ;;
3040esac
3041
acce4e77
JM
3042if [ "$target_has_targetcm" = "no" ]; then
3043 c_target_objs="$c_target_objs default-c.o"
3044 cxx_target_objs="$cxx_target_objs default-c.o"
3045fi
3046
c49a6962
JM
3047if [ "$common_out_file" = "" ]; then
3048 if [ "$target_has_targetm_common" = "yes" ]; then
3049 common_out_file="$cpu_type/$cpu_type-common.c"
3050 else
3051 common_out_file="default-common.c"
3052 fi
3053fi
3054
73f09c99 3055# Support for --with-cpu and related options (and a few unrelated options,
a89ea0df 3056# too).
35341073
NN
3057case ${with_cpu} in
3058 yes | no)
3059 echo "--with-cpu must be passed a value" 1>&2
3060 exit 1
3061 ;;
3062esac
83079d89 3063
3fd77630
L
3064# Set arch and cpu from ${target} and ${target_noncanonical}. Set cpu
3065# to generic if there is no processor scheduler model for the target.
3066arch=
3067cpu=
4d16c0dc 3068arch_without_sse2=no
c6b9174f 3069arch_without_64bit=no
3fd77630 3070case ${target} in
1c379b78
TC
3071 i386-*-freebsd*)
3072 if test $fbsd_major -ge 6; then
3073 arch=i486
3074 else
3075 arch=i386
3076 fi
3077 cpu=generic
3078 arch_without_sse2=yes
3079 arch_without_64bit=yes
3080 ;;
8a45a00e
KW
3081 i386-*-netbsd*)
3082 arch=i486
3083 cpu=generic
3084 arch_without_sse2=yes
3085 arch_without_64bit=yes
3086 ;;
3fd77630
L
3087 i386-*-*)
3088 arch=i386
3089 cpu=i386
4d16c0dc 3090 arch_without_sse2=yes
c6b9174f 3091 arch_without_64bit=yes
3fd77630
L
3092 ;;
3093 i486-*-*)
3094 arch=i486
3095 cpu=i486
4d16c0dc 3096 arch_without_sse2=yes
c6b9174f 3097 arch_without_64bit=yes
3fd77630
L
3098 ;;
3099 i586-*-*)
4d16c0dc 3100 arch_without_sse2=yes
c6b9174f 3101 arch_without_64bit=yes
3fd77630
L
3102 case ${target_noncanonical} in
3103 k6_2-*)
3104 arch=k6-2
3105 cpu=k6-2
3106 ;;
3107 k6_3-*)
3108 arch=k6-3
3109 cpu=k6-3
3110 ;;
3111 k6-*)
3112 arch=k6
3113 cpu=k6
3114 ;;
3115 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
3116 arch=pentium-mmx
3117 cpu=pentium-mmx
3118 ;;
3119 *)
3120 arch=pentium
3121 cpu=pentium
3122 ;;
3123 esac
3124 ;;
3125 i686-*-* | i786-*-*)
3126 case ${target_noncanonical} in
9ce29eb0
VK
3127 znver1-*)
3128 arch=znver1
3129 cpu=znver1
3130 ;;
ed97ad47
GG
3131 bdver4-*)
3132 arch=bdver4
3133 cpu=bdver4
3134 ;;
eb2f2b44
GG
3135 bdver3-*)
3136 arch=bdver3
3137 cpu=bdver3
3138 ;;
4d652a18
HJ
3139 bdver2-*)
3140 arch=bdver2
3141 cpu=bdver2
3142 ;;
1133125e
HJ
3143 bdver1-*)
3144 arch=bdver1
3145 cpu=bdver1
3146 ;;
14b52538
CF
3147 btver1-*)
3148 arch=btver1
3149 cpu=btver1
3150 ;;
e32bfc16
VK
3151 btver2-*)
3152 arch=btver2
3153 cpu=btver2
3154 ;;
3fd77630
L
3155 amdfam10-*|barcelona-*)
3156 arch=amdfam10
3157 cpu=amdfam10
3158 ;;
3159 k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
3160 arch=k8-sse3
3161 cpu=k8-sse3
3162 ;;
3163 k8-*|opteron-*|athlon64-*|athlon_fx-*)
3164 arch=k8
3165 cpu=k8
3166 ;;
3167 athlon_xp-*|athlon_mp-*|athlon_4-*)
3168 arch=athlon-4
3169 cpu=athlon-4
4d16c0dc 3170 arch_without_sse2=yes
c6b9174f 3171 arch_without_64bit=yes
3fd77630
L
3172 ;;
3173 athlon_tbird-*|athlon-*)
3174 arch=athlon
3175 cpu=athlon
4d16c0dc 3176 arch_without_sse2=yes
3fd77630
L
3177 ;;
3178 geode-*)
3179 arch=geode
3180 cpu=geode
4d16c0dc 3181 arch_without_sse2=yes
3fd77630
L
3182 ;;
3183 pentium2-*)
3184 arch=pentium2
3185 cpu=pentium2
4d16c0dc 3186 arch_without_sse2=yes
3fd77630
L
3187 ;;
3188 pentium3-*|pentium3m-*)
3189 arch=pentium3
3190 cpu=pentium3
4d16c0dc 3191 arch_without_sse2=yes
3fd77630
L
3192 ;;
3193 pentium4-*|pentium4m-*)
3194 arch=pentium4
3195 cpu=pentium4
3196 ;;
3197 prescott-*)
3198 arch=prescott
3199 cpu=prescott
3200 ;;
3201 nocona-*)
3202 arch=nocona
3203 cpu=nocona
3204 ;;
3205 atom-*)
3206 arch=atom
3207 cpu=atom
3208 ;;
0b871ccf
YR
3209 slm-*)
3210 arch=slm
3211 cpu=slm
3212 ;;
3fd77630
L
3213 core2-*)
3214 arch=core2
3215 cpu=core2
3216 ;;
1dbb04c9
L
3217 corei7-*)
3218 arch=corei7
3219 cpu=corei7
3220 ;;
35758e5b
L
3221 corei7_avx-*)
3222 arch=corei7-avx
3223 cpu=corei7-avx
3224 ;;
3fd77630
L
3225 pentium_m-*)
3226 arch=pentium-m
3227 cpu=pentium-m
3228 ;;
3229 pentiumpro-*)
3230 arch=pentiumpro
3231 cpu=pentiumpro
4d16c0dc 3232 arch_without_sse2=yes
3fd77630
L
3233 ;;
3234 *)
3235 arch=pentiumpro
3236 cpu=generic
4d16c0dc 3237 arch_without_sse2=yes
c6b9174f 3238 arch_without_64bit=yes
3fd77630
L
3239 ;;
3240 esac
3241 ;;
3242 x86_64-*-*)
3243 case ${target_noncanonical} in
9ce29eb0
VK
3244 znver1-*)
3245 arch=znver1
3246 cpu=znver1
3247 ;;
ed97ad47
GG
3248 bdver4-*)
3249 arch=bdver4
3250 cpu=bdver4
3251 ;;
eb2f2b44
GG
3252 bdver3-*)
3253 arch=bdver3
3254 cpu=bdver3
3255 ;;
4d652a18
HJ
3256 bdver2-*)
3257 arch=bdver2
3258 cpu=bdver2
3259 ;;
1133125e
HJ
3260 bdver1-*)
3261 arch=bdver1
3262 cpu=bdver1
3263 ;;
14b52538
CF
3264 btver1-*)
3265 arch=btver1
3266 cpu=btver1
3267 ;;
e32bfc16
VK
3268 btver2-*)
3269 arch=btver2
3270 cpu=btver2
3271 ;;
3fd77630
L
3272 amdfam10-*|barcelona-*)
3273 arch=amdfam10
3274 cpu=amdfam10
3275 ;;
3276 k8_sse3-*|opteron_sse3-*|athlon64_sse3-*)
3277 arch=k8-sse3
3278 cpu=k8-sse3
3279 ;;
3280 k8-*|opteron-*|athlon_64-*)
3281 arch=k8
3282 cpu=k8
3283 ;;
3284 nocona-*)
3285 arch=nocona
3286 cpu=nocona
3287 ;;
3288 atom-*)
3289 arch=atom
3290 cpu=atom
3291 ;;
0b871ccf
YR
3292 slm-*)
3293 arch=slm
3294 cpu=slm
3295 ;;
3fd77630
L
3296 core2-*)
3297 arch=core2
3298 cpu=core2
3299 ;;
1dbb04c9
L
3300 corei7-*)
3301 arch=corei7
3302 cpu=corei7
3303 ;;
3fd77630
L
3304 *)
3305 arch=x86-64
3306 cpu=generic
3307 ;;
3308 esac
3309 ;;
3310esac
3311
35341073
NN
3312# If there is no $with_cpu option, try to infer one from ${target}.
3313# This block sets nothing except for with_cpu.
3314if test x$with_cpu = x ; then
3315 case ${target} in
a0f4ee6e 3316 i[34567]86-*-elfiamcu)
2d6b2e28 3317 with_cpu=lakemont
a0f4ee6e 3318 ;;
3fd77630
L
3319 i[34567]86-*-*|x86_64-*-*)
3320 with_cpu=$cpu
35341073
NN
3321 ;;
3322 alphaev6[78]*-*-*)
3323 with_cpu=ev67
3324 ;;
3325 alphaev6*-*-*)
3326 with_cpu=ev6
3327 ;;
3328 alphapca56*-*-*)
3329 with_cpu=pca56
3330 ;;
3331 alphaev56*-*-*)
3332 with_cpu=ev56
3333 ;;
3334 alphaev5*-*-*)
3335 with_cpu=ev5
3336 ;;
faf9ab98 3337 frv-*-*linux* | frv400-*-*linux*)
34208acf
AO
3338 with_cpu=fr400
3339 ;;
faf9ab98
AH
3340 frv550-*-*linux*)
3341 with_cpu=fr550
3342 ;;
59fbf3cb 3343 m68k*-*-*)
10e96df4
NS
3344 case "$with_arch" in
3345 "cf")
3346 with_cpu=${default_cf_cpu}
3347 ;;
3348 "" | "m68k")
3349 with_cpu=m${default_m68k_cpu}
3350 ;;
3351 esac
59fbf3cb 3352 ;;
a7c6c6d6
OH
3353 powerpc*-*-*spe*)
3354 if test x$enable_e500_double = xyes; then
3355 with_cpu=8548
3356 else
3357 with_cpu=8540
3358 fi
3359 ;;
35341073 3360 sparc*-*-*)
1f65ae7a
EB
3361 case ${target} in
3362 *-leon-*)
3363 with_cpu=leon
3364 ;;
3365 *-leon[3-9]*)
3366 with_cpu=leon3
3367 ;;
d81230b5
DH
3368 *-leon[3-9]v7*)
3369 with_cpu=leon3v7
3370 ;;
1f65ae7a
EB
3371 *)
3372 with_cpu="`echo ${target} | sed 's/-.*$//'`"
3373 ;;
3374 esac
35341073 3375 ;;
175650bc
OH
3376 visium-*-*)
3377 with_cpu=gr5
3378 ;;
35341073 3379 esac
8981c15b
JM
3380
3381 # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
3382 case ${target} in
3383 i[34567]86-*-*|x86_64-*-*)
3fd77630
L
3384 if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
3385 if test x$with_cpu_32 = x; then
3386 with_cpu_32=$with_cpu
3387 fi
3388 if test x$with_cpu_64 = x; then
3389 with_cpu_64=$with_cpu
3390 fi
3391 with_cpu=
3392 fi
3393 ;;
3394 esac
3395fi
3396
3397# Support for --with-arch and related options (and a few unrelated options,
3398# too).
3399case ${with_arch} in
3400 yes | no)
3401 echo "--with-arch must be passed a value" 1>&2
3402 exit 1
3403 ;;
3404esac
3405
3406# If there is no $with_arch option, try to infer one from ${target}.
3407# This block sets nothing except for with_arch.
3408if test x$with_arch = x ; then
3409 case ${target} in
91ad7e13
L
3410 i[34567]86-*-darwin*|x86_64-*-darwin*)
3411 # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3412 # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3413 ;;
a0f4ee6e 3414 i[34567]86-*-elfiamcu)
2d6b2e28 3415 with_arch=lakemont
a0f4ee6e 3416 ;;
a3af5e26 3417 i[34567]86-*-*)
4d16c0dc
L
3418 # --with-fpmath sets the default ISA to SSE2, which is the same
3419 # ISA supported by Pentium 4.
3420 if test x$with_fpmath = x || test $arch_without_sse2 = no; then
3421 with_arch=$arch
3422 else
3423 with_arch=pentium4
a3af5e26
L
3424 fi
3425 ;;
3426 x86_64-*-*)
3fd77630
L
3427 with_arch=$arch
3428 ;;
74240413
RS
3429 mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3430 with_arch=r5900
3431 ;;
3432 mips*-*-vxworks)
3433 with_arch=mips2
3434 ;;
3fd77630
L
3435 esac
3436
3437 # Avoid overriding --with-arch-32 and --with-arch-64 values.
3438 case ${target} in
91ad7e13
L
3439 i[34567]86-*-darwin*|x86_64-*-darwin*)
3440 # Default arch is set via TARGET_SUBTARGET32_ISA_DEFAULT
3441 # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h.
3442 ;;
3fd77630
L
3443 i[34567]86-*-*|x86_64-*-*)
3444 if test x$with_arch_32 != x || test x$with_arch_64 != x; then
3445 if test x$with_arch_32 = x; then
55c4eeaa 3446 with_arch_32=$with_arch
3fd77630
L
3447 fi
3448 if test x$with_arch_64 = x; then
c6b9174f
L
3449 if test $arch_without_64bit = yes; then
3450 # Set the default 64bit arch to x86-64 if the default arch
3451 # doesn't support 64bit.
3452 with_arch_64=x86-64
3453 else
55c4eeaa 3454 with_arch_64=$with_arch
c6b9174f 3455 fi
3fd77630
L
3456 fi
3457 with_arch=
c6b9174f
L
3458 elif test $arch_without_64bit$need_64bit_isa = yesyes; then
3459 # Set the default 64bit arch to x86-64 if the default arch
3460 # doesn't support 64bit and we need 64bit ISA.
55c4eeaa 3461 with_arch_32=$with_arch
c6b9174f
L
3462 with_arch_64=x86-64
3463 with_arch=
8981c15b
JM
3464 fi
3465 ;;
3466 esac
35341073 3467fi
83079d89 3468
74240413
RS
3469# Infer a default setting for --with-float.
3470if test x$with_float = x; then
3471 case ${target} in
3472 mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3473 # The R5900 doesn't support 64-bit float. 32-bit float doesn't
3474 # comply with IEEE 754.
3475 with_float=soft
3476 ;;
3477 esac
3478fi
3479
04dfc6df
JU
3480# Infer a default setting for --with-fpu.
3481if test x$with_fpu = x; then
3482 case ${target} in
3483 mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3484 # The R5900 FPU only supports single precision.
3485 with_fpu=single
3486 ;;
3487 esac
3488fi
3489
a3af5e26
L
3490# Support --with-fpmath.
3491if test x$with_fpmath != x; then
3492 case ${target} in
3493 i[34567]86-*-* | x86_64-*-*)
3494 case ${with_fpmath} in
b71e5eba
UB
3495 avx)
3496 tm_file="${tm_file} i386/avxmath.h"
3497 ;;
a3af5e26
L
3498 sse)
3499 tm_file="${tm_file} i386/ssemath.h"
3500 ;;
3501 *)
3502 echo "Invalid --with-fpmath=$with_fpmath" 1>&2
3503 exit 1
3504 ;;
3505 esac
3506 ;;
3507 *)
3508 echo "--with-fpmath isn't supported for $target." 1>&2
3509 exit 1
3510 ;;
3511 esac
3512fi
3513
fe3e7450
AM
3514# Similarly for --with-schedule.
3515if test x$with_schedule = x; then
3516 case ${target} in
cd985f66 3517 hppa1*)
fe3e7450
AM
3518 # Override default PA8000 scheduling model.
3519 with_schedule=7100LC
3520 ;;
3521 esac
3522fi
83079d89 3523
74240413
RS
3524# Infer a default setting for --with-llsc.
3525if test x$with_llsc = x; then
3526 case ${target} in
3527 mips64r5900-*-* | mips64r5900el-*-* | mipsr5900-*-* | mipsr5900el-*-*)
3528 # The R5900 doesn't support LL(D) and SC(D).
3529 with_llsc=no
3530 ;;
3531 mips*-*-linux*)
3532 # The kernel emulates LL and SC where necessary.
3533 with_llsc=yes
3534 ;;
3535 esac
3536fi
3537
fe3e7450
AM
3538# Validate and mark as valid any --with options supported
3539# by this target. In order to use a particular --with option
3540# you must list it in supported_defaults; validating the value
3541# is optional. This case statement should set nothing besides
3542# supported_defaults.
7816bea0 3543
fe3e7450
AM
3544supported_defaults=
3545case "${target}" in
24034425 3546 aarch64*-*-*)
17a819cb 3547 supported_defaults="abi cpu arch"
24034425
IB
3548 for which in cpu arch; do
3549
3550 eval "val=\$with_$which"
3551 base_val=`echo $val | sed -e 's/\+.*//'`
1140d42f 3552 ext_val=`echo $val | sed -e 's/[a-z0-9.-]\+//'`
24034425
IB
3553
3554 if [ $which = arch ]; then
3555 def=aarch64-arches.def
3556 pattern=AARCH64_ARCH
3557 else
3558 def=aarch64-cores.def
3559 pattern=AARCH64_CORE
3560 fi
3561
3562 ext_mask=AARCH64_CPU_DEFAULT_FLAGS
3563
3564 # Find the base CPU or ARCH id in aarch64-cores.def or
3565 # aarch64-arches.def
3566 if [ x"$base_val" = x ] \
3567 || grep "^$pattern(\"$base_val\"," \
3568 ${srcdir}/config/aarch64/$def \
3569 > /dev/null; then
3570
3571 if [ $which = arch ]; then
3572 base_id=`grep "^$pattern(\"$base_val\"," \
3573 ${srcdir}/config/aarch64/$def | \
3574 sed -e 's/^[^,]*,[ ]*//' | \
3575 sed -e 's/,.*$//'`
a3cd0246
KT
3576 # Extract the architecture flags from aarch64-arches.def
3577 ext_mask=`grep "^$pattern(\"$base_val\"," \
3578 ${srcdir}/config/aarch64/$def | \
3579 sed -e 's/)$//' | \
3580 sed -e 's/^.*,//'`
24034425
IB
3581 else
3582 base_id=`grep "^$pattern(\"$base_val\"," \
3583 ${srcdir}/config/aarch64/$def | \
3584 sed -e 's/^[^,]*,[ ]*//' | \
3585 sed -e 's/,.*$//'`
3586 fi
3587
3588 while [ x"$ext_val" != x ]
3589 do
3590 ext_val=`echo $ext_val | sed -e 's/\+//'`
3591 ext=`echo $ext_val | sed -e 's/\+.*//'`
3592 base_ext=`echo $ext | sed -e 's/^no//'`
3593
3594 if [ x"$base_ext" = x ] \
3595 || grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
3596 ${srcdir}/config/aarch64/aarch64-option-extensions.def \
3597 > /dev/null; then
3598
04a99ebe 3599 ext_canon=`grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
24034425
IB
3600 ${srcdir}/config/aarch64/aarch64-option-extensions.def | \
3601 sed -e 's/^[^,]*,[ ]*//' | \
3602 sed -e 's/,.*$//'`
04a99ebe 3603 ext_on=`grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
24034425
IB
3604 ${srcdir}/config/aarch64/aarch64-option-extensions.def | \
3605 sed -e 's/^[^,]*,[ ]*[^,]*,[ ]*//' | \
3606 sed -e 's/,.*$//' | \
3607 sed -e 's/).*$//'`
04a99ebe
JG
3608 ext_off=`grep "^AARCH64_OPT_EXTENSION(\"$base_ext\"," \
3609 ${srcdir}/config/aarch64/aarch64-option-extensions.def | \
3610 sed -e 's/^[^,]*,[ ]*[^,]*,[ ]*[^,]*,[ ]*//' | \
3611 sed -e 's/,.*$//' | \
3612 sed -e 's/).*$//'`
3613
24034425
IB
3614
3615 if [ $ext = $base_ext ]; then
3616 # Adding extension
04a99ebe 3617 ext_mask="("$ext_mask") | ("$ext_on" | "$ext_canon")"
24034425
IB
3618 else
3619 # Removing extension
04a99ebe 3620 ext_mask="("$ext_mask") & ~("$ext_off" | "$ext_canon")"
24034425
IB
3621 fi
3622
3623 true
3624 else
3625 echo "Unknown extension used in --with-$which=$val" 1>&2
3626 exit 1
3627 fi
3628 ext_val=`echo $ext_val | sed -e 's/[a-z0-9]\+//'`
3629 done
3630
3631 ext_mask="(("$ext_mask") << 6)"
3632 if [ x"$base_id" != x ]; then
3633 target_cpu_cname="TARGET_CPU_$base_id | $ext_mask"
3634 fi
3635 true
3636 else
3637 echo "Unknown $which used in --with-$which=$val" 1>&2
3638 exit 1
3639 fi
3640 done
3641 ;;
3642
83079d89 3643 alpha*-*-*)
7816bea0
DJ
3644 supported_defaults="cpu tune"
3645 for which in cpu tune; do
3646 eval "val=\$with_$which"
b597bfd8
NN
3647 case "$val" in
3648 "" \
3649 | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
3650 | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
3651 | 21264a)
7816bea0
DJ
3652 ;;
3653 *)
3654 echo "Unknown CPU used in --with-$which=$val" 1>&2
3655 exit 1
3656 ;;
3657 esac
3658 done
3659 ;;
3660
f9ccf899 3661 arc*-*-*)
53426f6c 3662 supported_defaults="cpu"
f9ccf899
CZ
3663
3664 if [ x"$with_cpu" = x ] \
3665 || grep "^ARC_CPU ($with_cpu," \
3666 ${srcdir}/config/arc/arc-cpus.def \
3667 > /dev/null; then
3668 # Ok
3669 true
3670 else
3671 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3672 exit 1
3673 fi
53426f6c
JR
3674 ;;
3675
7816bea0 3676 arm*-*-*)
7cf13d1f 3677 supported_defaults="arch cpu float tune fpu abi mode tls"
a92ffb3e
RE
3678 for which in cpu tune arch; do
3679 # See if it matches a supported value
7816bea0 3680 eval "val=\$with_$which"
a92ffb3e
RE
3681 if [ x"$val" != x ]; then
3682 cpu=`awk -f ${srcdir}/config/arm/parsecpu.awk \
3683 -v cmd="chk$which $val" \
3684 ${srcdir}/config/arm/arm-cpus.in`
3685 if [ "$cpu" = "error" ]; then
3686 echo "Unknown target in --with-$which=$val" 1>&2
3687 exit 1
3688 else
3689 new_val=$cpu
3690 eval "target_${which}_cname=$new_val"
3691 echo "For $val real value is $new_val"
d3d3f1af 3692 fi
2682e19f 3693 fi
7816bea0
DJ
3694 done
3695
b597bfd8
NN
3696 case "$with_float" in
3697 "" \
9b66ebb1 3698 | soft | hard | softfp)
83079d89 3699 # OK
73f09c99 3700 ;;
83079d89 3701 *)
7816bea0 3702 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
83079d89 3703 exit 1
73f09c99
DJ
3704 ;;
3705 esac
7816bea0 3706
a92ffb3e
RE
3707 # see if --with-fpu matches any of the supported FPUs
3708 if [ x"$with_fpu" != x ] ; then
3709 fpu=`awk -f ${srcdir}/config/arm/parsecpu.awk \
3710 -v cmd="chkfpu $with_fpu" \
3711 ${srcdir}/config/arm/arm-cpus.in`
3712 if [ "$fpu" = "error"]
3713 then
3714 echo "Unknown target in --with-$which=$val" 1>&2
3715 exit 1
3716 fi
14562eb9 3717 fi
5848830f
PB
3718
3719 case "$with_abi" in
3720 "" \
ebca2d91 3721 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
5848830f
PB
3722 #OK
3723 ;;
3724 *)
3725 echo "Unknown ABI used in --with-abi=$with_abi"
9b66ebb1
PB
3726 exit 1
3727 ;;
3728 esac
3729
3cf94279
PB
3730 case "$with_mode" in
3731 "" \
3732 | arm | thumb )
3733 #OK
3734 ;;
3735 *)
3736 echo "Unknown mode used in --with-mode=$with_mode"
3737 exit 1
3738 ;;
3739 esac
3740
7cf13d1f
NS
3741 case "$with_tls" in
3742 "" \
3743 | gnu | gnu2)
3744 # OK
3745 ;;
3746 *)
3747 echo "Unknown TLS method used in --with-tls=$with_tls" 1>&2
3748 exit 1
3749 ;;
3750 esac
3751
7816bea0 3752 if test "x$with_arch" != x && test "x$with_cpu" != x; then
0cdb761c
JG
3753 echo "Switch \"--with-arch\" may not be used with switch \"--with-cpu\"" 1>&2
3754 exit 1
3755 fi
3756
3757 if test "x$with_cpu" != x && test "x$with_tune" != x; then
3758 echo "Switch \"--with-tune\" may not be used with switch \"--with-cpu\"" 1>&2
3759 exit 1
7816bea0 3760 fi
c9acb877
MGD
3761
3762 # Add extra multilibs
3763 if test "x$with_multilib_list" != x; then
3764 arm_multilibs=`echo $with_multilib_list | sed -e 's/,/ /g'`
ec6be462
TP
3765 case ${arm_multilibs} in
3766 aprofile)
c9acb877
MGD
3767 # Note that arm/t-aprofile is a
3768 # stand-alone make file fragment to be
3769 # used only with itself. We do not
3770 # specifically use the
3771 # TM_MULTILIB_OPTION framework because
3772 # this shorthand is more
ec6be462
TP
3773 # pragmatic.
3774 tmake_profile_file="arm/t-aprofile"
3775 ;;
3e0201f0
TP
3776 rmprofile)
3777 # Note that arm/t-rmprofile is a
3778 # stand-alone make file fragment to be
3779 # used only with itself. We do not
3780 # specifically use the
3781 # TM_MULTILIB_OPTION framework because
3782 # this shorthand is more
3783 # pragmatic.
3784 tmake_profile_file="arm/t-rmprofile"
3785 ;;
ec6be462
TP
3786 default)
3787 ;;
3788 *)
3789 echo "Error: --with-multilib-list=${with_multilib_list} not supported." 1>&2
3790 exit 1
3791 ;;
3792 esac
3793
3794 if test "x${tmake_profile_file}" != x ; then
3e0201f0
TP
3795 # arm/t-aprofile and arm/t-rmprofile are only
3796 # designed to work without any with-cpu,
3797 # with-arch, with-mode, with-fpu or with-float
3798 # options.
ec6be462
TP
3799 if test "x$with_arch" != x \
3800 || test "x$with_cpu" != x \
3801 || test "x$with_float" != x \
3802 || test "x$with_fpu" != x \
3803 || test "x$with_mode" != x ; then
3804 echo "Error: You cannot use any of --with-arch/cpu/fpu/float/mode with --with-multilib-list=${with_multilib_list}" 1>&2
3805 exit 1
3806 fi
3807
3808 tmake_file="${tmake_file} ${tmake_profile_file}"
3809 fi
c9acb877 3810 fi
73f09c99 3811 ;;
73f09c99 3812
34208acf
AO
3813 fr*-*-*linux*)
3814 supported_defaults=cpu
3815 case "$with_cpu" in
3816 fr400) ;;
faf9ab98 3817 fr550) ;;
34208acf
AO
3818 *)
3819 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
3820 exit 1
3821 ;;
3822 esac
3823 ;;
3824
cd985f66 3825 fido-*-* | m68k*-*-*)
10e96df4
NS
3826 supported_defaults="arch cpu"
3827 case "$with_arch" in
3828 "" | "m68k"| "cf")
3829 m68k_arch_family="$with_arch"
3830 ;;
3831 *)
3832 echo "Invalid --with-arch=$with_arch" 1>&2
3833 exit 1
3834 ;;
3835 esac
59fbf3cb
NS
3836
3837 # We always have a $with_cpu setting here.
3704aae9 3838 case "$with_cpu" in
900ec02d
JB
3839 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
3840 m68k_cpu_ident=$with_cpu
3841 ;;
3842 "m68020-40")
3843 m68k_cpu_ident=m68020
3844 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
3845 ;;
3846 "m68020-60")
3847 m68k_cpu_ident=m68020
3848 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
3704aae9
RZ
3849 ;;
3850 *)
900ec02d
JB
3851 # We need the C identifier rather than the string.
3852 m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
3853 'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
3854 $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
3855 ${srcdir}/config/m68k/m68k-devices.def`
3856 if [ x"$m68k_cpu_ident" = x ] ; then
3857 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
3858 exit 1
3859 fi
3860 with_cpu="mcpu=$with_cpu"
3704aae9
RZ
3861 ;;
3862 esac
3863 ;;
3864
cd985f66 3865 hppa*-*-*)
7816bea0
DJ
3866 supported_defaults="arch schedule"
3867
b597bfd8
NN
3868 case "$with_arch" in
3869 "" | 1.0 | 1.1 | 2.0)
7816bea0
DJ
3870 # OK
3871 ;;
3872 *)
3873 echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
3874 exit 1
3875 ;;
3876 esac
3877
b597bfd8
NN
3878 case "$with_schedule" in
3879 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
83079d89
DJ
3880 # OK
3881 ;;
3882 *)
3883 echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
3884 exit 1
3885 ;;
3886 esac
73f09c99 3887 ;;
73f09c99 3888
83079d89 3889 i[34567]86-*-* | x86_64-*-*)
0465e49e 3890 supported_defaults="abi arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
8981c15b 3891 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
7816bea0 3892 eval "val=\$with_$which"
646bdeab
L
3893 case " $x86_archs " in
3894 *" ${val} "*)
d326eaf0
JH
3895 case "${target}" in
3896 x86_64-*-*)
8981c15b
JM
3897 case "x$which" in
3898 *_32)
3899 ;;
3900 *)
3901 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
3902 exit 1
3903 ;;
3904 esac
d326eaf0
JH
3905 ;;
3906 esac
3907 # OK
3908 ;;
7816bea0 3909 *)
646bdeab
L
3910 if test x${val} != x; then
3911 case " $x86_64_archs " in
3912 *" ${val} "*)
3913 # OK
3914 ;;
3915 *)
3916 # Allow $x86_cpus --with-cpu=/--with-tune=
3917 case "x$which" in
3918 xcpu*|xtune*)
3919 case " $x86_cpus " in
3920 *" ${val} "*)
3921 # OK
3922 ;;
3923 *)
3924 echo "Unknown CPU given in --with-$which=$val." 1>&2
3925 exit 1
3926 ;;
3927 esac
3928 ;;
3929 *)
3930 echo "Unknown CPU given in --with-$which=$val." 1>&2
3931 exit 1
3932 ;;
3933 esac
3934 ;;
3935 esac
3936 fi
7816bea0
DJ
3937 ;;
3938 esac
3939 done
3940 ;;
3941
3942 mips*-*-*)
ab6b44cb 3943 supported_defaults="abi arch arch_32 arch_64 float fpu nan fp_32 odd_spreg_32 tune tune_32 tune_64 divide llsc mips-plt synci lxc1-sxc1"
7816bea0 3944
16aa42c0
NN
3945 case ${with_float} in
3946 "" | soft | hard)
83079d89
DJ
3947 # OK
3948 ;;
3949 *)
7816bea0 3950 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
83079d89
DJ
3951 exit 1
3952 ;;
3953 esac
73f09c99 3954
04dfc6df
JU
3955 case ${with_fpu} in
3956 "" | single | double)
3957 # OK
3958 ;;
3959 *)
3960 echo "Unknown fpu type used in --with-fpu=$with_fpu" 1>&2
3961 exit 1
3962 ;;
3963 esac
3964
ff3f3951
MR
3965 case ${with_nan} in
3966 "" | 2008 | legacy)
3967 # OK
3968 ;;
3969 *)
3970 echo "Unknown NaN encoding used in --with-nan=$with_nan" 1>&2
3971 exit 1
3972 ;;
3973 esac
3974
050af144
MF
3975 case ${with_fp_32} in
3976 "" | 32 | xx | 64)
3977 # OK
3978 ;;
3979 *)
3980 echo "Unknown FP mode used in --with-fp-32=$with_fp_32" 1>&2
3981 exit 1
3982 ;;
3983 esac
3984
3985 case ${with_odd_spreg_32} in
3986 yes)
3987 with_odd_spreg_32="odd-spreg"
3988 ;;
3989 no)
3990 with_odd_spreg_32="no-odd-spreg"
3991 ;;
3992 "")
3993 # OK
3994 ;;
3995 *)
3996 echo "Unknown odd-spreg-32 type used in --with-odd-spreg-32=$with_odd_spreg_32" 1>&2
3997 exit 1
3998 ;;
3999 esac
4000
16aa42c0
NN
4001 case ${with_abi} in
4002 "" | 32 | o64 | n32 | 64 | eabi)
83079d89
DJ
4003 # OK
4004 ;;
4005 *)
7816bea0 4006 echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
83079d89
DJ
4007 exit 1
4008 ;;
4009 esac
9f0df97a
DD
4010
4011 case ${with_divide} in
4012 "" | breaks | traps)
4013 # OK
4014 ;;
4015 *)
4016 echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
4017 exit 1
66471b47
DD
4018 ;;
4019 esac
4020
4021 case ${with_llsc} in
4022 yes)
4023 with_llsc=llsc
4024 ;;
4025 no)
4026 with_llsc="no-llsc"
4027 ;;
4028 "")
4029 # OK
4030 ;;
4031 *)
4032 echo "Unknown llsc type used in --with-llsc" 1>&2
4033 exit 1
4034 ;;
9f0df97a 4035 esac
e21d5757
DJ
4036
4037 case ${with_mips_plt} in
4038 yes)
4039 with_mips_plt=plt
4040 ;;
4041 no)
4042 with_mips_plt=no-plt
4043 ;;
4044 "")
4045 ;;
4046 *)
4047 echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
4048 exit 1
4049 ;;
4050 esac
b96c5923
DD
4051
4052 case ${with_synci} in
4053 yes)
4054 with_synci=synci
4055 ;;
965c1798 4056 no)
b96c5923
DD
4057 with_synci=no-synci
4058 ;;
965c1798
SE
4059 "")
4060 ;;
b96c5923
DD
4061 *)
4062 echo "Unknown synci type used in --with-synci" 1>&2
4063 exit 1
4064 ;;
4065 esac
ab6b44cb
MF
4066
4067 case ${with_lxc1_sxc1} in
4068 yes)
4069 with_lxc1_sxc1=lxc1-sxc1
4070 ;;
4071 no)
4072 with_lxc1_sxc1=no-lxc1-sxc1
4073 ;;
4074 "")
4075 ;;
4076 *)
4077 echo "Unknown lxc1-sxc1 type used in --with-lxc1-sxc1" 1>&2
4078 exit 1
4079 ;;
4080 esac
9304f876
CJW
4081 ;;
4082
4083 nds32*-*-*)
4084 supported_defaults="arch nds32_lib"
4085
4086 # process --with-arch
4087 case "${with_arch}" in
4088 "" | v2 | v3 | v3m)
4089 # OK
4090 ;;
4091 *)
4092 echo "Cannot accept --with-arch=$with_arch, available values are: v2 v3 v3m" 1>&2
4093 exit 1
4094 ;;
4095 esac
4096
4097 # process --with-nds32-lib
4098 case "${with_nds32_lib}" in
4099 "")
4100 # the default library is newlib
4101 with_nds32_lib=newlib
4102 ;;
4103 newlib)
4104 # OK
4105 ;;
4106 mculib)
4107 # OK
4108 ;;
4109 *)
4110 echo "Cannot accept --with-nds32-lib=$with_nds32_lib, available values are: newlib mculib" 1>&2
4111 exit 1
4112 ;;
4113 esac
73f09c99 4114 ;;
73f09c99 4115
77c50d73
SL
4116 nios2*-*-*)
4117 supported_defaults="arch"
4118 case "$with_arch" in
4119 "" | r1 | r2)
4120 # OK
4121 ;;
4122 *)
4123 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
4124 exit 1
4125 ;;
4126 esac
4127 ;;
4128
7816bea0 4129 powerpc*-*-* | rs6000-*-*)
5123acd2 4130 supported_defaults="abi cpu cpu_32 cpu_64 float tune tune_32 tune_64 advance_toolchain"
7816bea0 4131
c5f0fe67 4132 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
7816bea0 4133 eval "val=\$with_$which"
16aa42c0 4134 case ${val} in
1ab1739c 4135 default32 | default64)
c5f0fe67
JM
4136 case $which in
4137 cpu | tune)
4138 ;;
4139 *)
4140 echo "$val only valid for --with-cpu and --with-tune." 1>&2
4141 exit 1
4142 ;;
4143 esac
1ab1739c
JJ
4144 with_which="with_$which"
4145 eval $with_which=
4146 ;;
b0bfee6e
DE
4147 405cr)
4148 tm_defines="${tm_defines} CONFIG_PPC405CR"
4149 eval "with_$which=405"
4150 ;;
5bd93ff6 4151 "" | common | native \
1840c953 4152 | power | power[23456789] | power6x | powerpc | powerpc64 \
16aa42c0 4153 | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
4adf8008 4154 | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
47f67e51
PB
4155 | 476 | 476fp | 505 | 601 | 602 | 603 | 603e | ec603e \
4156 | 604 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
683ed19e
EW
4157 | a2 | e300c[23] | 854[08] | e500mc | e500mc64 | e5500 | e6500 \
4158 | titan | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
7816bea0
DJ
4159 # OK
4160 ;;
4161 *)
4162 echo "Unknown cpu used in --with-$which=$val." 1>&2
4163 exit 1
4164 ;;
4165 esac
4166 done
b54214fe
UW
4167
4168 case "$with_abi" in
4169 "" | elfv1 | elfv2 )
4170 #OK
4171 ;;
4172 *)
4173 echo "Unknown ABI used in --with-abi=$with_abi"
4174 exit 1
4175 ;;
4176 esac
5123acd2
MM
4177
4178 if test "x$with_advance_toolchain" != x; then
4179 if test -d "/opt/$with_advance_toolchain/." -a \
4180 -d "/opt/$with_advance_toolchain/bin/." -a \
4181 -d "/opt/$with_advance_toolchain/include/."; then
4182
4183 tm_file="$tm_file ./advance-toolchain.h"
4184 (at="/opt/$with_advance_toolchain"
4185 echo "/* Use Advance Toolchain $at */"
4186 echo
5123acd2
MM
4187 echo "#undef LINK_OS_EXTRA_SPEC32"
4188 echo "#define LINK_OS_EXTRA_SPEC32" \
4189 "\"%(link_os_new_dtags)" \
4190 "-rpath $prefix/lib -rpath $at/lib" \
4191 "-L $prefix/lib -L $at/lib\""
4192 echo
4193 echo "#undef LINK_OS_EXTRA_SPEC64"
4194 echo "#define LINK_OS_EXTRA_SPEC64" \
4195 "\"%(link_os_new_dtags)" \
4196 "-rpath $prefix/lib64 -rpath $at/lib64" \
4197 "-L $prefix/lib64 -L $at/lib64\""
4198 echo
4199 echo "#undef LINK_OS_NEW_DTAGS_SPEC"
4200 echo "#define LINK_OS_NEW_DTAGS_SPEC" \
4201 "\"--enable-new-dtags\""
4202 echo
4203 echo "#undef DYNAMIC_LINKER_PREFIX"
4204 echo "#define DYNAMIC_LINKER_PREFIX \"$at\""
4205 echo
4206 echo "#undef MD_EXEC_PREFIX"
4207 echo "#define MD_EXEC_PREFIX \"$at/bin/\""
4208 echo
4209 echo "#undef MD_STARTFILE_PREFIX"
4210 echo "#define MD_STARTFILE_PREFIX \"$at/lib/\"") \
4211 > advance-toolchain.h
4212 else
4213 echo "Unknown advance-toolchain $with_advance_toolchain"
4214 exit 1
4215 fi
4216 fi
7816bea0
DJ
4217 ;;
4218
f13e0d4e
UW
4219 s390*-*-*)
4220 supported_defaults="arch mode tune"
4221
4222 for which in arch tune; do
4223 eval "val=\$with_$which"
16aa42c0 4224 case ${val} in
0dbb19f0 4225 "" | native | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10 | z196 | zEC12 | z13 | arch3 | arch5 | arch6 | arch7 | arch8 | arch9 | arch10 | arch11)
f13e0d4e
UW
4226 # OK
4227 ;;
4228 *)
4229 echo "Unknown cpu used in --with-$which=$val." 1>&2
4230 exit 1
4231 ;;
4232 esac
4233 done
4234
16aa42c0
NN
4235 case ${with_mode} in
4236 "" | esa | zarch)
f13e0d4e
UW
4237 # OK
4238 ;;
4239 *)
4240 echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
4241 exit 1
4242 ;;
4243 esac
4244 ;;
4245
5ba02681 4246 sh[123456ble]*-*-* | sh-*-*)
da28a3b9 4247 supported_defaults="cpu"
25e651ca 4248 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
da28a3b9
JR
4249 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
4250 # OK
4251 ;;
157371cf
AO
4252 m2a | m2a-single | m2a-single-only | m2a-nofpu)
4253 ;;
312209c6
AO
4254 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
4255 ;;
da28a3b9
JR
4256 *)
4257 echo "Unknown CPU used in --with-cpu=$with_cpu, known values:" 1>&2
4258 echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
312209c6 4259 echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
157371cf 4260 echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
da28a3b9
JR
4261 exit 1
4262 ;;
4263 esac
4264 ;;
83079d89 4265 sparc*-*-*)
31177ef2 4266 supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64"
7816bea0 4267
31177ef2 4268 for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do
7816bea0 4269 eval "val=\$with_$which"
16aa42c0 4270 case ${val} in
07981468
KE
4271 "" | sparc | sparcv9 | sparc64 \
4272 | v7 | cypress \
d81230b5 4273 | v8 | supersparc | hypersparc | leon | leon3 | leon3v7 \
07981468
KE
4274 | sparclite | f930 | f934 | sparclite86x \
4275 | sparclet | tsc701 \
70847a48 4276 | v9 | ultrasparc | ultrasparc3 | niagara | niagara2 \
690f24b7 4277 | niagara3 | niagara4 | niagara7)
7816bea0
DJ
4278 # OK
4279 ;;
4280 *)
4281 echo "Unknown cpu used in --with-$which=$val" 1>&2
4282 exit 1
4283 ;;
4284 esac
4285 done
73f09c99 4286
16aa42c0
NN
4287 case ${with_float} in
4288 "" | soft | hard)
83079d89
DJ
4289 # OK
4290 ;;
4291 *)
7816bea0 4292 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
83079d89
DJ
4293 exit 1
4294 ;;
4295 esac
73f09c99 4296 ;;
73f09c99 4297
39aeae85
SL
4298 spu-*-*)
4299 supported_defaults="arch tune"
4300
4301 for which in arch tune; do
4302 eval "val=\$with_$which"
4303 case ${val} in
4304 "" | cell | celledp)
4305 # OK
4306 ;;
4307 *)
4308 echo "Unknown cpu used in --with-$which=$val." 1>&2
4309 exit 1
4310 ;;
4311 esac
4312 done
4313 ;;
4314
bcead286
BS
4315 tic6x-*-*)
4316 supported_defaults="arch"
4317
4318 case ${with_arch} in
4319 "" | c62x | c64x | c64x+ | c67x | c67x+ | c674x)
4320 # OK
4321 ;;
4322 *)
4323 echo "Unknown arch used in --with-arch=$with_arch." 1>&2
4324 exit 1
4325 ;;
4326 esac
4327 ;;
4328
83079d89 4329 v850*-*-*)
7816bea0 4330 supported_defaults=cpu
16aa42c0 4331 case ${with_cpu} in
dbdbd982 4332 "" | v850e | v850e1 | v850e2 | v850es | v850e2v3 | v850e3v5)
83079d89
DJ
4333 # OK
4334 ;;
4335 *)
4336 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
4337 exit 1
4338 ;;
4339 esac
73f09c99 4340 ;;
175650bc
OH
4341 visium-*-*)
4342 supported_defaults="cpu"
4343 case $with_cpu in
4344 "" | gr5 | gr6)
4345 ;;
4346 *) echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
4347 exit 1
4348 ;;
4349 esac
4350 ;;
fe3e7450 4351esac
73f09c99 4352
fe3e7450
AM
4353# Set some miscellaneous flags for particular targets.
4354target_cpu_default2=
4355case ${target} in
24034425 4356 aarch64*-*-*)
a3cd0246 4357 if test x"$target_cpu_cname" != x
24034425 4358 then
24034425
IB
4359 target_cpu_default2=$target_cpu_cname
4360 fi
4361 ;;
4362
83079d89 4363 arm*-*-*)
32078532
RE
4364 if test x$target_cpu_cname = x
4365 then
d3d3f1af 4366 target_cpu_default2=TARGET_CPU_arm6
32078532
RE
4367 else
4368 target_cpu_default2=TARGET_CPU_$target_cpu_cname
4369 fi
83079d89 4370 ;;
0e5a4ad8 4371
cd985f66 4372 hppa*-*-*)
83079d89 4373 if test x$gas = xyes
61ed06c3 4374 then
f4000c0b 4375 target_cpu_default2="MASK_GAS"
83079d89 4376 fi
73f09c99 4377 ;;
73f09c99 4378
cd985f66 4379 fido*-*-* | m68k*-*-*)
900ec02d 4380 target_cpu_default2=$m68k_cpu_ident
47c94d21 4381 tmake_file="m68k/t-opts $tmake_file"
10e96df4
NS
4382 if [ x"$m68k_arch_family" != x ]; then
4383 tmake_file="m68k/t-$m68k_arch_family $tmake_file"
4384 fi
900ec02d
JB
4385 ;;
4386
ff473280 4387 i[34567]86-*-darwin* | x86_64-*-darwin*)
ff473280 4388 ;;
e0cdc09f
MK
4389 i[34567]86-*-linux* | x86_64-*-linux*)
4390 tmake_file="$tmake_file i386/t-linux"
4391 ;;
4392 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu)
4393 tmake_file="$tmake_file i386/t-kfreebsd"
4394 ;;
4395 i[34567]86-*-gnu*)
4396 tmake_file="$tmake_file i386/t-gnu"
ff473280 4397 ;;
3df6ff35
AP
4398 i[34567]86-*-msdosdjgpp*)
4399 tmake_file="${tmake_file} i386/t-djgpp"
4400 ;;
fbdd5d87 4401 i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
f128db92 4402 ;;
740f2bf3
KT
4403 i[34567]86-*-cygwin* | x86_64-*-cygwin*)
4404 ;;
4405 i[34567]86-*-mingw* | x86_64-*-mingw*)
e997fb9c 4406 ;;
dbed5a9b
JM
4407 i[34567]86-*-dragonfly* | x86_64-*-dragonfly*)
4408 ;;
d78552bd 4409 i[34567]86-*-freebsd* | x86_64-*-freebsd*)
d78552bd 4410 ;;
c252db20 4411 ia64*-*-linux*)
c252db20 4412 ;;
ff473280 4413
83079d89 4414 mips*-*-*)
5811cb27
RS
4415 if test x$gnu_ld = xyes
4416 then
21c425ee 4417 target_cpu_default2="MASK_SPLIT_ADDRESSES"
5811cb27 4418 fi
b01bc573 4419 case ${target} in
83079d89
DJ
4420 mips*el-*-*)
4421 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
4422 ;;
4423 esac
8cfebf86
SE
4424 if test x$with_arch != x; then
4425 default_mips_arch=$with_arch
4426 fi
4427 if test x$with_abi != x; then
4428 default_mips_abi=$with_abi
4429 fi
4430 case ${default_mips_arch} in
4431 mips1) tm_defines="$tm_defines MIPS_ISA_DEFAULT=1" ;;
4432 mips2) tm_defines="$tm_defines MIPS_ISA_DEFAULT=2" ;;
4433 mips3) tm_defines="$tm_defines MIPS_ISA_DEFAULT=3" ;;
4434 mips4) tm_defines="$tm_defines MIPS_ISA_DEFAULT=4" ;;
4435 mips32) tm_defines="$tm_defines MIPS_ISA_DEFAULT=32" ;;
4436 mips32r2) tm_defines="$tm_defines MIPS_ISA_DEFAULT=33" ;;
82f84ecb 4437 mips32r6) tm_defines="$tm_defines MIPS_ISA_DEFAULT=37" ;;
8cfebf86
SE
4438 mips64) tm_defines="$tm_defines MIPS_ISA_DEFAULT=64" ;;
4439 mips64r2) tm_defines="$tm_defines MIPS_ISA_DEFAULT=65" ;;
82f84ecb 4440 mips64r6) tm_defines="$tm_defines MIPS_ISA_DEFAULT=69" ;;
8cfebf86
SE
4441 esac
4442 case ${default_mips_abi} in
4443 32) tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_32" ;;
4444 o64) tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_O64" ;;
4445 n32) tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_N32" ;;
4446 64) tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_64" ;;
4447 eabi) tm_defines="$tm_defines MIPS_ABI_DEFAULT=ABI_EABI" ;;
4448 esac
bd9c1f8f 4449 tmake_file="mips/t-mips $tmake_file"
74826b0f 4450 ;;
83079d89
DJ
4451
4452 powerpc*-*-* | rs6000-*-*)
7816bea0
DJ
4453 # FIXME: The PowerPC port uses the value set at compile time,
4454 # although it's only cosmetic.
83079d89 4455 if test "x$with_cpu" != x
61ed06c3 4456 then
83079d89 4457 target_cpu_default2="\\\"$with_cpu\\\""
61ed06c3 4458 fi
83079d89
DJ
4459 out_file=rs6000/rs6000.c
4460 c_target_objs="${c_target_objs} rs6000-c.o"
4461 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
4462 tmake_file="rs6000/t-rs6000 ${tmake_file}"
74826b0f 4463 ;;
73f09c99 4464
a6ab9fc0
R
4465 sh[123456ble]*-*-* | sh-*-*)
4466 c_target_objs="${c_target_objs} sh-c.o"
4467 cxx_target_objs="${cxx_target_objs} sh-c.o"
4468 ;;
4469
83079d89 4470 sparc*-*-*)
7816bea0
DJ
4471 # Some standard aliases.
4472 case x$with_cpu in
4473 xsparc)
4474 with_cpu=v7
4475 ;;
7816bea0
DJ
4476 xsparcv9 | xsparc64)
4477 with_cpu=v9
4478 ;;
4479 esac
4480
38ae58ca
EB
4481 if test x$with_tune = x ; then
4482 case ${target} in
4483 *-leon-*)
4484 with_tune=leon
4485 ;;
4486 *-leon[3-9]*)
4487 with_tune=leon3
4488 ;;
4489 esac
4490 fi
4491
a4d05547 4492 # The SPARC port checks this value at compile-time.
73f09c99
DJ
4493 target_cpu_default2="TARGET_CPU_$with_cpu"
4494 ;;
07981468 4495
83079d89
DJ
4496 v850*-*-*)
4497 case "x$with_cpu" in
4498 x)
4499 ;;
dbdbd982 4500 xv850e | xv850e1 | xv850e2 | xv850e2v3 | xv850e3v5)
83079d89
DJ
4501 target_cpu_default2="TARGET_CPU_$with_cpu"
4502 ;;
1dcad079
NC
4503 xv850es)
4504 target_cpu_default2="TARGET_CPU_v850e1"
4505 ;;
83079d89
DJ
4506 esac
4507 ;;
175650bc
OH
4508 visium-*-*)
4509 target_cpu_default2="TARGET_CPU_$with_cpu"
4510 ;;
fe3e7450 4511esac
61ed06c3 4512
fe3e7450 4513t=
ab6b44cb 4514all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu nan fp_32 odd_spreg_32 divide llsc mips-plt synci tls lxc1-sxc1"
fe3e7450
AM
4515for option in $all_defaults
4516do
e21d5757 4517 eval "val=\$with_"`echo $option | sed s/-/_/g`
fe3e7450
AM
4518 if test -n "$val"; then
4519 case " $supported_defaults " in
4520 *" $option "*)
4521 ;;
4522 *)
4523 echo "This target does not support --with-$option." 2>&1
6e0eea31 4524 echo "Valid --with options are: $supported_defaults" 2>&1
fe3e7450
AM
4525 exit 1
4526 ;;
4527 esac
7816bea0 4528
fe3e7450
AM
4529 if test "x$t" = x
4530 then
4531 t="{ \"$option\", \"$val\" }"
4532 else
4533 t="${t}, { \"$option\", \"$val\" }"
7816bea0 4534 fi
7816bea0 4535 fi
fe3e7450 4536done
7816bea0 4537
fe3e7450
AM
4538if test "x$t" = x
4539then
4540 configure_default_options="{ { NULL, NULL} }"
4541else
4542 configure_default_options="{ ${t} }"
4543fi
4544
4545if test "$target_cpu_default2" != ""
4546then
4547 if test "$target_cpu_default" != ""
61ed06c3 4548 then
fe3e7450
AM
4549 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
4550 else
4551 target_cpu_default=$target_cpu_default2
61ed06c3 4552 fi
fe3e7450 4553fi
87b6c18c
IV
4554
4555case ${target} in
4556i[34567]86-*-* | x86_64-*-*)
4557 if test x$enable_as_accelerator = xyes; then
4558 extra_programs="mkoffload\$(exeext)"
4559 fi
4560 ;;
4561esac
This page took 5.341467 seconds and 5 git commands to generate.