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