]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config.host
fortran: Assume there is no cyclic reference with submodule symbols [PR99798]
[thirdparty/gcc.git] / gcc / config.host
CommitLineData
a89ea0df 1# GCC host-specific configuration file.
a945c346 2# Copyright (C) 1997-2024 Free Software Foundation, Inc.
a89ea0df
NN
3
4#This file is part of GCC.
5
6#GCC is free software; you can redistribute it and/or modify it under
7#the terms of the GNU General Public License as published by the Free
9dcd6f09 8#Software Foundation; either version 3, or (at your option) any later
a89ea0df
NN
9#version.
10
11#GCC is distributed in the hope that it will be useful, but WITHOUT
12#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14#for more details.
15
16#You should have received a copy of the GNU General Public License
9dcd6f09
NC
17#along with GCC; see the file COPYING3. If not see
18#<http://www.gnu.org/licenses/>.
a89ea0df
NN
19
20# This is the GCC host-specific configuration file
21# where a configuration type is mapped to different system-specific
22# definitions and files. This is invoked by the autoconf-generated
23# configure script. Putting it in a separate shell file lets us skip
24# running autoconf when modifying host-specific information.
25
26# This file switches on the shell variable ${host}. As much of this as
27# is reasonable should be replaced with autoconf tests in the future.
28
29# This file sets the following shell variables for use by the
30# autoconf-generated configure script:
31#
32# host_xm_file List of files to include when compiling for the
33# host machine.
34#
35# host_xm_defines List of macros to define when compiling for the
36# host machine.
37#
38# host_xmake_file List of host-specific makefile-fragments.
39#
40# host_exeext Set to the suffix, if the host machine requires
41# executables to have a file name suffix.
42#
43# host_extra_objs List of extra host-dependent objects that should
44# be linked into the compiler proper.
45#
46# host_extra_gcc_objs List of extra host-dependent objects that should
47# be linked into the gcc driver.
48#
49# out_host_hook_obj An object file that provides the host hooks.
c38f02df
ILT
50#
51# host_can_use_collect2 Set to yes normally; to no if the host cannot
52# link or otherwise use collect2
1cd0b716 53#
99fa8911
AP
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'.
1cd0b716
DK
58#
59# host_lto_plugin_soname Set this to the name to which the LTO linker
60# plugin gets compiled on this host, if it is
61# different from the default "liblto_plugin.so".
a89ea0df
NN
62
63# When setting any of these variables, check to see if a corresponding
64# variable is present in config.build; if so, you will likely want to
65# set it in both places.
66
67# Default settings.
68host_xm_file=
69host_xm_defines=
70host_xmake_file=
71host_exeext=
72host_extra_objs=
73host_extra_gcc_objs=
74out_host_hook_obj=host-default.o
c38f02df 75host_can_use_collect2=yes
99fa8911 76use_long_long_for_widest_fast_int=no
1cd0b716 77host_lto_plugin_soname=liblto_plugin.so
a89ea0df 78
d064c269
NN
79# Unsupported hosts list. Generally, only include hosts known to fail here,
80# since we allow hosts not listed to be supported generically.
a89ea0df 81case ${host} in
d064c269 82 i[34567]86-sequent-sysv \
a89ea0df
NN
83 | i[34567]86-sequent-sysv[123]* \
84 | i[34567]86-go32-* \
85 | i[34567]86-*-go32* \
92b836fa 86 | vax-*-vms*)
a89ea0df
NN
87 echo "*** Configuration for host ${host} not supported" 1>&2
88 exit 1
89 ;;
90esac
91
ed23bd30 92# Common parts for widely ported systems.
eaec4980 93case ${host} in
ed23bd30
GK
94 *-darwin*)
95 # Generic darwin host support.
96 out_host_hook_obj=host-darwin.o
eaec4980 97 host_xmake_file="${host_xmake_file} x-darwin"
ed23bd30
GK
98 ;;
99esac
100
fa959ce4 101case ${host} in
834c8749
IS
102 aarch64*-*-freebsd* | aarch64*-*-linux* | aarch64*-*-fuchsia* |\
103 aarch64*-*-darwin*)
7e1bcce3
KT
104 case ${target} in
105 aarch64*-*-*)
106 host_extra_gcc_objs="driver-aarch64.o"
107 host_xmake_file="${host_xmake_file} aarch64/x-aarch64"
108 ;;
109 esac
110 ;;
b27c1082 111 arm*-*-freebsd* | arm*-*-netbsd* | arm*-*-linux* | arm*-*-fuchsia*)
33aa08b3
AS
112 case ${target} in
113 arm*-*-*)
114 host_extra_gcc_objs="driver-arm.o"
115 host_xmake_file="${host_xmake_file} arm/x-arm"
116 ;;
117 esac
118 ;;
5c30094f 119 alpha*-*-linux*)
d94a427e 120 case ${target} in
5c30094f 121 alpha*-*-linux*)
d94a427e
AL
122 host_extra_gcc_objs="driver-alpha.o"
123 host_xmake_file="${host_xmake_file} alpha/x-alpha"
124 ;;
125 esac
126 ;;
fa959ce4
MM
127 i[34567]86-*-* \
128 | x86_64-*-* )
08bac9d8
BS
129 case ${target} in
130 i[34567]86-*-* \
131 | x86_64-*-* )
3b8aab76
L
132 host_extra_gcc_objs="driver-i386.o"
133 host_xmake_file="${host_xmake_file} i386/x-i386"
08bac9d8
BS
134 ;;
135 esac
fa959ce4 136 ;;
b24513a1 137 mips*-*-linux*)
900e3ae5 138 case ${target} in
b24513a1 139 mips*-*-linux*)
900e3ae5
DJ
140 host_extra_gcc_objs="driver-native.o"
141 host_xmake_file="${host_xmake_file} mips/x-native"
142 ;;
143 esac
144 ;;
0eab6840
DE
145 rs6000-*-* \
146 | powerpc*-*-* )
147 case ${target} in
148 rs6000-*-* \
149 | powerpc*-*-* )
150 host_extra_gcc_objs="driver-rs6000.o"
151 host_xmake_file="${host_xmake_file} rs6000/x-rs6000"
152 ;;
153 esac
acd08fa8 154 case ${host} in
4c93ed23 155 *-*-linux* | *-*-freebsd*)
acd08fa8
JJ
156 if test "${GCC}:${ac_cv_sizeof_long}" = yes:4; then
157 # On powerpc*-*-linux* use -Wl,--relax to link cc1,
158 # if ld is new enough, otherwise force -O1 in CFLAGS.
159 host_ppc_relax_xmake_file=
160 host_ld_ver=`${CC} -Wl,--version 2>/dev/null | sed 1q`
161 if echo "$host_ld_ver" | grep GNU > /dev/null; then
162 host_ld_date=`echo $host_ld_ver \
163 | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'`
164 if test 0"$host_ld_date" -gt 20080806; then
165 host_ppc_relax_xmake_file=rs6000/x-linux-relax
166 fi
167 fi
168 if test -z "${host_ppc_relax_xmake_file}"; then
169 host_ppc_relax_xmake_file=x-cflags-O1
170 fi
171 host_xmake_file="${host_xmake_file} ${host_ppc_relax_xmake_file}"
172 fi
173 ;;
174 esac
0eab6840 175 ;;
cb0edc39 176 s390-*-* | s390x-*-*)
39a8bd7b
DV
177 case ${target} in
178 s390-*-* | s390x-*-*)
179 host_extra_gcc_objs="driver-native.o"
180 host_xmake_file="${host_xmake_file} s390/x-native"
181 ;;
182 esac
cb0edc39 183 ;;
e3b3fa45
RO
184 sparc*-*-solaris2*)
185 case ${target} in
186 sparc*-*-solaris2*)
187 host_extra_gcc_objs="driver-sparc.o"
188 host_xmake_file="${host_xmake_file} sparc/x-sparc"
189 ;;
190 esac
191 ;;
0913b2d6
DM
192 sparc*-*-linux*)
193 case ${target} in
194 sparc*-*-linux*)
195 host_extra_gcc_objs="driver-sparc.o"
196 host_xmake_file="${host_xmake_file} sparc/x-sparc"
197 ;;
198 esac
199 ;;
0eab6840
DE
200esac
201
a89ea0df
NN
202# Machine-specific settings.
203case ${host} in
a89ea0df 204 hppa*64*-*-hpux11*)
9bff16b8 205 out_host_hook_obj=host-hpux.o
00afcaa0 206 host_xmake_file="${host_xmake_file} x-hpux"
c621016b
JDA
207 ;;
208 hppa*-*-linux*)
9bff16b8 209 out_host_hook_obj=host-hpux.o
eaec4980 210 host_xmake_file="${host_xmake_file} x-hpux"
a89ea0df 211 ;;
ccd1242e 212 i[34567]86-*-solaris2* | x86_64-*-solaris2*)
4d0c31e6 213 out_host_hook_obj=host-solaris.o
eaec4980 214 host_xmake_file="${host_xmake_file} x-solaris"
a89ea0df 215 ;;
a89ea0df
NN
216 i[34567]86-pc-msdosdjgpp*)
217 host_xm_file=i386/xm-djgpp.h
218 host_exeext=.exe
caa55b1e 219 # Shorten $target_noncanonical for 8.3 filename conventions.
a89ea0df
NN
220 case ${target} in
221 *pc-msdosdjgpp*)
caa55b1e 222 target_noncanonical=djgpp
a89ea0df
NN
223 ;;
224 esac
225 ;;
b802ae5c 226 i[34567]86-*-cygwin* | x86_64-*-cygwin*)
a89ea0df 227 host_xm_file=i386/xm-cygwin.h
5fa09df4 228 out_host_hook_obj=host-cygwin.o
75c3fb73 229 host_xmake_file="${host_xmake_file} i386/x-cygwin"
a89ea0df 230 host_exeext=.exe
ae6cf628 231 host_lto_plugin_soname=cyglto_plugin.dll
a89ea0df 232 ;;
4f1ebd54 233 i[34567]86-*-mingw32* | x86_64-*-mingw*)
22f34504 234 host_xm_file=i386/xm-mingw32.h
4f1ebd54
CA
235 host_xmake_file="${host_xmake_file} ${host_xmake_mingw} i386/x-mingw32"
236 host_extra_gcc_objs="${host_extra_gcc_objs} ${host_extra_gcc_objs_mingw} driver-mingw32.o"
237 host_extra_objs="${host_extra_objs} ${host_extra_objs_mingw}"
22f34504
KT
238 host_exeext=.exe
239 out_host_hook_obj=host-mingw32.o
ae6cf628 240 host_lto_plugin_soname=liblto_plugin.dll
4f1ebd54
CA
241 case ${host} in
242 x86_64-*-*)
243 use_long_long_for_widest_fast_int=yes
244 ;;
245 esac
a89ea0df 246 ;;
834c8749
IS
247 aarch64*-*-darwin*)
248 out_host_hook_obj="${out_host_hook_obj} host-aarch64-darwin.o"
249 host_xmake_file="${host_xmake_file} aarch64/x-darwin"
250 ;;
9519e677 251 i[34567]86-*-darwin* | x86_64-*-darwin*)
ed23bd30
GK
252 out_host_hook_obj="${out_host_hook_obj} host-i386-darwin.o"
253 host_xmake_file="${host_xmake_file} i386/x-darwin"
254 ;;
a89ea0df 255 powerpc-*-darwin*)
ed23bd30
GK
256 out_host_hook_obj="${out_host_hook_obj} host-ppc-darwin.o"
257 host_xmake_file="${host_xmake_file} rs6000/x-darwin"
a89ea0df 258 ;;
b8ec3cc8
EC
259 powerpc64-*-darwin*)
260 out_host_hook_obj="${out_host_hook_obj} host-ppc64-darwin.o"
261 host_xmake_file="${host_xmake_file} rs6000/x-darwin64"
262 ;;
138b9ed9
DE
263 rs6000-ibm-aix* | powerpc-ibm-aix*)
264 host_xmake_file="${host_xmake_file} rs6000/x-aix"
265 ;;
4d0c31e6
RH
266 *-*-solaris2*)
267 out_host_hook_obj=host-solaris.o
eaec4980 268 host_xmake_file="${host_xmake_file} x-solaris"
4d0c31e6
RH
269 ;;
270 *-*-linux*)
271 out_host_hook_obj=host-linux.o
fa959ce4 272 host_xmake_file="${host_xmake_file} x-linux"
4d0c31e6 273 ;;
613061fd
MK
274 *-*-openbsd*)
275 out_host_hook_obj=host-openbsd.o
276 host_xmake_file="${host_xmake_file} x-openbsd"
277 ;;
3cf50fcd
MR
278 *-*-netbsd*)
279 out_host_hook_obj=host-netbsd.o
280 host_xmake_file="${host_xmake_file} x-netbsd"
281 ;;
99fa8911
AP
282 ia64-*-hpux*)
283 use_long_long_for_widest_fast_int=yes
9bff16b8 284 out_host_hook_obj=host-hpux.o
eaec4980 285 host_xmake_file="${host_xmake_file} x-hpux"
99fa8911 286 ;;
305576a5
TG
287 *-*-*vms*)
288 host_xm_file="vms/xm-vms.h"
289 host_xmake_file=vms/x-vms
290 host_exeext=.exe
291 host_can_use_collect2=no
292 ;;
a89ea0df 293esac