tree-vect-stmts.c (vectorizable_load): For SLP without permutation treat the first...
[gcc.git] / gcc / config.host
1 # GCC host-specific configuration file.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2007, 2008, 2009,
3 # 2010, 2011 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 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 #
55 # use_long_long_for_widest_fast_int Set this to 'yes' if 'long long'
56 # (or '__int64') is wider than 'long' but still
57 # efficeiently supported by the host hardware.
58 # Only affects compile speed. Default is 'no'.
59 #
60 # host_lto_plugin_soname Set this to the name to which the LTO linker
61 # plugin gets compiled on this host, if it is
62 # different from the default "liblto_plugin.so".
63
64 # When setting any of these variables, check to see if a corresponding
65 # variable is present in config.build; if so, you will likely want to
66 # set it in both places.
67
68 # Default settings.
69 host_xm_file=
70 host_xm_defines=
71 host_xmake_file=
72 host_exeext=
73 host_extra_objs=
74 host_extra_gcc_objs=
75 out_host_hook_obj=host-default.o
76 host_can_use_collect2=yes
77 use_long_long_for_widest_fast_int=no
78 host_lto_plugin_soname=liblto_plugin.so
79
80 # Unsupported hosts list. Generally, only include hosts known to fail here,
81 # since we allow hosts not listed to be supported generically.
82 case ${host} in
83 i[34567]86-sequent-sysv \
84 | i[34567]86-sequent-sysv[123]* \
85 | i[34567]86-go32-* \
86 | i[34567]86-*-go32* \
87 | vax-*-vms*)
88 echo "*** Configuration for host ${host} not supported" 1>&2
89 exit 1
90 ;;
91 esac
92
93 # Common parts for widely ported systems.
94 case ${host} in
95 *-darwin*)
96 # Generic darwin host support.
97 out_host_hook_obj=host-darwin.o
98 host_xmake_file="${host_xmake_file} x-darwin"
99 ;;
100 esac
101
102 case ${host} in
103 alpha*-*-linux* | alpha*-dec-osf*)
104 case ${target} in
105 alpha*-*-linux* | alpha*-dec-osf*)
106 host_extra_gcc_objs="driver-alpha.o"
107 host_xmake_file="${host_xmake_file} alpha/x-alpha"
108 ;;
109 esac
110 ;;
111 i[34567]86-*-* \
112 | x86_64-*-* )
113 case ${target} in
114 i[34567]86-*-* \
115 | x86_64-*-* )
116 host_extra_gcc_objs="driver-i386.o"
117 host_xmake_file="${host_xmake_file} i386/x-i386"
118 ;;
119 esac
120 ;;
121 mips*-*-linux* | mips-sgi-irix*)
122 case ${target} in
123 mips*-*-linux* | mips-sgi-irix*)
124 host_extra_gcc_objs="driver-native.o"
125 host_xmake_file="${host_xmake_file} mips/x-native"
126 ;;
127 esac
128 ;;
129 rs6000-*-* \
130 | powerpc*-*-* )
131 case ${target} in
132 rs6000-*-* \
133 | powerpc*-*-* )
134 host_extra_gcc_objs="driver-rs6000.o"
135 host_xmake_file="${host_xmake_file} rs6000/x-rs6000"
136 ;;
137 esac
138 case ${host} in
139 *-*-linux* | *-*-freebsd*)
140 if test "${GCC}:${ac_cv_sizeof_long}" = yes:4; then
141 # On powerpc*-*-linux* use -Wl,--relax to link cc1,
142 # if ld is new enough, otherwise force -O1 in CFLAGS.
143 host_ppc_relax_xmake_file=
144 host_ld_ver=`${CC} -Wl,--version 2>/dev/null | sed 1q`
145 if echo "$host_ld_ver" | grep GNU > /dev/null; then
146 host_ld_date=`echo $host_ld_ver \
147 | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'`
148 if test 0"$host_ld_date" -gt 20080806; then
149 host_ppc_relax_xmake_file=rs6000/x-linux-relax
150 fi
151 fi
152 if test -z "${host_ppc_relax_xmake_file}"; then
153 host_ppc_relax_xmake_file=x-cflags-O1
154 fi
155 host_xmake_file="${host_xmake_file} ${host_ppc_relax_xmake_file}"
156 fi
157 ;;
158 esac
159 ;;
160 sparc*-*-solaris2*)
161 case ${target} in
162 sparc*-*-solaris2*)
163 host_extra_gcc_objs="driver-sparc.o"
164 host_xmake_file="${host_xmake_file} sparc/x-sparc"
165 ;;
166 esac
167 ;;
168 sparc*-*-linux*)
169 case ${target} in
170 sparc*-*-linux*)
171 host_extra_gcc_objs="driver-sparc.o"
172 host_xmake_file="${host_xmake_file} sparc/x-sparc"
173 ;;
174 esac
175 ;;
176 esac
177
178 # Machine-specific settings.
179 case ${host} in
180 alpha64-dec-*vms*)
181 host_xm_file="vms/xm-vms.h vms/xm-vms64.h"
182 host_xmake_file=vms/x-vms
183 host_exeext=.exe
184 host_can_use_collect2=no
185 prefix=/gnu
186 local_prefix=/gnu/local
187 ;;
188 alpha*-dec-osf*)
189 out_host_hook_obj=host-osf.o
190 host_xmake_file="${host_xmake_file} alpha/x-osf"
191 ;;
192 alpha*-dec-*vms*)
193 host_xm_file="vms/xm-vms.h"
194 host_xmake_file=vms/x-vms
195 host_exeext=.exe
196 host_can_use_collect2=no
197 prefix=/gnu
198 local_prefix=/gnu/local
199 ;;
200 hppa1.0-*-hpux10* | hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
201 out_host_hook_obj=host-hpux.o
202 host_xmake_file="${host_xmake_file} x-hpux"
203 ;;
204 hppa1.0-*-hpux11* | hppa1.1-*-hpux11* | hppa2*-*-hpux11* | \
205 hppa*64*-*-hpux11*)
206 out_host_hook_obj=host-hpux.o
207 host_xmake_file="${host_xmake_file} x-hpux"
208 ;;
209 hppa*-*-linux*)
210 out_host_hook_obj=host-hpux.o
211 host_xmake_file="${host_xmake_file} x-hpux"
212 ;;
213 i370-*-opened* | i370-*-mvs* ) # IBM 360/370/390 Architecture
214 host_xm_defines='FATAL_EXIT_CODE=12'
215 ;;
216 i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*)
217 out_host_hook_obj=host-solaris.o
218 host_xmake_file="${host_xmake_file} x-solaris"
219 ;;
220 i[34567]86-pc-msdosdjgpp*)
221 host_xm_file=i386/xm-djgpp.h
222 host_exeext=.exe
223 # Shorten $target_noncanonical for 8.3 filename conventions.
224 case ${target} in
225 *pc-msdosdjgpp*)
226 target_noncanonical=djgpp
227 ;;
228 esac
229 ;;
230 i[34567]86-*-cygwin*)
231 host_xm_file=i386/xm-cygwin.h
232 out_host_hook_obj=host-cygwin.o
233 host_xmake_file="${host_xmake_file} i386/x-cygwin"
234 host_exeext=.exe
235 host_lto_plugin_soname=cyglto_plugin-0.dll
236 ;;
237 i[34567]86-*-mingw32*)
238 host_xm_file=i386/xm-mingw32.h
239 host_xmake_file="${host_xmake_file} i386/x-mingw32"
240 host_exeext=.exe
241 out_host_hook_obj=host-mingw32.o
242 host_lto_plugin_soname=liblto_plugin-0.dll
243 ;;
244 x86_64-*-mingw*)
245 use_long_long_for_widest_fast_int=yes
246 host_xm_file=i386/xm-mingw32.h
247 host_xmake_file="${host_xmake_file} i386/x-mingw32"
248 host_exeext=.exe
249 out_host_hook_obj=host-mingw32.o
250 host_lto_plugin_soname=liblto_plugin-0.dll
251 ;;
252 i[34567]86-*-uwin*)
253 echo "*** UWIN may not be used as a host platform because"
254 echo "*** linking with posix.dll is not allowed by the GNU GPL."
255 exit 1
256 ;;
257 i[34567]86-*-darwin* | x86_64-*-darwin*)
258 out_host_hook_obj="${out_host_hook_obj} host-i386-darwin.o"
259 host_xmake_file="${host_xmake_file} i386/x-darwin"
260 ;;
261 ia64-hp-*vms*)
262 host_xm_file="vms/xm-vms.h vms/xm-vms64.h"
263 host_xmake_file=vms/x-vms
264 host_exeext=.exe
265 host_can_use_collect2=no
266 prefix=/gnu
267 local_prefix=/gnu/local
268 ;;
269 powerpc-*-beos*)
270 host_can_use_collect2=no
271 ;;
272 powerpc-*-darwin*)
273 out_host_hook_obj="${out_host_hook_obj} host-ppc-darwin.o"
274 host_xmake_file="${host_xmake_file} rs6000/x-darwin"
275 ;;
276 powerpc64-*-darwin*)
277 out_host_hook_obj="${out_host_hook_obj} host-ppc64-darwin.o"
278 host_xmake_file="${host_xmake_file} rs6000/x-darwin64"
279 ;;
280 rs6000-ibm-aix* | powerpc-ibm-aix*)
281 host_xmake_file="${host_xmake_file} rs6000/x-aix"
282 ;;
283 *-*-solaris2*)
284 out_host_hook_obj=host-solaris.o
285 host_xmake_file="${host_xmake_file} x-solaris"
286 ;;
287 *-*-linux*)
288 out_host_hook_obj=host-linux.o
289 host_xmake_file="${host_xmake_file} x-linux"
290 ;;
291 ia64-*-hpux*)
292 use_long_long_for_widest_fast_int=yes
293 out_host_hook_obj=host-hpux.o
294 host_xmake_file="${host_xmake_file} x-hpux"
295 ;;
296 esac