config.gcc (mips*-sde-elf*): Handle mipsisa64r2*.
[gcc.git] / libgcc / config.host
1 # libgcc host-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008 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 2, 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 COPYING. If not, write to the Free
19 #Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 #02110-1301, USA.
21
22 # This is the libgcc host-specific configuration file
23 # where a configuration type is mapped to different system-specific
24 # definitions and files. This is invoked by the autoconf-generated
25 # configure script. Putting it in a separate shell file lets us skip
26 # running autoconf when modifying host-specific information.
27
28 # This file bears an obvious resemblance to gcc/config.gcc. The cases
29 # should be kept similar, to ease moving library-specific settings
30 # from config.gcc to this file. That is also why tmake_file is
31 # left as tmake_file, rather than hmake_file, even though this library
32 # switches on ${host}.
33
34 # This file switches on the shell variable ${host}, and also uses the
35 # following shell variables:
36 #
37 # with_* Various variables as set by configure.
38
39 # This file sets the following shell variables for use by the
40 # autoconf-generated configure script:
41 #
42 # asm_hidden_op The assembler pseudo-op to use for hide
43 # lists for object files implemented in
44 # assembly (with -fvisibility=hidden for C).
45 # The default is ".hidden".
46 # cpu_type The name of the cpu, if different from the first
47 # chunk of the canonical host name.
48 # extra_parts List of extra object files that should be compiled
49 # for this target machine. This may be overridden
50 # by setting EXTRA_PARTS in a tmake_file fragment.
51 # If either is set, EXTRA_PARTS and
52 # EXTRA_MULTILIB_PARTS inherited from the GCC
53 # subdirectory will be ignored.
54 # tmake_file A list of machine-description-specific
55 # makefile-fragments, if different from
56 # "$cpu_type/t-$cpu_type".
57
58 asm_hidden_op=.hidden
59 extra_parts=
60 tmake_file=
61
62 # Set default cpu_type so it can be updated in each machine entry.
63 cpu_type=`echo ${host} | sed 's/-.*$//'`
64 case ${host} in
65 m32c*-*-*)
66 cpu_type=m32c
67 ;;
68 alpha*-*-*)
69 cpu_type=alpha
70 ;;
71 am33_2.0-*-linux*)
72 cpu_type=mn10300
73 ;;
74 arm*-*-*)
75 cpu_type=arm
76 ;;
77 avr-*-*)
78 cpu_type=avr
79 ;;
80 bfin*-*)
81 cpu_type=bfin
82 ;;
83 fido-*-*)
84 cpu_type=m68k
85 ;;
86 frv*) cpu_type=frv
87 ;;
88 i[34567]86-*-*)
89 cpu_type=i386
90 ;;
91 x86_64-*-*)
92 cpu_type=i386
93 ;;
94 ia64-*-*)
95 ;;
96 hppa*-*-*)
97 cpu_type=pa
98 ;;
99 m32r*-*-*)
100 cpu_type=m32r
101 ;;
102 m68k-*-*)
103 ;;
104 mips*-*-*)
105 cpu_type=mips
106 ;;
107 powerpc*-*-*)
108 cpu_type=rs6000
109 ;;
110 rs6000*-*-*)
111 ;;
112 score*-*-*)
113 cpu_type=score
114 ;;
115 sparc64*-*-*)
116 cpu_type=sparc
117 ;;
118 sparc*-*-*)
119 cpu_type=sparc
120 ;;
121 spu*-*-*)
122 cpu_type=spu
123 ;;
124 s390*-*-*)
125 cpu_type=s390
126 ;;
127 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
128 sh[123456789lbe]*-*-*)
129 cpu_type=sh
130 ;;
131 esac
132
133 # Common parts for widely ported systems.
134 case ${host} in
135 *-*-darwin*)
136 asm_hidden_op=.private_extern
137 tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
138 ;;
139 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
140 # This is the place-holder for the generic a.out configuration
141 # of FreeBSD. No actual configuration resides here since
142 # there was only ever a bare-bones ix86 configuration for
143 # a.out and it exists solely in the machine-specific section.
144 # This place-holder must exist to avoid dropping into
145 # the generic ELF configuration of FreeBSD (i.e. it must be
146 # ordered before that section).
147 ;;
148 *-*-freebsd*)
149 # This is the generic ELF configuration of FreeBSD. Later
150 # machine-specific sections may refine and add to this
151 # configuration.
152 ;;
153 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu*)
154 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
155 ;;
156 *-*-netbsd*)
157 ;;
158 *-*-openbsd*)
159 ;;
160 *-*-rtems*)
161 ;;
162 *-*-vxworks*)
163 ;;
164 *-*-elf)
165 ;;
166 esac
167
168 case ${host} in
169 # Support site-specific machine types.
170 *local*)
171 rest=`echo ${host} | sed -e "s/$cpu_type-//"`
172 if test -f $srcdir/config/${cpu_type}/t-$rest
173 then tmake_file=${cpu_type}/t-$rest
174 fi
175 ;;
176 alpha*-*-linux* | alpha*-*-gnu*)
177 tmake_file="${tmake_file} alpha/t-crtfm"
178 extra_parts="$extra_parts crtfastmath.o"
179 ;;
180 alpha*-*-freebsd*)
181 ;;
182 alpha*-*-netbsd*)
183 ;;
184 alpha*-*-openbsd*)
185 ;;
186 alpha*-dec-osf[45]*)
187 ;;
188 alpha64-dec-*vms*)
189 ;;
190 alpha*-dec-*vms*)
191 ;;
192 arc-*-elf*)
193 ;;
194 arm-*-coff* | armel-*-coff*)
195 ;;
196 arm-semi-aof | armel-semi-aof)
197 ;;
198 arm-wrs-vxworks)
199 ;;
200 arm*-*-freebsd*)
201 ;;
202 arm*-*-netbsdelf*)
203 ;;
204 arm*-*-netbsd*)
205 ;;
206 arm*-*-linux*) # ARM GNU/Linux with ELF
207 ;;
208 arm*-*-uclinux*) # ARM ucLinux
209 ;;
210 arm*-*-ecos-elf)
211 ;;
212 arm*-*-eabi* | arm*-*-symbianelf* )
213 ;;
214 arm*-*-rtems*)
215 ;;
216 arm*-*-elf)
217 ;;
218 arm*-wince-pe*)
219 ;;
220 arm-*-pe*)
221 ;;
222 avr-*-rtems*)
223 ;;
224 avr-*-*)
225 # Make HImode functions for AVR
226 tmake_file=${cpu_type}/t-avr
227 ;;
228 bfin*-elf*)
229 ;;
230 bfin*-uclinux*)
231 ;;
232 bfin*-linux-uclibc*)
233 # No need to build crtbeginT.o on uClibc systems. Should probably
234 # be moved to the OS specific section above.
235 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
236 ;;
237 bfin*-*)
238 ;;
239 crisv32-*-elf | crisv32-*-none | cris-*-elf | cris-*-none)
240 extra_parts="crtbegin.o crtend.o"
241 ;;
242 cris-*-linux* | crisv32-*-linux*)
243 ;;
244 crx-*-elf)
245 ;;
246 fido-*-elf)
247 ;;
248 fr30-*-elf)
249 ;;
250 frv-*-elf)
251 ;;
252 frv-*-*linux*)
253 ;;
254 h8300-*-rtems*)
255 ;;
256 h8300-*-elf*)
257 ;;
258 h8300-*-*)
259 ;;
260 hppa*64*-*-linux*)
261 ;;
262 hppa*-*-linux*)
263 ;;
264 hppa[12]*-*-hpux10*)
265 ;;
266 hppa*64*-*-hpux11*)
267 ;;
268 hppa[12]*-*-hpux11*)
269 ;;
270 i[34567]86-*-darwin*)
271 ;;
272 x86_64-*-darwin*)
273 tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin"
274 ;;
275 i[34567]86-*-elf*)
276 ;;
277 x86_64-*-elf*)
278 ;;
279 i[34567]86-*-aout*)
280 ;;
281 i[34567]86-*-freebsd*)
282 ;;
283 x86_64-*-freebsd*)
284 ;;
285 i[34567]86-*-netbsdelf*)
286 ;;
287 i[34567]86-*-netbsd*)
288 ;;
289 x86_64-*-netbsd*)
290 ;;
291 i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
292 ;;
293 i[34567]86-*-openbsd*)
294 ;;
295 i[34567]86-*-coff*)
296 ;;
297 i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu*)
298 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
299 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
300 ;;
301 x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
302 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
303 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
304 ;;
305 i[34567]86-pc-msdosdjgpp*)
306 ;;
307 i[34567]86-*-lynxos*)
308 ;;
309 i[3456x]86-*-netware*)
310 case /${with_ld} in
311 */nwld)
312 tmake_file="${tmake_file} i386/t-nwld"
313 ;;
314 esac
315 ;;
316 i[34567]86-*-nto-qnx*)
317 ;;
318 i[34567]86-*-rtems*)
319 ;;
320 i[34567]86-*-solaris2*)
321 ;;
322 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
323 ;;
324 i[34567]86-*-pe)
325 ;;
326 i[34567]86-*-cygwin* | i[34567]86-*-mingw*)
327 extra_parts="crtbegin.o crtend.o crtfastmath.o"
328 tmake_file="i386/t-cygming i386/t-crtfm"
329 ;;
330 x86_64-*-mingw*)
331 ;;
332 i[34567]86-*-interix3*)
333 ;;
334 ia64*-*-elf*)
335 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
336 tmake_file="ia64/t-ia64"
337 ;;
338 ia64*-*-freebsd*)
339 ;;
340 ia64*-*-linux*)
341 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
342 tmake_file="ia64/t-ia64"
343 ;;
344 ia64*-*-hpux*)
345 ;;
346 iq2000*-*-elf*)
347 ;;
348 m32r-*-elf*)
349 ;;
350 m32rle-*-elf*)
351 ;;
352 m32r-*-linux*)
353 ;;
354 m32rle-*-linux*)
355 ;;
356 m68hc11-*-*|m6811-*-*)
357 ;;
358 m68hc12-*-*|m6812-*-*)
359 ;;
360 m68k-*-aout*)
361 ;;
362 m68k-*-coff*)
363 ;;
364 m68k-*-elf*)
365 ;;
366 m68k*-*-netbsdelf*)
367 ;;
368 m68k*-*-openbsd*)
369 ;;
370 m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux with uClibc
371 ;;
372 m68k-*-linux*) # Motorola m68k's running GNU/Linux
373 # with ELF format using glibc 2
374 # aka the GNU/Linux C library 6.
375 ;;
376 m68k-*-rtems*)
377 ;;
378 mcore-*-elf)
379 ;;
380 mcore-*-pe*)
381 ;;
382 mips-sgi-irix[56]*)
383 ;;
384 mips*-*-netbsd*) # NetBSD/mips, either endian.
385 ;;
386 mips64*-*-linux*)
387 ;;
388 mips*-*-linux*) # Linux MIPS, either endian.
389 ;;
390 mips*-*-openbsd*)
391 ;;
392 mipsisa32-*-elf* | mipsisa32el-*-elf*)
393 ;;
394 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
395 ;;
396 mipsisa64-*-elf* | mipsisa64el-*-elf*)
397 ;;
398 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
399 ;;
400 mipsisa64sr71k-*-elf*)
401 ;;
402 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
403 ;;
404 mips-*-elf* | mipsel-*-elf*)
405 ;;
406 mips64-*-elf* | mips64el-*-elf*)
407 ;;
408 mips64vr-*-elf* | mips64vrel-*-elf*)
409 ;;
410 mips64orion-*-elf* | mips64orionel-*-elf*)
411 ;;
412 mips*-*-rtems*)
413 ;;
414 mips-wrs-vxworks)
415 ;;
416 mipstx39-*-elf* | mipstx39el-*-elf*)
417 ;;
418 mmix-knuth-mmixware)
419 ;;
420 mn10300-*-*)
421 ;;
422 pdp11-*-bsd)
423 ;;
424 pdp11-*-*)
425 ;;
426 picochip-*-*)
427 ;;
428 powerpc64-*-linux*)
429 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
430 ;;
431 powerpc64-*-gnu*)
432 tmake_file="${tmake_file} rs6000/t-ldbl128"
433 ;;
434 powerpc-*-darwin*)
435 ;;
436 powerpc64-*-darwin*)
437 ;;
438 powerpc*-*-freebsd*)
439 ;;
440 powerpc-*-netbsd*)
441 ;;
442 powerpc-*-eabispe*)
443 ;;
444 powerpc-*-eabisimaltivec*)
445 ;;
446 powerpc-*-eabisim*)
447 ;;
448 powerpc-*-elf*)
449 ;;
450 powerpc-*-eabialtivec*)
451 ;;
452 powerpc-*-eabi*)
453 ;;
454 powerpc-*-rtems*)
455 ;;
456 powerpc-*-linux*altivec*)
457 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
458 ;;
459 powerpc-*-linux*spe*)
460 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
461 ;;
462 powerpc-*-linux*)
463 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
464 ;;
465 powerpc-*-gnu-gnualtivec*)
466 tmake_file="${tmake_file} rs6000/t-ldbl128"
467 ;;
468 powerpc-*-gnu*)
469 tmake_file="${tmake_file} rs6000/t-ldbl128"
470 ;;
471 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
472 ;;
473 powerpc-*-lynxos*)
474 ;;
475 powerpcle-*-elf*)
476 ;;
477 powerpcle-*-eabisim*)
478 ;;
479 powerpcle-*-eabi*)
480 ;;
481 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
482 ;;
483 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
484 ;;
485 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
486 ;;
487 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
488 ;;
489 s390-*-linux*)
490 ;;
491 s390x-*-linux*)
492 ;;
493 s390x-ibm-tpf*)
494 ;;
495 score-*-elf)
496 ;;
497 sh-*-elf* | sh[12346l]*-*-elf* | \
498 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
499 sh-*-linux* | sh[2346lbe]*-*-linux* | \
500 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
501 sh64-*-netbsd* | sh64l*-*-netbsd*)
502 case ${host} in
503 sh*-*-linux*)
504 tmake_file="${tmake_file} sh/t-linux"
505 ;;
506 esac
507 ;;
508 sh-*-rtems*)
509 ;;
510 sh-wrs-vxworks)
511 ;;
512 sh-*-*)
513 ;;
514 sparc-*-netbsdelf*)
515 ;;
516 sparc64-*-openbsd*)
517 ;;
518 sparc-*-elf*)
519 ;;
520 sparc-*-linux*) # SPARC's running GNU/Linux, libc6
521 extra_parts="$extra_parts crtfastmath.o"
522 tmake_file="${tmake_file} sparc/t-crtfm"
523 ;;
524 sparc-*-rtems*)
525 ;;
526 sparc64-*-solaris2* | sparcv9-*-solaris2*)
527 ;;
528 sparc-*-solaris2*)
529 ;;
530 sparc64-*-elf*)
531 ;;
532 sparc-wrs-vxworks)
533 ;;
534 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
535 ;;
536 sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
537 extra_parts="$extra_parts crtfastmath.o"
538 tmake_file="${tmake_file} sparc/t-crtfm"
539 ;;
540 sparc64-*-netbsd*)
541 ;;
542 spu-*-elf*)
543 ;;
544 v850e1-*-*)
545 ;;
546 v850e-*-*)
547 ;;
548 v850-*-*)
549 ;;
550 vax-*-netbsdelf*)
551 ;;
552 vax-*-netbsd*)
553 ;;
554 vax-*-openbsd*)
555 ;;
556 xstormy16-*-elf)
557 ;;
558 xtensa*-*-elf*)
559 ;;
560 xtensa*-*-linux*)
561 ;;
562 am33_2.0-*-linux*)
563 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
564 ;;
565 m32c-*-elf*)
566 ;;
567 *)
568 echo "*** Configuration ${host} not supported" 1>&2
569 exit 1
570 ;;
571 esac
572
573 case ${host} in
574 i[34567]86-*-linux* | x86_64-*-linux* | \
575 i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | \
576 i[34567]86-*-gnu*)
577 tmake_file="${tmake_file} t-tls"
578 ;;
579 esac
580
581 case ${host} in
582 i[34567]86-*-darwin* | x86_64-*-darwin* | \
583 i[34567]86-*-linux* | x86_64-*-linux*)
584 if test "${host_address}" = 32; then
585 tmake_file="${tmake_file} i386/${host_address}/t-fprules-softfp"
586 fi
587 ;;
588 esac
589
590 case ${host} in
591 i[34567]86-*-linux* | x86_64-*-linux*)
592 # Provide backward binary compatibility for 64bit Linux/x86.
593 if test "${host_address}" = 64; then
594 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
595 fi
596 ;;
597 esac