OSDN Git Service

* config/avr/avr.md ("andsi3"): Fix wrong cc attribute.
[pf3gnuchains/gcc-fork.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         tmake_file="${tmake_file} i386/t-sol2"
322         case ${host} in
323         *-*-solaris2.1[0-9]*)
324                 # Solaris 2.10 provides crt1.o, crti.o, crtn.o, and gcrt1.o as
325                 # part of the base system.
326                 extra_parts="gmon.o crtbegin.o crtend.o"
327                 ;;
328         *)
329                 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
330                 ;;
331         esac
332         ;;
333 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
334         ;;
335 i[34567]86-*-pe)
336         ;;
337 i[34567]86-*-cygwin* | i[34567]86-*-mingw*)
338         extra_parts="crtbegin.o crtend.o crtfastmath.o"
339         tmake_file="i386/t-cygming i386/t-crtfm"
340         ;;
341 x86_64-*-mingw*)
342         ;;
343 i[34567]86-*-interix3*)
344         ;;
345 ia64*-*-elf*)
346         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
347         tmake_file="ia64/t-ia64"
348         ;;
349 ia64*-*-freebsd*)
350         ;;
351 ia64*-*-linux*)
352         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
353         tmake_file="ia64/t-ia64"
354         ;;
355 ia64*-*-hpux*)
356         ;;
357 iq2000*-*-elf*)
358         ;;
359 m32r-*-elf*)
360         ;;
361 m32rle-*-elf*)
362         ;;
363 m32r-*-linux*)
364         ;;
365 m32rle-*-linux*)
366         ;;
367 m68hc11-*-*|m6811-*-*)
368         ;;
369 m68hc12-*-*|m6812-*-*)
370         ;;
371 m68k-*-aout*)
372         ;;
373 m68k-*-coff*)
374         ;;
375 m68k-*-elf*)
376         ;;
377 m68k*-*-netbsdelf*)
378         ;;
379 m68k*-*-openbsd*)
380         ;;
381 m68k-*-uclinux*)                # Motorola m68k/ColdFire running uClinux with uClibc
382         ;;
383 m68k-*-linux*)          # Motorola m68k's running GNU/Linux
384                                 # with ELF format using glibc 2
385                                 # aka the GNU/Linux C library 6.
386         ;;
387 m68k-*-rtems*)
388         ;;
389 mcore-*-elf)
390         ;;
391 mcore-*-pe*)
392         ;;
393 mips-sgi-irix[56]*)
394         ;;
395 mips*-*-netbsd*)                        # NetBSD/mips, either endian.
396         ;;
397 mips64*-*-linux*)
398         ;;
399 mips*-*-linux*)                         # Linux MIPS, either endian.
400         ;;
401 mips*-*-openbsd*)
402         ;;
403 mipsisa32-*-elf* | mipsisa32el-*-elf*)
404         ;;
405 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
406         ;;
407 mipsisa64-*-elf* | mipsisa64el-*-elf*)
408         ;;
409 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
410         ;;
411 mipsisa64sr71k-*-elf*)
412         ;;
413 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
414         ;;
415 mips-*-elf* | mipsel-*-elf*)
416         ;;
417 mips64-*-elf* | mips64el-*-elf*)
418         ;;
419 mips64vr-*-elf* | mips64vrel-*-elf*)
420         ;;
421 mips64orion-*-elf* | mips64orionel-*-elf*)
422         ;;
423 mips*-*-rtems*)
424         ;;
425 mips-wrs-vxworks)
426         ;;
427 mipstx39-*-elf* | mipstx39el-*-elf*)
428         ;;
429 mmix-knuth-mmixware)
430         ;;
431 mn10300-*-*)
432         ;;
433 pdp11-*-bsd)
434         ;;
435 pdp11-*-*)
436         ;;
437 picochip-*-*)
438         ;;
439 powerpc64-*-linux*)
440         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
441         ;;
442 powerpc64-*-gnu*)
443         tmake_file="${tmake_file} rs6000/t-ldbl128"
444         ;;
445 powerpc-*-darwin*)
446         ;;
447 powerpc64-*-darwin*)
448         ;;
449 powerpc*-*-freebsd*)
450         ;;
451 powerpc-*-netbsd*)
452         ;;
453 powerpc-*-eabispe*)
454         ;;
455 powerpc-*-eabisimaltivec*)
456         ;;
457 powerpc-*-eabisim*)
458         ;;
459 powerpc-*-elf*)
460         ;;
461 powerpc-*-eabialtivec*)
462         ;;
463 powerpc-*-eabi*)
464         ;;
465 powerpc-*-rtems*)
466         ;;
467 powerpc-*-linux*altivec*)
468         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
469         ;;
470 powerpc-*-linux*spe*)
471         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
472         ;;
473 powerpc-*-linux*)
474         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
475         ;;
476 powerpc-*-gnu-gnualtivec*)
477         tmake_file="${tmake_file} rs6000/t-ldbl128"
478         ;;
479 powerpc-*-gnu*)
480         tmake_file="${tmake_file} rs6000/t-ldbl128"
481         ;;
482 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
483         ;;
484 powerpc-*-lynxos*)
485         ;;
486 powerpcle-*-elf*)
487         ;;
488 powerpcle-*-eabisim*)
489         ;;
490 powerpcle-*-eabi*)
491         ;;
492 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
493         ;;
494 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
495         ;;
496 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
497         ;;
498 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
499         ;;
500 s390-*-linux*)
501         ;;
502 s390x-*-linux*)
503         ;;
504 s390x-ibm-tpf*)
505         ;;
506 score-*-elf)
507         ;;
508 sh-*-elf* | sh[12346l]*-*-elf* | \
509 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
510   sh-*-linux* | sh[2346lbe]*-*-linux* | \
511   sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
512    sh64-*-netbsd* | sh64l*-*-netbsd*)
513         case ${host} in
514         sh*-*-linux*)
515                 tmake_file="${tmake_file} sh/t-linux"
516                 ;;
517         esac
518         ;;
519 sh-*-rtems*)
520         ;;
521 sh-wrs-vxworks)
522         ;;
523 sh-*-*)
524         ;;
525 sparc-*-netbsdelf*)
526         ;;
527 sparc64-*-openbsd*)
528         ;;
529 sparc-*-elf*)
530         ;;
531 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
532         extra_parts="$extra_parts crtfastmath.o"
533         tmake_file="${tmake_file} sparc/t-crtfm"
534         ;;
535 sparc-*-rtems*)
536         ;;
537 sparc64-*-solaris2* | sparcv9-*-solaris2*)
538         ;;
539 sparc-*-solaris2*)
540         ;;
541 sparc64-*-elf*)
542         ;;
543 sparc-wrs-vxworks)
544         ;;
545 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
546         ;;
547 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
548         extra_parts="$extra_parts crtfastmath.o"
549         tmake_file="${tmake_file} sparc/t-crtfm"
550         ;;
551 sparc64-*-netbsd*)
552         ;;
553 spu-*-elf*)
554         ;;
555 v850e1-*-*)
556         ;;
557 v850e-*-*)
558         ;;
559 v850-*-*)
560         ;;
561 vax-*-netbsdelf*)
562         ;;
563 vax-*-netbsd*)
564         ;;
565 vax-*-openbsd*)
566         ;;
567 xstormy16-*-elf)
568         ;;
569 xtensa*-*-elf*)
570         ;;
571 xtensa*-*-linux*)
572         ;;
573 am33_2.0-*-linux*)
574         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
575         ;;
576 m32c-*-elf*|m32c-*-rtems*)
577         ;;
578 *)
579         echo "*** Configuration ${host} not supported" 1>&2
580         exit 1
581         ;;
582 esac
583
584 case ${host} in
585 i[34567]86-*-linux* | x86_64-*-linux* | \
586   i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | \
587   i[34567]86-*-gnu*)
588         tmake_file="${tmake_file} t-tls"
589         ;;
590 esac
591
592 case ${host} in
593 i[34567]86-*-darwin* | x86_64-*-darwin* | \
594   i[34567]86-*-linux* | x86_64-*-linux*)
595         if test "${host_address}" = 32; then
596                 tmake_file="${tmake_file} i386/${host_address}/t-fprules-softfp"
597         fi
598         ;;
599 esac
600
601 case ${host} in
602 i[34567]86-*-linux* | x86_64-*-linux*)
603         # Provide backward binary compatibility for 64bit Linux/x86.
604         if test "${host_address}" = 64; then
605                 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
606         fi
607         ;;
608 esac