]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/config.host
2009-11-11 Martin Jambor <mjambor@suse.cz>
[thirdparty/gcc.git] / libgcc / config.host
CommitLineData
894a47b4 1# libgcc host-specific configuration file.
99c77e32 2# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
f2397fc4 3# 2008, 2009 Free Software Foundation, Inc.
894a47b4 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
6bc9506f 9#Software Foundation; either version 3, or (at your option) any later
894a47b4 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
6bc9506f 18#along with GCC; see the file COPYING3. If not see
19#<http://www.gnu.org/licenses/>.
894a47b4 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
57asm_hidden_op=.hidden
58extra_parts=
59tmake_file=
60
61# Set default cpu_type so it can be updated in each machine entry.
62cpu_type=`echo ${host} | sed 's/-.*$//'`
63case ${host} in
64m32c*-*-*)
65 cpu_type=m32c
66 ;;
67alpha*-*-*)
68 cpu_type=alpha
69 ;;
70am33_2.0-*-linux*)
71 cpu_type=mn10300
72 ;;
894a47b4 73arm*-*-*)
74 cpu_type=arm
75 ;;
38dd5584 76avr-*-*)
77 cpu_type=avr
78 ;;
894a47b4 79bfin*-*)
80 cpu_type=bfin
81 ;;
278e2fd1 82fido-*-*)
83 cpu_type=m68k
84 ;;
894a47b4 85frv*) cpu_type=frv
86 ;;
be52b6d8 87moxie*) cpu_type=moxie
88 ;;
894a47b4 89i[34567]86-*-*)
90 cpu_type=i386
91 ;;
92x86_64-*-*)
93 cpu_type=i386
94 ;;
95ia64-*-*)
96 ;;
6af9f7ea 97hppa*-*-*)
894a47b4 98 cpu_type=pa
99 ;;
100m32r*-*-*)
101 cpu_type=m32r
102 ;;
894a47b4 103m68k-*-*)
104 ;;
46222c18 105mep*-*-*)
106 ;;
894a47b4 107mips*-*-*)
108 cpu_type=mips
109 ;;
110powerpc*-*-*)
111 cpu_type=rs6000
112 ;;
113rs6000*-*-*)
114 ;;
115score*-*-*)
116 cpu_type=score
117 ;;
118sparc64*-*-*)
119 cpu_type=sparc
120 ;;
121sparc*-*-*)
122 cpu_type=sparc
123 ;;
124spu*-*-*)
125 cpu_type=spu
126 ;;
127s390*-*-*)
128 cpu_type=s390
129 ;;
130# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
131sh[123456789lbe]*-*-*)
132 cpu_type=sh
133 ;;
894a47b4 134esac
135
136# Common parts for widely ported systems.
137case ${host} in
138*-*-darwin*)
139 asm_hidden_op=.private_extern
140 tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
141 ;;
142*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
143 # This is the place-holder for the generic a.out configuration
144 # of FreeBSD. No actual configuration resides here since
145 # there was only ever a bare-bones ix86 configuration for
146 # a.out and it exists solely in the machine-specific section.
147 # This place-holder must exist to avoid dropping into
148 # the generic ELF configuration of FreeBSD (i.e. it must be
149 # ordered before that section).
150 ;;
151*-*-freebsd*)
152 # This is the generic ELF configuration of FreeBSD. Later
153 # machine-specific sections may refine and add to this
154 # configuration.
155 ;;
74cd9df8 156*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu*)
894a47b4 157 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
158 ;;
894a47b4 159*-*-netbsd*)
160 ;;
161*-*-openbsd*)
162 ;;
163*-*-rtems*)
164 ;;
165*-*-vxworks*)
166 ;;
167*-*-elf)
168 ;;
169esac
170
171case ${host} in
172# Support site-specific machine types.
173*local*)
174 rest=`echo ${host} | sed -e "s/$cpu_type-//"`
175 if test -f $srcdir/config/${cpu_type}/t-$rest
176 then tmake_file=${cpu_type}/t-$rest
177 fi
178 ;;
74cd9df8 179alpha*-*-linux* | alpha*-*-gnu*)
894a47b4 180 tmake_file="${tmake_file} alpha/t-crtfm"
cdca0ab7 181 extra_parts="$extra_parts crtfastmath.o"
894a47b4 182 ;;
894a47b4 183alpha*-*-freebsd*)
184 ;;
185alpha*-*-netbsd*)
186 ;;
187alpha*-*-openbsd*)
188 ;;
189alpha*-dec-osf[45]*)
190 ;;
191alpha64-dec-*vms*)
9b9a2528 192 tmake_file="vms/t-vms vms/t-vms64 alpha/t-vms"
894a47b4 193 ;;
194alpha*-dec-*vms*)
9b9a2528 195 tmake_file="vms/t-vms alpha/t-vms"
894a47b4 196 ;;
197arc-*-elf*)
198 ;;
894a47b4 199arm-wrs-vxworks)
200 ;;
6af9f7ea 201arm*-*-freebsd*)
894a47b4 202 ;;
203arm*-*-netbsdelf*)
204 ;;
205arm*-*-netbsd*)
206 ;;
207arm*-*-linux*) # ARM GNU/Linux with ELF
208 ;;
209arm*-*-uclinux*) # ARM ucLinux
210 ;;
211arm*-*-ecos-elf)
212 ;;
213arm*-*-eabi* | arm*-*-symbianelf* )
214 ;;
215arm*-*-rtems*)
216 ;;
6af9f7ea 217arm*-*-elf)
894a47b4 218 ;;
219arm*-wince-pe*)
220 ;;
221arm-*-pe*)
222 ;;
894a47b4 223avr-*-rtems*)
224 ;;
225avr-*-*)
38dd5584 226 # Make HImode functions for AVR
227 tmake_file=${cpu_type}/t-avr
894a47b4 228 ;;
229bfin*-elf*)
230 ;;
231bfin*-uclinux*)
232 ;;
bce94ab5 233bfin*-linux-uclibc*)
234 # No need to build crtbeginT.o on uClibc systems. Should probably
235 # be moved to the OS specific section above.
236 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
237 ;;
894a47b4 238bfin*-*)
239 ;;
877d7f12 240crisv32-*-elf | crisv32-*-none | cris-*-elf | cris-*-none)
7a9b9c95 241 extra_parts="crtbegin.o crtend.o"
894a47b4 242 ;;
877d7f12 243cris-*-linux* | crisv32-*-linux*)
894a47b4 244 ;;
245crx-*-elf)
246 ;;
278e2fd1 247fido-*-elf)
248 ;;
894a47b4 249fr30-*-elf)
250 ;;
251frv-*-elf)
252 ;;
253frv-*-*linux*)
254 ;;
894a47b4 255h8300-*-rtems*)
256 ;;
257h8300-*-elf*)
258 ;;
6af9f7ea 259hppa*64*-*-linux*)
894a47b4 260 ;;
6af9f7ea 261hppa*-*-linux*)
894a47b4 262 ;;
263hppa[12]*-*-hpux10*)
264 ;;
265hppa*64*-*-hpux11*)
266 ;;
267hppa[12]*-*-hpux11*)
268 ;;
269i[34567]86-*-darwin*)
270 ;;
271x86_64-*-darwin*)
272 tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin"
273 ;;
274i[34567]86-*-elf*)
275 ;;
cc8ebe39 276x86_64-*-elf*)
277 ;;
894a47b4 278i[34567]86-*-freebsd*)
279 ;;
280x86_64-*-freebsd*)
281 ;;
282i[34567]86-*-netbsdelf*)
283 ;;
284i[34567]86-*-netbsd*)
285 ;;
286x86_64-*-netbsd*)
287 ;;
288i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
289 ;;
290i[34567]86-*-openbsd*)
291 ;;
74cd9df8 292i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu*)
6d057ce8 293 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
294 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
894a47b4 295 ;;
296x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
6d057ce8 297 extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
298 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
894a47b4 299 ;;
894a47b4 300i[34567]86-pc-msdosdjgpp*)
301 ;;
302i[34567]86-*-lynxos*)
303 ;;
304i[3456x]86-*-netware*)
305 case /${with_ld} in
306 */nwld)
307 tmake_file="${tmake_file} i386/t-nwld"
308 ;;
309 esac
310 ;;
311i[34567]86-*-nto-qnx*)
312 ;;
313i[34567]86-*-rtems*)
314 ;;
894a47b4 315i[34567]86-*-solaris2*)
03150a33 316 tmake_file="${tmake_file} i386/t-sol2"
317 case ${host} in
318 *-*-solaris2.1[0-9]*)
319 # Solaris 2.10 provides crt1.o, crti.o, crtn.o, and gcrt1.o as
320 # part of the base system.
321 extra_parts="gmon.o crtbegin.o crtend.o"
322 ;;
323 *)
324 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
325 ;;
326 esac
894a47b4 327 ;;
894a47b4 328i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
329 ;;
8f433c51 330i[34567]86-*-pe)
894a47b4 331 ;;
8f433c51 332i[34567]86-*-cygwin* | i[34567]86-*-mingw*)
9e51385b 333 extra_parts="crtbegin.o crtend.o crtfastmath.o"
334 tmake_file="i386/t-cygming i386/t-crtfm"
8f433c51 335 ;;
336x86_64-*-mingw*)
894a47b4 337 ;;
894a47b4 338i[34567]86-*-interix3*)
339 ;;
894a47b4 340ia64*-*-elf*)
75612461 341 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
342 tmake_file="ia64/t-ia64"
894a47b4 343 ;;
344ia64*-*-freebsd*)
345 ;;
346ia64*-*-linux*)
347 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
24200b28 348 tmake_file="ia64/t-ia64 t-softfp ia64/t-fprules-softfp ia64/t-softfp-compat"
894a47b4 349 ;;
350ia64*-*-hpux*)
351 ;;
9b9a2528 352ia64-hp-*vms*)
353 tmake_file="vms/t-vms vms/t-vms64 ia64/t-vms"
354 ;;
894a47b4 355iq2000*-*-elf*)
356 ;;
b8138586 357m32r-*-elf*|m32r-*-rtems*)
894a47b4 358 ;;
359m32rle-*-elf*)
360 ;;
361m32r-*-linux*)
362 ;;
363m32rle-*-linux*)
364 ;;
365m68hc11-*-*|m6811-*-*)
366 ;;
367m68hc12-*-*|m6812-*-*)
368 ;;
6af9f7ea 369m68k-*-elf*)
894a47b4 370 ;;
6af9f7ea 371m68k*-*-netbsdelf*)
894a47b4 372 ;;
373m68k*-*-openbsd*)
374 ;;
375m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux with uClibc
376 ;;
377m68k-*-linux*) # Motorola m68k's running GNU/Linux
378 # with ELF format using glibc 2
379 # aka the GNU/Linux C library 6.
380 ;;
381m68k-*-rtems*)
382 ;;
383mcore-*-elf)
384 ;;
385mcore-*-pe*)
386 ;;
387mips-sgi-irix[56]*)
388 ;;
389mips*-*-netbsd*) # NetBSD/mips, either endian.
390 ;;
391mips64*-*-linux*)
392 ;;
393mips*-*-linux*) # Linux MIPS, either endian.
394 ;;
395mips*-*-openbsd*)
396 ;;
397mipsisa32-*-elf* | mipsisa32el-*-elf*)
398 ;;
399mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
400 ;;
401mipsisa64-*-elf* | mipsisa64el-*-elf*)
402 ;;
77a32a8e 403mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
404 ;;
894a47b4 405mipsisa64sr71k-*-elf*)
406 ;;
407mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
408 ;;
409mips-*-elf* | mipsel-*-elf*)
410 ;;
411mips64-*-elf* | mips64el-*-elf*)
412 ;;
413mips64vr-*-elf* | mips64vrel-*-elf*)
414 ;;
415mips64orion-*-elf* | mips64orionel-*-elf*)
416 ;;
417mips*-*-rtems*)
418 ;;
419mips-wrs-vxworks)
420 ;;
894a47b4 421mipstx39-*-elf* | mipstx39el-*-elf*)
422 ;;
423mmix-knuth-mmixware)
424 ;;
425mn10300-*-*)
426 ;;
be52b6d8 427moxie-*-*)
428 tmake_file=${cpu_type}/t-moxie
429 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
430 ;;
894a47b4 431pdp11-*-*)
432 ;;
8372e9ea 433picochip-*-*)
434 ;;
894a47b4 435powerpc-*-darwin*)
436 ;;
437powerpc64-*-darwin*)
438 ;;
439powerpc*-*-freebsd*)
440 ;;
441powerpc-*-netbsd*)
442 ;;
894a47b4 443powerpc-*-eabispe*)
444 ;;
445powerpc-*-eabisimaltivec*)
446 ;;
447powerpc-*-eabisim*)
448 ;;
449powerpc-*-elf*)
450 ;;
451powerpc-*-eabialtivec*)
452 ;;
453powerpc-*-eabi*)
454 ;;
455powerpc-*-rtems*)
456 ;;
4e5e2802 457powerpc-*-linux* | powerpc64-*-linux*)
5790f80a 458 tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128 t-softfp"
894a47b4 459 ;;
4e5e2802 460powerpc64-*-gnu*)
461 tmake_file="${tmake_file} rs6000/t-ldbl128 t-softfp"
462 ;;
894a47b4 463powerpc-*-gnu-gnualtivec*)
464 tmake_file="${tmake_file} rs6000/t-ldbl128"
465 ;;
466powerpc-*-gnu*)
467 tmake_file="${tmake_file} rs6000/t-ldbl128"
468 ;;
469powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
470 ;;
894a47b4 471powerpc-*-lynxos*)
472 ;;
894a47b4 473powerpcle-*-elf*)
474 ;;
475powerpcle-*-eabisim*)
476 ;;
477powerpcle-*-eabi*)
478 ;;
894a47b4 479rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
480 ;;
481rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
482 ;;
483rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
484 ;;
24833e1a 485rx-*-elf)
486 extra_parts="crtbegin.o crtend.o"
487 tmake_file="rx/t-rx"
488 ;;
894a47b4 489s390-*-linux*)
e38fe738 490 tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi"
894a47b4 491 ;;
492s390x-*-linux*)
e38fe738 493 tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux"
894a47b4 494 ;;
495s390x-ibm-tpf*)
e38fe738 496 tmake_file="${tmake_file} s390/t-crtstuff s390/t-tpf"
894a47b4 497 ;;
498score-*-elf)
499 ;;
6af9f7ea 500sh-*-elf* | sh[12346l]*-*-elf* | \
894a47b4 501sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
ccf1c0f1 502 sh-*-linux* | sh[2346lbe]*-*-linux* | \
894a47b4 503 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
504 sh64-*-netbsd* | sh64l*-*-netbsd*)
97f1a704 505 case ${host} in
506 sh*-*-linux*)
507 tmake_file="${tmake_file} sh/t-linux"
508 ;;
509 esac
894a47b4 510 ;;
894a47b4 511sh-*-rtems*)
512 ;;
513sh-wrs-vxworks)
514 ;;
894a47b4 515sparc-*-netbsdelf*)
516 ;;
517sparc64-*-openbsd*)
518 ;;
519sparc-*-elf*)
520 ;;
521sparc-*-linux*) # SPARC's running GNU/Linux, libc6
522 extra_parts="$extra_parts crtfastmath.o"
523 tmake_file="${tmake_file} sparc/t-crtfm"
524 ;;
525sparc-*-rtems*)
526 ;;
527sparc64-*-solaris2* | sparcv9-*-solaris2*)
528 ;;
529sparc-*-solaris2*)
530 ;;
894a47b4 531sparc64-*-elf*)
532 ;;
723e1902 533sparc-wrs-vxworks)
534 ;;
894a47b4 535sparc64-*-freebsd*|ultrasparc-*-freebsd*)
536 ;;
537sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
538 extra_parts="$extra_parts crtfastmath.o"
539 tmake_file="${tmake_file} sparc/t-crtfm"
540 ;;
541sparc64-*-netbsd*)
542 ;;
543spu-*-elf*)
544 ;;
894a47b4 545v850e1-*-*)
546 ;;
547v850e-*-*)
548 ;;
549v850-*-*)
550 ;;
63bfd172 551vax-*-linux*)
552 ;;
894a47b4 553vax-*-netbsdelf*)
554 ;;
555vax-*-netbsd*)
556 ;;
557vax-*-openbsd*)
558 ;;
894a47b4 559xstormy16-*-elf)
560 ;;
75c7ffbc 561xtensa*-*-elf*)
894a47b4 562 ;;
75c7ffbc 563xtensa*-*-linux*)
894a47b4 564 ;;
565am33_2.0-*-linux*)
566 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
567 ;;
7eac0a4e 568m32c-*-elf*|m32c-*-rtems*)
894a47b4 569 ;;
46222c18 570mep*-*-*)
571 ;;
894a47b4 572*)
573 echo "*** Configuration ${host} not supported" 1>&2
574 exit 1
575 ;;
576esac
e4cbe54f 577
578case ${host} in
1eab96a6 579i[34567]86-*-linux* | x86_64-*-linux* | \
580 i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | \
581 i[34567]86-*-gnu*)
e4cbe54f 582 tmake_file="${tmake_file} t-tls"
583 ;;
584esac
b3fd46a0 585
586case ${host} in
587i[34567]86-*-darwin* | x86_64-*-darwin* | \
09ec66c8 588 i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \
6471e33b 589 i[34567]86-*-linux* | x86_64-*-linux* | \
f7ef49da 590 i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw*)
144633f4 591 if test "${host_address}" = 32; then
f2b540ae 592 tmake_file="${tmake_file} t-softfp i386/${host_address}/t-fprules-softfp"
144633f4 593 fi
594 ;;
595esac
596
597case ${host} in
598i[34567]86-*-linux* | x86_64-*-linux*)
599 # Provide backward binary compatibility for 64bit Linux/x86.
600 if test "${host_address}" = 64; then
601 tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
602 fi
b3fd46a0 603 ;;
604esac