OSDN Git Service

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