OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [config.gcc] - Blame information for rev 280

Go to most recent revision | Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.