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