OSDN Git Service

2008-11-09 Thomas Schwinge <tschwinge@gnu.org>
[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         ;;
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 mipsisa64sr71k-*-elf*)
399         ;;
400 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
401         ;;
402 mips-*-elf* | mipsel-*-elf*)
403         ;;
404 mips64-*-elf* | mips64el-*-elf*)
405         ;;
406 mips64vr-*-elf* | mips64vrel-*-elf*)
407         ;;
408 mips64orion-*-elf* | mips64orionel-*-elf*)
409         ;;
410 mips*-*-rtems*)
411         ;;
412 mips-wrs-vxworks)
413         ;;
414 mipstx39-*-elf* | mipstx39el-*-elf*)
415         ;;
416 mmix-knuth-mmixware)
417         ;;
418 mn10300-*-*)
419         ;;
420 pdp11-*-bsd)
421         ;;
422 pdp11-*-*)
423         ;;
424 picochip-*-*)
425         ;;
426 powerpc64-*-linux*)
427         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
428         ;;
429 powerpc64-*-gnu*)
430         tmake_file="${tmake_file} rs6000/t-ldbl128"
431         ;;
432 powerpc-*-darwin*)
433         ;;
434 powerpc64-*-darwin*)
435         ;;
436 powerpc*-*-freebsd*)
437         ;;
438 powerpc-*-netbsd*)
439         ;;
440 powerpc-*-eabispe*)
441         ;;
442 powerpc-*-eabisimaltivec*)
443         ;;
444 powerpc-*-eabisim*)
445         ;;
446 powerpc-*-elf*)
447         ;;
448 powerpc-*-eabialtivec*)
449         ;;
450 powerpc-*-eabi*)
451         ;;
452 powerpc-*-rtems*)
453         ;;
454 powerpc-*-linux*altivec*)
455         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
456         ;;
457 powerpc-*-linux*spe*)
458         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
459         ;;
460 powerpc-*-linux*)
461         tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
462         ;;
463 powerpc-*-gnu-gnualtivec*)
464         tmake_file="${tmake_file} rs6000/t-ldbl128"
465         ;;
466 powerpc-*-gnu*)
467         tmake_file="${tmake_file} rs6000/t-ldbl128"
468         ;;
469 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
470         ;;
471 powerpc-*-lynxos*)
472         ;;
473 powerpcle-*-elf*)
474         ;;
475 powerpcle-*-eabisim*)
476         ;;
477 powerpcle-*-eabi*)
478         ;;
479 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
480         ;;
481 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
482         ;;
483 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
484         ;;
485 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
486         ;;
487 s390-*-linux*)
488         ;;
489 s390x-*-linux*)
490         ;;
491 s390x-ibm-tpf*)
492         ;;
493 score-*-elf)
494         ;;
495 sh-*-elf* | sh[12346l]*-*-elf* | \
496 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
497   sh-*-linux* | sh[2346lbe]*-*-linux* | \
498   sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
499    sh64-*-netbsd* | sh64l*-*-netbsd*)
500         case ${host} in
501         sh*-*-linux*)
502                 tmake_file="${tmake_file} sh/t-linux"
503                 ;;
504         esac
505         ;;
506 sh-*-rtems*)
507         ;;
508 sh-wrs-vxworks)
509         ;;
510 sh-*-*)
511         ;;
512 sparc-*-netbsdelf*)
513         ;;
514 sparc64-*-openbsd*)
515         ;;
516 sparc-*-elf*)
517         ;;
518 sparc-*-linux*)         # SPARC's running GNU/Linux, libc6
519         extra_parts="$extra_parts crtfastmath.o"
520         tmake_file="${tmake_file} sparc/t-crtfm"
521         ;;
522 sparc-*-rtems*)
523         ;;
524 sparc64-*-solaris2* | sparcv9-*-solaris2*)
525         ;;
526 sparc-*-solaris2*)
527         ;;
528 sparc64-*-elf*)
529         ;;
530 sparc-wrs-vxworks)
531         ;;
532 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
533         ;;
534 sparc64-*-linux*)               # 64-bit SPARC's running GNU/Linux
535         extra_parts="$extra_parts crtfastmath.o"
536         tmake_file="${tmake_file} sparc/t-crtfm"
537         ;;
538 sparc64-*-netbsd*)
539         ;;
540 spu-*-elf*)
541         ;;
542 v850e1-*-*)
543         ;;
544 v850e-*-*)
545         ;;
546 v850-*-*)
547         ;;
548 vax-*-netbsdelf*)
549         ;;
550 vax-*-netbsd*)
551         ;;
552 vax-*-openbsd*)
553         ;;
554 xstormy16-*-elf)
555         ;;
556 xtensa*-*-elf*)
557         ;;
558 xtensa*-*-linux*)
559         ;;
560 am33_2.0-*-linux*)
561         extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
562         ;;
563 m32c-*-elf*)
564         ;;
565 *)
566         echo "*** Configuration ${host} not supported" 1>&2
567         exit 1
568         ;;
569 esac
570
571 case ${host} in
572 i[34567]86-*-linux* | x86_64-*-linux* | \
573   i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | \
574   i[34567]86-*-gnu*)
575         tmake_file="${tmake_file} t-tls"
576         ;;
577 esac
578
579 case ${host} in
580 i[34567]86-*-darwin* | x86_64-*-darwin* | \
581   i[34567]86-*-linux* | x86_64-*-linux*)
582         if test "${host_address}" = 32; then
583                 tmake_file="${tmake_file} i386/${host_address}/t-fprules-softfp"
584         fi
585         ;;
586 esac
587
588 case ${host} in
589 i[34567]86-*-linux* | x86_64-*-linux*)
590         # Provide backward binary compatibility for 64bit Linux/x86.
591         if test "${host_address}" = 64; then
592                 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
593         fi
594         ;;
595 esac