1 |
38 |
julius |
# GCC host-specific configuration file.
|
2 |
|
|
# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2007
|
3 |
|
|
# 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 |
|
|
#.
|
20 |
|
|
|
21 |
|
|
# This is the GCC 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 switches on the shell variable ${host}. As much of this as
|
28 |
|
|
# is reasonable should be replaced with autoconf tests in the future.
|
29 |
|
|
|
30 |
|
|
# This file sets the following shell variables for use by the
|
31 |
|
|
# autoconf-generated configure script:
|
32 |
|
|
#
|
33 |
|
|
# host_xm_file List of files to include when compiling for the
|
34 |
|
|
# host machine.
|
35 |
|
|
#
|
36 |
|
|
# host_xm_defines List of macros to define when compiling for the
|
37 |
|
|
# host machine.
|
38 |
|
|
#
|
39 |
|
|
# host_xmake_file List of host-specific makefile-fragments.
|
40 |
|
|
#
|
41 |
|
|
# host_exeext Set to the suffix, if the host machine requires
|
42 |
|
|
# executables to have a file name suffix.
|
43 |
|
|
#
|
44 |
|
|
# host_extra_objs List of extra host-dependent objects that should
|
45 |
|
|
# be linked into the compiler proper.
|
46 |
|
|
#
|
47 |
|
|
# host_extra_gcc_objs List of extra host-dependent objects that should
|
48 |
|
|
# be linked into the gcc driver.
|
49 |
|
|
#
|
50 |
|
|
# out_host_hook_obj An object file that provides the host hooks.
|
51 |
|
|
#
|
52 |
|
|
# host_can_use_collect2 Set to yes normally; to no if the host cannot
|
53 |
|
|
# link or otherwise use collect2
|
54 |
|
|
# use_long_long_for_widest_fast_int Set this to 'yes' if 'long long'
|
55 |
|
|
# (or '__int64') is wider than 'long' but still
|
56 |
|
|
# efficeiently supported by the host hardware.
|
57 |
|
|
# Only affects compile speed. Default is 'no'.
|
58 |
|
|
|
59 |
|
|
# When setting any of these variables, check to see if a corresponding
|
60 |
|
|
# variable is present in config.build; if so, you will likely want to
|
61 |
|
|
# set it in both places.
|
62 |
|
|
|
63 |
|
|
# Default settings.
|
64 |
|
|
host_xm_file=
|
65 |
|
|
host_xm_defines=
|
66 |
|
|
host_xmake_file=
|
67 |
|
|
host_exeext=
|
68 |
|
|
host_extra_objs=
|
69 |
|
|
host_extra_gcc_objs=
|
70 |
|
|
out_host_hook_obj=host-default.o
|
71 |
|
|
host_can_use_collect2=yes
|
72 |
|
|
use_long_long_for_widest_fast_int=no
|
73 |
|
|
|
74 |
|
|
# Unsupported hosts list. Generally, only include hosts known to fail here,
|
75 |
|
|
# since we allow hosts not listed to be supported generically.
|
76 |
|
|
case ${host} in
|
77 |
|
|
i[34567]86-sequent-sysv \
|
78 |
|
|
| i[34567]86-sequent-sysv[123]* \
|
79 |
|
|
| i[34567]86-go32-* \
|
80 |
|
|
| i[34567]86-*-go32* \
|
81 |
|
|
| vax-*-vms*)
|
82 |
|
|
echo "*** Configuration for host ${host} not supported" 1>&2
|
83 |
|
|
exit 1
|
84 |
|
|
;;
|
85 |
|
|
esac
|
86 |
|
|
|
87 |
|
|
# Common parts for widely ported systems.
|
88 |
|
|
case ${host} in
|
89 |
|
|
*-darwin*)
|
90 |
|
|
# Generic darwin host support.
|
91 |
|
|
out_host_hook_obj=host-darwin.o
|
92 |
|
|
host_xmake_file="${host_xmake_file} x-darwin"
|
93 |
|
|
;;
|
94 |
|
|
esac
|
95 |
|
|
|
96 |
|
|
case ${host} in
|
97 |
|
|
i[34567]86-*-* \
|
98 |
|
|
| x86_64-*-* )
|
99 |
|
|
case ${target} in
|
100 |
|
|
i[34567]86-*-* \
|
101 |
|
|
| x86_64-*-* )
|
102 |
|
|
host_extra_gcc_objs="driver-i386.o"
|
103 |
|
|
host_xmake_file="${host_xmake_file} i386/x-i386"
|
104 |
|
|
;;
|
105 |
|
|
esac
|
106 |
|
|
;;
|
107 |
|
|
esac
|
108 |
|
|
|
109 |
|
|
# Machine-specific settings.
|
110 |
|
|
case ${host} in
|
111 |
|
|
alpha*-dec-*vms*)
|
112 |
|
|
host_xm_file=alpha/xm-vms.h
|
113 |
|
|
host_xmake_file="${host_xmake_file} alpha/x-vms"
|
114 |
|
|
host_exeext=.exe
|
115 |
|
|
host_can_use_collect2=no
|
116 |
|
|
# This removes the cpu type and manufacturer components and
|
117 |
|
|
# replaces "." with "_" in the operating system version.
|
118 |
|
|
target_noncanonical=`echo $host | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'`
|
119 |
|
|
prefix=/gnu
|
120 |
|
|
local_prefix=/gnu
|
121 |
|
|
;;
|
122 |
|
|
hppa1.1-*-pro*)
|
123 |
|
|
host_xmake_file="${host_xmake_file} pa/x-ada"
|
124 |
|
|
;;
|
125 |
|
|
hppa1.1-*-osf*)
|
126 |
|
|
host_xmake_file="${host_xmake_file} pa/x-ada"
|
127 |
|
|
;;
|
128 |
|
|
hppa1.1-*-rtems*)
|
129 |
|
|
host_xmake_file="${host_xmake_file} pa/x-ada"
|
130 |
|
|
;;
|
131 |
|
|
hppa1.1-*-bsd*)
|
132 |
|
|
host_xmake_file="${host_xmake_file} pa/x-ada"
|
133 |
|
|
;;
|
134 |
|
|
hppa1.0-*-hpux10* | hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
|
135 |
|
|
out_host_hook_obj=host-hpux.o
|
136 |
|
|
host_xmake_file="${host_xmake_file} pa/x-ada-hpux10 x-hpux"
|
137 |
|
|
;;
|
138 |
|
|
hppa1.0-*-hpux11* | hppa1.1-*-hpux11* | hppa2*-*-hpux11* | \
|
139 |
|
|
hppa*64*-*-hpux11*)
|
140 |
|
|
out_host_hook_obj=host-hpux.o
|
141 |
|
|
host_xmake_file="${host_xmake_file} pa/x-ada x-hpux"
|
142 |
|
|
;;
|
143 |
|
|
hppa*-*-linux*)
|
144 |
|
|
out_host_hook_obj=host-hpux.o
|
145 |
|
|
host_xmake_file="${host_xmake_file} x-hpux"
|
146 |
|
|
;;
|
147 |
|
|
i370-*-opened* | i370-*-mvs* ) # IBM 360/370/390 Architecture
|
148 |
|
|
host_xm_defines='FATAL_EXIT_CODE=12'
|
149 |
|
|
;;
|
150 |
|
|
i[34567]86-*-solaris2*)
|
151 |
|
|
out_host_hook_obj=host-solaris.o
|
152 |
|
|
host_xmake_file="${host_xmake_file} x-solaris"
|
153 |
|
|
;;
|
154 |
|
|
i[34567]86-pc-msdosdjgpp*)
|
155 |
|
|
host_xm_file=i386/xm-djgpp.h
|
156 |
|
|
host_exeext=.exe
|
157 |
|
|
# Shorten $target_noncanonical for 8.3 filename conventions.
|
158 |
|
|
case ${target} in
|
159 |
|
|
*pc-msdosdjgpp*)
|
160 |
|
|
target_noncanonical=djgpp
|
161 |
|
|
;;
|
162 |
|
|
esac
|
163 |
|
|
;;
|
164 |
|
|
i[34567]86-*-pe | i[34567]86-*-cygwin*)
|
165 |
|
|
host_xm_file=i386/xm-cygwin.h
|
166 |
|
|
out_host_hook_obj=host-cygwin.o
|
167 |
|
|
host_xmake_file="${host_xmake_file} i386/x-cygwin"
|
168 |
|
|
host_exeext=.exe
|
169 |
|
|
;;
|
170 |
|
|
i[34567]86-*-mingw32*)
|
171 |
|
|
host_xm_file=i386/xm-mingw32.h
|
172 |
|
|
host_xmake_file="${host_xmake_file} i386/x-mingw32"
|
173 |
|
|
host_exeext=.exe
|
174 |
|
|
out_host_hook_obj=host-mingw32.o
|
175 |
|
|
;;
|
176 |
|
|
i[34567]86-*-uwin*)
|
177 |
|
|
echo "*** UWIN may not be used as a host platform because"
|
178 |
|
|
echo "*** linking with posix.dll is not allowed by the GNU GPL."
|
179 |
|
|
exit 1
|
180 |
|
|
;;
|
181 |
|
|
i[34567]86-*-interix3*)
|
182 |
|
|
host_xmake_file="${host_xmake_file} x-interix"
|
183 |
|
|
;;
|
184 |
|
|
i[34567]86-*-darwin* | x86_64-*-darwin*)
|
185 |
|
|
out_host_hook_obj="${out_host_hook_obj} host-i386-darwin.o"
|
186 |
|
|
host_xmake_file="${host_xmake_file} i386/x-darwin"
|
187 |
|
|
;;
|
188 |
|
|
powerpc-*-beos*)
|
189 |
|
|
host_can_use_collect2=no
|
190 |
|
|
;;
|
191 |
|
|
powerpc-*-darwin*)
|
192 |
|
|
out_host_hook_obj="${out_host_hook_obj} host-ppc-darwin.o"
|
193 |
|
|
host_xmake_file="${host_xmake_file} rs6000/x-darwin"
|
194 |
|
|
;;
|
195 |
|
|
powerpc64-*-darwin*)
|
196 |
|
|
out_host_hook_obj="${out_host_hook_obj} host-ppc64-darwin.o"
|
197 |
|
|
host_xmake_file="${host_xmake_file} rs6000/x-darwin64"
|
198 |
|
|
;;
|
199 |
|
|
*-*-solaris2*)
|
200 |
|
|
out_host_hook_obj=host-solaris.o
|
201 |
|
|
host_xmake_file="${host_xmake_file} x-solaris"
|
202 |
|
|
;;
|
203 |
|
|
*-*-linux*)
|
204 |
|
|
out_host_hook_obj=host-linux.o
|
205 |
|
|
host_xmake_file="${host_xmake_file} x-linux"
|
206 |
|
|
;;
|
207 |
|
|
ia64-*-hpux*)
|
208 |
|
|
use_long_long_for_widest_fast_int=yes
|
209 |
|
|
out_host_hook_obj=host-hpux.o
|
210 |
|
|
host_xmake_file="${host_xmake_file} x-hpux"
|
211 |
|
|
;;
|
212 |
|
|
esac
|