]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/configure.ac
aarch64: Fine-grained policies to control ldp-stp formation
[thirdparty/gcc.git] / gcc / configure.ac
CommitLineData
ca9bc441 1# configure.ac for GCC
46f18e7b
RK
2# Process this file with autoconf to generate a configuration script.
3
aeee4812 4# Copyright (C) 1997-2023 Free Software Foundation, Inc.
46f18e7b 5
1322177d 6#This file is part of GCC.
46f18e7b 7
1322177d
LB
8#GCC is free software; you can redistribute it and/or modify it under
9#the terms of the GNU General Public License as published by the Free
9dcd6f09 10#Software Foundation; either version 3, or (at your option) any later
1322177d 11#version.
46f18e7b 12
1322177d
LB
13#GCC is distributed in the hope that it will be useful, but WITHOUT
14#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16#for more details.
46f18e7b
RK
17
18#You should have received a copy of the GNU General Public License
9dcd6f09
NC
19#along with GCC; see the file COPYING3. If not see
20#<http://www.gnu.org/licenses/>.
46f18e7b 21
34a86c2b
NN
22# --------------------------------
23# Initialization and sanity checks
24# --------------------------------
25
914c5af7 26AC_INIT
e53b6e56 27AC_CONFIG_SRCDIR(tree.cc)
25861cf3 28AC_CONFIG_MACRO_DIRS([../config] [..])
b7cb92ad 29AC_CONFIG_HEADER(auto-host.h:config.in)
cdcc6a01 30
9f18db39
PB
31gcc_version=`cat $srcdir/BASE-VER`
32
34a86c2b 33# Determine the host, build, and target systems
914c5af7
NN
34AC_CANONICAL_BUILD
35AC_CANONICAL_HOST
36AC_CANONICAL_TARGET
34a86c2b 37
47e62307
EB
38# Determine the noncanonical host name, for Ada.
39ACX_NONCANONICAL_HOST
40
caa55b1e 41# Determine the noncanonical target name, for directory use.
392765bf 42ACX_NONCANONICAL_TARGET
caa55b1e 43
85c64bbe
BS
44# Used for constructing correct paths for offload compilers.
45real_target_noncanonical=${target_noncanonical}
46accel_dir_suffix=
47
4665e56c
NN
48# Determine the target- and build-specific subdirectories
49GCC_TOPLEV_SUBDIRS
50
34a86c2b
NN
51# Set program_transform_name
52AC_ARG_PROGRAM
46f18e7b 53
75a39864
JL
54# Check for bogus environment variables.
55# Test if LIBRARY_PATH contains the notation for the current directory
56# since this would lead to problems installing/building glibc.
57# LIBRARY_PATH contains the current directory if one of the following
58# is true:
59# - one of the terminals (":" and ";") is the first or last sign
60# - two terminals occur directly after each other
61# - the path contains an element with a dot in it
62AC_MSG_CHECKING(LIBRARY_PATH variable)
63changequote(,)dnl
64case ${LIBRARY_PATH} in
65 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
66 library_path_setting="contains current directory"
67 ;;
68 *)
69 library_path_setting="ok"
70 ;;
71esac
72changequote([,])dnl
73AC_MSG_RESULT($library_path_setting)
74if test "$library_path_setting" != "ok"; then
75AC_MSG_ERROR([
76*** LIBRARY_PATH shouldn't contain the current directory when
079bd08e 77*** building gcc. Please change the environment variable
75a39864
JL
78*** and run configure again.])
79fi
80
81# Test if GCC_EXEC_PREFIX contains the notation for the current directory
82# since this would lead to problems installing/building glibc.
83# GCC_EXEC_PREFIX contains the current directory if one of the following
84# is true:
85# - one of the terminals (":" and ";") is the first or last sign
86# - two terminals occur directly after each other
87# - the path contains an element with a dot in it
88AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
89changequote(,)dnl
90case ${GCC_EXEC_PREFIX} in
91 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
92 gcc_exec_prefix_setting="contains current directory"
93 ;;
94 *)
95 gcc_exec_prefix_setting="ok"
96 ;;
97esac
98changequote([,])dnl
99AC_MSG_RESULT($gcc_exec_prefix_setting)
100if test "$gcc_exec_prefix_setting" != "ok"; then
101AC_MSG_ERROR([
102*** GCC_EXEC_PREFIX shouldn't contain the current directory when
079bd08e 103*** building gcc. Please change the environment variable
75a39864
JL
104*** and run configure again.])
105fi
106
34a86c2b
NN
107# -----------
108# Directories
109# -----------
110
111# Specify the local prefix
112local_prefix=
113AC_ARG_WITH(local-prefix,
b88ecf55
AS
114[AS_HELP_STRING([--with-local-prefix=DIR],
115 [specifies directory to put local include])],
34a86c2b
NN
116[case "${withval}" in
117yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
118no) ;;
119*) local_prefix=$with_local_prefix ;;
120esac])
121
122# Default local prefix if it is empty
123if test x$local_prefix = x; then
124 local_prefix=/usr/local
125fi
126
54b710be
YR
127AC_ARG_WITH([native-system-header-dir],
128 [ --with-native-system-header-dir=dir
129 use dir as the directory to look for standard
130 system header files in. Defaults to /usr/include.],
131[
132 case ${with_native_system_header_dir} in
133 yes|no) AC_MSG_ERROR([bad value ${withval} given for --with-native-system-header-dir]) ;;
134 /* | [[A-Za-z]]:[[\\/]]*) ;;
135 *) AC_MSG_ERROR([--with-native-system-header-dir argument ${withval} must be an absolute directory]) ;;
136 esac
137 configured_native_system_header_dir="${withval}"
138], [configured_native_system_header_dir=])
139
140AC_ARG_WITH(build-sysroot,
141 [AS_HELP_STRING([--with-build-sysroot=sysroot],
142 [use sysroot as the system root during the build])],
143 [if test x"$withval" != x ; then
144 SYSROOT_CFLAGS_FOR_TARGET="--sysroot=$withval"
145 fi],
146 [SYSROOT_CFLAGS_FOR_TARGET=])
147AC_SUBST(SYSROOT_CFLAGS_FOR_TARGET)
148
149if test "x$prefix" = xNONE; then
150 test_prefix=/usr/local
151else
152 test_prefix=$prefix
153fi
154if test "x$exec_prefix" = xNONE; then
155 test_exec_prefix=$test_prefix
156else
157 test_exec_prefix=$exec_prefix
158fi
159
160AC_ARG_WITH(sysroot,
161[AS_HELP_STRING([[--with-sysroot[=DIR]]],
162 [search for usr/lib, usr/include, et al, within DIR])],
163[
164 case ${with_sysroot} in
165 /) ;;
166 */) with_sysroot=`echo $with_sysroot | sed 's,/$,,'` ;;
167 esac
168 case ${with_sysroot} in
169 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_noncanonical}/sys-root' ;;
170 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
171 esac
172
173 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
174 CROSS_SYSTEM_HEADER_DIR='$(TARGET_SYSTEM_ROOT)$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
175
176 case ${TARGET_SYSTEM_ROOT} in
177 "${test_prefix}"|"${test_prefix}/"*|\
178 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
179 '${prefix}'|'${prefix}/'*|\
180 '${exec_prefix}'|'${exec_prefix}/'*)
181 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
182 TARGET_SYSTEM_ROOT_DEFINE="$t"
183 ;;
184 esac
185], [
186 TARGET_SYSTEM_ROOT=
187 TARGET_SYSTEM_ROOT_DEFINE=
188 CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include'
189])
190AC_SUBST(TARGET_SYSTEM_ROOT)
191AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
192AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
193
34a86c2b
NN
194# Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
195# passed in by the toplevel make and thus we'd get different behavior
196# depending on where we built the sources.
197gcc_gxx_include_dir=
198# Specify the g++ header file directory
199AC_ARG_WITH(gxx-include-dir,
b88ecf55
AS
200[AS_HELP_STRING([--with-gxx-include-dir=DIR],
201 [specifies directory to put g++ header files])],
34a86c2b
NN
202[case "${withval}" in
203yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
204no) ;;
205*) gcc_gxx_include_dir=$with_gxx_include_dir ;;
206esac])
207
b4d3485e
EB
208# If both --with-sysroot and --with-gxx-include-dir are passed, we interpolate
209# the former in the latter and, upon success, compute gcc_gxx_include_dir as
210# relative to the sysroot.
211gcc_gxx_include_dir_add_sysroot=0
212
0f57bf40 213# This logic must match libstdc++-v3/acinclude.m4:GLIBCXX_EXPORT_INSTALL_INFO.
34a86c2b
NN
214if test x${gcc_gxx_include_dir} = x; then
215 if test x${enable_version_specific_runtime_libs} = xyes; then
216 gcc_gxx_include_dir='${libsubdir}/include/c++'
217 else
0f57bf40
MM
218 libstdcxx_incdir='include/c++/$(version)'
219 if test x$host != x$target; then
220 libstdcxx_incdir="$target_alias/$libstdcxx_incdir"
221 fi
15c723f3 222 gcc_gxx_include_dir="\$(libsubdir)/\$(libsubdir_to_prefix)$libstdcxx_incdir"
34a86c2b 223 fi
b4d3485e 224elif test "${with_sysroot+set}" = set; then
17719d09
HS
225 gcc_gxx_without_sysroot=`expr "${gcc_gxx_include_dir}" : "${with_sysroot}"'\(.*\)'`
226 if test "${gcc_gxx_without_sysroot}"; then
b4d3485e 227 gcc_gxx_include_dir="${gcc_gxx_without_sysroot}"
17719d09
HS
228 gcc_gxx_include_dir_add_sysroot=1
229 fi
230fi
231
662b9c55
IS
232# Configuration for an alternate set of C++ headers.
233gcc_gxx_libcxx_include_dir=
234# Specify the alternate g++ header file directory
235AC_ARG_WITH(gxx-libcxx-include-dir,
236[AS_HELP_STRING([--with-gxx-libcxx-include-dir=DIR],
237 [specifies directory to find libc++ header files])],
238[case "${withval}" in
239yes) AC_MSG_ERROR(bad value ${withval} given for libc++ include directory) ;;
662b9c55
IS
240*) gcc_gxx_libcxx_include_dir=$with_gxx_libcxx_include_dir ;;
241esac])
242
ce7a757f
IS
243# --with-gxx-libcxx-include-dir controls the enabling of the -stdlib option.
244# if --with-gxx-libcxx-include-dir is 'no' we disable the stdlib option.
245# if --with-gxx-libcxx-include-dir is unset we enable the stdlib option
246# based on the platform (to be available on platform versions where it is the
247# default for the system tools). We also use a default path within the compiler
248# install tree.
249# Otherwise, we use the path provided and enable the stdlib option.
662b9c55
IS
250# If both --with-sysroot and --with-gxx-libcxx-include-dir are passed, we
251# check to see if the latter starts with the former and, upon success, compute
252# gcc_gxx_libcxx_include_dir as relative to the sysroot.
253gcc_gxx_libcxx_include_dir_add_sysroot=0
ce7a757f 254gcc_enable_stdlib_opt=0
662b9c55 255if test x${gcc_gxx_libcxx_include_dir} != x; then
ce7a757f
IS
256 if test x${gcc_gxx_libcxx_include_dir} = xno; then
257 # set defaults for the dir, but the option is disabled anyway.
258 gcc_gxx_libcxx_include_dir=
259 else
260 gcc_enable_stdlib_opt=1
261 fi
662b9c55 262else
ce7a757f
IS
263 case $target in
264 *-darwin1[[1-9]]* | *-darwin2*)
265 # Default this on for Darwin versions which default to libcxx,
266 # and embed the path in the compiler install so that we get a
267 # self-contained toolchain.
268 gcc_enable_stdlib_opt=1
269 ;;
270 *) ;;
271 esac
662b9c55 272fi
ce7a757f
IS
273AC_DEFINE_UNQUOTED(ENABLE_STDLIB_OPTION, $gcc_enable_stdlib_opt,
274 [Define if the -stdlib= option should be enabled.])
275
276# Sysroot behaviour as for gxx-include-dir
662b9c55 277if test x${gcc_gxx_libcxx_include_dir} = x; then
ce7a757f
IS
278 # default path,embedded in the compiler tree.
279 libcxx_incdir='include/c++/v1'
662b9c55 280 if test x${enable_version_specific_runtime_libs} = xyes; then
ce7a757f 281 gcc_gxx_libcxx_include_dir='${libsubdir}/$libcxx_incdir'
662b9c55 282 else
662b9c55
IS
283 if test x$host != x$target; then
284 libcxx_incdir="$target_alias/$libcxx_incdir"
285 fi
286 gcc_gxx_libcxx_include_dir="\$(libsubdir)/\$(libsubdir_to_prefix)$libcxx_incdir"
287 fi
288elif test "${with_sysroot+set}" = set; then
289 gcc_gxx_libcxx_without_sysroot=`expr "${gcc_gxx_libcxx_include_dir}" : "${with_sysroot}"'\(.*\)'`
290 if test "${gcc_gxx_libcxx_without_sysroot}"; then
291 gcc_gxx_libcxx_include_dir="${gcc_gxx_libcxx_without_sysroot}"
292 gcc_gxx_libcxx_include_dir_add_sysroot=1
293 fi
294fi
295
34a86c2b 296AC_ARG_WITH(cpp_install_dir,
b88ecf55
AS
297[AC_HELP_STRING([--with-cpp-install-dir=DIR],
298 [install the user visible C preprocessor in DIR
299 (relative to PREFIX) as well as PREFIX/bin])],
34a86c2b
NN
300[if test x$withval = xyes; then
301 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
302elif test x$withval != xno; then
303 cpp_install_dir=$withval
304fi])
305
51b9ff45
KC
306# We would like to our source tree to be readonly. However when releases or
307# pre-releases are generated, the flex/bison generated files as well as the
308# various formats of manuals need to be included along with the rest of the
309# sources. Therefore we have --enable-generated-files-in-srcdir to do
310# just that.
311
03787dfd
KC
312AC_MSG_CHECKING([whether to place generated files in the source directory])
313 dnl generated-files-in-srcdir is disabled by default
314 AC_ARG_ENABLE(generated-files-in-srcdir,
b88ecf55
AS
315 [AS_HELP_STRING([--enable-generated-files-in-srcdir],
316 [put copies of generated files in source dir
317 intended for creating source tarballs for users
318 without texinfo bison or flex])],
03787dfd
KC
319 generated_files_in_srcdir=$enableval,
320 generated_files_in_srcdir=no)
321
322AC_MSG_RESULT($generated_files_in_srcdir)
323
324if test "$generated_files_in_srcdir" = "yes"; then
325 GENINSRC=''
03787dfd
KC
326else
327 GENINSRC='#'
03787dfd
KC
328fi
329AC_SUBST(GENINSRC)
51b9ff45 330
34a86c2b
NN
331# -------------------
332# Find default linker
333# -------------------
46f18e7b
RK
334
335# With GNU ld
336AC_ARG_WITH(gnu-ld,
b88ecf55 337[AS_HELP_STRING([--with-gnu-ld], [arrange to work with GNU ld])],
df6faf79
JW
338gnu_ld_flag="$with_gnu_ld",
339gnu_ld_flag=no)
46f18e7b 340
eb89c82f 341case $target in
3b5e8ee4
IS
342 *darwin*)
343 ld64_flag=yes # Darwin can only use a ld64-compatible linker.
344 dsymutil_flag=yes # Darwin uses dsymutil to link debug.
345 ;;
346 *)
347 ld64_flag=no
348 dsymutil_flag=no
349 ;;
eb89c82f
IS
350esac
351
ab339d62
AO
352# With pre-defined ld
353AC_ARG_WITH(ld,
b88ecf55 354[AS_HELP_STRING([--with-ld], [arrange to use the specified ld (full pathname)])],
3ccc3a56
AO
355DEFAULT_LINKER="$with_ld")
356if test x"${DEFAULT_LINKER+set}" = x"set"; then
357 if test ! -x "$DEFAULT_LINKER"; then
99c012a8 358 AC_MSG_ERROR([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
e154a394 359 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62 360 gnu_ld_flag=yes
eb89c82f
IS
361 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep ld64- > /dev/null; then
362 ld64_flag=yes
ab339d62 363 fi
119d24d1
KG
364 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
365 [Define to enable the use of a default linker.])
ab339d62
AO
366fi
367
34a86c2b
NN
368AC_MSG_CHECKING([whether a default linker was specified])
369if test x"${DEFAULT_LINKER+set}" = x"set"; then
370 if test x"$gnu_ld_flag" = x"no"; then
371 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
372 else
373 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
374 fi
375else
376 AC_MSG_RESULT(no)
377fi
378
d594623a
L
379# With demangler in GNU ld
380AC_ARG_WITH(demangler-in-ld,
b88ecf55 381[AS_HELP_STRING([--with-demangler-in-ld], [try to use demangler in GNU ld])],
d594623a 382demangler_in_ld="$with_demangler_in_ld",
df45fc34 383demangler_in_ld=yes)
d594623a 384
3b5e8ee4
IS
385# Allow the user to specify a dsymutil executable (used on Darwin only, so far)
386AC_ARG_WITH(dsymutil,
387[AS_HELP_STRING([--with-dsymutil], [arrange to use the specified dsymutil (full pathname)])],
388DEFAULT_DSYMUTIL="$with_dsymutil")
389
390dsymutil_vers=
391if test x"${DEFAULT_DSYMUTIL+set}" = x"set"; then
392 if test ! -x "$DEFAULT_DSYMUTIL"; then
393 AC_MSG_ERROR([cannot execute: $DEFAULT_DSYMUTIL: check --with-dsymutil or env. var. DEFAULT_DSYMUTIL])
394 else
395 if dsymutil_vers=`$DEFAULT_DSYMUTIL -v /dev/null 2>&1`; then
396 dsymutil_flag=yes
397 fi
398 fi
399 AC_DEFINE_UNQUOTED(DEFAULT_DSYMUTIL,"$DEFAULT_DSYMUTIL",
400 [Define to enable the use of a default debug linker.])
401fi
402
403AC_MSG_CHECKING([whether a default dsymutil was specified])
404if test x"${DEFAULT_DSYMUTIL+set}" = x"set"; then
405 AC_MSG_RESULT([yes ($DEFAULT_DSYMUTIL)])
406else
407 AC_MSG_RESULT(no)
408fi
409
34a86c2b
NN
410# ----------------------
411# Find default assembler
412# ----------------------
413
46f18e7b
RK
414# With GNU as
415AC_ARG_WITH(gnu-as,
b88ecf55 416[AS_HELP_STRING([--with-gnu-as], [arrange to work with GNU as])],
df6faf79
JW
417gas_flag="$with_gnu_as",
418gas_flag=no)
46f18e7b 419
ab339d62 420AC_ARG_WITH(as,
b88ecf55 421[AS_HELP_STRING([--with-as], [arrange to use the specified as (full pathname)])],
3ccc3a56
AO
422DEFAULT_ASSEMBLER="$with_as")
423if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
424 if test ! -x "$DEFAULT_ASSEMBLER"; then
99c012a8 425 AC_MSG_ERROR([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
e154a394 426 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
427 gas_flag=yes
428 fi
119d24d1
KG
429 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
430 [Define to enable the use of a default assembler.])
3ccc3a56 431fi
ab339d62 432
34a86c2b
NN
433AC_MSG_CHECKING([whether a default assembler was specified])
434if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
435 if test x"$gas_flag" = x"no"; then
436 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
4e88d51b 437 else
34a86c2b 438 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
4e88d51b 439 fi
34a86c2b
NN
440else
441 AC_MSG_RESULT(no)
4e88d51b 442fi
46f18e7b 443
34a86c2b
NN
444# ---------------
445# Find C compiler
446# ---------------
13c22933 447
426ca3ca
RO
448# If a non-executable a.out is present (e.g. created by GNU as above even if
449# invoked with -v only), the IRIX 6 native ld just overwrites the existing
450# file, even when creating an executable, so an execution test fails.
451# Remove possible default executable files to avoid this.
452#
453# FIXME: This really belongs into AC_PROG_CC and can be removed once
454# Autoconf includes it.
455rm -f a.out a.exe b.out
456
414d23ae
HPN
457# Find the native compiler
458AC_PROG_CC
00020c16 459AC_PROG_CXX
e8679fd5 460ACX_PROG_GNAT([-I"$srcdir"/ada/libgnat])
5fee5ec3 461ACX_PROG_GDC([-I"$srcdir"/d])
3d4e720a 462
13ccfea8
JM
463# Do configure tests with the C++ compiler, since that's what we build with.
464AC_LANG(C++)
465
ec6c7392
PB
466# Remove the -O2: for historical reasons, unless bootstrapping we prefer
467# optimizations to be activated explicitly by the toplevel.
468case "$CC" in
469 */prev-gcc/xgcc*) ;;
dadbefd3
JJ
470 *) CFLAGS=`echo "$CFLAGS " | sed -e "s/-Ofast[[ ]]//" -e "s/-O[[gs]][[ ]]//" -e "s/-O[[0-9]]*[[ ]]//" `
471 CXXFLAGS=`echo "$CXXFLAGS " | sed -e "s/-Ofast[[ ]]//" -e "s/-O[[gs]][[ ]]//" -e "s/-O[[0-9]]*[[ ]]//" ` ;;
ec6c7392
PB
472esac
473AC_SUBST(CFLAGS)
8bf4ee34 474AC_SUBST(CXXFLAGS)
5fee5ec3 475AC_SUBST(GDCFLAGS)
ec6c7392 476
e3aa9eba
RO
477# Determine PICFLAG for target gnatlib.
478GCC_PICFLAG_FOR_TARGET
479AC_SUBST(PICFLAG_FOR_TARGET)
480
73458fb7
NN
481# -------------------------
482# Check C compiler features
483# -------------------------
484
60d26958 485AC_USE_SYSTEM_EXTENSIONS
5329b59a 486
34a86c2b
NN
487AC_PROG_CPP
488AC_C_INLINE
34a86c2b 489
480767a9 490AC_SYS_LARGEFILE
14e0d832
CC
491AC_CHECK_SIZEOF(ino_t)
492AC_CHECK_SIZEOF(dev_t)
493
494# Select the right stat being able to handle 64bit inodes, if needed.
495if test "$enable_largefile" != no; then
496 case "$host, $build" in
497 *-*-aix*,*|*,*-*-aix*)
95b93adc 498 if test "$ac_cv_sizeof_ino_t" = "4" -a "$ac_cv_sizeof_dev_t" = 4; then
14e0d832
CC
499 AC_DEFINE(HOST_STAT_FOR_64BIT_INODES, stat64x,
500 [Define which stat syscall is able to handle 64bit indodes.])
501 fi;;
502 esac
503fi
504
480767a9 505
34a86c2b 506# sizeof(char) is 1 by definition.
bf3b7cd3
JD
507AC_CHECK_SIZEOF(void *)
508AC_CHECK_SIZEOF(short)
509AC_CHECK_SIZEOF(int)
510AC_CHECK_SIZEOF(long)
5ec1c5e6 511AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
7c2a2dbf 512GCC_STDINT_TYPES
edf6ddf6
RB
513if test x"$ac_cv_c_uint64_t" = x"no" -o x"$ac_cv_c_int64_t" = x"no"; then
514 AC_MSG_ERROR([uint64_t or int64_t not found])
515fi
34a86c2b 516
35987ae9 517# check what underlying integer type int64_t uses
35987ae9
RB
518AC_CACHE_CHECK(for int64_t underlying type, ac_cv_int64_t_type, [
519AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
520#ifdef HAVE_STDINT_H
521#include <stdint.h>
522#endif
523template <typename T> struct X { };
524template <>
525struct X<long> { typedef long t; };
526]], [[X<int64_t>::t x;]])],[ac_cv_int64_t_type=long],[ac_cv_int64_t_type="long long"])])
527if test "$ac_cv_int64_t_type" = "long"; then
528 AC_DEFINE(INT64_T_IS_LONG, 1,
529 [Define if int64_t uses long as underlying type.])
530else
531AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
532#ifdef HAVE_STDINT_H
533#include <stdint.h>
534#endif
535template <typename T> struct X { };
536template <>
537struct X<long long> { typedef long long t; };
538]], [[X<int64_t>::t x;]])],[],[AC_MSG_ERROR([error verifying int64_t uses long long])])
539fi
35987ae9 540
3dde4d65
MM
541AC_CACHE_CHECK(for std::swap in <utility>, ac_cv_std_swap_in_utility, [
542AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
543#include <utility>
544]], [[int a, b; std::swap(a,b);]])],[ac_cv_std_swap_in_utility=yes],[ac_cv_std_swap_in_utility=no])])
545if test $ac_cv_std_swap_in_utility = yes; then
546 AC_DEFINE(HAVE_SWAP_IN_UTILITY, 1,
547 [Define if <utility> defines std::swap.])
548fi
549
4c0cca18
UW
550# Check whether compiler is affected by placement new aliasing bug (PR 29286).
551# If the host compiler is affected by the bug, and we build with optimization
552# enabled (which happens e.g. when cross-compiling), the pool allocator may
553# get miscompiled. Use -fno-strict-aliasing to work around this problem.
554# Since there is no reliable feature check for the presence of this bug,
555# we simply use a GCC version number check. (This should never trigger for
556# stages 2 or 3 of a native bootstrap.)
557aliasing_flags=
558if test "$GCC" = yes; then
559 saved_CXXFLAGS="$CXXFLAGS"
560
561 # The following test compilation will succeed if and only if $CXX accepts
562 # -fno-strict-aliasing *and* is older than GCC 4.3.
563 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
564 AC_MSG_CHECKING([whether $CXX is affected by placement new aliasing bug])
22e05272 565 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
4c0cca18
UW
566#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
567#error compiler not affected by placement new aliasing bug
568#endif
22e05272 569])],
4c0cca18
UW
570 [AC_MSG_RESULT([yes]); aliasing_flags='-fno-strict-aliasing'],
571 [AC_MSG_RESULT([no])])
572
573 CXXFLAGS="$saved_CXXFLAGS"
574fi
575AC_SUBST(aliasing_flags)
35987ae9
RB
576
577
578
34a86c2b
NN
579# ---------------------
580# Warnings and checking
581# ---------------------
582
b5472e1d
NN
583# Check $CC warning features (if it's GCC).
584# We want to use -pedantic, but we don't want warnings about
585# * 'long long'
586# * variadic macros
89a42ac8 587# * overlong strings
25339f10 588# * C++11 narrowing conversions in { }
b5472e1d
NN
589# So, we only use -pedantic if we can disable those warnings.
590
1652c6da
JM
591# In stage 1, disable -Wformat warnings from old GCCs about new % codes
592AC_ARG_ENABLE(build-format-warnings,
593 AS_HELP_STRING([--disable-build-format-warnings],[don't use -Wformat while building GCC]),
594 [],[enable_build_format_warnings=yes])
595AS_IF([test $enable_build_format_warnings = no],
596 [wf_opt=-Wno-format],[wf_opt=])
ff771de3 597ACX_PROG_CXX_WARNING_OPTS(
9bf40084 598 m4_quote(m4_do([-W -Wall -Wno-narrowing -Wwrite-strings ],
34ba4275 599 [-Wcast-qual $wf_opt])),
0ecf545c 600 [loose_warn])
f6e377f8 601ACX_PROG_CC_WARNING_OPTS(
0ecf545c 602 m4_quote(m4_do([-Wstrict-prototypes -Wmissing-prototypes ],
34ba4275 603 [])), [c_loose_warn])
ff771de3 604ACX_PROG_CXX_WARNING_OPTS(
263c22a9 605 m4_quote(m4_do([-Wmissing-format-attribute ], [-Wconditionally-supported ],
ec9d5ad1 606 [-Woverloaded-virtual])), [strict_warn])
00020c16
ILT
607ACX_PROG_CC_WARNING_OPTS(
608 m4_quote(m4_do([-Wold-style-definition -Wc++-compat])), [c_strict_warn])
ff771de3 609ACX_PROG_CXX_WARNING_ALMOST_PEDANTIC(
75c9cbe3
AS
610 m4_quote(m4_do([-Wno-long-long -Wno-variadic-macros ],
611 [-Wno-overlength-strings])), [strict_warn])
ff771de3 612ACX_PROG_CXX_WARNINGS_ARE_ERRORS([manual], [strict_warn])
3bbd5a19
PB
613
614# The above macros do nothing if the compiler is not GCC. However, the
00020c16
ILT
615# Makefile has more goo to add other flags, so these variables are used
616# to enable warnings only for GCC.
414d23ae 617warn_cflags=
00020c16 618warn_cxxflags=
414d23ae
HPN
619if test "x$GCC" = "xyes"; then
620 warn_cflags='$(GCC_WARN_CFLAGS)'
00020c16 621 warn_cxxflags='$(GCC_WARN_CXXFLAGS)'
414d23ae
HPN
622fi
623AC_SUBST(warn_cflags)
00020c16 624AC_SUBST(warn_cxxflags)
414d23ae 625
e9411247
MM
626# Disable exceptions and RTTI if building with g++
627ACX_PROG_CC_WARNING_OPTS(
3d47a53a
UB
628 m4_quote(m4_do([-fno-exceptions -fno-rtti -fasynchronous-unwind-tables])),
629 [noexception_flags])
e9411247 630
8b1f719a 631# Enable expensive internal checks
a1286ef5
ZW
632is_release=
633if test x"`cat $srcdir/DEV-PHASE`" != xexperimental; then
634 is_release=yes
635fi
dd859b8a 636
a494747c 637AC_ARG_ENABLE(checking,
b88ecf55
AS
638[AS_HELP_STRING([[--enable-checking[=LIST]]],
639 [enable expensive run-time checks. With LIST,
640 enable only specific categories of checks.
641 Categories are: yes,no,all,none,release.
7db11a5a 642 Flags are: assert,df,extra,fold,gc,gcac,gimple,misc,
b88ecf55 643 rtlflag,rtl,runtime,tree,valgrind,types])],
e1bbfc5c
NS
644[ac_checking_flags="${enableval}"],[
645# Determine the default checks.
646if test x$is_release = x ; then
7db11a5a 647 ac_checking_flags=yes,extra
e1bbfc5c
NS
648else
649 ac_checking_flags=release
650fi])
e1bbfc5c 651IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
04c3028a 652for check in release $ac_checking_flags
e1bbfc5c
NS
653do
654 case $check in
cdce5c16 655 # these set all the flags to specific states
0d475361 656 yes) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking= ;
7db11a5a 657 ac_fold_checking= ; ac_gc_checking=1 ; ac_extra_checking= ;
726a989a 658 ac_gc_always_collect= ; ac_gimple_checking=1 ; ac_rtl_checking= ;
232b67d9 659 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
7e98624c 660 ac_tree_checking=1 ; ac_valgrind_checking= ;
1b24a790 661 ac_types_checking=1 ;;
3089f8b5 662 no|none) ac_assert_checking= ; ac_checking= ; ac_df_checking= ;
7db11a5a 663 ac_fold_checking= ; ac_gc_checking= ; ac_extra_checking= ;
726a989a 664 ac_gc_always_collect= ; ac_gimple_checking= ; ac_rtl_checking= ;
232b67d9 665 ac_rtlflag_checking= ; ac_runtime_checking= ;
7e98624c
RG
666 ac_tree_checking= ; ac_valgrind_checking= ;
667 ac_types_checking= ;;
3089f8b5 668 all) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
7db11a5a 669 ac_fold_checking=1 ; ac_gc_checking=1 ; ac_extra_checking=1 ;
726a989a 670 ac_gc_always_collect=1 ; ac_gimple_checking=1 ; ac_rtl_checking=1 ;
cdce5c16 671 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
7e98624c
RG
672 ac_tree_checking=1 ; ac_valgrind_checking= ;
673 ac_types_checking=1 ;;
3089f8b5 674 release) ac_assert_checking=1 ; ac_checking= ; ac_df_checking= ;
7db11a5a 675 ac_fold_checking= ; ac_gc_checking= ; ac_extra_checking= ;
726a989a 676 ac_gc_always_collect= ; ac_gimple_checking= ; ac_rtl_checking= ;
cdce5c16 677 ac_rtlflag_checking= ; ac_runtime_checking=1 ;
7e98624c
RG
678 ac_tree_checking= ; ac_valgrind_checking= ;
679 ac_types_checking= ;;
cdce5c16 680 # these enable particular checks
e1bbfc5c 681 assert) ac_assert_checking=1 ;;
7db11a5a
JJ
682 df) ac_df_checking=1 ;;
683 extra) ac_extra_checking=1 ;;
e1bbfc5c
NS
684 fold) ac_fold_checking=1 ;;
685 gc) ac_gc_checking=1 ;;
686 gcac) ac_gc_always_collect=1 ;;
726a989a 687 gimple) ac_gimple_checking=1 ;;
e1bbfc5c 688 misc) ac_checking=1 ;;
e1bbfc5c 689 rtl) ac_rtl_checking=1 ;;
cdce5c16 690 rtlflag) ac_rtlflag_checking=1 ;;
b53ef395 691 runtime) ac_runtime_checking=1 ;;
e1bbfc5c 692 tree) ac_tree_checking=1 ;;
7e98624c 693 types) ac_types_checking=1 ;;
cdce5c16 694 valgrind) ac_valgrind_checking=1 ;;
e1bbfc5c
NS
695 *) AC_MSG_ERROR(unknown check category $check) ;;
696 esac
697done
698IFS="$ac_save_IFS"
699
204250d2 700nocommon_flag=""
119d24d1 701if test x$ac_checking != x ; then
b06f87c7
BE
702 AC_DEFINE(CHECKING_P, 1,
703[Define to 0/1 if you want more run-time sanity checks. This one gets a grab
704bag of miscellaneous but relatively cheap checks.])
204250d2 705 nocommon_flag=-fno-common
7ec491c0
MM
706else
707 AC_DEFINE(CHECKING_P, 0)
119d24d1 708fi
204250d2 709AC_SUBST(nocommon_flag)
b06f87c7
BE
710if test x$ac_extra_checking != x ; then
711 AC_DEFINE(ENABLE_EXTRA_CHECKING, 1,
712[Define to 0/1 if you want extra run-time checking that might affect code
713generation.])
714else
715 AC_DEFINE(ENABLE_EXTRA_CHECKING, 0)
716fi
3089f8b5
PB
717if test x$ac_df_checking != x ; then
718 AC_DEFINE(ENABLE_DF_CHECKING, 1,
719[Define if you want more run-time sanity checks for dataflow.])
720fi
06c37c96
NS
721if test x$ac_assert_checking != x ; then
722 AC_DEFINE(ENABLE_ASSERT_CHECKING, 1,
723[Define if you want assertions enabled. This is a cheap check.])
724fi
726a989a
RB
725if test x$ac_gimple_checking != x ; then
726 AC_DEFINE(ENABLE_GIMPLE_CHECKING, 1,
727[Define if you want operations on GIMPLE (the basic data structure of
728the high-level optimizers) to be checked for dynamic type safety at
729runtime. This is moderately expensive.])
730fi
232b67d9 731GCC_TARGET_TEMPLATE(ENABLE_RUNTIME_CHECKING)
b53ef395
NS
732if test x$ac_runtime_checking != x ; then
733 AC_DEFINE(ENABLE_RUNTIME_CHECKING, 1,
734[Define if you want runtime assertions enabled. This is a cheap check.])
735fi
119d24d1
KG
736if test x$ac_tree_checking != x ; then
737 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
738[Define if you want all operations on trees (the basic data
739 structure of the front ends) to be checked for dynamic type safety
8d2ccbd2 740 at runtime. This is moderately expensive.
13f05fd0 741 ])
7cb9fd07 742 TREECHECKING=yes
119d24d1 743fi
7e98624c
RG
744if test x$ac_types_checking != x ; then
745 AC_DEFINE(ENABLE_TYPES_CHECKING, 1,
746[Define if you want all gimple types to be verified after gimplifiation.
747 This is cheap.
748 ])
749fi
7cb9fd07 750AC_SUBST(TREECHECKING)
119d24d1
KG
751if test x$ac_rtl_checking != x ; then
752 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
753[Define if you want all operations on RTL (the basic data structure
754 of the optimizer and back end) to be checked for dynamic type safety
755 at runtime. This is quite expensive.])
756fi
4c76f856
JJ
757if test x$ac_rtlflag_checking != x ; then
758 AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
759[Define if you want RTL flag accesses to be checked against the RTL
760 codes that are supported for each access macro. This is relatively
761 cheap.])
762fi
119d24d1
KG
763if test x$ac_gc_checking != x ; then
764 AC_DEFINE(ENABLE_GC_CHECKING, 1,
765[Define if you want the garbage collector to do object poisoning and
766 other memory allocation checks. This is quite expensive.])
767fi
768if test x$ac_gc_always_collect != x ; then
769 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
770[Define if you want the garbage collector to operate in maximally
771 paranoid mode, validating the entire heap and collecting garbage at
772 every opportunity. This is extremely expensive.])
773fi
5dfa45d0
JJ
774if test x$ac_fold_checking != x ; then
775 AC_DEFINE(ENABLE_FOLD_CHECKING, 1,
776[Define if you want fold checked that it never destructs its argument.
777 This is quite expensive.])
778fi
414d23ae
HPN
779valgrind_path_defines=
780valgrind_command=
6938ec6c
NN
781
782dnl # This check AC_REQUIREs various stuff, so it *must not* be inside
783dnl # an if statement. This was the source of very frustrating bugs
784dnl # in converting to autoconf 2.5x!
785AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
786
279a935f
RB
787# It is certainly possible that there's valgrind but no valgrind.h.
788# GCC relies on making annotations so we must have both.
789AC_MSG_CHECKING(for VALGRIND_DISCARD in <valgrind/memcheck.h>)
790AC_PREPROC_IFELSE([AC_LANG_SOURCE(
791 [[#include <valgrind/memcheck.h>
a207b594
HPN
792#ifndef VALGRIND_DISCARD
793#error VALGRIND_DISCARD not defined
f04f1d2c 794#endif]])],
a207b594
HPN
795 [gcc_cv_header_valgrind_memcheck_h=yes],
796 [gcc_cv_header_valgrind_memcheck_h=no])
279a935f
RB
797AC_MSG_RESULT($gcc_cv_header_valgrind_memcheck_h)
798AC_MSG_CHECKING(for VALGRIND_DISCARD in <memcheck.h>)
799AC_PREPROC_IFELSE([AC_LANG_SOURCE(
800 [[#include <memcheck.h>
14011ca4
AJ
801#ifndef VALGRIND_DISCARD
802#error VALGRIND_DISCARD not defined
f04f1d2c
KC
803#endif]])],
804 [gcc_cv_header_memcheck_h=yes],
805 [gcc_cv_header_memcheck_h=no])
279a935f
RB
806AC_MSG_RESULT($gcc_cv_header_memcheck_h)
807if test $gcc_cv_header_valgrind_memcheck_h = yes; then
808 AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1,
809 [Define if valgrind's valgrind/memcheck.h header is installed.])
810fi
811if test $gcc_cv_header_memcheck_h = yes; then
812 AC_DEFINE(HAVE_MEMCHECK_H, 1,
813 [Define if valgrind's memcheck.h header is installed.])
814fi
815
816if test x$ac_valgrind_checking != x ; then
414d23ae
HPN
817 AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
818 [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
a207b594
HPN
819 if test "x$valgrind_path" = "x" \
820 || (test $have_valgrind_h = no \
821 && test $gcc_cv_header_memcheck_h = no \
822 && test $gcc_cv_header_valgrind_memcheck_h = no); then
823 AC_MSG_ERROR([*** Can't find both valgrind and valgrind/memcheck.h, memcheck.h or valgrind.h])
414d23ae
HPN
824 fi
825 valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
826 valgrind_command="$valgrind_path -q"
827 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
828[Define if you want to run subprograms and generated programs
829 through valgrind (a memory checker). This is extremely expensive.])
830fi
831AC_SUBST(valgrind_path_defines)
832AC_SUBST(valgrind_command)
51d0e20c 833
22aa533e
NS
834# Enable code coverage collection
835AC_ARG_ENABLE(coverage,
b88ecf55
AS
836[AS_HELP_STRING([[--enable-coverage[=LEVEL]]],
837 [enable compiler's code coverage collection.
838 Use to measure compiler performance and locate
839 unused parts of the compiler. With LEVEL, specify
840 optimization. Values are opt, noopt,
841 default is noopt])],
22aa533e 842[case "${enableval}" in
6dd297da 843 yes|noopt)
9879232c 844 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O0 -fkeep-static-functions"
6dd297da
NN
845 ;;
846 opt)
9879232c 847 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O2 -fkeep-static-functions"
6dd297da
NN
848 ;;
849 no)
850 # a.k.a. --disable-coverage
851 coverage_flags=""
852 ;;
853 *)
854 AC_MSG_ERROR(unknown coverage setting $enableval)
855 ;;
22aa533e 856esac],
2043c38e 857[coverage_flags=""])
22aa533e
NS
858AC_SUBST(coverage_flags)
859
439a7e54 860AC_ARG_ENABLE(gather-detailed-mem-stats,
b88ecf55
AS
861[AS_HELP_STRING([--enable-gather-detailed-mem-stats],
862 [enable detailed memory allocation stats gathering])], [],
439a7e54 863[enable_gather_detailed_mem_stats=no])
7aa6d18a
SB
864gather_stats=`if test $enable_gather_detailed_mem_stats != no; then echo 1; else echo 0; fi`
865AC_DEFINE_UNQUOTED(GATHER_STATISTICS, $gather_stats,
866[Define to enable detailed memory allocation stats gathering.])
439a7e54 867
279a935f
RB
868AC_ARG_ENABLE(valgrind-annotations,
869[AS_HELP_STRING([--enable-valgrind-annotations],
870 [enable valgrind runtime interaction])], [],
871[enable_valgrind_annotations=no])
872if test x$enable_valgrind_annotations != xno \
873 || test x$ac_valgrind_checking != x; then
874 if (test $have_valgrind_h = no \
875 && test $gcc_cv_header_memcheck_h = no \
876 && test $gcc_cv_header_valgrind_memcheck_h = no); then
877 AC_MSG_ERROR([*** Can't find valgrind/memcheck.h, memcheck.h or valgrind.h])
878 fi
879 AC_DEFINE(ENABLE_VALGRIND_ANNOTATIONS, 1,
880[Define to get calls to the valgrind runtime enabled.])
881fi
882
73458fb7
NN
883# -------------------------------
884# Miscenalleous configure options
885# -------------------------------
34a86c2b 886
34a86c2b
NN
887# Determine whether or not multilibs are enabled.
888AC_ARG_ENABLE(multilib,
b88ecf55
AS
889[AS_HELP_STRING([--enable-multilib],
890 [enable library support for multiple ABIs])],
34a86c2b
NN
891[], [enable_multilib=yes])
892AC_SUBST(enable_multilib)
3ecc3258 893
e0cdc09f
MK
894# Determine whether or not multiarch is enabled.
895AC_ARG_ENABLE(multiarch,
896[AS_HELP_STRING([--enable-multiarch],
897 [enable support for multiarch paths])],
5213f20c
MK
898[case "${enableval}" in
899yes|no|auto) enable_multiarch=$enableval;;
900*) AC_MSG_ERROR(bad value ${enableval} given for --enable-multiarch option) ;;
e0cdc09f
MK
901esac], [enable_multiarch=auto])
902if test x${enable_multiarch} = xauto; then
903 if test x${with_native_system_header_dir} != x; then
904 ma_msg_suffix=", disabled auto check (configured with --native-system-header-dir)"
905 enable_multiarch=no
906 fi
907 if test x$host != x$target && test "x$with_sysroot" = x; then
908 ma_msg_suffix=", disabled auto check (cross build configured without --with-sysroot)"
909 enable_multiarch=no
910 fi
911fi
354c97ee 912if test x${enable_multiarch} = xyes; then
4d08c674 913 AC_DEFINE(ENABLE_MULTIARCH, 1, [If --with-multiarch option is used])
354c97ee 914fi
e0cdc09f
MK
915AC_MSG_CHECKING(for multiarch configuration)
916AC_SUBST(enable_multiarch)
917AC_MSG_RESULT($enable_multiarch$ma_msg_suffix)
918
919# needed for setting the multiarch name for soft-float/hard-float ABIs
d757eae9 920AC_SUBST(with_cpu)
e0cdc09f
MK
921AC_SUBST(with_float)
922
630b1e3a
TC
923# default stack clash protection guard size as power of twos in bytes.
924# Please keep these in sync with params.def.
925stk_clash_min=12
926stk_clash_max=30
927
928# Keep the default value when the option is not used to 0, this allows us to
929# distinguish between the cases where the user specifially set a value via
930# configure and when the normal default value is used.
931AC_ARG_WITH(stack-clash-protection-guard-size,
932[AS_HELP_STRING([--with-stack-clash-protection-guard-size=size],
933[Set the default stack clash protection guard size for specific targets as a power of two in bytes.])],
934[DEFAULT_STK_CLASH_GUARD_SIZE="$with_stack_clash_protection_guard_size"], [DEFAULT_STK_CLASH_GUARD_SIZE=0])
935if test $DEFAULT_STK_CLASH_GUARD_SIZE -ne 0 \
936 && (test $DEFAULT_STK_CLASH_GUARD_SIZE -lt $stk_clash_min \
937 || test $DEFAULT_STK_CLASH_GUARD_SIZE -gt $stk_clash_max); then
938 AC_MSG_ERROR(m4_normalize([
939 Invalid value $DEFAULT_STK_CLASH_GUARD_SIZE for --with-stack-clash-protection-guard-size. \
940 Must be between $stk_clash_min and $stk_clash_max.]))
941fi
942
943AC_DEFINE_UNQUOTED(DEFAULT_STK_CLASH_GUARD_SIZE, $DEFAULT_STK_CLASH_GUARD_SIZE,
944 [Define to larger than zero set the default stack clash protector size.])
945
0a85544e
TC
946# Specify the number of splits of match.pd to generate.
947AC_ARG_WITH(matchpd-partitions,
948[AS_HELP_STRING([--with-matchpd-partitions=num],
949[Set the number of partitions to make for gimple and generic when splitting match.pd. [default=10]])],
950[DEFAULT_MATCHPD_PARTITIONS="$with_matchpd_partitions"], [DEFAULT_MATCHPD_PARTITIONS=10])
951if (test $DEFAULT_MATCHPD_PARTITIONS -lt 1); then
952 AC_MSG_ERROR(m4_normalize([
953 Invalid value $DEFAULT_MATCHPD_PARTITIONS for --with-matchpd-partitions. \
954 Cannot be negative.]))
955fi
956
0a85544e
TC
957AC_SUBST(DEFAULT_MATCHPD_PARTITIONS)
958
4bafaa6f
L
959# Enable __cxa_atexit for C++.
960AC_ARG_ENABLE(__cxa_atexit,
b88ecf55 961[AS_HELP_STRING([--enable-__cxa_atexit], [enable __cxa_atexit for C++])],
4bafaa6f 962[], [])
2121a768 963
486aa804 964# Enable C extension for decimal float if target supports it.
3c39bca6 965GCC_AC_ENABLE_DECIMAL_FLOAT([$target])
486aa804 966
79b87c74 967dfp=`if test $enable_decimal_float != no; then echo 1; else echo 0; fi`
486aa804
BE
968AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_FLOAT, $dfp,
969[Define to 1 to enable decimal float extension to C.])
970
cc0ae0ca
L
971# Use default_decimal_float for dependency.
972enable_decimal_float=$default_decimal_float
973
79b87c74
MM
974bid=`if test $enable_decimal_float = bid; then echo 1; else echo 0; fi`
975AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_BID_FORMAT, $bid,
976[Define to 1 to specify that we are using the BID decimal floating
977point format instead of DPD])
978
ab22c1fa
CF
979# Enable C extension for fixed-point arithmetic.
980AC_ARG_ENABLE(fixed-point,
b88ecf55
AS
981[AS_HELP_STRING([--enable-fixed-point],
982 [enable fixed-point arithmetic extension to C])],
983[],
ab22c1fa
CF
984[
985 case $target in
655b30bf
JB
986 arm*)
987 enable_fixed_point=yes
988 ;;
989
ab22c1fa 990 mips*-*-*)
b24513a1 991 enable_fixed_point=yes
ab22c1fa 992 ;;
b44786f6 993 loongarch*-*-*)
994 enable_fixed_point=yes
995 ;;
ab22c1fa 996 *)
84f47d20 997 AC_MSG_WARN([fixed-point is not supported for this target, ignored])
ab22c1fa
CF
998 enable_fixed_point=no
999 ;;
1000 esac
1001])
1002AC_SUBST(enable_fixed_point)
1003
1004fixedpoint=`if test $enable_fixed_point = yes; then echo 1; else echo 0; fi`
1005AC_DEFINE_UNQUOTED(ENABLE_FIXED_POINT, $fixedpoint,
1006[Define to 1 to enable fixed-point arithmetic extension to C.])
1007
0bbb1697
RK
1008# Enable threads
1009# Pass with no value to take the default
1010# Pass with a value to specify a thread package
1011AC_ARG_ENABLE(threads,
b88ecf55
AS
1012[AS_HELP_STRING([[--enable-threads[=LIB]]],
1013 [enable thread usage for target GCC,
1014 using LIB thread package])],,
615be2cf 1015[enable_threads=''])
0bbb1697 1016
8dea1cca 1017AC_ARG_ENABLE(tls,
b88ecf55
AS
1018[AS_HELP_STRING([--enable-tls],
1019 [enable or disable generation of tls code
1020 overriding the assembler check for tls support])],
8dea1cca
DD
1021[
1022 case $enable_tls in
1023 yes | no) ;;
1024 *) AC_MSG_ERROR(['$enable_tls' is an invalid value for --enable-tls.
1025Valid choices are 'yes' and 'no'.]) ;;
1026 esac
1027], [enable_tls=''])
1028
ad103b01
RO
1029AC_ARG_ENABLE(vtable-verify,
1030[AS_HELP_STRING([--enable-vtable-verify],
1031 [enable vtable verification feature])],,
1032[enable_vtable_verify=no])
1033vtable_verify=`if test x$enable_vtable_verify = xyes; then echo 1; else echo 0; fi`
1034AC_DEFINE_UNQUOTED(ENABLE_VTABLE_VERIFY, $vtable_verify,
1035[Define 0/1 if vtable verification feature is enabled.])
1036
757bf1df
DM
1037AC_ARG_ENABLE(analyzer,
1038[AS_HELP_STRING([--disable-analyzer],
1039 [disable -fanalyzer static analyzer])],
1040if test x$enable_analyzer = xno; then
1041 analyzer=0
1042else
1043 analyzer=1
1044fi,
1045analyzer=1)
1046AC_DEFINE_UNQUOTED(ENABLE_ANALYZER, $analyzer,
1047[Define 0/1 if static analyzer feature is enabled.])
1048
d8bb17c8 1049AC_ARG_ENABLE(objc-gc,
b88ecf55
AS
1050[AS_HELP_STRING([--enable-objc-gc],
1051 [enable the use of Boehm's garbage collector with
1052 the GNU Objective-C runtime])],
2618c083 1053if test x$enable_objc_gc = xno; then
d8bb17c8
OP
1054 objc_boehm_gc=''
1055else
1056 objc_boehm_gc=1
1057fi,
1058objc_boehm_gc='')
1059
90e6a802 1060AC_ARG_WITH(dwarf2,
a710f3ce 1061[AS_HELP_STRING([--with-dwarf2], [force the default debug format to be DWARF 2 (or later)])],
87921b81 1062dwarf2="$with_dwarf2",
90e6a802
RL
1063dwarf2=no)
1064
50503ac8 1065AC_ARG_ENABLE(shared,
b88ecf55 1066[AS_HELP_STRING([--disable-shared], [don't provide a shared libgcc])],
c785e0fa
AO
1067[
1068 case $enable_shared in
1069 yes | no) ;;
1070 *)
1071 enable_shared=no
1072 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
1073 for pkg in $enableval; do
1074 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
1075 enable_shared=yes
1076 fi
1077 done
1078 IFS="$ac_save_ifs"
1079 ;;
1080 esac
1081], [enable_shared=yes])
50503ac8
RH
1082AC_SUBST(enable_shared)
1083
1765b023
RV
1084AC_ARG_ENABLE(gcov,
1085[ --disable-gcov don't provide libgcov and related host tools],
39be73d0
JM
1086[], [case $target in
1087 bpf-*-*)
1088 enable_gcov=no
1089 ;;
1090 *)
1091 enable_gcov=yes
1092 ;;
1093 esac])
1094
1765b023
RV
1095AC_SUBST(enable_gcov)
1096
e11ddaf5
NS
1097AC_ARG_WITH(specs,
1098 [AS_HELP_STRING([--with-specs=SPECS],
1099 [add SPECS to driver command-line processing])],
1100 [CONFIGURE_SPECS=$withval],
1101 [CONFIGURE_SPECS=]
1102)
1103AC_SUBST(CONFIGURE_SPECS)
1104
2f41c1d6 1105ACX_PKGVERSION([GCC])
9334ef9e 1106ACX_BUGURL([https://gcc.gnu.org/bugs/])
2f41c1d6 1107
b4c7ca2e
DM
1108# Allow overriding the default URL for documentation
1109AC_ARG_WITH(documentation-root-url,
1110 AS_HELP_STRING([--with-documentation-root-url=URL],
1111 [Root for documentation URLs]),
1112 [case "$withval" in
1113 yes) AC_MSG_ERROR([documentation root URL not specified]) ;;
1114 no) AC_MSG_ERROR([documentation root URL not specified]) ;;
e33a1eae
JJ
1115 */) DOCUMENTATION_ROOT_URL="$withval" ;;
1116 *) AC_MSG_ERROR([documentation root URL does not end with /]) ;;
b4c7ca2e 1117 esac],
fa29cf0c 1118 DOCUMENTATION_ROOT_URL="https://gcc.gnu.org/onlinedocs/"
b4c7ca2e 1119)
e33a1eae
JJ
1120AC_DEFINE_UNQUOTED(DOCUMENTATION_ROOT_URL,"$DOCUMENTATION_ROOT_URL",
1121 [Define to the root for documentation URLs.])
b4c7ca2e 1122
691eeb65
JJ
1123# Allow overriding the default URL for GCC changes
1124AC_ARG_WITH(changes-root-url,
1125 AS_HELP_STRING([--with-changes-root-url=URL],
1126 [Root for GCC changes URLs]),
1127 [case "$withval" in
1128 yes) AC_MSG_ERROR([changes root URL not specified]) ;;
1129 no) AC_MSG_ERROR([changes root URL not specified]) ;;
e33a1eae
JJ
1130 */) CHANGES_ROOT_URL="$withval" ;;
1131 *) AC_MSG_ERROR([changes root URL does not end with /]) ;;
691eeb65
JJ
1132 esac],
1133 CHANGES_ROOT_URL="https://gcc.gnu.org/"
1134)
e33a1eae
JJ
1135AC_DEFINE_UNQUOTED(CHANGES_ROOT_URL,"$CHANGES_ROOT_URL",
1136 [Define to the root for URLs about GCC changes.])
691eeb65 1137
e4c9c075
PB
1138# Sanity check enable_languages in case someone does not run the toplevel
1139# configure # script.
1140AC_ARG_ENABLE(languages,
b88ecf55 1141[AS_HELP_STRING([--enable-languages=LIST], [specify which front-ends to build])],
e4c9c075
PB
1142[case ,${enable_languages}, in
1143 ,,|,yes,)
1144 # go safe -- we cannot be much sure without the toplevel
1145 # configure's
1146 # analysis of which target libs are present and usable
1147 enable_languages=c
1148 ;;
1149 *,all,*)
1150 AC_MSG_ERROR([only the toplevel supports --enable-languages=all])
1151 ;;
1152 *,c,*)
1153 ;;
1154 *)
1155 enable_languages=c,${enable_languages}
1156 ;;
1157esac],
1158[enable_languages=c])
1159
8951374d
MR
1160# If top-level libada has been disabled, then wire in install-gnatlib
1161# invocation with `make install', so that one can build and install
1162# the library manually with `make -C gcc all gnatlib gnattools install'.
1163if test x"$enable_libada" = xno; then
1164 gnat_install_lib=gnat-install-lib
1165else
1166 gnat_install_lib=
1167fi
1168AC_SUBST(gnat_install_lib)
1169
85c64bbe
BS
1170if test x"$enable_as_accelerator_for" != x; then
1171 AC_DEFINE(ACCEL_COMPILER, 1,
1172 [Define if this compiler should be built as the offload target compiler.])
1173 enable_as_accelerator=yes
85c64bbe
BS
1174 sedscript="s#${target_noncanonical}#${enable_as_accelerator_for}-accel-${target_noncanonical}#"
1175 program_transform_name=`echo $program_transform_name | sed $sedscript`
1176 accel_dir_suffix=/accel/${target_noncanonical}
1177 real_target_noncanonical=${enable_as_accelerator_for}
1178fi
1179AC_SUBST(enable_as_accelerator)
1180AC_SUBST(real_target_noncanonical)
1181AC_SUBST(accel_dir_suffix)
1182
1183for tgt in `echo $enable_offload_targets | sed 's/,/ /g'`; do
1184 tgt=`echo $tgt | sed 's/=.*//'`
b2b40051 1185
c56684fd
MJ
1186 enable_offloading=1
1187 case "$tgt" in
c56684fd
MJ
1188 amdgcn*)
1189 omp_device_property=omp-device-properties-gcn
1190 omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/gcn/t-omp-device"
1191 ;;
1192 nvptx*)
1193 omp_device_property=omp-device-properties-nvptx
1194 omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/nvptx/t-omp-device"
1195 ;;
1196 *)
1197 AC_MSG_ERROR([unknown offload target specified])
1198 ;;
1199 esac
1200 omp_device_properties="${omp_device_properties} ${tgt}=${omp_device_property}"
1201 omp_device_property_deps="${omp_device_property_deps} ${omp_device_property}"
b2b40051 1202
85c64bbe
BS
1203 if test x"$offload_targets" = x; then
1204 offload_targets=$tgt
1205 else
64186aad 1206 offload_targets="$offload_targets,$tgt"
85c64bbe
BS
1207 fi
1208done
9ba66bf5
JJ
1209AC_SUBST(omp_device_properties)
1210AC_SUBST(omp_device_property_deps)
1211
85c64bbe 1212AC_DEFINE_UNQUOTED(OFFLOAD_TARGETS, "$offload_targets",
64186aad 1213 [Define to offload targets, separated by commas.])
b2b40051 1214if test x"$enable_offloading" != x; then
85c64bbe
BS
1215 AC_DEFINE(ENABLE_OFFLOADING, 1,
1216 [Define this to enable support for offloading.])
1d899da2
TS
1217else
1218 AC_DEFINE(ENABLE_OFFLOADING, 0,
1219 [Define this to enable support for offloading.])
85c64bbe
BS
1220fi
1221
fe5bfa67
TB
1222if test "x$enable_offload_defaulted" = xyes; then
1223 AC_DEFINE(OFFLOAD_DEFAULTED, 1,
1224 [Define to 1 to if -foffload is defaulted])
1225fi
1226
aca600aa 1227AC_ARG_WITH(multilib-list,
711084c9 1228[AS_HELP_STRING([--with-multilib-list], [select multilibs (AArch64, ARM, AVR, OR1K, RISC-V, SH and x86-64 only)])],
aca600aa
AS
1229:,
1230with_multilib_list=default)
1231
c1e66912
KC
1232AC_ARG_WITH(multilib-generator,
1233[AS_HELP_STRING([--with-multilib-generator], [Multi-libs configuration string (RISC-V only)])],
1234:,
1235with_multilib_generator=default)
1236
73458fb7
NN
1237# -------------------------
1238# Checks for other programs
1239# -------------------------
61842080 1240
e9a25f70
JL
1241AC_PROG_MAKE_SET
1242
46f18e7b
RK
1243# Find some useful tools
1244AC_PROG_AWK
e53b6e56 1245# We need awk to create options.cc and options.h.
2c4902b9
NN
1246# Bail out if it's missing.
1247case ${AWK} in
1248 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
1249esac
1250
99e757d5 1251gcc_AC_PROG_LN_S
ad6717df 1252ACX_PROG_LN($LN_S)
46f18e7b 1253AC_PROG_RANLIB
10eb188c 1254ranlib_flags=""
343a6100
MM
1255AC_SUBST(ranlib_flags)
1256
99e757d5 1257gcc_AC_PROG_INSTALL
46f18e7b 1258
3a000df0
KC
1259# See if cmp has --ignore-initial.
1260gcc_AC_PROG_CMP_IGNORE_INITIAL
1261
955be633
JM
1262# See if we have the mktemp command.
1263AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
1264
7c27e184
PB
1265# See if makeinfo has been installed and is modern enough
1266# that we can use it.
3bbd5a19 1267ACX_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
09fa0705 1268 [GNU texinfo.* \([0-9][0-9.]*\)],
7326a39e 1269 [4.[7-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*])
09fa0705
ZW
1270if test $gcc_cv_prog_makeinfo_modern = no; then
1271 AC_MSG_WARN([
1272*** Makeinfo is missing or too old.
17db6582 1273*** Info documentation will not be built.])
09fa0705 1274 BUILD_INFO=
09fa0705 1275else
7c27e184 1276 BUILD_INFO=info
09fa0705 1277fi
7c27e184 1278AC_SUBST(BUILD_INFO)
09fa0705 1279
0395e136
AA
1280# Determine whether makeinfo supports the CONTENTS_OUTPUT_LOCATION variable.
1281# If it does, we want to pass it to makeinfo in order to restore the old
1282# behavior of @{summary,}contents placement.
1283MAKEINFO_TOC_INLINE_FLAG=
1284AS_IF([test x"$MAKEINFO" != x], [
1285 AC_CACHE_CHECK([for CONTENTS_OUTPUT_LOCATION support in $MAKEINFO],
1286 [gcc_cv_texi_add_toc_inline_flags], [
1287 # Detect the unknown variable CONTENTS_OUTPUT_LOCATION warning
1288 if "$MAKEINFO" -c CONTENTS_OUTPUT_LOCATION=inline </dev/null 2>&1 \
1289 | grep CONTENTS_OUTPUT_LOCATION >/dev/null; then
1290 gcc_cv_texi_add_toc_inline_flags=no
1291 else
1292 gcc_cv_texi_add_toc_inline_flags=yes
1293 fi
1294 ])
1295 if test x"$gcc_cv_texi_add_toc_inline_flags" = xyes; then
1296 MAKEINFO_TOC_INLINE_FLAG='-c CONTENTS_OUTPUT_LOCATION=inline'
1297 fi
1298])
1299AC_SUBST([MAKEINFO_TOC_INLINE_FLAG])
1300
3f896fc2
JM
1301# Is pod2man recent enough to regenerate manpages?
1302AC_MSG_CHECKING([for recent Pod::Man])
7be33370 1303if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
fd939e46 1304 AC_MSG_RESULT(yes)
7c27e184 1305 GENERATED_MANPAGES=generated-manpages
fd939e46
JM
1306else
1307 AC_MSG_RESULT(no)
1308 GENERATED_MANPAGES=
1309fi
7c27e184 1310AC_SUBST(GENERATED_MANPAGES)
fd939e46 1311
3bbd5a19
PB
1312MISSING="${CONFIG_SHELL-/bin/sh} $ac_aux_dir/missing"
1313
1e608388
ZW
1314# How about lex?
1315dnl Don't use AC_PROG_LEX; we insist on flex.
1316dnl LEXLIB is not useful in gcc.
7c27e184 1317AC_CHECK_PROGS([FLEX], flex, [$MISSING flex])
1e608388
ZW
1318
1319# Bison?
7c27e184
PB
1320AC_CHECK_PROGS([BISON], bison, [$MISSING bison])
1321
1eee94d3
GM
1322# Python3?
1323ACX_CHECK_PROG_VER(PYTHON, python3, --version,
1324 [Python.* \([0-9][0-9.]*\)],
1325 [3.[4-9]*|3.[1-9][0-9]*|[4-9].*|[1-9][0-9]*])
1326if test $gcc_cv_prog_python3_modern = no; then
1327 AC_MSG_WARN([
1328*** Python3 is missing.
1329*** Documentation for modula-2 will not include the target SYSTEM module.])
1330 HAVE_PYTHON=no
1331else
1332 HAVE_PYTHON=yes
1333fi
1334AC_SUBST(HAVE_PYTHON)
1335
7c27e184
PB
1336# Binutils are not build modules, unlike bison/flex/makeinfo. So we
1337# check for build == host before using them.
1e608388 1338
f6a874ac 1339# NM
414adbdd
GK
1340if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
1341 && test -d ../binutils ; then
bfa912a8 1342 NM='${objdir}/../binutils/nm-new'
f6a874ac
JW
1343else
1344 AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm)
1345fi
1346
1347# AR
414adbdd
GK
1348if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
1349 && test -d ../binutils ; then
bfa912a8 1350 AR='${objdir}/../binutils/ar'
f6a874ac
JW
1351else
1352 AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar)
1353fi
1354
35485da9
DM
1355# The jit documentation looks better if built with sphinx, but can be
1356# built with texinfo if sphinx is not available.
1357# Set "doc_build_sys" to "sphinx" or "texinfo" accordingly.
1358AC_CHECK_PROG(doc_build_sys, sphinx-build, sphinx, texinfo)
f6a874ac 1359
73458fb7
NN
1360# --------------------
1361# Checks for C headers
1362# --------------------
1363
ca9bc441
NN
1364# Need to reject headers which give warnings, so that the -Werror bootstrap
1365# works later. *sigh* This needs to come before all header checks.
1366AC_PROG_CPP_WERROR
1367
73458fb7
NN
1368AC_HEADER_STDC
1369AC_HEADER_TIME
4f4e53dd 1370ACX_HEADER_STRING
73458fb7 1371AC_HEADER_SYS_WAIT
c68a6e08 1372AC_HEADER_TIOCGWINSZ
dfb77e37 1373AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h iconv.h \
66c48be2 1374 fcntl.h ftw.h unistd.h sys/auxv.h sys/file.h sys/time.h sys/mman.h \
9ec469f5 1375 sys/resource.h sys/param.h sys/times.h sys/stat.h sys/locking.h \
4fbfcf44 1376 direct.h malloc.h langinfo.h ldfcn.h locale.h wchar.h)
73458fb7
NN
1377
1378# Check for thread headers.
1379AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
1380AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
1381
1382# These tests can't be done till we know if we have limits.h.
1383gcc_AC_C_CHAR_BIT
9791c75c 1384AC_C_BIGENDIAN
73458fb7 1385
5427046f
ILT
1386# ----------------------
1387# Checks for C++ headers
1388# ----------------------
1389
c658f0ce
ILT
1390dnl Autoconf will give an error in the configure script if there is no
1391dnl C++ preprocessor. Hack to prevent that.
1392m4_pushdef([AC_MSG_ERROR], m4_defn([AC_MSG_WARN]))[]dnl
1393AC_PROG_CXXCPP
1394m4_popdef([AC_MSG_ERROR])[]dnl
1395
5427046f
ILT
1396AC_CHECK_HEADERS(unordered_map)
1397AC_CHECK_HEADERS(tr1/unordered_map)
1398AC_CHECK_HEADERS(ext/hash_map)
1399
043378c3
TT
1400# --------
1401# Dependency checking.
1402# --------
1403
043378c3
TT
1404ZW_CREATE_DEPDIR
1405AC_CONFIG_COMMANDS([gccdepdir],[
1406 ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/mkinstalldirs build/$DEPDIR
4f01ae37 1407 for lang in $subdirs c-family common analyzer text-art rtl-ssa
043378c3
TT
1408 do
1409 ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/mkinstalldirs $lang/$DEPDIR
1410 done], [subdirs="$subdirs" ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR])
1411
54c09437 1412ZW_PROG_COMPILER_DEPENDENCIES([CXX])
5427046f 1413
73458fb7
NN
1414# --------
1415# UNSORTED
1416# --------
1417
73458fb7 1418
4e70264f
ZW
1419# These libraries may be used by collect2.
1420# We may need a special search path to get them linked.
1421AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
1422[save_LIBS="$LIBS"
7f2749d4 1423for libs in '' -lld -lmld \
4e70264f
ZW
1424 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
1425 '-L/usr/lib/cmplrs/cc3.11 -lmld'
1426do
1427 LIBS="$libs"
1428 AC_TRY_LINK_FUNC(ldopen,
1429 [gcc_cv_collect2_libs="$libs"; break])
1430done
1431LIBS="$save_LIBS"
1432test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
1433case $gcc_cv_collect2_libs in
1434 "none required") ;;
1435 *) COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
1436esac
1437AC_SUBST(COLLECT2_LIBS)
1438
7f2749d4
RK
1439# When building Ada code on Alpha, we need exc_resume which is usually in
1440# -lexc. So test for it.
1441save_LIBS="$LIBS"
1442LIBS=
1443AC_SEARCH_LIBS(exc_resume, exc)
1444GNAT_LIBEXC="$LIBS"
1445LIBS="$save_LIBS"
1446AC_SUBST(GNAT_LIBEXC)
1447
e3b3fa45
RO
1448# To support -mcpu=native on Solaris/SPARC, we need libkstat.
1449save_LIBS="$LIBS"
1450LIBS=
1451AC_SEARCH_LIBS(kstat_open, kstat)
1452EXTRA_GCC_LIBS="$LIBS"
1453LIBS="$save_LIBS"
1454AC_SUBST(EXTRA_GCC_LIBS)
1455
a20893cf
RO
1456# Solaris needs libsocket and libnsl for socket functions before 11.4.
1457# C++ needs those for libcody.
1458save_LIBS="$LIBS"
1459LIBS=
1460AX_LIB_SOCKET_NSL
1461NETLIBS="$LIBS"
1462LIBS="$save_LIBS"
1463AC_SUBST(NETLIBS)
1464
62c9aa5f
ZW
1465# Some systems put ldexp and frexp in libm instead of libc; assume
1466# they're both in the same place. jcf-dump needs them.
1467save_LIBS="$LIBS"
1468LIBS=
1469AC_SEARCH_LIBS(ldexp, m)
1470LDEXP_LIB="$LIBS"
1471LIBS="$save_LIBS"
1472AC_SUBST(LDEXP_LIB)
1473
7431c1a1
AS
1474# Some systems need dlopen
1475save_LIBS="$LIBS"
1476LIBS=
1477AC_SEARCH_LIBS(dlopen, dl)
1478DL_LIB="$LIBS"
1479LIBS="$save_LIBS"
1480AC_SUBST(DL_LIB)
1481
7636d567 1482# Use <inttypes.h> only if it exists,
35987ae9
RB
1483# doesn't clash with <sys/types.h>, declares intmax_t and defines
1484# PRId64
7636d567
JW
1485AC_MSG_CHECKING(for inttypes.h)
1486AC_CACHE_VAL(gcc_cv_header_inttypes_h,
f04f1d2c 1487[AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
35987ae9
RB
1488[[#define __STDC_FORMAT_MACROS
1489#include <sys/types.h>
f04f1d2c 1490#include <inttypes.h>]],
35987ae9
RB
1491 [[intmax_t i = -1;
1492#ifndef PRId64
1493choke me
1494#endif]])],
9da0e39b 1495 [gcc_cv_header_inttypes_h=yes],
f04f1d2c 1496 [gcc_cv_header_inttypes_h=no])])
7636d567 1497AC_MSG_RESULT($gcc_cv_header_inttypes_h)
9da0e39b 1498if test $gcc_cv_header_inttypes_h = yes; then
119d24d1
KG
1499 AC_DEFINE(HAVE_INTTYPES_H, 1,
1500 [Define if you have a working <inttypes.h> header file.])
9da0e39b 1501fi
cdcc6a01 1502
87741e51
ML
1503# Look for the ZSTD package.
1504ZSTD_INCLUDE=
1505ZSTD_LIB=
1506AC_SUBST(ZSTD_INCLUDE)
1507AC_SUBST(ZSTD_LIB)
1508ZSTD_CPPFLAGS=
1509ZSTD_LDFLAGS=
77625675
MK
1510AC_SUBST(ZSTD_CPPFLAGS)
1511AC_SUBST(ZSTD_LDFLAGS)
87741e51
ML
1512AC_ARG_WITH(zstd,
1513 [AS_HELP_STRING([--with-zstd=PATH],
1514 [specify prefix directory for installed zstd library.
1515 Equivalent to --with-zstd-include=PATH/include
1516 plus --with-zstd-lib=PATH/lib])])
1517AC_ARG_WITH(zstd-include,
1518 [AS_HELP_STRING([--with-zstd-include=PATH],
1519 [specify directory for installed zstd include files])])
1520AC_ARG_WITH(zstd-lib,
1521 [AS_HELP_STRING([--with-zstd-lib=PATH],
1522 [specify directory for the installed zstd library])])
1523case "x$with_zstd" in
1524 x) ;;
1525 xno)
0fb0240a
ML
1526 ZSTD_INCLUDE=
1527 ZSTD_LIB=
87741e51
ML
1528 ;;
1529 *) ZSTD_INCLUDE=$with_zstd/include
1530 ZSTD_LIB=$with_zstd/lib
1531 ;;
1532esac
0fb0240a
ML
1533
1534if test "x$with_zstd" != xno; then
87741e51
ML
1535if test "x$with_zstd_include" != x; then
1536 ZSTD_INCLUDE=$with_zstd_include
1537fi
1538if test "x$with_zstd_lib" != x; then
1539 ZSTD_LIB=$with_zstd_lib
1540fi
1541if test "x$ZSTD_INCLUDE" != x \
1542 && test "x$ZSTD_INCLUDE" != xno; then
1543 ZSTD_CPPFLAGS=-I$ZSTD_INCLUDE
1544fi
1545if test "x$ZSTD_LIB" != x \
1546 && test "x$ZSTD_LIB" != xno; then
1547 ZSTD_LDFLAGS=-L$ZSTD_LIB
1548fi
1549
1550CXXFLAGS="$CXXFLAGS $ZSTD_CPPFLAGS"
1551LDFLAGS="$LDFLAGS $ZSTD_LDFLAGS"
1552
b0248580
RO
1553# LTO can use zstd compression algorithm
1554save_LIBS="$LIBS"
1555LIBS=
1556AC_SEARCH_LIBS(ZSTD_compress, zstd,, gcc_cv_header_zstd_h=no)
1557ZSTD_LIB="$LIBS"
1558LIBS="$save_LIBS"
1559AC_SUBST(ZSTD_LIB)
1560
87741e51
ML
1561AC_MSG_CHECKING(for zstd.h)
1562AC_CACHE_VAL(gcc_cv_header_zstd_h,
6649df18
JW
1563# We require version 1.3.0 or later. This is the first version that has
1564# ZSTD_getFrameContentSize.
87741e51 1565[AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
6649df18
JW
1566[[#include <zstd.h>
1567#if ZSTD_VERSION_NUMBER < 10300
1568#error "need zstd 1.3.0 or better"
1569#endif]])],
87741e51
ML
1570 [gcc_cv_header_zstd_h=yes],
1571 [gcc_cv_header_zstd_h=no])])
1572AC_MSG_RESULT($gcc_cv_header_zstd_h)
1573if test $gcc_cv_header_zstd_h = yes; then
1574 AC_DEFINE(HAVE_ZSTD_H, 1,
1575 [Define if you have a working <zstd.h> header file.])
68c4570a 1576elif test "x$with_zstd" != x; then
0fb0240a 1577 as_fn_error $? "Unable to find zstd.h. See config.log for details." "$LINENO" 5
87741e51 1578fi
0fb0240a 1579fi
87741e51 1580
9612ab65
ZW
1581dnl Disabled until we have a complete test for buggy enum bitfields.
1582dnl gcc_AC_C_ENUM_BF_UNSIGNED
c149cc37 1583
0d667716
KG
1584define(gcc_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
1585 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
1586 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
1587 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
1588 putchar_unlocked putc_unlocked)
384d8786 1589AC_CHECK_FUNCS(times clock kill getrlimit setrlimit atoq \
b6d94045 1590 popen sysconf strsignal getrusage nl_langinfo \
e1f07131 1591 gettimeofday mbstowcs wcswidth mmap posix_fallocate setlocale \
66c48be2 1592 gcc_UNLOCKED_FUNCS madvise mallinfo mallinfo2 fstatat getauxval)
a81fb89e 1593
39f6c4c8
KW
1594if test x$ac_cv_func_mbstowcs = xyes; then
1595 AC_CACHE_CHECK(whether mbstowcs works, gcc_cv_func_mbstowcs_works,
f04f1d2c 1596[ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
39f6c4c8
KW
1597int main()
1598{
1599 mbstowcs(0, "", 0);
1600 return 0;
f04f1d2c
KC
1601}]])],
1602 [gcc_cv_func_mbstowcs_works=yes],
1603 [gcc_cv_func_mbstowcs_works=no],
1604 [gcc_cv_func_mbstowcs_works=yes])])
39f6c4c8
KW
1605 if test x$gcc_cv_func_mbstowcs_works = xyes; then
1606 AC_DEFINE(HAVE_WORKING_MBSTOWCS, 1,
1607 [Define this macro if mbstowcs does not crash when its
1608 first argument is NULL.])
1609 fi
1610fi
1611
78c9cb99 1612AC_CHECK_TYPE(ssize_t, int)
bba09b5a 1613AC_CHECK_TYPE(caddr_t, char *)
e1f07131
NS
1614AC_CHECK_TYPE(sighander_t,
1615 AC_DEFINE(HAVE_SIGHANDLER_T, 1,
1616 [Define if <sys/signal.h> defines sighandler_t]),
1617 ,signal.h)
56f48ce9 1618
2f6935f4 1619GCC_AC_FUNC_MMAP_BLACKLIST
b27d2bd5
MK
1620
1621case "${host}" in
ee262b6f 1622*-*-*vms*)
2c55543b 1623 # Under VMS, vfork works very differently than on Unix. The standard test
ee262b6f
DR
1624 # won't work, and it isn't easily adaptable. It makes more sense to
1625 # just force it.
1626 ac_cv_func_vfork_works=yes
1627 ;;
b27d2bd5 1628esac
f04f1d2c 1629AC_FUNC_FORK
f1b54f9b 1630
0823efed 1631AM_ICONV
5b6d595b 1632
56694dd9
ZW
1633# Until we have in-tree GNU iconv:
1634LIBICONV_DEP=
bf5372e7
YS
1635if test -f "$LTLIBICONV"; then
1636 LIBICONV_DEP=$LTLIBICONV
1637fi
56694dd9
ZW
1638AC_SUBST(LIBICONV_DEP)
1639
1640AM_LC_MESSAGES
f91abfce 1641
a03ea89b
BM
1642AM_LANGINFO_CODESET
1643
86cf1cbd
KG
1644# We will need to find libiberty.h and ansidecl.h
1645saved_CFLAGS="$CFLAGS"
b8f6a302 1646CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include $GMPINC"
87fb500b 1647saved_CXXFLAGS="$CXXFLAGS"
b8f6a302 1648CXXFLAGS="$CXXFLAGS -I${srcdir} -I${srcdir}/../include $GMPINC"
13ccfea8
JM
1649
1650# gcc_AC_CHECK_DECLS doesn't support overloaded functions, so use the
1651# normal autoconf function for these. But force definition of
1652# HAVE_DECL_BASENAME like gcc_AC_CHECK_DECLS does, to suppress the bizarre
1653# basename handling in libiberty.h.
1654AC_CHECK_DECLS([basename(const char*), strstr(const char*,const char*)], , ,[
1655#undef HAVE_DECL_BASENAME
1656#define HAVE_DECL_BASENAME 1
1657#include "ansidecl.h"
1658#include "system.h"])
1659
384d8786 1660gcc_AC_CHECK_DECLS(getenv atol atoll asprintf sbrk abort atof getcwd getwd \
13ccfea8 1661 madvise stpcpy strnlen strsignal strverscmp \
297c364d 1662 strtol strtoul strtoll strtoull setenv unsetenv \
ed5b9f96 1663 errno snprintf vsnprintf vasprintf malloc realloc calloc \
13ccfea8 1664 free getopt clock getpagesize ffs gcc_UNLOCKED_FUNCS, , ,[
d02af173 1665#include "ansidecl.h"
86cf1cbd 1666#include "system.h"])
c5c76735 1667
f31e826b 1668gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
d02af173 1669#include "ansidecl.h"
86cf1cbd 1670#include "system.h"
d2cabf16
KG
1671#ifdef HAVE_SYS_RESOURCE_H
1672#include <sys/resource.h>
1673#endif
1674])
1675
5187b01a 1676gcc_AC_CHECK_DECLS(mallinfo mallinfo2, , ,[
c9ef0409
JH
1677#include "ansidecl.h"
1678#include "system.h"
1679#ifdef HAVE_MALLOC_H
1680#include <malloc.h>
1681#endif
1682])
1683
f04f1d2c 1684AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
b2522d2b
HPN
1685#include "ansidecl.h"
1686#include "system.h"
1687#ifdef HAVE_SYS_RESOURCE_H
1688#include <sys/resource.h>
1689#endif
f04f1d2c 1690]], [[rlim_t l = 0;]])],[],[AC_DEFINE([rlim_t],[long],
236ec2d7 1691[Define to `long' if <sys/resource.h> doesn't define.])])
b2522d2b 1692
2102b2fe
RS
1693# On AIX 5.2, <ldfcn.h> conflicts with <fcntl.h>, as both define incompatible
1694# FREAD and FWRITE macros. Fortunately, for GCC's single usage of ldgetname
e53b6e56 1695# in collect2.cc, <fcntl.h> isn't visible, but the configure test below needs
2102b2fe 1696# to undef these macros to get the correct value for HAVE_DECL_LDGETNAME.
351df804
KG
1697gcc_AC_CHECK_DECLS(ldgetname, , ,[
1698#include "ansidecl.h"
1699#include "system.h"
1700#ifdef HAVE_LDFCN_H
2102b2fe
RS
1701#undef FREAD
1702#undef FWRITE
351df804
KG
1703#include <ldfcn.h>
1704#endif
1705])
1706
c1800ec8
ZW
1707gcc_AC_CHECK_DECLS(times, , ,[
1708#include "ansidecl.h"
1709#include "system.h"
1710#ifdef HAVE_SYS_TIMES_H
1711#include <sys/times.h>
1712#endif
1713])
1714
4f6d8cc8
GK
1715gcc_AC_CHECK_DECLS(sigaltstack, , ,[
1716#include "ansidecl.h"
1717#include "system.h"
1718#include <signal.h>
1719])
1720
c1800ec8
ZW
1721# More time-related stuff.
1722AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
f04f1d2c 1723AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
c1800ec8
ZW
1724#include "ansidecl.h"
1725#include "system.h"
1726#ifdef HAVE_SYS_TIMES_H
1727#include <sys/times.h>
1728#endif
f04f1d2c 1729]], [[struct tms tms;]])],[ac_cv_struct_tms=yes],[ac_cv_struct_tms=no])])
c1800ec8
ZW
1730if test $ac_cv_struct_tms = yes; then
1731 AC_DEFINE(HAVE_STRUCT_TMS, 1,
1732 [Define if <sys/times.h> defines struct tms.])
1733fi
1734
1735# use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
1736# revisit after autoconf 2.50.
1737AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
f04f1d2c 1738AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
c1800ec8
ZW
1739#include "ansidecl.h"
1740#include "system.h"
f04f1d2c 1741]], [[clock_t x;]])],[gcc_cv_type_clock_t=yes],[gcc_cv_type_clock_t=no])])
c1800ec8
ZW
1742if test $gcc_cv_type_clock_t = yes; then
1743 AC_DEFINE(HAVE_CLOCK_T, 1,
1744 [Define if <time.h> defines clock_t.])
1745fi
1746
c1736aea
TJ
1747# Check if F_SETLKW is supported by fcntl.
1748AC_CACHE_CHECK(for F_SETLKW, ac_cv_f_setlkw, [
1749AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1750#include <fcntl.h>]], [[
1751struct flock fl;
1752fl.l_whence = 0;
1753fl.l_start = 0;
1754fl.l_len = 0;
1755fl.l_pid = 0;
1756return fcntl (1, F_SETLKW, &fl);]])],
1757[ac_cv_f_setlkw=yes],[ac_cv_f_setlkw=no])])
1758if test $ac_cv_f_setlkw = yes; then
1759 AC_DEFINE(HOST_HAS_F_SETLKW, 1,
1760 [Define if F_SETLKW supported by fcntl.])
1761fi
1762
e1f07131
NS
1763# Check if O_CLOEXEC is defined by fcntl
1764AC_CACHE_CHECK(for O_CLOEXEC, ac_cv_o_cloexec, [
1765AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1766#include <fcntl.h>]], [[
1767return open ("/dev/null", O_RDONLY | O_CLOEXEC);]])],
1768[ac_cv_o_cloexec=yes],[ac_cv_o_cloexec=no])])
1769if test $ac_cv_o_cloexec = yes; then
1770 AC_DEFINE(HOST_HAS_O_CLOEXEC, 1,
1771 [Define if O_CLOEXEC supported by fcntl.])
1772fi
1773
827f6413
ML
1774# Check if O_NONBLOCK is defined by fcntl
1775AC_CHECK_HEADERS([fcntl.h])
1776AC_CHECK_DECL(O_NONBLOCK,,,[#include <fcntl.h>])
1777if test $ac_cv_have_decl_O_NONBLOCK = yes; then
1778 AC_DEFINE(HOST_HAS_O_NONBLOCK, 1,
1779 [Define if O_NONBLOCK supported by fcntl.])
1780fi
1781
1782
e1f07131
NS
1783# C++ Modules would like some networking features to provide the mapping
1784# server. You can still use modules without them though.
1785# The following network-related checks could probably do with some
1786# Windows and other non-linux defenses and checking.
1787
1788# Local socket connectivity wants AF_UNIX networking
1789# Check for AF_UNIX networking
1790AC_CACHE_CHECK(for AF_UNIX, ac_cv_af_unix, [
1791AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1792#include <sys/types.h>
1793#include <sys/socket.h>
1794#include <sys/un.h>
1795#include <netinet/in.h>]],[[
1796sockaddr_un un;
1797un.sun_family = AF_UNSPEC;
1798int fd = socket (AF_UNIX, SOCK_STREAM, 0);
1799connect (fd, (sockaddr *)&un, sizeof (un));]])],
1800[ac_cv_af_unix=yes],
1801[ac_cv_af_unix=no])])
1802if test $ac_cv_af_unix = yes; then
1803 AC_DEFINE(HAVE_AF_UNIX, 1,
1804 [Define if AF_UNIX supported.])
1805fi
1806
1807# Remote socket connectivity wants AF_INET6 networking
1808# Check for AF_INET6 networking
1809AC_CACHE_CHECK(for AF_INET6, ac_cv_af_inet6, [
1810AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1811#include <sys/types.h>
1812#include <sys/socket.h>
1813#include <netinet/in.h>
1814#include <netdb.h>]],[[
1815sockaddr_in6 in6;
1816in6.sin6_family = AF_UNSPEC;
1817struct addrinfo *addrs = 0;
1818struct addrinfo hints;
1819hints.ai_flags = 0;
1820hints.ai_family = AF_INET6;
1821hints.ai_socktype = SOCK_STREAM;
1822hints.ai_protocol = 0;
1823hints.ai_canonname = 0;
1824hints.ai_addr = 0;
1825hints.ai_next = 0;
1826int e = getaddrinfo ("localhost", 0, &hints, &addrs);
1827const char *str = gai_strerror (e);
1828freeaddrinfo (addrs);
1829int fd = socket (AF_INET6, SOCK_STREAM, 0);
1830connect (fd, (sockaddr *)&in6, sizeof (in6));]])],
1831[ac_cv_af_inet6=yes],
1832[ac_cv_af_inet6=no])])
1833if test $ac_cv_af_inet6 = yes; then
1834 AC_DEFINE(HAVE_AF_INET6, 1,
1835 [Define if AF_INET6 supported.])
1836fi
1837
9ec469f5
EB
1838# Check if _LK_LOCK is supported by _locking
1839AC_CACHE_CHECK(for _LK_LOCK, ac_cv_lk_lock, [
1840AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1841#include <io.h>
1842#include <sys/locking.h>]], [[
1843 int fd;
1844 return _locking (fd, _LK_LOCK, 0);]])],
1845[ac_cv_lk_lock=yes],[ac_cv_lk_lock=no])])
1846if test $ac_cv_lk_lock = yes; then
1847 AC_DEFINE(HOST_HAS_LK_LOCK, 1,
1848 [Define if _LK_LOC supported by _locking.])
1849fi
1850
87fb500b 1851# Restore CFLAGS, CXXFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
86cf1cbd 1852CFLAGS="$saved_CFLAGS"
87fb500b 1853CXXFLAGS="$saved_CXXFLAGS"
86cf1cbd 1854
75923b2f 1855# mkdir takes a single argument on some systems.
99e757d5 1856gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
75923b2f 1857
46f18e7b
RK
1858# File extensions
1859manext='.1'
1860objext='.o'
46f18e7b
RK
1861AC_SUBST(manext)
1862AC_SUBST(objext)
46f18e7b 1863
4977bab6
ZW
1864# With Setjmp/Longjmp based exception handling.
1865AC_ARG_ENABLE(sjlj-exceptions,
b88ecf55
AS
1866[AS_HELP_STRING([--enable-sjlj-exceptions],
1867 [arrange to use setjmp/longjmp exception handling])],
7f067400 1868[force_sjlj_exceptions=yes],
399fe3e1 1869[case $target in
9b0af790
JB
1870 lm32*-*-*)
1871 force_sjlj_exceptions=yes
1872 enableval=yes
1873 ;;
399fe3e1
JDA
1874 *)
1875 force_sjlj_exceptions=no
1876 ;;
1877esac])
1878if test $force_sjlj_exceptions = yes; then
1879 sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
1880 AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
1881 [Define 0/1 to force the choice for exception handling model.])
1882fi
4977bab6 1883
34a86c2b
NN
1884# --------------------------------------------------------
1885# Build, host, and target specific configuration fragments
1886# --------------------------------------------------------
1887
5b28c537 1888# Collect build-machine-specific information.
2c811fd3 1889. ${srcdir}/config.build || exit 1
5b28c537 1890
a89ea0df 1891# Collect host-machine-specific information.
2c811fd3 1892. ${srcdir}/config.host || exit 1
a89ea0df 1893
ef69da62 1894target_gtfiles=
a89ea0df
NN
1895
1896# Collect target-machine-specific information.
2c811fd3 1897. ${srcdir}/config.gcc || exit 1
46f18e7b
RK
1898
1899extra_objs="${host_extra_objs} ${extra_objs}"
30500d84 1900extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
46f18e7b
RK
1901
1902# Default the target-machine variables that were not explicitly set.
75bffa71 1903if test x"$tm_file" = x
46f18e7b
RK
1904then tm_file=$cpu_type/$cpu_type.h; fi
1905
6b2adea9 1906if test x"$extra_headers" = x
46f18e7b
RK
1907then extra_headers=; fi
1908
75bffa71 1909if test x$md_file = x
e98e406f 1910then md_file=$cpu_type/$cpu_type.md; fi
46f18e7b 1911
75bffa71 1912if test x$out_file = x
cd9912b5 1913then out_file=$cpu_type/$cpu_type.cc; fi
46f18e7b 1914
75bffa71 1915if test x"$tmake_file" = x
46f18e7b
RK
1916then tmake_file=$cpu_type/t-$cpu_type
1917fi
1918
e9c9f128
JJ
1919# Support --enable-initfini-array.
1920if test x$enable_initfini_array != xno; then
1921 tm_file="${tm_file} initfini-array.h"
1922fi
1923
90e6a802 1924if test x"$dwarf2" = xyes
756ee602 1925then tm_file="$tm_file tm-dwarf2.h"
90e6a802
RL
1926fi
1927
46f18e7b 1928# Say what files are being used for the output code and MD file.
11642c3a 1929echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
46f18e7b
RK
1930echo "Using \`$srcdir/config/$md_file' as machine description file."
1931
11642c3a 1932# If any of the xm_file variables contain nonexistent files, warn
4dc0535b
ZW
1933# about them and drop them.
1934
11642c3a
ZW
1935bx=
1936for x in $build_xm_file; do
1937 if test -f $srcdir/config/$x
1938 then bx="$bx $x"
11642c3a
ZW
1939 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1940 fi
1941done
1942build_xm_file="$bx"
1943
1944hx=
1945for x in $host_xm_file; do
1946 if test -f $srcdir/config/$x
1947 then hx="$hx $x"
11642c3a
ZW
1948 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1949 fi
1950done
1951host_xm_file="$hx"
1952
1953tx=
1954for x in $xm_file; do
1955 if test -f $srcdir/config/$x
1956 then tx="$tx $x"
11642c3a
ZW
1957 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1958 fi
1959done
1960xm_file="$tx"
1961
46f18e7b
RK
1962count=a
1963for f in $tm_file; do
1964 count=${count}x
1965done
75bffa71 1966if test $count = ax; then
46f18e7b
RK
1967 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
1968else
1969 echo "Using the following target machine macro files:"
1970 for f in $tm_file; do
1971 echo " $srcdir/config/$f"
1972 done
1973fi
1974
99fa8911
AP
1975if test x$use_long_long_for_widest_fast_int = xyes; then
1976 AC_DEFINE(USE_LONG_LONG_FOR_WIDEST_FAST_INT, 1,
edf6ddf6 1977[Define to 1 if the 'long long' type is wider than 'long' but still
99fa8911
AP
1978efficiently supported by the host hardware.])
1979fi
1980
b993039f
EB
1981gnu_ld_bool=`if test x"$gnu_ld" = x"yes"; then echo 1; else echo 0; fi`
1982AC_DEFINE_UNQUOTED(HAVE_GNU_LD, $gnu_ld_bool, [Define to 1 if using GNU ld.])
1983
1984gnu_as_bool=`if test x"$gas" = x"yes"; then echo 1; else echo 0; fi`
1985AC_DEFINE_UNQUOTED(HAVE_GNU_AS, $gnu_as_bool, [Define to 1 if using GNU as.])
1986
46f18e7b
RK
1987count=a
1988for f in $host_xm_file; do
1989 count=${count}x
1990done
11642c3a
ZW
1991if test $count = a; then
1992 :
1993elif test $count = ax; then
46f18e7b
RK
1994 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
1995else
1996 echo "Using the following host machine macro files:"
1997 for f in $host_xm_file; do
1998 echo " $srcdir/config/$f"
1999 done
2000fi
476d9098 2001echo "Using ${out_host_hook_obj} for host machine hooks."
46f18e7b 2002
75bffa71 2003if test "$host_xm_file" != "$build_xm_file"; then
46f18e7b
RK
2004 count=a
2005 for f in $build_xm_file; do
2006 count=${count}x
2007 done
11642c3a
ZW
2008 if test $count = a; then
2009 :
2010 elif test $count = ax; then
46f18e7b
RK
2011 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
2012 else
2013 echo "Using the following build machine macro files:"
2014 for f in $build_xm_file; do
2015 echo " $srcdir/config/$f"
2016 done
2017 fi
2018fi
2019
08b2bad2
SB
2020if test -n "$configured_native_system_header_dir"; then
2021 native_system_header_dir=$configured_native_system_header_dir
2022fi
2023NATIVE_SYSTEM_HEADER_DIR="$native_system_header_dir"
2024AC_SUBST(NATIVE_SYSTEM_HEADER_DIR)
2025
4f6d8cc8 2026case ${host} in
b8ec3cc8 2027 powerpc*-*-darwin*)
4f6d8cc8
GK
2028 AC_CACHE_CHECK([whether mcontext_t fields have underscores],
2029 gcc_cv_mcontext_underscores,
22e05272 2030 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
ba7da42a 2031#include <sys/cdefs.h>
de4fb767 2032#include <sys/signal.h>
4f6d8cc8
GK
2033#include <ucontext.h>
2034int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; }
22e05272 2035])],
4f6d8cc8
GK
2036 gcc_cv_mcontext_underscores=no, gcc_cv_mcontext_underscores=yes))
2037 if test $gcc_cv_mcontext_underscores = yes; then
2038 AC_DEFINE(HAS_MCONTEXT_T_UNDERSCORES,,dnl
2039 [mcontext_t fields start with __])
2040 fi
2041 ;;
2042esac
2043
8bb915b6
NN
2044# ---------
2045# Threading
2046# ---------
2047
c2e494a8 2048# Check if a valid thread package
615be2cf 2049case ${enable_threads} in
c2e494a8
NN
2050 "" | no)
2051 # No threads
2052 target_thread_file='single'
2053 ;;
2054 yes)
2055 # default
2056 target_thread_file='single'
2057 ;;
ddaad3c8 2058 aix | dce | lynx | mipssde | posix | rtems | \
f036d759 2059 single | tpf | vxworks | win32 | mcf)
615be2cf 2060 target_thread_file=${enable_threads}
c2e494a8
NN
2061 ;;
2062 *)
615be2cf 2063 echo "${enable_threads} is an unknown thread package" 1>&2
c2e494a8
NN
2064 exit 1
2065 ;;
2066esac
2067
2068if test x${thread_file} = x; then
2069 # No thread file set by target-specific clauses in config.gcc,
2070 # so use file chosen by default logic above
2071 thread_file=${target_thread_file}
46f18e7b 2072fi
46f18e7b 2073
8bb915b6
NN
2074# --------
2075# UNSORTED
2076# --------
2077
18fbf599 2078use_cxa_atexit=no
2121a768
JT
2079if test x$enable___cxa_atexit = xyes || \
2080 test x$enable___cxa_atexit = x -a x$default_use_cxa_atexit = xyes; then
18fbf599 2081 if test x$host = x$target; then
97388150
DS
2082 case $host in
2083 # mingw32 doesn't have __cxa_atexit but uses atexit registration
2084 # keyed to flag_use_cxa_atexit
2085 *-*-mingw32*)
2086 use_cxa_atexit=yes
2087 ;;
99113dff
DE
2088 powerpc-ibm-aix*)
2089 use_cxa_atexit=yes
2090 ;;
97388150
DS
2091 *)
2092 AC_CHECK_FUNC(__cxa_atexit,[use_cxa_atexit=yes],
2093 [echo "__cxa_atexit can't be enabled on this target"])
5f60e48f 2094 ;;
97388150 2095 esac
18fbf599
PB
2096 else
2097 # We can't check for __cxa_atexit when building a cross, so assume
2098 # it is available
2099 use_cxa_atexit=yes
2100 fi
2101 if test x$use_cxa_atexit = xyes; then
c7b5e395 2102 AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 2,
18fbf599
PB
2103 [Define if you want to use __cxa_atexit, rather than atexit, to
2104 register C++ destructors for local statics and global objects.
2105 This is essential for fully standards-compliant handling of
2106 destructors, but requires __cxa_atexit in libc.])
2107 fi
2121a768
JT
2108fi
2109
a5381466 2110# Look for a file containing extra machine modes.
1c0ca89d
ZW
2111if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
2112 extra_modes_file='$(srcdir)'/config/${extra_modes}
a5381466 2113 AC_SUBST(extra_modes_file)
e22340b0 2114 AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "config/$extra_modes",
a5381466
ZW
2115 [Define to the name of a file containing a list of extra machine modes
2116 for this architecture.])
a5381466
ZW
2117fi
2118
75685792
RS
2119# Convert extra_options into a form suitable for Makefile use.
2120extra_opt_files=
fd438373 2121all_opt_files=
75685792
RS
2122for f in $extra_options; do
2123 extra_opt_files="$extra_opt_files \$(srcdir)/config/$f"
fd438373 2124 all_opt_files="$all_opt_files $srcdir/config/$f"
75685792
RS
2125done
2126AC_SUBST(extra_opt_files)
2127
b7cb92ad 2128# auto-host.h is the file containing items generated by autoconf and is
e9a25f70 2129# the first file included by config.h.
4977bab6 2130# If host=build, it is correct to have bconfig include auto-host.h
db81d74a
RH
2131# as well. If host!=build, we are in error and need to do more
2132# work to find out the build config parameters.
75bffa71 2133if test x$host = x$build
db81d74a 2134then
eaf4e618 2135 build_auto=auto-host.h
499d66aa 2136 HAVE_AUTO_BUILD='# '
b7cb92ad
JL
2137else
2138 # We create a subdir, then run autoconf in the subdir.
2139 # To prevent recursion we set host and build for the new
2140 # invocation of configure to the build for this invocation
2141 # of configure.
2142 tempdir=build.$$
2143 rm -rf $tempdir
2144 mkdir $tempdir
2145 cd $tempdir
2146 case ${srcdir} in
b86ecfa9 2147 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
b7cb92ad
JL
2148 *) realsrcdir=../${srcdir};;
2149 esac
2ceb362d
AM
2150 # Clearing GMPINC is necessary to prevent host headers being
2151 # used by the build compiler. Defining GENERATOR_FILE stops
2152 # system.h from including gmp.h.
d920e825 2153 CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
2ceb362d
AM
2154 CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
2155 LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
84401ce5 2156 GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
d920e825 2157 ${realsrcdir}/configure \
33e70558 2158 --enable-languages=${enable_languages-all} \
499d66aa
AO
2159 ${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
2160 ${enable_option_checking+--enable-option-checking="$enable_option_checking"} \
2161 --target=$target_alias --host=$build_alias \
2162 --build=$build_alias || exit # retaining $tempdir
b7cb92ad
JL
2163
2164 # We just finished tests for the build machine, so rename
2165 # the file auto-build.h in the gcc directory.
2166 mv auto-host.h ../auto-build.h
2167 cd ..
2168 rm -rf $tempdir
eaf4e618 2169 build_auto=auto-build.h
499d66aa 2170 HAVE_AUTO_BUILD=
db81d74a 2171fi
71b5d516 2172AC_SUBST(build_subdir)
499d66aa 2173AC_SUBST(HAVE_AUTO_BUILD)
db81d74a 2174
eaf4e618 2175tm_file="${tm_file} defaults.h"
4977bab6
ZW
2176tm_p_file="${tm_p_file} tm-preds.h"
2177host_xm_file="auto-host.h ansidecl.h ${host_xm_file}"
2178build_xm_file="${build_auto} ansidecl.h ${build_xm_file}"
49691411 2179# We don't want ansidecl.h in target files, write code there in ISO/GNU C.
b4862477 2180# put this back in temporarily.
232b67d9 2181xm_file="auto-host.h ansidecl.h ${xm_file}"
0056a9b5 2182
34a86c2b
NN
2183# --------
2184# UNSORTED
2185# --------
2186
afabd8e6 2187changequote(,)dnl
cc1e60ea 2188# Compile in configure arguments.
8105825d 2189if test -f configargs.h ; then
cc1e60ea 2190 # Being re-configured.
022dae81 2191 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
54de7d7d
JJ
2192 gcc_reconf_arguments=`echo "$gcc_config_arguments" | sed -e 's/^.*\( : (reconfigured) .*$\)/\1/'`
2193 if [ "$gcc_reconf_arguments" != " : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS" ]; then
2194 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
2195 fi
cc1e60ea
JM
2196else
2197 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
2198fi
eeae7b41
DJ
2199
2200# Double all backslashes and backslash all quotes to turn
2201# gcc_config_arguments into a C string.
2202sed -e 's/\\/\\\\/g; s/"/\\"/g' <<EOF >conftest.out
2203$gcc_config_arguments
2204EOF
2205gcc_config_arguments_str=`cat conftest.out`
2206rm -f conftest.out
2207
cc1e60ea
JM
2208cat > configargs.h <<EOF
2209/* Generated automatically. */
eeae7b41 2210static const char configuration_arguments[] = "$gcc_config_arguments_str";
a6687d2b 2211static const char thread_model[] = "$thread_file";
7816bea0
DJ
2212
2213static const struct {
2214 const char *name, *value;
2215} configure_default_options[] = $configure_default_options;
cc1e60ea 2216EOF
75bffa71 2217changequote([,])dnl
46f18e7b 2218
0c463e16 2219changequote(,)dnl
40540e68
RAE
2220gcc_BASEVER=`cat $srcdir/BASE-VER`
2221gcc_DEVPHASE=`cat $srcdir/DEV-PHASE`
2222gcc_DATESTAMP=`cat $srcdir/DATESTAMP`
0c463e16 2223if test -f $srcdir/REVISION ; then
40540e68 2224 gcc_REVISION=`cat $srcdir/REVISION`
0c463e16
RAE
2225else
2226 gcc_REVISION=""
2227fi
2228cat > plugin-version.h <<EOF
2229#include "configargs.h"
2230
bf588455
BS
2231#define GCCPLUGIN_VERSION_MAJOR `echo $gcc_BASEVER | sed -e 's/^\([0-9]*\).*$/\1/'`
2232#define GCCPLUGIN_VERSION_MINOR `echo $gcc_BASEVER | sed -e 's/^[0-9]*\.\([0-9]*\).*$/\1/'`
2233#define GCCPLUGIN_VERSION_PATCHLEVEL `echo $gcc_BASEVER | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$/\1/'`
2234#define GCCPLUGIN_VERSION (GCCPLUGIN_VERSION_MAJOR*1000 + GCCPLUGIN_VERSION_MINOR)
2235
0c463e16
RAE
2236static char basever[] = "$gcc_BASEVER";
2237static char datestamp[] = "$gcc_DATESTAMP";
2238static char devphase[] = "$gcc_DEVPHASE";
2239static char revision[] = "$gcc_REVISION";
2240
2241/* FIXME plugins: We should make the version information more precise.
2242 One way to do is to add a checksum. */
2243
2244static struct plugin_gcc_version gcc_version = {basever, datestamp,
2245 devphase, revision,
2246 configuration_arguments};
2247EOF
2248changequote([,])dnl
2249
3c36aa6b
JJ
2250# Determine what GCC version number to use in filesystem paths.
2251GCC_BASE_VER
2252
ab87f8c8 2253# Internationalization
56694dd9 2254ZW_GNU_GETTEXT_SISTER_DIR
dc6746e7 2255
56694dd9
ZW
2256# If LIBINTL contains LIBICONV, then clear LIBICONV so we don't get
2257# -liconv on the link line twice.
2258case "$LIBINTL" in *$LIBICONV*)
2259 LIBICONV= ;;
2260esac
ab87f8c8 2261
7f970b70 2262AC_ARG_ENABLE(secureplt,
b88ecf55
AS
2263[AS_HELP_STRING([--enable-secureplt],
2264 [enable -msecure-plt by default for PowerPC])],
7f970b70
AM
2265[], [])
2266
446163e2
TP
2267AC_ARG_ENABLE(mingw-wildcard,
2268[AS_HELP_STRING([--enable-mingw-wildcard],
2269 [Set whether to expand wildcard on command-line.
2270 Default to platform configuration])],
2271[],[enable_mingw_wildcard=platform])
2272AS_IF([test x"$enable_mingw_wildcard" != xplatform ],
2273 [AC_DEFINE_UNQUOTED(MINGW_DOWILDCARD,
2274 $(test x"$enable_mingw_wildcard" = xno; echo $?),
2275 [Value to set mingw's _dowildcard to.])])
2276
67aeaded
AO
2277AC_ARG_ENABLE(large-address-aware,
2278[AS_HELP_STRING([--enable-large-address-aware],
2279 [Link mingw executables with --large-address-aware])])
2280AS_IF([test x"$enable_large_address_aware" = xyes],
2281 [AC_DEFINE([MINGW_DEFAULT_LARGE_ADDR_AWARE], 1,
2282 [Define if we should link mingw executables with --large-address-aware])])
2283
ad211091
KT
2284AC_ARG_ENABLE(leading-mingw64-underscores,
2285 AS_HELP_STRING([--enable-leading-mingw64-underscores],
b88ecf55 2286 [enable leading underscores on 64 bit mingw targets]),
ad211091
KT
2287 [],[])
2288AS_IF([ test x"$enable_leading_mingw64_underscores" = xyes ],
2289 [AC_DEFINE(USE_MINGW64_LEADING_UNDERSCORES, 1,
2290 [Define if we should use leading underscore on 64 bit mingw targets])])
2291
922e3e33 2292AC_ARG_ENABLE(cld,
b88ecf55 2293[AS_HELP_STRING([--enable-cld], [enable -mcld by default for 32bit x86])], [],
922e3e33
UB
2294[enable_cld=no])
2295
d79389af 2296AC_ARG_ENABLE(frame-pointer,
b88ecf55 2297[AS_HELP_STRING([--enable-frame-pointer],
fd661a34 2298 [enable -fno-omit-frame-pointer by default for x86])], [],
d79389af
L
2299[
2300case $target_os in
6221eb9d 2301linux* | gnu* | darwin[[8912]]* | cygwin* | mingw*)
7d48b7ad 2302 # Enable -fomit-frame-pointer by default for these systems with DWARF2.
d79389af
L
2303 enable_frame_pointer=no
2304 ;;
2305*)
2306 enable_frame_pointer=yes
2307 ;;
2308esac
2309])
2310
fd661a34
UB
2311case $target in
2312i[[34567]]86-*-* | x86_64-*-*)
2313 if test "x$enable_cld" = xyes; then
2314 tm_defines="${tm_defines} USE_IX86_CLD=1"
2315 fi
2316 if test "x$enable_frame_pointer" = xyes; then
2317 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
2318 fi
2319 ;;
2320esac
2321
f4ab28e3
MK
2322# Windows32 Registry support for specifying GCC installation paths.
2323AC_ARG_ENABLE(win32-registry,
b88ecf55
AS
2324[AS_HELP_STRING([--disable-win32-registry],
2325 [disable lookup of installation paths in the
2326 Registry on Windows hosts])
2327AS_HELP_STRING([--enable-win32-registry], [enable registry lookup (default)])
2328AS_HELP_STRING([--enable-win32-registry=KEY],
2329 [use KEY instead of GCC version as the last portion
2330 of the registry key])],,)
a1286ef5 2331
4e70264f 2332case $host_os in
abe64d9e 2333 win32 | pe | cygwin* | mingw32*)
a1286ef5
ZW
2334 if test "x$enable_win32_registry" != xno; then
2335 AC_SEARCH_LIBS(RegOpenKeyExA, advapi32,, [enable_win32_registry=no])
2336 fi
f4ab28e3 2337
a1286ef5
ZW
2338 if test "x$enable_win32_registry" != xno; then
2339 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
2340 [Define to 1 if installation paths should be looked up in the Windows
2341 Registry. Ignored on non-Windows hosts.])
2342
2343 if test "x$enable_win32_registry" != xyes \
2344 && test "x$enable_win32_registry" != x; then
2345 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$enable_win32_registry",
2346 [Define to be the last component of the Windows registry key under which
2347 to look for installation paths. The full key used will be
2348 HKEY_LOCAL_MACHINE/SOFTWARE/Free Software Foundation/{WIN32_REGISTRY_KEY}.
2349 The default is the GCC version number.])
2350 fi
2351 fi
f4ab28e3
MK
2352 ;;
2353esac
2354
7fa10b25 2355# Get an absolute path to the GCC top-level source directory
1e6347d8 2356holddir=`${PWDCMD-pwd}`
7fa10b25 2357cd $srcdir
1e6347d8 2358topdir=`${PWDCMD-pwd}`
7fa10b25
RK
2359cd $holddir
2360
af5e4ada 2361# Conditionalize the makefile for this host machine.
2ed26f6b 2362xmake_file=
c406e779 2363for f in ${host_xmake_file}
94f42018 2364do
75bffa71 2365 if test -f ${srcdir}/config/$f
94f42018 2366 then
2ed26f6b 2367 xmake_file="${xmake_file} \$(srcdir)/config/$f"
94f42018
DE
2368 fi
2369done
46f18e7b 2370
af5e4ada 2371# Conditionalize the makefile for this target machine.
2ed26f6b 2372tmake_file_=
c406e779 2373for f in ${tmake_file}
94f42018 2374do
75bffa71 2375 if test -f ${srcdir}/config/$f
94f42018 2376 then
2ed26f6b 2377 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
94f42018
DE
2378 fi
2379done
d228ee80 2380tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
5891b37d 2381
cd9912b5
ML
2382out_object_file=`basename $out_file .cc`.o
2383common_out_object_file=`basename $common_out_file .cc`.o
5891b37d 2384
75685792 2385tm_file_list="options.h"
f938f60c 2386tm_include_list="options.h insn-constants.h"
af5e4ada 2387for f in $tm_file; do
64ccbc99 2388 case $f in
3ca43df7
RS
2389 ./* )
2390 f=`echo $f | sed 's/^..//'`
2391 tm_file_list="${tm_file_list} $f"
2392 tm_include_list="${tm_include_list} $f"
2393 ;;
d02af173 2394 defaults.h )
e22340b0
ZW
2395 tm_file_list="${tm_file_list} \$(srcdir)/$f"
2396 tm_include_list="${tm_include_list} $f"
2397 ;;
2398 * )
2399 tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
2400 tm_include_list="${tm_include_list} config/$f"
2401 ;;
64ccbc99 2402 esac
af5e4ada 2403done
46f18e7b 2404
11642c3a 2405tm_p_file_list=
e22340b0 2406tm_p_include_list=
11642c3a 2407for f in $tm_p_file; do
4977bab6
ZW
2408 case $f in
2409 tm-preds.h )
e22340b0
ZW
2410 tm_p_file_list="${tm_p_file_list} $f"
2411 tm_p_include_list="${tm_p_include_list} $f"
2412 ;;
2413 * )
2414 tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
2415 tm_p_include_list="${tm_p_include_list} config/$f"
2416 esac
2417done
2418
b4c522fa 2419tm_d_file_list=
d5ad6f84 2420tm_d_include_list=
b4c522fa
IB
2421for f in $tm_d_file; do
2422 case $f in
b4c522fa
IB
2423 * )
2424 tm_d_file_list="${tm_d_file_list} \$(srcdir)/config/$f"
2425 tm_d_include_list="${tm_d_include_list} config/$f"
2426 ;;
2427 esac
2428done
2429
b1c06fd9
IB
2430tm_rust_file_list=
2431tm_rust_include_list=
2432for f in $tm_rust_file; do
2433 case $f in
2434 * )
2435 tm_rust_file_list="${tm_rust_file_list} \$(srcdir)/config/$f"
2436 tm_rust_include_list="${tm_rust_include_list} config/$f"
2437 ;;
2438 esac
2439done
2440
e22340b0
ZW
2441xm_file_list=
2442xm_include_list=
2443for f in $xm_file; do
2444 case $f in
2445 ansidecl.h )
2446 xm_file_list="${xm_file_list} \$(srcdir)/../include/$f"
2447 xm_include_list="${xm_include_list} $f"
2448 ;;
2449 auto-host.h )
2450 xm_file_list="${xm_file_list} $f"
2451 xm_include_list="${xm_include_list} $f"
2452 ;;
2453 * )
2454 xm_file_list="${xm_file_list} \$(srcdir)/config/$f"
2455 xm_include_list="${xm_include_list} config/$f"
2456 ;;
4977bab6 2457 esac
11642c3a
ZW
2458done
2459
af5e4ada 2460host_xm_file_list=
e22340b0 2461host_xm_include_list=
af5e4ada 2462for f in $host_xm_file; do
64ccbc99 2463 case $f in
d02af173 2464 ansidecl.h )
e22340b0
ZW
2465 host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/$f"
2466 host_xm_include_list="${host_xm_include_list} $f"
2467 ;;
e2500fed 2468 auto-host.h )
e22340b0
ZW
2469 host_xm_file_list="${host_xm_file_list} $f"
2470 host_xm_include_list="${host_xm_include_list} $f"
2471 ;;
2472 * )
2473 host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f"
2474 host_xm_include_list="${host_xm_include_list} config/$f"
2475 ;;
64ccbc99 2476 esac
af5e4ada
DE
2477done
2478
2479build_xm_file_list=
2480for f in $build_xm_file; do
64ccbc99 2481 case $f in
d02af173 2482 ansidecl.h )
e22340b0
ZW
2483 build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/$f"
2484 build_xm_include_list="${build_xm_include_list} $f"
2485 ;;
e2500fed 2486 auto-build.h | auto-host.h )
e22340b0
ZW
2487 build_xm_file_list="${build_xm_file_list} $f"
2488 build_xm_include_list="${build_xm_include_list} $f"
2489 ;;
2490 * )
2491 build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f"
2492 build_xm_include_list="${build_xm_include_list} config/$f"
2493 ;;
64ccbc99 2494 esac
af5e4ada 2495done
46f18e7b 2496
2989d30c
GK
2497# Define macro CROSS_DIRECTORY_STRUCTURE in compilation if this is a
2498# cross-compiler which does not use the native headers and libraries.
a078a589
ZW
2499# Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
2500CROSS= AC_SUBST(CROSS)
2501ALL=all.internal AC_SUBST(ALL)
2502SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
0c90d48b 2503BUILD_SYSTEM_HEADER_DIR=$SYSTEM_HEADER_DIR AC_SUBST(BUILD_SYSTEM_HEADER_DIR)
b28250ab 2504
0c90d48b
BE
2505if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x ||
2506 test x$build != x$host || test "x$with_build_sysroot" != x; then
2507 if test "x$with_build_sysroot" != x; then
2508 BUILD_SYSTEM_HEADER_DIR=$with_build_sysroot'$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
2509 else
2510 BUILD_SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
2511 fi
b28250ab 2512
0c90d48b
BE
2513 if test x$host != x$target
2514 then
2515 CROSS="-DCROSS_DIRECTORY_STRUCTURE"
2516 ALL=all.cross
2517 SYSTEM_HEADER_DIR=$BUILD_SYSTEM_HEADER_DIR
2518 elif test "x$TARGET_SYSTEM_ROOT" != x; then
2519 SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
2520 fi
46f18e7b 2521
0c90d48b
BE
2522 if test "x$with_build_sysroot" != "x"; then
2523 target_header_dir="${with_build_sysroot}${native_system_header_dir}"
7d7d00ba
HPN
2524 elif test "x$with_sysroot" = x; then
2525 target_header_dir="${test_exec_prefix}/${target_noncanonical}/sys-include"
7d7d00ba
HPN
2526 elif test "x$with_sysroot" = xyes; then
2527 target_header_dir="${test_exec_prefix}/${target_noncanonical}/sys-root${native_system_header_dir}"
2528 else
2529 target_header_dir="${with_sysroot}${native_system_header_dir}"
2530 fi
2531else
2532 target_header_dir=${native_system_header_dir}
2533fi
2534
b39d221a
EC
2535# If this is a cross-compiler that does not
2536# have its own set of headers then define
2537# inhibit_libc
2538
dc06db20
R
2539# If this is using newlib, without having the headers available now,
2540# then define inhibit_libc in LIBGCC2_CFLAGS.
fecd6201
ZW
2541# This prevents libgcc2 from containing any code which requires libc
2542# support.
a929bc28 2543: ${inhibit_libc=false}
dc06db20
R
2544if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
2545 test x$with_newlib = xyes ; } &&
7d7d00ba 2546 { test "x$with_headers" = xno || test ! -f "$target_header_dir/stdio.h"; } ; then
160633c6 2547 inhibit_libc=true
b39d221a
EC
2548fi
2549AC_SUBST(inhibit_libc)
2550
a078a589
ZW
2551# When building gcc with a cross-compiler, we need to adjust things so
2552# that the generator programs are still built with the native compiler.
52c0e446 2553# Also, we cannot run fixincludes.
a078a589
ZW
2554
2555# These are the normal (build=host) settings:
eaf9f3b2 2556CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD)
bdd5dc28 2557CXX_FOR_BUILD='$(CXX)' AC_SUBST(CXX_FOR_BUILD)
4977bab6 2558BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS)
bdd5dc28 2559BUILD_CXXFLAGS='$(ALL_CXXFLAGS)' AC_SUBST(BUILD_CXXFLAGS)
f8c33439 2560BUILD_LDFLAGS='$(LDFLAGS)' AC_SUBST(BUILD_LDFLAGS)
a078a589 2561STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
587dc9c6 2562
83599948
NS
2563# And these apply if build != host, or we are generating coverage data
2564if test x$build != x$host || test "x$coverage_flags" != x
af5e4ada 2565then
5116b54e
TB
2566 BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS-$@) $(CFLAGS_FOR_BUILD)'
2567 BUILD_CXXFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS-$@) $(CXXFLAGS_FOR_BUILD)'
f8c33439 2568 BUILD_LDFLAGS='$(LDFLAGS_FOR_BUILD)'
af5e4ada 2569fi
46f18e7b 2570
be9dd80f
ML
2571
2572if test x$enable_fixincludes = xno;
2573then
2574 STMP_FIXINC=''
2575fi
2576
ae3a15bb
DE
2577# Expand extra_headers to include complete path.
2578# This substitutes for lots of t-* files.
2579extra_headers_list=
b1ef58c8
NN
2580# Prepend $(srcdir)/config/${cpu_type}/ to every entry in extra_headers.
2581for file in ${extra_headers} ; do
2582 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
2583done
ae3a15bb 2584
1617e5ee
GK
2585# If use_gcc_tgmath is set, append ginclude/tgmath.h.
2586if test x"$use_gcc_tgmath" = xyes
2587then extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/tgmath.h"
2588fi
2589
c38f02df
ILT
2590# Define collect2 in Makefile.
2591case $host_can_use_collect2 in
2592 no) collect2= ;;
2593 *) collect2='collect2$(exeext)' ;;
2594esac
2595AC_SUBST([collect2])
2596
af5e4ada 2597# Add a definition of USE_COLLECT2 if system wants one.
34a86c2b
NN
2598case $use_collect2 in
2599 no) use_collect2= ;;
2600 "") ;;
2601 *)
2602 host_xm_defines="${host_xm_defines} USE_COLLECT2"
2603 xm_defines="${xm_defines} USE_COLLECT2"
c38f02df
ILT
2604 case $host_can_use_collect2 in
2605 no)
2606 AC_MSG_ERROR([collect2 is required but cannot be built on this system])
2607 ;;
2608 esac
34a86c2b
NN
2609 ;;
2610esac
af5e4ada 2611
1cd0b716
DK
2612AC_DEFINE_UNQUOTED(LTOPLUGINSONAME,"${host_lto_plugin_soname}",
2613[Define to the name of the LTO plugin DSO that must be
2614 passed to the linker's -plugin=LIB option.])
2615
630327c3
NN
2616# ---------------------------
2617# Assembler & linker features
2618# ---------------------------
2619
da0f6381
PB
2620# During stage 2, ld is actually gcc/collect-ld, which is a small script to
2621# discern between when to use prev-ld/ld-new and when to use ld/ld-new.
2622# However when ld-new is first executed from the build tree, libtool will
2623# relink it as .libs/lt-ld-new, so that it can give it an RPATH that refers
2624# to the build tree. While doing this we need to use the previous-stage
2625# linker, or we have an infinite loop. The presence of a shell script as
2626# ld/ld-new, and the fact that the script *uses ld itself*, is what confuses
2627# the gcc/collect-ld script. So we need to know how libtool works, or
2628# exec-tool will fail.
2629
2630m4_defun([_LT_CONFIG_COMMANDS], [])
2631AC_PROG_LIBTOOL
2632AC_SUBST(objdir)
2633AC_SUBST(enable_fast_install)
2634
d869a8c4
NN
2635# Identify the assembler which will work hand-in-glove with the newly
2636# built GCC, so that we can examine its features. This is the assembler
2637# which will be driven by the driver program.
2638#
2639# If build != host, and we aren't building gas in-tree, we identify a
2640# build->target assembler and hope that it will have the same features
2641# as the host->target assembler we'll be using.
a2f319ea 2642gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
e8b05380
PB
2643
2644m4_pattern_allow([AS_FOR_TARGET])dnl
2645AS_VAR_SET_IF(gcc_cv_as,, [
3ccc3a56
AO
2646if test -x "$DEFAULT_ASSEMBLER"; then
2647 gcc_cv_as="$DEFAULT_ASSEMBLER"
6b1786aa 2648elif test -f $gcc_cv_as_gas_srcdir/configure.ac \
08d105fa
AO
2649 && test -f ../gas/Makefile \
2650 && test x$build = x$host; then
e8b05380
PB
2651 gcc_cv_as=../gas/as-new$build_exeext
2652elif test -x as$build_exeext; then
2653 # Build using assembler in the current directory.
2654 gcc_cv_as=./as$build_exeext
4a150fc8 2655elif ( set dummy $AS_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
2656 gcc_cv_as="$AS_FOR_TARGET"
2657else
2658 AC_PATH_PROG(gcc_cv_as, $AS_FOR_TARGET)
2659fi])
2660
2661ORIGINAL_AS_FOR_TARGET=$gcc_cv_as
2662AC_SUBST(ORIGINAL_AS_FOR_TARGET)
be0fe523
PB
2663case "$ORIGINAL_AS_FOR_TARGET" in
2664 ./as | ./as$build_exeext) ;;
2665 *) AC_CONFIG_FILES(as:exec-tool.in, [chmod +x as]) ;;
2666esac
e8b05380 2667
40f213e6
L
2668default_ld=
2669AC_ARG_ENABLE(ld,
2670[[ --enable-ld[=ARG] build ld [ARG={default,yes,no}]]],
2671[case "${enableval}" in
2672 no)
2673 default_ld=ld.gold
2674 ;;
2675 esac])
2676
95204cd5 2677install_gold_as_default=no
40f213e6
L
2678AC_ARG_ENABLE(gold,
2679[[ --enable-gold[=ARG] build gold [ARG={default,yes,no}]]],
2680[case "${enableval}" in
2681 default)
2682 install_gold_as_default=yes
2683 ;;
2684 yes)
2685 if test x${default_ld} != x; then
2686 install_gold_as_default=yes
2687 fi
2688 ;;
2689 no)
2690 ;;
2691 *)
2692 AC_MSG_ERROR([invalid --enable-gold argument])
2693 ;;
95204cd5 2694 esac])
40f213e6 2695
d869a8c4
NN
2696# Identify the linker which will work hand-in-glove with the newly
2697# built GCC, so that we can examine its features. This is the linker
2698# which will be driven by the driver program.
2699#
2700# If build != host, and we aren't building gas in-tree, we identify a
2701# build->target linker and hope that it will have the same features
2702# as the host->target linker we'll be using.
275b60d6
JJ
2703gcc_cv_gld_major_version=
2704gcc_cv_gld_minor_version=
2705gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
40f213e6 2706gcc_cv_ld_gold_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gold
275b60d6 2707gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
e8b05380
PB
2708
2709AS_VAR_SET_IF(gcc_cv_ld,, [
275b60d6
JJ
2710if test -x "$DEFAULT_LINKER"; then
2711 gcc_cv_ld="$DEFAULT_LINKER"
40f213e6
L
2712elif test $install_gold_as_default = yes \
2713 && test -f $gcc_cv_ld_gold_srcdir/configure.ac \
2714 && test -f ../gold/Makefile \
2715 && test x$build = x$host; then
2716 gcc_cv_ld=../gold/ld-new$build_exeext
6b1786aa 2717elif test -f $gcc_cv_ld_gld_srcdir/configure.ac \
08d105fa
AO
2718 && test -f ../ld/Makefile \
2719 && test x$build = x$host; then
e8b05380
PB
2720 gcc_cv_ld=../ld/ld-new$build_exeext
2721elif test -x collect-ld$build_exeext; then
2722 # Build using linker in the current directory.
2723 gcc_cv_ld=./collect-ld$build_exeext
4a150fc8 2724elif ( set dummy $LD_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
2725 gcc_cv_ld="$LD_FOR_TARGET"
2726else
2727 AC_PATH_PROG(gcc_cv_ld, $LD_FOR_TARGET)
2728fi])
2729
5938f74d 2730ORIGINAL_PLUGIN_LD_FOR_TARGET=$gcc_cv_ld
36d21883 2731PLUGIN_LD_SUFFIX=`basename $gcc_cv_ld | sed -e "s,$target_alias-,,"`
01a88d35
AP
2732# if the PLUGIN_LD is set ld-new, just have it as ld
2733# as that is the installed named.
3cecbdfa
TS
2734if test x$PLUGIN_LD_SUFFIX = xld-new \
2735 || test x$PLUGIN_LD_SUFFIX = xcollect-ld ; then
01a88d35
AP
2736 PLUGIN_LD_SUFFIX=ld
2737fi
5938f74d 2738AC_ARG_WITH(plugin-ld,
b88ecf55 2739[AS_HELP_STRING([[--with-plugin-ld=[ARG]]], [specify the plugin linker])],
5938f74d
L
2740[if test x"$withval" != x; then
2741 ORIGINAL_PLUGIN_LD_FOR_TARGET="$withval"
bcefc344 2742 PLUGIN_LD_SUFFIX="$withval"
5938f74d
L
2743 fi])
2744AC_SUBST(ORIGINAL_PLUGIN_LD_FOR_TARGET)
36d21883 2745AC_DEFINE_UNQUOTED(PLUGIN_LD_SUFFIX, "$PLUGIN_LD_SUFFIX", [Specify plugin linker])
5938f74d 2746
1dcc82c2
DK
2747# Check to see if we are using gold instead of ld
2748AC_MSG_CHECKING(whether we are using gold)
2749ld_is_gold=no
2750if test x$gcc_cv_ld != x; then
2751 if $gcc_cv_ld --version 2>/dev/null | sed 1q \
2752 | grep "GNU gold" > /dev/null; then
2753 ld_is_gold=yes
2754 fi
2755fi
2756AC_MSG_RESULT($ld_is_gold)
2757
97f81909
ML
2758# Check to see if we are using mold instead of ld
2759AC_MSG_CHECKING(whether we are using mold)
2760ld_is_mold=no
2761if test x$gcc_cv_ld != x; then
2762 if $gcc_cv_ld --version 2>/dev/null | sed 1q \
2763 | grep "mold" > /dev/null; then
2764 ld_is_mold=yes
2765 fi
2766fi
2767AC_MSG_RESULT($ld_is_mold)
2768
2769
402565b6
LB
2770AC_MSG_CHECKING(gold linker with split stack support as non default)
2771# Check to see if default ld is not gold, but gold is
2772# available and has support for split stack. If gcc was configured
2773# with gold then no checking is done.
2774#
2775if test x$ld_is_gold = xno && which ${gcc_cv_ld}.gold >/dev/null 2>&1; then
2776
2777# For platforms other than powerpc64*, enable as appropriate.
2778
2779 gold_non_default=no
2780 ld_gold=`which ${gcc_cv_ld}.gold`
2781# Make sure this gold has minimal split stack support
2782 if $ld_gold --help 2>/dev/null | grep split-stack-adjust-size >/dev/null 2>&1; then
2783 ld_vers=`$ld_gold --version | sed 1q`
2784 gold_vers=`echo $ld_vers | sed -n \
2785 -e 's,^[[^)]]*[[ ]]\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*[[^)]]*\)) .*$,\1,p'`
2786 case $target in
2787# check that the gold version contains the complete split stack support
2788# on powerpc64 big and little endian
2789 powerpc64*-*-*)
2790 case "$gold_vers" in
2791 2.25.[[1-9]]*|2.2[[6-9]][[.0-9]]*|2.[[3-9]][[.0-9]]*|[[3-9]].[[.0-9]]*) gold_non_default=yes
2792 ;;
2793 *) gold_non_default=no
2794 ;;
2795 esac
2796 ;;
2797 esac
2798 fi
2799 if test $gold_non_default = yes; then
2800 AC_DEFINE(HAVE_GOLD_NON_DEFAULT_SPLIT_STACK, 1,
2801 [Define if the gold linker supports split stack and is available as a non-default])
2802 fi
2803fi
2804AC_MSG_RESULT($gold_non_default)
2805
e8b05380
PB
2806ORIGINAL_LD_FOR_TARGET=$gcc_cv_ld
2807AC_SUBST(ORIGINAL_LD_FOR_TARGET)
be0fe523
PB
2808case "$ORIGINAL_LD_FOR_TARGET" in
2809 ./collect-ld | ./collect-ld$build_exeext) ;;
2810 *) AC_CONFIG_FILES(collect-ld:exec-tool.in, [chmod +x collect-ld]) ;;
2811esac
e8b05380
PB
2812
2813AC_MSG_CHECKING(what linker to use)
55b46574
RO
2814if test "$gcc_cv_ld" = ../ld/ld-new$build_exeext \
2815 || test "$gcc_cv_ld" = ../gold/ld-new$build_exeext; then
08d105fa
AO
2816 # Single tree build which includes ld. We want to prefer it
2817 # over whatever linker top-level may have detected, since
2818 # we'll use what we're building after installation anyway.
e8b05380 2819 AC_MSG_RESULT(newly built ld)
34a86c2b 2820 in_tree_ld=yes
5408ac6c
HPN
2821 in_tree_ld_is_elf=no
2822 if (grep 'EMUL = .*elf' ../ld/Makefile \
8a45d680
AN
2823 || grep 'EMUL = .*linux' ../ld/Makefile \
2824 || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then
5408ac6c 2825 in_tree_ld_is_elf=yes
55b46574
RO
2826 elif test "$ld_is_gold" = yes; then
2827 in_tree_ld_is_elf=yes
5408ac6c 2828 fi
6b1786aa 2829 for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ld_gld_srcdir/configure.ac $gcc_cv_ld_gld_srcdir/Makefile.in
275b60d6
JJ
2830 do
2831changequote(,)dnl
81179208 2832 gcc_cv_gld_version=`sed -n -e 's/^[ ]*VERSION=[^0-9A-Za-z_]*\([0-9]*\.[0-9]*.*\)/VERSION=\1/p' < $f`
275b60d6
JJ
2833 if test x$gcc_cv_gld_version != x; then
2834 break
2835 fi
2836 done
81179208
HPN
2837 case $gcc_cv_gld_version in
2838 VERSION=[0-9]*) ;;
2839changequote([,])dnl
2840 *) AC_MSG_ERROR([[cannot find version of in-tree linker]]) ;;
2841changequote(,)dnl
2842 esac
275b60d6
JJ
2843 gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
2844 gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
2845changequote([,])dnl
40f213e6
L
2846 ORIGINAL_LD_BFD_FOR_TARGET=../ld/ld-new$build_exeext
2847 ORIGINAL_LD_GOLD_FOR_TARGET=../gold/ld-new$build_exeext
e8b05380
PB
2848else
2849 AC_MSG_RESULT($gcc_cv_ld)
2850 in_tree_ld=no
40f213e6
L
2851 gcc_cvs_ld_program=`dirname $gcc_cv_ld`/`basename $gcc_cv_ld $host_exeext`
2852 ORIGINAL_LD_BFD_FOR_TARGET=${gcc_cvs_ld_program}.bfd$host_exeext
2853 ORIGINAL_LD_GOLD_FOR_TARGET=${gcc_cvs_ld_program}.gold$host_exeext
275b60d6
JJ
2854fi
2855
40f213e6
L
2856AC_SUBST(ORIGINAL_LD_BFD_FOR_TARGET)
2857AC_SUBST(ORIGINAL_LD_GOLD_FOR_TARGET)
2858
981d4858 2859# Figure out what nm we will be using.
f9c1196a 2860gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
e8b05380 2861AS_VAR_SET_IF(gcc_cv_nm,, [
6b1786aa 2862if test -f $gcc_cv_binutils_srcdir/configure.ac \
c15b113b
DD
2863 && test -f ../binutils/Makefile \
2864 && test x$build = x$host; then
9f18db39
PB
2865 gcc_cv_nm=../binutils/nm-new$build_exeext
2866elif test -x nm$build_exeext; then
57991eba 2867 gcc_cv_nm=./nm$build_exeext
4a150fc8 2868elif ( set dummy $NM_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
2869 gcc_cv_nm="$NM_FOR_TARGET"
2870else
2871 AC_PATH_PROG(gcc_cv_nm, $NM_FOR_TARGET)
2872fi])
9f18db39 2873
9f18db39 2874AC_MSG_CHECKING(what nm to use)
e8b05380
PB
2875if test "$gcc_cv_nm" = ../binutils/nm-new$build_exeext; then
2876 # Single tree build which includes binutils.
2877 AC_MSG_RESULT(newly built nm)
2878 in_tree_nm=yes
2879else
2880 AC_MSG_RESULT($gcc_cv_nm)
2881 in_tree_nm=no
2882fi
2883
2884ORIGINAL_NM_FOR_TARGET=$gcc_cv_nm
2885AC_SUBST(ORIGINAL_NM_FOR_TARGET)
be0fe523
PB
2886case "$ORIGINAL_NM_FOR_TARGET" in
2887 ./nm | ./nm$build_exeext) ;;
2888 *) AC_CONFIG_FILES(nm:exec-tool.in, [chmod +x nm]) ;;
2889esac
2890
981d4858 2891
3cae5780 2892# Figure out what objdump we will be using.
e8b05380 2893AS_VAR_SET_IF(gcc_cv_objdump,, [
6b1786aa 2894if test -f $gcc_cv_binutils_srcdir/configure.ac \
c15b113b
DD
2895 && test -f ../binutils/Makefile \
2896 && test x$build = x$host; then
f9c1196a 2897 # Single tree build which includes binutils.
9f18db39 2898 gcc_cv_objdump=../binutils/objdump$build_exeext
d739199a
DJ
2899elif test -x objdump$build_exeext; then
2900 gcc_cv_objdump=./objdump$build_exeext
4a150fc8 2901elif ( set dummy $OBJDUMP_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
2902 gcc_cv_objdump="$OBJDUMP_FOR_TARGET"
2903else
2904 AC_PATH_PROG(gcc_cv_objdump, $OBJDUMP_FOR_TARGET)
2905fi])
d739199a 2906
d739199a 2907AC_MSG_CHECKING(what objdump to use)
e8b05380
PB
2908if test "$gcc_cv_objdump" = ../binutils/objdump$build_exeext; then
2909 # Single tree build which includes binutils.
2910 AC_MSG_RESULT(newly built objdump)
2911elif test x$gcc_cv_objdump = x; then
2912 AC_MSG_RESULT(not found)
2913else
2914 AC_MSG_RESULT($gcc_cv_objdump)
2915fi
3cae5780 2916
6e97481b
JJ
2917# Figure out what readelf we will be using.
2918AS_VAR_SET_IF(gcc_cv_readelf,, [
6b1786aa 2919if test -f $gcc_cv_binutils_srcdir/configure.ac \
6e97481b
JJ
2920 && test -f ../binutils/Makefile \
2921 && test x$build = x$host; then
2922 # Single tree build which includes binutils.
2923 gcc_cv_readelf=../binutils/readelf$build_exeext
2924elif test -x readelf$build_exeext; then
2925 gcc_cv_readelf=./readelf$build_exeext
32a18c8c
L
2926elif ( set dummy $READELF_FOR_TARGET; test -x $[2] ); then
2927 gcc_cv_readelf="$READELF_FOR_TARGET"
6e97481b 2928else
32a18c8c 2929 AC_PATH_PROG(gcc_cv_readelf, $READELF_FOR_TARGET)
6e97481b
JJ
2930fi])
2931
2932AC_MSG_CHECKING(what readelf to use)
2933if test "$gcc_cv_readelf" = ../binutils/readelf$build_exeext; then
2934 # Single tree build which includes binutils.
2935 AC_MSG_RESULT(newly built readelf)
2936elif test x$gcc_cv_readelf = x; then
2937 AC_MSG_RESULT(not found)
2938else
2939 AC_MSG_RESULT($gcc_cv_readelf)
2940fi
2941
e4a9a572
IS
2942# Figure out what otool we will be using.
2943AS_VAR_SET_IF(gcc_cv_otool,, [
2944if test -x otool$build_exeext; then
2945 gcc_cv_otool=./otool$build_exeext
2946elif ( set dummy $OTOOL_FOR_TARGET; test -x $[2] ); then
2947 gcc_cv_otool="$OTOOL_FOR_TARGET"
2948else
2949 AC_PATH_PROG(gcc_cv_otool, $OTOOL_FOR_TARGET)
2950fi])
2951
2952AC_MSG_CHECKING(what otool to use)
2953if test x$gcc_cv_otool = x; then
2954 AC_MSG_RESULT(not found)
2955else
2956 AC_MSG_RESULT($gcc_cv_otool)
2957fi
2958
3b5e8ee4
IS
2959# Figure out the dsymutil we will use.
2960AS_VAR_SET_IF(gcc_cv_dsymutil,, [
2961if test -x "$DEFAULT_DSYMUTIL"; then
2962 gcc_cv_dsymutil="$DEFAULT_DSYMUTIL"
2963elif test -x dsymutil$build_exeext; then
2964 gcc_cv_dsymutil=./dsymutil$build_exeext
2965elif ( set dummy $DSYMUTIL_FOR_TARGET; test -x $[2] ); then
2966 gcc_cv_dsymutil=$DSYMUTIL_FOR_TARGET
2967elif ( set dummy $DSYMUTIL; test -x $[2] ); then
2968 gcc_cv_dsymutil=$DSYMUTIL
2969else
2970 AC_PATH_PROG(gcc_cv_dsymutil, $DSYMUTIL_FOR_TARGET)
2971fi])
2972
2973ORIGINAL_DSYMUTIL_FOR_TARGET=$gcc_cv_dsymutil
2974AC_SUBST(ORIGINAL_DSYMUTIL_FOR_TARGET)
2975case "$ORIGINAL_DSYMUTIL_FOR_TARGET" in
2976 ./dsymutil | ./dsymutil$build_exeext) ;;
2977 *) AC_CONFIG_FILES(dsymutil:exec-tool.in, [chmod +x dsymutil]) ;;
2978esac
2979
981d4858 2980# Figure out what assembler alignment features are present.
1918f4b7 2981gcc_GAS_CHECK_FEATURE([.balign and .p2align], gcc_cv_as_balign_and_p2align,,
8ada417f
ZW
2982[.balign 4
2983.p2align 2],,
2984[AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN, 1,
2985 [Define if your assembler supports .balign and .p2align.])])
2986
1918f4b7 2987gcc_GAS_CHECK_FEATURE([.p2align with maximum skip], gcc_cv_as_max_skip_p2align,,
8ada417f
ZW
2988 [.p2align 4,,7],,
2989[AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN, 1,
2990 [Define if your assembler supports specifying the maximum number
2991 of bytes to skip when using the GAS .p2align command.])])
2992
1918f4b7 2993gcc_GAS_CHECK_FEATURE([.literal16], gcc_cv_as_literal16,,
5708d18d
MS
2994 [.literal16],,
2995[AC_DEFINE(HAVE_GAS_LITERAL16, 1,
2996 [Define if your assembler supports .literal16.])])
2997
1918f4b7 2998gcc_GAS_CHECK_FEATURE([working .subsection -1], gcc_cv_as_subsection_m1,,
8ada417f 2999 [conftest_label1: .word 0
d1accaa3
JJ
3000.subsection -1
3001conftest_label2: .word 0
8ada417f
ZW
3002.previous],
3003 [if test x$gcc_cv_nm != x; then
3004 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
3005 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
3006 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1
3007 then :
3008 else gcc_cv_as_subsection_m1=yes
3009 fi
3010 rm -f conftest.nm1 conftest.nm2
3011 fi],
3012 [AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
3013 [Define if your assembler supports .subsection and .subsection -1 starts
3014 emitting at the beginning of your section.])])
3015
1918f4b7 3016gcc_GAS_CHECK_FEATURE([.weak], gcc_cv_as_weak,,
8ada417f
ZW
3017 [ .weak foobar],,
3018[AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])])
3019
1918f4b7 3020gcc_GAS_CHECK_FEATURE([.weakref], gcc_cv_as_weakref,,
a0203ca7
AO
3021 [ .weakref foobar, barfnot],,
3022[AC_DEFINE(HAVE_GAS_WEAKREF, 1, [Define if your assembler supports .weakref.])])
3023
1918f4b7 3024gcc_GAS_CHECK_FEATURE([.nsubspa comdat], gcc_cv_as_nsubspa_comdat,,
e41f3691
JDA
3025 [ .SPACE $TEXT$
3026 .NSUBSPA $CODE$,COMDAT],,
3027[AC_DEFINE(HAVE_GAS_NSUBSPA_COMDAT, 1, [Define if your assembler supports .nsubspa comdat option.])])
3028
8ada417f
ZW
3029# .hidden needs to be supported in both the assembler and the linker,
3030# because GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
3031# This is irritatingly difficult to feature test for; we have to check the
3032# date string after the version number. If we've got an in-tree
3033# ld, we don't know its patchlevel version, so we set the baseline at 2.13
3034# to be safe.
3035# The gcc_GAS_CHECK_FEATURE call just sets a cache variable.
8d91472f
DE
3036case "${target}" in
3037 *-*-aix*)
3038 conftest_s=' .globl foobar,hidden'
3039 ;;
3040 *)
3041 conftest_s=' .hidden foobar
3042foobar:'
3043 ;;
3044esac
1918f4b7 3045gcc_GAS_CHECK_FEATURE([.hidden], gcc_cv_as_hidden,, [$conftest_s])
ee610fcd
RO
3046case "${target}" in
3047 *-*-darwin*)
3048 # Darwin as has some visibility support, though with a different syntax.
3049 gcc_cv_as_hidden=yes
3050 ;;
3051esac
8ada417f 3052
ba885ec5
NS
3053# gnu_indirect_function type is an extension proposed at
3054# http://groups.google/com/group/generic-abi/files. It allows dynamic runtime
3055# selection of function implementation
f6c5fbfd
NS
3056AC_ARG_ENABLE(gnu-indirect-function,
3057 [AS_HELP_STRING([--enable-gnu-indirect-function],
3058 [enable the use of the @gnu_indirect_function to glibc systems])],
3059 [case $enable_gnu_indirect_function in
3060 yes | no) ;;
3061 *) AC_MSG_ERROR(['$enable_gnu_indirect_function' is an invalid value for --enable-gnu-indirect-function.
3062Valid choices are 'yes' and 'no'.]) ;;
3063 esac],
3064 [enable_gnu_indirect_function="$default_gnu_indirect_function"])
2f251a05 3065
97976c07
NC
3066case "${target}" in
3067 riscv*-*-linux*)
3068 AC_MSG_CHECKING(linker ifunc IRELATIVE support)
3069 cat > conftest.s <<EOF
3070 .text
3071 .type foo_resolver, @function
3072foo_resolver:
3073 ret
3074 .size foo_resolver, .-foo_resolver
3075
3076 .globl foo
3077 .type foo, %gnu_indirect_function
3078 .set foo, foo_resolver
3079
3080 .globl bar
3081 .type bar, @function
3082bar:
3083 call foo
3084 ret
3085 .size bar, .-bar
3086EOF
3087 if test x$gcc_cv_as != x \
3088 && test x$gcc_cv_ld != x \
3089 && test x$gcc_cv_readelf != x \
3090 && $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
3091 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1 \
3092 && $gcc_cv_readelf --relocs --wide conftest \
3093 | grep R_RISCV_IRELATIVE > /dev/null 2>&1; then
3094 enable_gnu_indirect_function=yes
3095 fi
3096 rm -f conftest conftest.o conftest.s
3097 AC_MSG_RESULT($enable_gnu_indirect_function)
3098 ;;
3099esac
3100
2f251a05
AI
3101gif=`if test x$enable_gnu_indirect_function = xyes; then echo 1; else echo 0; fi`
3102AC_DEFINE_UNQUOTED(HAVE_GNU_INDIRECT_FUNCTION, $gif,
3103[Define if your system supports gnu indirect functions.])
3104
ba885ec5 3105
10ca6198
JJ
3106changequote(,)dnl
3107if test $in_tree_ld != yes ; then
3108 ld_ver=`$gcc_cv_ld --version 2>/dev/null | sed 1q`
55b46574
RO
3109 if echo "$ld_ver" | grep GNU > /dev/null; then
3110 if test x"$ld_is_gold" = xyes; then
3111 # GNU gold --version looks like this:
3112 #
3113 # GNU gold (GNU Binutils 2.21.51.20110225) 1.11
3114 #
3115 # We extract the binutils version which is more familiar and specific
3116 # than the gold version.
3117 ld_vers=`echo $ld_ver | sed -n \
3118 -e 's,^[^)]*[ ]\([0-9][0-9]*\.[0-9][0-9]*[^)]*\)) .*$,\1,p'`
3119 else
3120 # GNU ld --version looks like this:
3121 #
3122 # GNU ld (GNU Binutils) 2.21.51.20110225
3123 ld_vers=`echo $ld_ver | sed -n \
3124 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
3125 fi
08bf7bde 3126 ld_date=`echo $ld_ver | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)\(-*\)\([01][0-9]\)\2\([0-3][0-9]\).*$,\1\3\4,p'`
10ca6198
JJ
3127 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
3128 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
3129 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
55c4f715
RO
3130 else
3131 case "${target}" in
3132 *-*-solaris2*)
dea82cdb 3133 # Solaris 2 ld -V output looks like this for a regular version:
55c4f715 3134 #
dea82cdb
RO
3135 # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1699
3136 #
3137 # but test versions add stuff at the end:
3138 #
3139 # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1701:onnv-ab196087-6931056-03/25/10
3140 #
dea82cdb
RO
3141 # ld and ld.so.1 are guaranteed to be updated in lockstep, so ld version
3142 # numbers can be used in ld.so.1 feature checks even if a different
3143 # linker is configured.
55c4f715 3144 ld_ver=`$gcc_cv_ld -V 2>&1`
7cd4af82 3145 if echo "$ld_ver" | grep 'Solaris Link Editors' > /dev/null; then
55c4f715 3146 ld_vers=`echo $ld_ver | sed -n \
7cd4af82 3147 -e 's,^.*: 5\.[0-9][0-9]*-\([0-9]\.[0-9][0-9]*\).*$,\1,p'`
55c4f715
RO
3148 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
3149 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
3150 fi
3151 ;;
3152 esac
10ca6198
JJ
3153 fi
3154fi
3155changequote([,])dnl
3156
8ada417f 3157AC_CACHE_CHECK(linker for .hidden support, gcc_cv_ld_hidden,
e5dfb95f 3158[[if test $in_tree_ld = yes ; then
8ada417f
ZW
3159 gcc_cv_ld_hidden=no
3160 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 13 -o "$gcc_cv_gld_major_version" -gt 2 \
3161 && test $in_tree_ld_is_elf = yes; then
3162 gcc_cv_ld_hidden=yes
3163 fi
3164else
3165 gcc_cv_ld_hidden=yes
55b46574
RO
3166 if test x"$ld_is_gold" = xyes; then
3167 :
97f81909
ML
3168 elif test x"$ld_is_mold" = xyes; then
3169 :
55b46574 3170 elif echo "$ld_ver" | grep GNU > /dev/null; then
8ada417f
ZW
3171 if test 0"$ld_date" -lt 20020404; then
3172 if test -n "$ld_date"; then
3173 # If there was date string, but was earlier than 2002-04-04, fail
3174 gcc_cv_ld_hidden=no
3175 elif test -z "$ld_vers"; then
3176 # If there was no date string nor ld version number, something is wrong
3177 gcc_cv_ld_hidden=no
3178 else
8ada417f
ZW
3179 test -z "$ld_vers_patch" && ld_vers_patch=0
3180 if test "$ld_vers_major" -lt 2; then
3181 gcc_cv_ld_hidden=no
3182 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
3183 gcc_cv_ld_hidden="no"
3184 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 -a "$ld_vers_patch" -eq 0; then
3185 gcc_cv_ld_hidden=no
c72931a6 3186 fi
8ada417f 3187 fi
789b7de5 3188 fi
8ada417f 3189 else
28690784 3190 case "${target}" in
8d91472f
DE
3191 *-*-aix[789]*)
3192 gcc_cv_ld_hidden=yes
3193 ;;
ee610fcd
RO
3194 *-*-darwin*)
3195 # Darwin ld has some visibility support.
3196 gcc_cv_ld_hidden=yes
3197 ;;
b0fd7d27 3198 hppa64*-*-hpux* | ia64*-*-hpux*)
28690784
JDA
3199 gcc_cv_ld_hidden=yes
3200 ;;
ccd1242e 3201 *-*-solaris2*)
a93e1899
RO
3202 # Support for .hidden in Sun ld appeared in Solaris 9 FCS, but
3203 # .symbolic was only added in Solaris 9 12/02.
5e87dc23
RO
3204 gcc_cv_ld_hidden=yes
3205 ;;
28690784
JDA
3206 *)
3207 gcc_cv_ld_hidden=no
3208 ;;
3209 esac
8ada417f 3210 fi
e5dfb95f 3211fi]])
8ada417f 3212libgcc_visibility=no
9e944a16 3213AC_SUBST(libgcc_visibility)
232b67d9 3214GCC_TARGET_TEMPLATE([HAVE_GAS_HIDDEN])
0f31374d 3215if test $gcc_cv_as_hidden = yes && test $gcc_cv_ld_hidden = yes; then
8ada417f
ZW
3216 libgcc_visibility=yes
3217 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
3218 [Define if your assembler and linker support .hidden.])
3219fi
6a9c5260 3220
e73da78e
RO
3221AC_MSG_CHECKING(linker read-only and read-write section mixing)
3222gcc_cv_ld_ro_rw_mix=unknown
3223if test $in_tree_ld = yes ; then
3224 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10 -o "$gcc_cv_gld_major_version" -gt 2 \
3225 && test $in_tree_ld_is_elf = yes; then
3226 gcc_cv_ld_ro_rw_mix=read-write
3227 fi
3228elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
3229 echo '.section myfoosect, "a"' > conftest1.s
3230 echo '.section myfoosect, "aw"' > conftest2.s
3231 echo '.byte 1' >> conftest2.s
3232 echo '.section myfoosect, "a"' > conftest3.s
3233 echo '.byte 0' >> conftest3.s
3234 if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
3235 && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
2744dbb9
JN
3236 && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1; then
3237 if $gcc_cv_ld -shared -o conftest1.so conftest1.o \
3238 conftest2.o conftest3.o > /dev/null 2>&1 \
3239 || $gcc_cv_ld -r -o conftest1.so conftest1.o \
3240 conftest2.o conftest3.o > /dev/null 2>&1; then
3241 gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
3242 | sed -e '/myfoosect/!d' -e N`
3243 if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
3244 if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
3245 gcc_cv_ld_ro_rw_mix=read-only
3246 else
3247 gcc_cv_ld_ro_rw_mix=read-write
3248 fi
e73da78e
RO
3249 fi
3250 fi
3251 fi
3252changequote(,)dnl
3253 rm -f conftest.* conftest[123].*
3254changequote([,])dnl
3255fi
3256if test x$gcc_cv_ld_ro_rw_mix = xread-write; then
3257 AC_DEFINE(HAVE_LD_RO_RW_SECTION_MIXING, 1,
3258 [Define if your linker links a mix of read-only
3259 and read-write sections into a read-write section.])
3260fi
3261AC_MSG_RESULT($gcc_cv_ld_ro_rw_mix)
3262
e9c9f128
JJ
3263gcc_AC_INITFINI_ARRAY
3264
c44926fe 3265# Some assemblers (GNU as for LoongArch) generates relocations for
3266# leb128 symbol arithmetic for relaxation, we need to disable relaxation
3267# probing leb128 support then.
3268case $target in
3269 loongarch*-*-*)
3270 gcc_GAS_CHECK_FEATURE([-mno-relax support],
3271 gcc_cv_as_mno_relax,[-mno-relax],[.text],,
3272 [check_leb128_asflags=-mno-relax])
3273 ;;
3274 *)
3275 check_leb128_asflags=
3276 ;;
3277esac
3278
8ada417f 3279# Check if we have .[us]leb128, and support symbol arithmetic with it.
2133e773
IS
3280# Older versions of GAS and some non-GNU assemblers, have a bugs handling
3281# these directives, even when they appear to accept them.
c44926fe 3282gcc_GAS_CHECK_FEATURE([.sleb128 and .uleb128], gcc_cv_as_leb128,
3283[$check_leb128_asflags],
8ada417f 3284[ .data
b7460f24
RH
3285 .uleb128 L2 - L1
3286L1:
3287 .uleb128 1280
3288 .sleb128 -1010
2133e773
IS
3289L2:
3290 .uleb128 0x8000000000000000
3291],
3292[[
3293if test "x$gcc_cv_objdump" != x; then
3294 if $gcc_cv_objdump -s conftest.o 2>/dev/null \
3295 | grep '04800a8e 78808080 80808080 808001' >/dev/null; then
3296 gcc_cv_as_leb128=yes
3297 fi
3298elif test "x$gcc_cv_otool" != x; then
3299 if $gcc_cv_otool -d conftest.o 2>/dev/null \
3300 | grep '04 80 0a 8e 78 80 80 80 80 80 80 80 80 80 01' >/dev/null; then
3301 gcc_cv_as_leb128=yes
3302 fi
3303else
3304 # play safe, assume the assembler is broken.
3305 :
3306fi
3307]],
3308 [AC_DEFINE(HAVE_AS_LEB128, 1,
3309 [Define if your assembler supports .sleb128 and .uleb128.])],
3310 [AC_DEFINE(HAVE_AS_LEB128, 0,
3311 [Define if your assembler supports .sleb128 and .uleb128.])])
8ada417f 3312
a836f142
RO
3313# Determine if an .eh_frame section is read-only.
3314gcc_fn_eh_frame_ro () {
3315 $gcc_cv_as $1 -o conftest.o conftest.s > /dev/null 2>&1 && \
3316 $gcc_cv_objdump -h conftest.o 2>/dev/null | \
3317 sed -e '/.eh_frame/!d' -e N | grep READONLY > /dev/null
3318}
3319
d4ea4622 3320# Check if we have assembler support for unwind directives.
1918f4b7 3321gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive,,
d4ea4622
RH
3322[ .text
3323 .cfi_startproc
3324 .cfi_offset 0, 0
3325 .cfi_same_value 1
3326 .cfi_def_cfa 1, 2
3327 .cfi_escape 1, 2, 3, 4, 5
e73da78e
RO
3328 .cfi_endproc],
3329[case "$target" in
3330 *-*-solaris*)
3331 # If the linker used on Solaris (like Sun ld) isn't capable of merging
3332 # read-only and read-write sections, we need to make sure that the
3333 # assembler used emits read-write .eh_frame sections.
a836f142
RO
3334 if test "x$gcc_cv_ld_ro_rw_mix" = xread-write; then
3335 gcc_cv_as_cfi_directive=yes
3336 elif test "x$gcc_cv_objdump" = x; then
3337 # No objdump, err on the side of caution.
3338 gcc_cv_as_cfi_directive=no
3339 else
3340 if test x$gas = xyes; then
3341 as_32_opt="--32"
3342 as_64_opt="--64"
e73da78e 3343 else
a836f142
RO
3344 as_32_opt="-m32"
3345 as_64_opt="-m64"
e73da78e 3346 fi
a836f142
RO
3347 case "$target" in
3348 sparc*-*-solaris2.*)
3349 # On Solaris/SPARC, .eh_frame sections should always be read-write.
3350 if gcc_fn_eh_frame_ro $as_32_opt \
3351 || gcc_fn_eh_frame_ro $as_64_opt; then
3352 gcc_cv_as_cfi_directive=no
3353 else
3354 gcc_cv_as_cfi_directive=yes
3355 fi
3356 ;;
3357 i?86-*-solaris2.* | x86_64-*-solaris2.*)
3358 # On Solaris/x86, make sure that GCC and assembler agree on using
3359 # read-only .eh_frame sections for 64-bit.
3360 if gcc_fn_eh_frame_ro $as_32_opt; then
3361 gcc_cv_as_cfi_directive=no
3362 elif gcc_fn_eh_frame_ro $as_64_opt; then
3363 gcc_cv_as_cfi_directive=yes
3364 else
3365 gcc_cv_as_cfi_directive=no
3366 fi
3367 ;;
3368 esac
e73da78e
RO
3369 fi
3370 ;;
3371 *-*-*)
3372 gcc_cv_as_cfi_directive=yes
3373 ;;
3374esac])
92053f38 3375if test $gcc_cv_as_cfi_directive = yes && test x$gcc_cv_objdump != x; then
1918f4b7 3376gcc_GAS_CHECK_FEATURE([working cfi advance], gcc_cv_as_cfi_advance_working,,
6e97481b
JJ
3377[ .text
3378 .cfi_startproc
3379 .cfi_adjust_cfa_offset 64
7ac22e17 3380 .skip 75040, 0
6e97481b
JJ
3381 .cfi_adjust_cfa_offset 128
3382 .cfi_endproc],
e5dfb95f 3383[[
92053f38 3384if $gcc_cv_objdump -Wf conftest.o 2>/dev/null \
7ac22e17 3385 | grep 'DW_CFA_advance_loc[24]:[ ][ ]*75040[ ]' >/dev/null; then
6e97481b
JJ
3386 gcc_cv_as_cfi_advance_working=yes
3387fi
e5dfb95f 3388]])
6e97481b 3389else
92053f38 3390 # no objdump, err on the side of caution
66f91112 3391 gcc_cv_as_cfi_advance_working=no
6e97481b 3392fi
174425ad 3393GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_DIRECTIVE)
d4ea4622 3394AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE,
6e97481b
JJ
3395 [`if test $gcc_cv_as_cfi_directive = yes \
3396 && test $gcc_cv_as_cfi_advance_working = yes; then echo 1; else echo 0; fi`],
058514b3
RH
3397 [Define 0/1 if your assembler supports CFI directives.])
3398
174425ad 3399GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE)
058514b3 3400gcc_GAS_CHECK_FEATURE([cfi personality directive],
e0b6d0b3 3401 gcc_cv_as_cfi_personality_directive,,
058514b3 3402[ .text
042628f9 3403 .cfi_startproc
058514b3
RH
3404 .cfi_personality 0, symbol
3405 .cfi_endproc])
3406AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE,
22e05272 3407 [`if test $gcc_cv_as_cfi_personality_directive = yes; then echo 1; else echo 0; fi`],
058514b3 3408 [Define 0/1 if your assembler supports .cfi_personality.])
d4ea4622 3409
7d45fb94 3410gcc_GAS_CHECK_FEATURE([cfi sections directive],
e0b6d0b3 3411 gcc_cv_as_cfi_sections_directive,,
7d45fb94
JJ
3412[ .text
3413 .cfi_sections .debug_frame, .eh_frame
3414 .cfi_startproc
92053f38
RH
3415 .cfi_endproc],
3416[case $target_os in
abe64d9e 3417 win32 | pe | cygwin* | mingw32*)
92053f38
RH
3418 # Need to check that we generated the correct relocation for the
3419 # .debug_frame section. This was fixed for binutils 2.21.
3420 gcc_cv_as_cfi_sections_directive=no
3421 if test "x$gcc_cv_objdump" != x; then
3422 if $gcc_cv_objdump -j .debug_frame -r conftest.o 2>/dev/null | \
cf8b110c 3423 grep -i secrel > /dev/null; then
92053f38
RH
3424 gcc_cv_as_cfi_sections_directive=yes
3425 fi
3426 fi
3427 ;;
3428 *)
3429 gcc_cv_as_cfi_sections_directive=yes
3430 ;;
3431esac])
174425ad 3432GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_SECTIONS_DIRECTIVE)
7d45fb94 3433AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_SECTIONS_DIRECTIVE,
22e05272 3434 [`if test $gcc_cv_as_cfi_sections_directive = yes; then echo 1; else echo 0; fi`],
7d45fb94
JJ
3435 [Define 0/1 if your assembler supports .cfi_sections.])
3436
8ada417f
ZW
3437# GAS versions up to and including 2.11.0 may mis-optimize
3438# .eh_frame data.
1918f4b7 3439gcc_GAS_CHECK_FEATURE(eh_frame optimization, gcc_cv_as_eh_frame,,
8ada417f 3440[ .text
c64688ae
RH
3441.LFB1:
3442 .4byte 0
3443.L1:
3444 .4byte 0
3445.LFE1:
3446 .section .eh_frame,"aw",@progbits
3447__FRAME_BEGIN__:
3448 .4byte .LECIE1-.LSCIE1
3449.LSCIE1:
3450 .4byte 0x0
3451 .byte 0x1
3452 .ascii "z\0"
3453 .byte 0x1
3454 .byte 0x78
3455 .byte 0x1a
3456 .byte 0x0
3457 .byte 0x4
3458 .4byte 1
3459 .p2align 1
3460.LECIE1:
3461.LSFDE1:
3462 .4byte .LEFDE1-.LASFDE1
3463.LASFDE1:
3464 .4byte .LASFDE1-__FRAME_BEGIN__
3465 .4byte .LFB1
3466 .4byte .LFE1-.LFB1
3467 .byte 0x4
3468 .4byte .LFE1-.LFB1
3469 .byte 0x4
3470 .4byte .L1-.LFB1
8ada417f 3471.LEFDE1:],
ba479fd2
NN
3472[ dnl # For autoconf 2.5x, must protect trailing spaces with @&t@.
3473cat > conftest.lit <<EOF
c64688ae
RH
3474 0000 10000000 00000000 017a0001 781a0004 .........z..x...
3475 0010 01000000 12000000 18000000 00000000 ................
ba479fd2 3476 0020 08000000 04080000 0044 .........D @&t@
01efb963 3477EOF
ba479fd2 3478cat > conftest.big <<EOF
01efb963
AS
3479 0000 00000010 00000000 017a0001 781a0004 .........z..x...
3480 0010 00000001 00000012 00000018 00000000 ................
ba479fd2 3481 0020 00000008 04000000 0844 .........D @&t@
c64688ae 3482EOF
8ada417f
ZW
3483 # If the assembler didn't choke, and we can objdump,
3484 # and we got the correct data, then succeed.
dbc02e7f
AS
3485 # The text in the here-document typically retains its unix-style line
3486 # endings, while the output of objdump will use host line endings.
3487 # Therefore, use diff -b for the comparisons.
8ada417f
ZW
3488 if test x$gcc_cv_objdump != x \
3489 && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
3490 | tail -3 > conftest.got \
dbc02e7f
AS
3491 && { diff -b conftest.lit conftest.got > /dev/null 2>&1 \
3492 || diff -b conftest.big conftest.got > /dev/null 2>&1; }
8ada417f
ZW
3493 then
3494 gcc_cv_as_eh_frame=yes
3495 elif AC_TRY_COMMAND($gcc_cv_as -o conftest.o --traditional-format /dev/null); then
3496 gcc_cv_as_eh_frame=buggy
3497 else
3498 # Uh oh, what do we do now?
3499 gcc_cv_as_eh_frame=no
3500 fi])
3501
3502if test $gcc_cv_as_eh_frame = buggy; then
3503 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
3504 [Define if your assembler mis-optimizes .eh_frame data.])
201556f0 3505fi
201556f0 3506
f8d70404
RO
3507# Test if the assembler supports the section flag 'e' or #exclude for
3508# specifying an excluded section.
3509gcc_GAS_CHECK_FEATURE([section exclude flag], gcc_cv_as_section_exclude_e,
e0b6d0b3 3510 [--fatal-warnings],
f8d70404
RO
3511 [.section foo1,"e"
3512 .byte 0,0,0,0])
3513if test $gcc_cv_as_section_exclude_e = no; then
3514 case "${target}" in
3515 # Solaris as uses #exclude instead.
3516 *-*-solaris2*)
3517 case "${target}" in
3518 sparc*-*-solaris2*)
3519 conftest_s='.section "foo1", #exclude'
3520 ;;
3521 i?86-*-solaris2* | x86_64-*-solaris2*)
3522 conftest_s='.section foo1, #exclude'
3523 ;;
3524 esac
3525 ;;
3526 esac
e0b6d0b3 3527 gcc_GAS_CHECK_FEATURE([section exclude flag], gcc_cv_as_section_exclude_hash,,
f8d70404
RO
3528 [$conftest_s
3529 .byte 0,0,0,0])
3530fi
3531AC_DEFINE_UNQUOTED(HAVE_GAS_SECTION_EXCLUDE,
3532 [`if test $gcc_cv_as_section_exclude_e = yes || test $gcc_cv_as_section_exclude_hash = yes; then echo 1; else echo 0; fi`],
3533[Define if your assembler supports specifying the exclude section flag.])
3534
6fbec038
L
3535# Test if the assembler supports the section flag 'R' for specifying
3536# section with SHF_GNU_RETAIN.
3537case "${target}" in
3538 # Solaris may use GNU assembler with Solairs ld. Even if GNU
3539 # assembler supports the section flag 'R', it doesn't mean that
3540 # Solairs ld supports it.
3541 *-*-solaris2*)
3542 gcc_cv_as_shf_gnu_retain=no
3543 ;;
3544 *)
3545 gcc_GAS_CHECK_FEATURE([section 'R' flag], gcc_cv_as_shf_gnu_retain,
e0b6d0b3 3546 [--fatal-warnings],
6fbec038
L
3547 [.section .foo,"awR",%progbits
3548.byte 0])
3549 ;;
3550esac
3551AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_GNU_RETAIN,
3552 [`if test $gcc_cv_as_shf_gnu_retain = yes; then echo 1; else echo 0; fi`],
3553 [Define 0/1 if your assembler supports marking sections with SHF_GNU_RETAIN flag.])
3554
694d4a6d
L
3555# Test if the assembler supports the section flag 'o' for specifying
3556# section with link-order.
3557case "${target}" in
3558 # Solaris may use GNU assembler with Solairs ld. Even if GNU
3559 # assembler supports the section flag 'o', it doesn't mean that
3560 # Solairs ld supports it.
3561 *-*-solaris2*)
3562 gcc_cv_as_section_link_order=no
3563 ;;
3564 *)
3565 gcc_GAS_CHECK_FEATURE([section 'o' flag], gcc_cv_as_section_link_order,
e0b6d0b3 3566 [--fatal-warnings],
694d4a6d
L
3567 [.section .foo,"a"
3568.byte 0
3569.section __patchable_function_entries,"awo",%progbits,.foo
3570.byte 0])
3571 ;;
3572esac
3573AC_DEFINE_UNQUOTED(HAVE_GAS_SECTION_LINK_ORDER,
3574 [`if test $gcc_cv_as_section_link_order = yes; then echo 1; else echo 0; fi`],
3575 [Define 0/1 if your assembler supports 'o' flag in .section directive.])
3576
8ada417f 3577gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
e0b6d0b3 3578 [--fatal-warnings],
5d4856a0 3579 [.section .rodata.str, "aMS", @progbits, 1])
c18a5b6c
MM
3580if test $gcc_cv_as_shf_merge = no; then
3581 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
e0b6d0b3 3582 [--fatal-warnings],
c18a5b6c
MM
3583 [.section .rodata.str, "aMS", %progbits, 1])
3584fi
5d4856a0
RO
3585AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_MERGE,
3586 [`if test $gcc_cv_as_shf_merge = yes; then echo 1; else echo 0; fi`],
3587[Define 0/1 if your assembler supports marking sections with SHF_MERGE flag.])
8ada417f 3588
dc6b6330
RO
3589gcc_cv_ld_aligned_shf_merge=yes
3590case "$target" in
dc6b6330
RO
3591 # SHF_MERGE support is broken in Solaris ld up to Solaris 11.3/SPARC for
3592 # alignment > 1.
3593 sparc*-*-solaris2.11*)
3594 if test x"$gnu_ld" = xno \
3595 && test "$ld_vers_major" -lt 2 && test "$ld_vers_minor" -lt 3159; then
3596 gcc_cv_ld_aligned_shf_merge=no
3597 fi
3598 ;;
3599esac
3600AC_DEFINE_UNQUOTED(HAVE_LD_ALIGNED_SHF_MERGE,
3601 [`if test $gcc_cv_ld_aligned_shf_merge = yes; then echo 1; else echo 0; fi`],
3602[Define 0/1 if your linker supports the SHF_MERGE flag with section alignment > 1.])
3603
2ca48caa
RO
3604gcc_GAS_CHECK_FEATURE([COMDAT group support (GNU as)],
3605 gcc_cv_as_comdat_group,
e0b6d0b3 3606 [--fatal-warnings],
c18a5b6c
MM
3607 [.section .text,"axG",@progbits,.foo,comdat])
3608if test $gcc_cv_as_comdat_group = yes; then
3609 gcc_cv_as_comdat_group_percent=no
2ca48caa 3610 gcc_cv_as_comdat_group_group=no
c18a5b6c 3611else
2ca48caa
RO
3612 gcc_GAS_CHECK_FEATURE([COMDAT group support (GNU as, %type)],
3613 gcc_cv_as_comdat_group_percent,
e0b6d0b3 3614 [--fatal-warnings],
c18a5b6c 3615 [.section .text,"axG",%progbits,.foo,comdat])
2ca48caa
RO
3616 if test $gcc_cv_as_comdat_group_percent = yes; then
3617 gcc_cv_as_comdat_group_group=no
3618 else
3619 case "${target}" in
3620 # Sun as uses a completely different syntax.
3621 *-*-solaris2*)
3622 case "${target}" in
3623 sparc*-*-solaris2*)
3624 conftest_s='
3625 .group foo,".text%foo",#comdat
3626 .section ".text%foo", #alloc,#execinstr,#progbits
3627 .globl foo
3628 foo:
3629 '
3630 ;;
ccd1242e 3631 i?86-*-solaris2* | x86_64-*-solaris2*)
2ca48caa
RO
3632 conftest_s='
3633 .group foo,.text%foo,#comdat
3634 .section .text%foo, "ax", @progbits
3635 .globl foo
3636 foo:
3637 '
3638 ;;
3639 esac
3640 gcc_GAS_CHECK_FEATURE([COMDAT group support (Sun as, .group)],
3641 gcc_cv_as_comdat_group_group,
e0b6d0b3 3642 , [$conftest_s])
2ca48caa
RO
3643 ;;
3644 esac
56e675ce
RO
3645 if test -z "${gcc_cv_as_comdat_group_group+set}"; then
3646 gcc_cv_as_comdat_group_group=no
3647 fi
2ca48caa 3648 fi
c18a5b6c 3649fi
1dcc82c2
DK
3650if test x"$ld_is_gold" = xyes; then
3651 comdat_group=yes
97f81909
ML
3652elif test x"$ld_is_mold" = xyes; then
3653 comdat_group=yes
1dcc82c2 3654elif test $in_tree_ld = yes ; then
39ba7b7d
JB
3655 comdat_group=no
3656 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 \
3657 && test $in_tree_ld_is_elf = yes; then
3658 comdat_group=yes
3659 fi
55c4f715 3660elif echo "$ld_ver" | grep GNU > /dev/null; then
11176d2a
JB
3661 comdat_group=yes
3662 if test 0"$ld_date" -lt 20050308; then
3663 if test -n "$ld_date"; then
3664 # If there was date string, but was earlier than 2005-03-08, fail
3665 comdat_group=no
3666 elif test "$ld_vers_major" -lt 2; then
3667 comdat_group=no
3668 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
3669 comdat_group=no
3670 fi
3671 fi
1cf0118d 3672else
55c4f715
RO
3673changequote(,)dnl
3674 case "${target}" in
3675 *-*-solaris2.1[1-9]*)
2ca48caa 3676 comdat_group=no
55c4f715
RO
3677 # Sun ld has COMDAT group support since Solaris 9, but it doesn't
3678 # interoperate with GNU as until Solaris 11 build 130, i.e. ld
3679 # version 1.688.
3680 #
2ca48caa
RO
3681 # If using Sun as for COMDAT group as emitted by GCC, one needs at
3682 # least ld version 1.2267.
3683 if test "$ld_vers_major" -gt 1; then
55c4f715 3684 comdat_group=yes
2ca48caa
RO
3685 elif test "x$gas_flag" = xyes && test "$ld_vers_minor" -ge 1688; then
3686 comdat_group=yes
3687 elif test "$ld_vers_minor" -ge 2267; then
3688 comdat_group=yes
55c4f715
RO
3689 fi
3690 ;;
3691 *)
3692 # Assume linkers other than GNU ld don't support COMDAT group.
3693 comdat_group=no
3694 ;;
3695 esac
3696changequote([,])dnl
1cf0118d 3697fi
55c4f715
RO
3698# Allow overriding the automatic COMDAT group tests above.
3699AC_ARG_ENABLE(comdat,
3700 [AS_HELP_STRING([--enable-comdat], [enable COMDAT group support])],
3701 [comdat_group="$enable_comdat"])
1cf0118d
RO
3702if test $comdat_group = no; then
3703 gcc_cv_as_comdat_group=no
3704 gcc_cv_as_comdat_group_percent=no
2ca48caa 3705 gcc_cv_as_comdat_group_group=no
11176d2a
JB
3706fi
3707AC_DEFINE_UNQUOTED(HAVE_COMDAT_GROUP,
2ca48caa
RO
3708 [`if test $gcc_cv_as_comdat_group = yes \
3709 || test $gcc_cv_as_comdat_group_percent = yes \
3710 || test $gcc_cv_as_comdat_group_group = yes; then echo 1; else echo 0; fi`],
11176d2a 3711[Define 0/1 if your assembler and linker support COMDAT groups.])
c18a5b6c 3712
af2e3244
RO
3713# Restrict this test to Solaris/x86: other targets define this statically.
3714case "${target}" in
3715 i?86-*-solaris2* | x86_64-*-solaris2*)
3716 AC_MSG_CHECKING(support for hidden thunks in linkonce sections)
3717 if test $in_tree_ld = yes || echo "$ld_ver" | grep GNU > /dev/null; then
3718 hidden_linkonce=yes
3719 else
3720 case "${target}" in
3721 # Full support for hidden thunks in linkonce sections only appeared in
3722 # Solaris 11/OpenSolaris.
3723 *-*-solaris2.1[[1-9]]*)
3724 hidden_linkonce=yes
3725 ;;
3726 *)
3727 hidden_linkonce=no
3728 ;;
3729 esac
3730 fi
3731 AC_MSG_RESULT($hidden_linkonce)
3732 AC_DEFINE_UNQUOTED(USE_HIDDEN_LINKONCE,
3733 [`if test $hidden_linkonce = yes; then echo 1; else echo 0; fi`],
3734 [Define 0/1 if your linker supports hidden thunks in linkonce sections.])
3735 ;;
3736esac
3737
894f597f 3738gcc_GAS_CHECK_FEATURE([line table is_stmt support],
1918f4b7 3739 gcc_cv_as_is_stmt,,
894f597f
AO
3740[ .text
3741 .file 1 "conf.c"
3742 .loc 1 1 0 is_stmt 1],,
3743[AC_DEFINE(HAVE_GAS_LOC_STMT, 1,
3744 [Define if your assembler supports the .loc is_stmt sub-directive.])])
3745
6c52e687 3746gcc_GAS_CHECK_FEATURE([line table discriminator support],
1918f4b7 3747 gcc_cv_as_discriminator,,
6c52e687
CC
3748[ .text
3749 .file 1 "conf.c"
3750 .loc 1 1 0 discriminator 1],,
3751[AC_DEFINE(HAVE_GAS_DISCRIMINATOR, 1,
3752 [Define if your assembler supports the .loc discriminator sub-directive.])])
3753
02afb6a9
JL
3754# Catch the newlib flag of the same name so we can gate GCC features on it.
3755AC_ARG_ENABLE(newlib-nano-formatted-io,
3756[AS_HELP_STRING([--enable-newlib-nano-formatted-io], [Use nano version
3757 formatted IO])],
3758[case "${enableval}" in
3759 yes|no)
3760 ;;
3761 *)
3762 AC_MSG_ERROR([unknown newlib-nano-formatted-io setting $enableval])
3763 ;;
3764esac], [])
3765
6a7a462c 3766# Thread-local storage - the check is heavily parameterized.
f996902d 3767conftest_s=
9739c90c 3768tls_as_opt=
f996902d
RH
3769case "$target" in
3770changequote(,)dnl
6f9b006d
RH
3771 alpha*-*-*)
3772 conftest_s='
3773 .section ".tdata","awT",@progbits
3774foo: .long 25
3775 .text
3776 ldq $27,__tls_get_addr($29) !literal!1
3777 lda $16,foo($29) !tlsgd!1
3778 jsr $26,($27),__tls_get_addr !lituse_tlsgd!1
3779 ldq $27,__tls_get_addr($29) !literal!2
3780 lda $16,foo($29) !tlsldm!2
3781 jsr $26,($27),__tls_get_addr !lituse_tlsldm!2
3782 ldq $1,foo($29) !gotdtprel
3783 ldah $2,foo($29) !dtprelhi
3784 lda $3,foo($2) !dtprello
3785 lda $4,foo($29) !dtprel
3786 ldq $1,foo($29) !gottprel
3787 ldah $2,foo($29) !tprelhi
3788 lda $3,foo($2) !tprello
3789 lda $4,foo($29) !tprel'
2f3321ca 3790 tls_as_opt=--fatal-warnings
6f9b006d 3791 ;;
28633bbd
CZ
3792 arc*-*-*)
3793 conftest_s='
3794 add_s r0,r0, @foo@tpoff'
28633bbd 3795 ;;
ad9646c7
HPN
3796 cris-*-*|crisv32-*-*)
3797 conftest_s='
3798 .section ".tdata","awT",@progbits
3799x: .long 25
3800 .text
3801 move.d x:IE,$r10
3802 nop'
ad9646c7
HPN
3803 tls_as_opt=--fatal-warnings
3804 ;;
e4dd71de
AH
3805 frv*-*-*)
3806 conftest_s='
3807 .section ".tdata","awT",@progbits
3808x: .long 25
3809 .text
3810 call #gettlsoff(x)'
e4dd71de 3811 ;;
51076f96
RC
3812 hppa*-*-linux*)
3813 conftest_s='
3814t1: .reg %r20
3815t2: .reg %r21
3816gp: .reg %r19
3817 .section ".tdata","awT",@progbits
3818foo: .long 25
3819 .text
3820 .align 4
3821 addil LT%foo-$tls_gdidx$,gp
3822 ldo RT%foo-$tls_gdidx$(%r1),%arg0
3823 b __tls_get_addr
3824 nop
3825 addil LT%foo-$tls_ldidx$,gp
3826 b __tls_get_addr
3827 ldo RT%foo-$tls_ldidx$(%r1),%arg0
3828 addil LR%foo-$tls_dtpoff$,%ret0
3829 ldo RR%foo-$tls_dtpoff$(%r1),%t1
3830 mfctl %cr27,%t1
3831 addil LT%foo-$tls_ieoff$,gp
3832 ldw RT%foo-$tls_ieoff$(%r1),%t2
3833 add %t1,%t2,%t3
3834 mfctl %cr27,%t1
3835 addil LR%foo-$tls_leoff$,%t1
3836 ldo RR%foo-$tls_leoff$(%r1),%t2'
51076f96
RC
3837 tls_as_opt=--fatal-warnings
3838 ;;
d3585b76
DJ
3839 arm*-*-*)
3840 conftest_s='
3841 .section ".tdata","awT",%progbits
3842foo: .long 25
3843 .text
3844.word foo(gottpoff)
3845.word foo(tpoff)
3846.word foo(tlsgd)
3847.word foo(tlsldm)
3848.word foo(tlsldo)'
d3585b76 3849 ;;
fe4e71e4 3850 i[34567]86-*-* | x86_64-*-*)
f1c26cad 3851 case "$target" in
ccd1242e 3852 i[34567]86-*-solaris2.* | x86_64-*-solaris2.*)
f1c26cad 3853 on_solaris=yes
fbdd5d87 3854 ;;
f1c26cad
RO
3855 *)
3856 on_solaris=no
3857 ;;
3858 esac
3859 if test x$on_solaris = xyes && test x$gas_flag = xno; then
3860 conftest_s='
3861 .section .tdata,"awt",@progbits'
caa16d41 3862 tls_section_flag=t
f1c26cad
RO
3863changequote([,])dnl
3864 AC_DEFINE(TLS_SECTION_ASM_FLAG, 't',
3865[Define to the flag used to mark TLS sections if the default (`T') doesn't work.])
3866changequote(,)dnl
3867 else
3868 conftest_s='
3869 .section ".tdata","awT",@progbits'
caa16d41 3870 tls_section_flag=T
f1c26cad
RO
3871 tls_as_opt="--fatal-warnings"
3872 fi
fe4e71e4
RO
3873 case "$target" in
3874 i[34567]86-*-*)
700d4572
RO
3875 if test x$on_solaris = xyes; then
3876 case $gas_flag in
3877 yes) tls_as_opt="$tls_as_opt --32" ;;
3878 esac
3879 fi
fe4e71e4 3880 conftest_s="$conftest_s
f996902d
RH
3881foo: .long 25
3882 .text
3883 movl %gs:0, %eax
f1c26cad
RO
3884 leal foo@tlsgd(,%ebx,1), %eax
3885 leal foo@tlsldm(%ebx), %eax
3886 leal foo@dtpoff(%eax), %edx
3887 movl foo@gottpoff(%ebx), %eax
3888 subl foo@gottpoff(%ebx), %eax
3889 addl foo@gotntpoff(%ebx), %eax
3890 movl foo@indntpoff, %eax
3891 movl \$foo@tpoff, %eax
3892 subl \$foo@tpoff, %eax
3893 leal foo@ntpoff(%ecx), %eax"
fe4e71e4
RO
3894 ;;
3895 x86_64-*-*)
3896 if test x$on_solaris = xyes; then
3897 case $gas_flag in
3898 yes) tls_as_opt="$tls_as_opt --64" ;;
3899 no) tls_as_opt="$tls_as_opt -xarch=amd64" ;;
3900 esac
3901 fi
3902 conftest_s="$conftest_s
75d38379
JJ
3903foo: .long 25
3904 .text
3905 movq %fs:0, %rax
fe4e71e4
RO
3906 leaq foo@tlsgd(%rip), %rdi
3907 leaq foo@tlsld(%rip), %rdi
3908 leaq foo@dtpoff(%rax), %rdx
3909 movq foo@gottpoff(%rip), %rax
3910 movq \$foo@tpoff, %rax"
3911 ;;
3912 esac
3913 ;;
7b6e506e
RH
3914 ia64-*-*)
3915 conftest_s='
3916 .section ".tdata","awT",@progbits
3917foo: data8 25
3918 .text
3919 addl r16 = @ltoff(@dtpmod(foo#)), gp
3920 addl r17 = @ltoff(@dtprel(foo#)), gp
3921 addl r18 = @ltoff(@tprel(foo#)), gp
3922 addl r19 = @dtprel(foo#), gp
3923 adds r21 = @dtprel(foo#), r13
3924 movl r23 = @dtprel(foo#)
3925 addl r20 = @tprel(foo#), gp
3926 adds r22 = @tprel(foo#), r13
3927 movl r24 = @tprel(foo#)'
2f3321ca 3928 tls_as_opt=--fatal-warnings
7b6e506e 3929 ;;
b44786f6 3930 loongarch*-*-*)
3931 conftest_s='
3932 .section .tdata,"awT",@progbits
3933x: .word 2
3934 .text
3935 la.tls.gd $a0,x
3936 bl __tls_get_addr'
3937 tls_first_major=0
3938 tls_first_minor=0
3939 tls_as_opt='--fatal-warnings'
3940 ;;
8cc9a5a5
EI
3941 microblaze*-*-*)
3942 conftest_s='
3943 .section .tdata,"awT",@progbits
3944x:
3945 .word 2
3946 .text
3947 addik r5,r20,x@TLSGD
3948 addik r5,r20,x@TLSLDM'
8cc9a5a5
EI
3949 tls_as_opt='--fatal-warnings'
3950 ;;
69229b81
DJ
3951 mips*-*-*)
3952 conftest_s='
3953 .section .tdata,"awT",@progbits
3954x:
3955 .word 2
3956 .text
3957 addiu $4, $28, %tlsgd(x)
3958 addiu $4, $28, %tlsldm(x)
3959 lui $4, %dtprel_hi(x)
3960 addiu $4, $4, %dtprel_lo(x)
3961 lw $4, %gottprel(x)($28)
3962 lui $4, %tprel_hi(x)
3963 addiu $4, $4, %tprel_lo(x)'
69229b81
DJ
3964 tls_as_opt='-32 --fatal-warnings'
3965 ;;
75df395f
MK
3966 m68k-*-*)
3967 conftest_s='
3968 .section .tdata,"awT",@progbits
3969x:
3970 .word 2
3971 .text
3972foo:
3973 move.l x@TLSGD(%a5),%a0
3974 move.l x@TLSLDM(%a5),%a0
3975 move.l x@TLSLDO(%a5),%a0
3976 move.l x@TLSIE(%a5),%a0
3977 move.l x@TLSLE(%a5),%a0'
75df395f
MK
3978 tls_as_opt='--fatal-warnings'
3979 ;;
e430824f
CLT
3980 nios2-*-*)
3981 conftest_s='
3982 .section ".tdata","awT",@progbits'
e430824f
CLT
3983 tls_as_opt="--fatal-warnings"
3984 ;;
24034425
IB
3985 aarch64*-*-*)
3986 conftest_s='
3987 .section ".tdata","awT",%progbits
3988foo: .long 25
3989 .text
3990 adrp x0, :tlsgd:x
3991 add x0, x0, #:tlsgd_lo12:x
3992 bl __tls_get_addr
3993 nop'
24034425
IB
3994 tls_as_opt='--fatal-warnings'
3995 ;;
3965b35f
SH
3996 or1k*-*-*)
3997 conftest_s='
3998 .section ".tdata","awT",@progbits
3999foo: .long 25
4000 .text
4001 l.movhi r3, tpoffha(foo)
4002 l.add r3, r3, r10
4003 l.lwz r4, tpofflo(foo)(r3)'
3965b35f
SH
4004 tls_as_opt=--fatal-warnings
4005 ;;
7a8b1ec4
DE
4006 powerpc-ibm-aix*)
4007 conftest_s='
4008 .extern __get_tpointer
4009 .toc
4010LC..1:
4011 .tc a[TC],a[TL]@le
4012 .csect .text[PR]
4013.tlstest:
4014 lwz 9,LC..1(2)
4015 bla __get_tpointer
4016 lwzx 3,9,3
4017 .globl a
4018 .csect a[TL],4
4019a:
4020 .space 4'
7a8b1ec4 4021 ;;
227eb343 4022 powerpc64*-*-*)
c4501e62
JJ
4023 conftest_s='
4024 .section ".tdata","awT",@progbits
4025 .align 3
4026ld0: .space 8
4027ld1: .space 8
4028x1: .space 8
4029x2: .space 8
4030x3: .space 8
4031 .text
4032 addi 3,2,ld0@got@tlsgd
4033 bl .__tls_get_addr
4034 nop
4035 addi 3,2,ld1@toc
4036 bl .__tls_get_addr
4037 nop
4038 addi 3,2,x1@got@tlsld
4039 bl .__tls_get_addr
4040 nop
4041 addi 9,3,x1@dtprel
4042 bl .__tls_get_addr
4043 nop
4044 addis 9,3,x2@dtprel@ha
4045 addi 9,9,x2@dtprel@l
4046 bl .__tls_get_addr
4047 nop
4048 ld 9,x3@got@dtprel(2)
4049 add 9,9,3
4050 bl .__tls_get_addr
4051 nop'
2f3321ca 4052 tls_as_opt="-a64 --fatal-warnings"
c4501e62 4053 ;;
01ae4861
AM
4054 powerpc*-*-*)
4055 conftest_s='
4056 .section ".tdata","awT",@progbits
4057 .align 2
4058ld0: .space 4
4059ld1: .space 4
4060x1: .space 4
4061x2: .space 4
4062x3: .space 4
4063 .text
4064 addi 3,31,ld0@got@tlsgd
4065 bl __tls_get_addr
4066 addi 3,31,x1@got@tlsld
4067 bl __tls_get_addr
4068 addi 9,3,x1@dtprel
4069 addis 9,3,x2@dtprel@ha
4070 addi 9,9,x2@dtprel@l
4071 lwz 9,x3@got@tprel(31)
4072 add 9,9,x@tls
4073 addi 9,2,x1@tprel
4074 addis 9,2,x2@tprel@ha
4075 addi 9,9,x2@tprel@l'
01ae4861
AM
4076 tls_as_opt="-a32 --fatal-warnings"
4077 ;;
09cae750
PD
4078 riscv*-*-*)
4079 conftest_s='
4080 .section .tdata,"awT",@progbits
4081x: .word 2
4082 .text
4083 la.tls.gd a0,x
4084 call __tls_get_addr'
09cae750
PD
4085 tls_as_opt='--fatal-warnings'
4086 ;;
fd3cd001
UW
4087 s390-*-*)
4088 conftest_s='
4089 .section ".tdata","awT",@progbits
4090foo: .long 25
4091 .text
4092 .long foo@TLSGD
4093 .long foo@TLSLDM
4094 .long foo@DTPOFF
4095 .long foo@NTPOFF
4096 .long foo@GOTNTPOFF
4097 .long foo@INDNTPOFF
4098 l %r1,foo@GOTNTPOFF(%r12)
4099 l %r1,0(%r1):tls_load:foo
4100 bas %r14,0(%r1,%r13):tls_gdcall:foo
4101 bas %r14,0(%r1,%r13):tls_ldcall:foo'
2f3321ca 4102 tls_as_opt="-m31 --fatal-warnings"
fd3cd001
UW
4103 ;;
4104 s390x-*-*)
4105 conftest_s='
4106 .section ".tdata","awT",@progbits
4107foo: .long 25
4108 .text
4109 .quad foo@TLSGD
4110 .quad foo@TLSLDM
4111 .quad foo@DTPOFF
4112 .quad foo@NTPOFF
4113 .quad foo@GOTNTPOFF
4114 lg %r1,foo@GOTNTPOFF(%r12)
4115 larl %r1,foo@INDNTPOFF
4116 brasl %r14,__tls_get_offset@PLT:tls_gdcall:foo
4117 brasl %r14,__tls_get_offset@PLT:tls_ldcall:foo'
2f3321ca 4118 tls_as_opt="-m64 -Aesame --fatal-warnings"
fd3cd001 4119 ;;
311adabe 4120 sh-*-* | sh[123456789lbe]*-*-*)
9ff13962
KK
4121 conftest_s='
4122 .section ".tdata","awT",@progbits
4123foo: .long 25
4124 .text
4125 .long foo@TLSGD
4126 .long foo@TLSLDM
4127 .long foo@DTPOFF
4128 .long foo@GOTTPOFF
4129 .long foo@TPOFF'
2f3321ca 4130 tls_as_opt=--fatal-warnings
9ff13962 4131 ;;
5751a10b 4132 sparc*-*-*)
2f3321ca
EB
4133 case "$target" in
4134 sparc*-sun-solaris2.*)
4135 on_solaris=yes
4136 ;;
4137 *)
4138 on_solaris=no
4139 ;;
4140 esac
4141 if test x$on_solaris = xyes && test x$gas_flag = xno; then
4142 conftest_s='
16c9d3b1 4143 .section ".tdata",#alloc,#write,#tls'
2f3321ca
EB
4144 else
4145 conftest_s='
16c9d3b1 4146 .section ".tdata","awT",@progbits'
16c9d3b1
RO
4147 tls_as_opt="-32 --fatal-warnings"
4148 fi
4149 conftest_s="$conftest_s
5751a10b
JJ
4150foo: .long 25
4151 .text
4152 sethi %tgd_hi22(foo), %o0
4153 add %o0, %tgd_lo10(foo), %o1
4154 add %l7, %o1, %o0, %tgd_add(foo)
4155 call __tls_get_addr, %tgd_call(foo)
4156 sethi %tldm_hi22(foo), %l1
4157 add %l1, %tldm_lo10(foo), %l2
4158 add %l7, %l2, %o0, %tldm_add(foo)
4159 call __tls_get_addr, %tldm_call(foo)
4160 sethi %tldo_hix22(foo), %l3
4161 xor %l3, %tldo_lox10(foo), %l4
4162 add %o0, %l4, %l5, %tldo_add(foo)
4163 sethi %tie_hi22(foo), %o3
4164 add %o3, %tie_lo10(foo), %o3
4165 ld [%l7 + %o3], %o2, %tie_ld(foo)
4166 add %g7, %o2, %o4, %tie_add(foo)
4167 sethi %tle_hix22(foo), %l1
4168 xor %l1, %tle_lox10(foo), %o5
16c9d3b1 4169 ld [%g7 + %o5], %o1"
5751a10b 4170 ;;
6a7a462c
BW
4171 xtensa*-*-*)
4172 conftest_s='
4173 .section ".tdata","awT",@progbits
4174foo: .long 25
4175 .text
4176 movi a8, foo@TLSFUNC
4177 movi a10, foo@TLSARG
4178 callx8.tls a8, foo@TLSCALL'
6a7a462c 4179 ;;
5751a10b 4180changequote([,])dnl
f996902d 4181esac
8dea1cca
DD
4182set_have_as_tls=no
4183if test "x$enable_tls" = xno ; then
4184 : # TLS explicitly disabled.
4185elif test "x$enable_tls" = xyes ; then
4186 set_have_as_tls=yes # TLS explicitly enabled.
9b24c20c 4187elif test -z "$conftest_s"; then
8ada417f
ZW
4188 : # If we don't have a check, assume no support.
4189else
4190 gcc_GAS_CHECK_FEATURE(thread-local storage support, gcc_cv_as_tls,
e0b6d0b3 4191 [$tls_as_opt], [$conftest_s],,
8dea1cca
DD
4192 [set_have_as_tls=yes])
4193fi
4194if test $set_have_as_tls = yes ; then
4195 AC_DEFINE(HAVE_AS_TLS, 1,
16c9d3b1 4196 [Define if your assembler and linker support thread-local storage.])
f996902d 4197fi
8ada417f
ZW
4198
4199# Target-specific assembler checks.
f996902d 4200
7e9d8517
L
4201AC_MSG_CHECKING(linker -Bstatic/-Bdynamic option)
4202gcc_cv_ld_static_dynamic=no
c6092243
RO
4203gcc_cv_ld_static_option='-Bstatic'
4204gcc_cv_ld_dynamic_option='-Bdynamic'
7e9d8517 4205if test $in_tree_ld = yes ; then
83f0ccb8 4206 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10 -o "$gcc_cv_gld_major_version" -gt 2; then
7e9d8517
L
4207 gcc_cv_ld_static_dynamic=yes
4208 fi
4209elif test x$gcc_cv_ld != x; then
bb127cd8 4210 # Check if linker supports -Bstatic/-Bdynamic option
8dc877eb
RO
4211 if $gcc_cv_ld --help 2>&1 | grep -- -Bstatic > /dev/null \
4212 && $gcc_cv_ld --help 2>&1 | grep -- -Bdynamic > /dev/null; then
bb127cd8
RO
4213 gcc_cv_ld_static_dynamic=yes
4214 else
4215 case "$target" in
478f60f9
MH
4216 # AIX ld uses -b flags
4217 *-*-aix4.[[23]]* | *-*-aix[[5-9]]*)
4218 gcc_cv_ld_static_dynamic=yes
4219 gcc_cv_ld_static_option="-bstatic"
4220 gcc_cv_ld_dynamic_option="-bdynamic"
4221 ;;
f903e000
SE
4222 # HP-UX ld uses -a flags to select between shared and archive.
4223 *-*-hpux*)
4224 if test x"$gnu_ld" = xno; then
4225 gcc_cv_ld_static_dynamic=yes
4226 gcc_cv_ld_static_option="-aarchive_shared"
4227 gcc_cv_ld_dynamic_option="-adefault"
4228 fi
4229 ;;
bb127cd8
RO
4230 # Solaris 2 ld always supports -Bstatic/-Bdynamic.
4231 *-*-solaris2*)
4232 gcc_cv_ld_static_dynamic=yes
4233 ;;
4234 esac
4235 fi
7e9d8517
L
4236fi
4237if test x"$gcc_cv_ld_static_dynamic" = xyes; then
4238 AC_DEFINE(HAVE_LD_STATIC_DYNAMIC, 1,
c6092243
RO
4239[Define if your linker supports -Bstatic/-Bdynamic or equivalent options.])
4240 AC_DEFINE_UNQUOTED(LD_STATIC_OPTION, "$gcc_cv_ld_static_option",
4241[Define to the linker option to disable use of shared objects.])
4242 AC_DEFINE_UNQUOTED(LD_DYNAMIC_OPTION, "$gcc_cv_ld_dynamic_option",
4243[Define to the linker option to enable use of shared objects.])
7e9d8517
L
4244fi
4245AC_MSG_RESULT($gcc_cv_ld_static_dynamic)
4246
deb3da39
DM
4247AC_MSG_CHECKING(linker --version-script option)
4248gcc_cv_ld_version_script=no
4249ld_version_script_option=''
4250if test $in_tree_ld = yes || test x"$gnu_ld" = xyes; then
4251 gcc_cv_ld_version_script=yes
4252 ld_version_script_option='--version-script'
4253elif test x$gcc_cv_ld != x; then
4254 case "$target" in
4255 # Solaris 2 ld always supports -M. It also supports a subset of
4256 # --version-script since Solaris 11.4, but requires
4257 # -z gnu-version-script-compat to activate.
4258 *-*-solaris2*)
4259 gcc_cv_ld_version_script=yes
4260 ld_version_script_option='-M'
4261 ;;
4262 esac
4263fi
4264# Don't AC_DEFINE result, only used in jit/Make-lang.in so far.
4265AC_MSG_RESULT($gcc_cv_ld_version_script)
4266AC_SUBST(ld_version_script_option)
4267
4268AC_MSG_CHECKING(linker soname option)
4269gcc_cv_ld_soname=no
4270if test $in_tree_ld = yes || test x"$gnu_ld" = xyes; then
4271 gcc_cv_ld_soname=yes
4272 ld_soname_option='-soname'
4273elif test x$gcc_cv_ld != x; then
4274 case "$target" in
4275 *-*-darwin*)
4276 gcc_cv_ld_soname=yes
4277 ld_soname_option='-install_name'
4278 ;;
ea143da7
RO
4279 # Solaris 2 ld always supports -h. It also supports --soname for GNU
4280 # ld compatiblity since some Solaris 10 update.
4281 *-*-solaris2*)
4282 gcc_cv_ld_soname=yes
4283 ld_soname_option='-h'
4284 ;;
deb3da39
DM
4285 esac
4286fi
4287# Don't AC_DEFINE result, only used in jit/Make-lang.in so far.
4288AC_MSG_RESULT($gcc_cv_ld_soname)
4289AC_SUBST(ld_soname_option)
4290
d594623a
L
4291if test x"$demangler_in_ld" = xyes; then
4292 AC_MSG_CHECKING(linker --demangle support)
4293 gcc_cv_ld_demangle=no
4294 if test $in_tree_ld = yes; then
4295 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 14 -o "$gcc_cv_gld_major_version" -gt 2; then \
4296 gcc_cv_ld_demangle=yes
4297 fi
4298 elif test x$gcc_cv_ld != x -a x"$gnu_ld" = xyes; then
4299 # Check if the GNU linker supports --demangle option
8dc877eb 4300 if $gcc_cv_ld --help 2>&1 | grep no-demangle > /dev/null; then
d594623a
L
4301 gcc_cv_ld_demangle=yes
4302 fi
4303 fi
4304 if test x"$gcc_cv_ld_demangle" = xyes; then
4305 AC_DEFINE(HAVE_LD_DEMANGLE, 1,
4306[Define if your linker supports --demangle option.])
4307 fi
4308 AC_MSG_RESULT($gcc_cv_ld_demangle)
4309fi
4310
96bdf9b4 4311AC_MSG_CHECKING(linker plugin support)
55b46574 4312gcc_cv_lto_plugin=0
f3d533d3 4313if test -f liblto_plugin.la; then
df33b41f
RO
4314 save_ld_ver="$ld_ver"
4315 save_ld_vers_major="$ld_vers_major"
4316 save_ld_vers_minor="$ld_vers_minor"
4317 save_ld_is_gold="$ld_is_gold"
4318
4319 ld_is_gold=no
55b46574 4320
df33b41f
RO
4321 if test $in_tree_ld = yes -a x"$ORIGINAL_PLUGIN_LD_FOR_TARGET" = x"$gcc_cv_ld"; then
4322 ld_ver="GNU ld"
4323 # FIXME: ld_is_gold?
4324 ld_vers_major="$gcc_cv_gld_major_version"
4325 ld_vers_minor="$gcc_cv_gld_minor_version"
4326 else
4327 # Determine plugin linker version.
4328 # FIXME: Partial duplicate from above, generalize.
4329changequote(,)dnl
4330 ld_ver=`$ORIGINAL_PLUGIN_LD_FOR_TARGET --version 2>/dev/null | sed 1q`
4331 if echo "$ld_ver" | grep GNU > /dev/null; then
4332 if echo "$ld_ver" | grep "GNU gold" > /dev/null; then
4333 ld_is_gold=yes
4334 ld_vers=`echo $ld_ver | sed -n \
4335 -e 's,^[^)]*[ ]\([0-9][0-9]*\.[0-9][0-9]*[^)]*\)) .*$,\1,p'`
4336 else
4337 ld_vers=`echo $ld_ver | sed -n \
4338 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
4339 fi
4340 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
4341 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
55b46574 4342 fi
df33b41f
RO
4343changequote([,])dnl
4344 fi
4345
4346 # Determine plugin support.
4347 if echo "$ld_ver" | grep GNU > /dev/null; then
55b46574
RO
4348 # Require GNU ld or gold 2.21+ for plugin support by default.
4349 if test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -ge 21; then
4350 gcc_cv_lto_plugin=2
c083e654
ML
4351 elif test "$ld_is_mold" = yes; then
4352 gcc_cv_lto_plugin=2
55b46574
RO
4353 # Allow -fuse-linker-plugin to enable plugin support in GNU gold 2.20.
4354 elif test "$ld_is_gold" = yes -a "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 20; then
4355 gcc_cv_lto_plugin=1
96bdf9b4 4356 fi
96bdf9b4 4357 fi
df33b41f
RO
4358
4359 ld_ver="$save_ld_ver"
4360 ld_vers_major="$save_ld_vers_major"
4361 ld_vers_minor="$save_ld_vers_minor"
4362 ld_is_gold="$save_ld_is_gold"
96bdf9b4 4363fi
55b46574
RO
4364AC_DEFINE_UNQUOTED(HAVE_LTO_PLUGIN, $gcc_cv_lto_plugin,
4365 [Define to the level of your linker's plugin support.])
96bdf9b4
JH
4366AC_MSG_RESULT($gcc_cv_lto_plugin)
4367
b410cf1d
IS
4368# Target OS-specific assembler checks.
4369
4370case "$target_os" in
4371 darwin*)
4372 gcc_GAS_CHECK_FEATURE([-mmacosx-version-min option],
e0b6d0b3 4373 gcc_cv_as_mmacosx_version_min,
b410cf1d
IS
4374 [-mmacosx-version-min=10.1], [.text],,
4375 [AC_DEFINE(HAVE_AS_MMACOSX_VERSION_MIN_OPTION, 1,
a335cf24 4376 [Define if your macOS assembler supports the -mmacos-version-min option.])])
b410cf1d
IS
4377 ;;
4378esac
4379
4380# Target CPU-specific assembler checks.
4381
275b60d6 4382case "$target" in
63892fa2 4383 aarch64*-*-*)
e0b6d0b3 4384 gcc_GAS_CHECK_FEATURE([-mabi option], gcc_cv_as_aarch64_mabi,
63892fa2
KV
4385 [-mabi=lp64], [.text],,,)
4386 if test x$gcc_cv_as_aarch64_mabi = xyes; then
4387 AC_DEFINE(HAVE_AS_MABI_OPTION, 1,
4388 [Define if your assembler supports the -mabi option.])
4389 else
4390 if test x$with_abi = xilp32; then
4391 AC_MSG_ERROR([Assembler does not support -mabi=ilp32.\
4392 Upgrade the Assembler.])
4393 fi
4394 if test x"$with_multilib_list" = xdefault; then
4395 TM_MULTILIB_CONFIG=lp64
4396 else
4397 aarch64_multilibs=`echo $with_multilib_list | sed -e 's/,/ /g'`
4398 for aarch64_multilib in ${aarch64_multilibs}; do
4399 case ${aarch64_multilib} in
4400 ilp32)
4401 AC_MSG_ERROR([Assembler does not support -mabi=ilp32.\
4402 Upgrade the Assembler.])
4403 ;;
4404 *)
4405 ;;
4406 esac
4407 done
4408 fi
4409 fi
34ecdb0f 4410 # Check if we have binutils support for relocations types needed by -fpic
e0b6d0b3 4411 gcc_GAS_CHECK_FEATURE([-fpic relocs], gcc_cv_as_aarch64_picreloc,,
34ecdb0f
JW
4412 [
4413 .text
4414 ldr x0, [[x2, #:gotpage_lo15:globalsym]]
4415 ],,[AC_DEFINE(HAVE_AS_SMALL_PIC_RELOCS, 1,
4416 [Define if your assembler supports relocs needed by -fpic.])])
c7ff4f0f
SD
4417 # Enable Branch Target Identification Mechanism and Return Address
4418 # Signing by default.
4419 AC_ARG_ENABLE(standard-branch-protection,
4420 [
4421AS_HELP_STRING([--enable-standard-branch-protection],
4422 [enable Branch Target Identification Mechanism and Return Address Signing by default for AArch64])
4423AS_HELP_STRING([--disable-standard-branch-protection],
4424 [disable Branch Target Identification Mechanism and Return Address Signing by default for AArch64])
4425 ],
4426 [
4427 case $enableval in
4428 yes)
4429 tm_defines="${tm_defines} TARGET_ENABLE_BTI=1 TARGET_ENABLE_PAC_RET=1"
4430 ;;
4431 no)
4432 ;;
4433 *)
4434 AC_MSG_ERROR(['$enableval' is an invalid value for --enable-standard-branch-protection.\
4435 Valid choices are 'yes' and 'no'.])
4436 ;;
4437 esac
4438 ],
4439 [])
5e396da6
KT
4440 # Enable default workaround for AArch64 Cortex-A53 erratum 835769.
4441 AC_ARG_ENABLE(fix-cortex-a53-835769,
4442 [
4443AS_HELP_STRING([--enable-fix-cortex-a53-835769],
4444 [enable workaround for AArch64 Cortex-A53 erratum 835769 by default])
4445AS_HELP_STRING([--disable-fix-cortex-a53-835769],
4446 [disable workaround for AArch64 Cortex-A53 erratum 835769 by default])
4447 ],
4448 [
4449 case $enableval in
4450 yes)
4451 tm_defines="${tm_defines} TARGET_FIX_ERR_A53_835769_DEFAULT=1"
4452 ;;
4453 no)
4454 ;;
4455 *)
4456 AC_MSG_ERROR(['$enableval' is an invalid value for --enable-fix-cortex-a53-835769.\
4457 Valid choices are 'yes' and 'no'.])
4458 ;;
4459
4460 esac
4461 ],
4462 [])
bf05ef76
YR
4463 # Enable default workaround for AArch64 Cortex-A53 erratum 843419.
4464 AC_ARG_ENABLE(fix-cortex-a53-843419,
4465 [
4466AS_HELP_STRING([--enable-fix-cortex-a53-843419],
4467 [enable workaround for AArch64 Cortex-A53 erratum 843419 by default])
4468AS_HELP_STRING([--disable-fix-cortex-a53-843419],
4469 [disable workaround for AArch64 Cortex-A53 erratum 843419 by default])
4470 ],
4471 [
4472 case $enableval in
4473 yes)
4474 tm_defines="${tm_defines} TARGET_FIX_ERR_A53_843419_DEFAULT=1"
4475 ;;
4476 no)
4477 ;;
4478 *)
4479 AC_MSG_ERROR(['$enableval' is an invalid value for --enable-fix-cortex-a53-843419.\
4480 Valid choices are 'yes' and 'no'.])
4481 ;;
4482
4483 esac
4484 ],
4485 [])
63892fa2
KV
4486 ;;
4487
3a37b08e 4488 # All TARGET_ABI_OSF targets.
5c30094f 4489 alpha*-*-linux* | alpha*-*-*bsd*)
8ada417f 4490 gcc_GAS_CHECK_FEATURE([explicit relocation support],
e0b6d0b3 4491 gcc_cv_as_alpha_explicit_relocs,,
8ada417f 4492[ .set nomacro
3a37b08e
RH
4493 .text
4494 extbl $3, $2, $3 !lituse_bytoff!1
4495 ldq $2, a($29) !literal!1
4496 ldq $4, b($29) !literal!2
4497 ldq_u $3, 0($2) !lituse_base!1
4498 ldq $27, f($29) !literal!5
4499 jsr $26, ($27), f !lituse_jsr!5
4500 ldah $29, 0($26) !gpdisp!3
4501 lda $0, c($29) !gprel
4502 ldah $1, d($29) !gprelhigh
4503 lda $1, d($1) !gprellow
8ada417f
ZW
4504 lda $29, 0($29) !gpdisp!3],,
4505 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
4506 [Define if your assembler supports explicit relocations.])])
d006f5eb 4507 gcc_GAS_CHECK_FEATURE([jsrdirect relocation support],
e0b6d0b3 4508 gcc_cv_as_alpha_jsrdirect_relocs,,
d006f5eb
RH
4509[ .set nomacro
4510 .text
4511 ldq $27, a($29) !literal!1
4512 jsr $26, ($27), a !lituse_jsrdirect!1],,
4513 [AC_DEFINE(HAVE_AS_JSRDIRECT_RELOCS, 1,
4514 [Define if your assembler supports the lituse_jsrdirect relocation.])])
3a37b08e 4515 ;;
e95b1e6a 4516
0c9dc4ae 4517 avr-*-*)
e0b6d0b3 4518 gcc_GAS_CHECK_FEATURE([--mlink-relax option], gcc_cv_as_avr_mlink_relax,
0c9dc4ae
GJL
4519 [--mlink-relax], [.text],,
4520 [AC_DEFINE(HAVE_AS_AVR_MLINK_RELAX_OPTION, 1,
4521 [Define if your avr assembler supports --mlink-relax option.])])
4522
e0b6d0b3 4523 gcc_GAS_CHECK_FEATURE([-mrmw option], gcc_cv_as_avr_mrmw,
0c9dc4ae
GJL
4524 [-mrmw], [.text],,
4525 [AC_DEFINE(HAVE_AS_AVR_MRMW_OPTION, 1,
4526 [Define if your avr assembler supports -mrmw option.])])
3266ddb3 4527
63866e04 4528 gcc_GAS_CHECK_FEATURE([__gcc_isr pseudo instruction],
e0b6d0b3 4529 gcc_cv_as_avr_mgccisr,
63866e04
GJL
4530 [-mgcc-isr], [.text
4531 __gcc_isr 1
4532 __gcc_isr 2
4533 __gcc_isr 0,r24
4534 ],,
4535 [AC_DEFINE(HAVE_AS_AVR_MGCCISR_OPTION, 1,
4536 [Define if your avr assembler supports -mgcc-isr option.])])
4537
3266ddb3
GJL
4538 # Check how default linker description file implements .rodata for
4539 # avrxmega3 (PR21472). avr-gcc assumes .rodata is *not* loaded to
4540 # RAM so avr-gcc skips __do_copy_data for .rodata objects.
4541 AC_MSG_CHECKING(binutils for avrxmega3 .rodata support)
4542 cat > conftest.s <<EOF
4543 .section .rodata,"a",@progbits
4544 .global xxvaryy
4545 ;; avr-nm should print "... R xxvaryy", not "... D xxvaryy".
4546 xxvaryy:
4547 .word 1
4548EOF
4549 rm -f conftest.nm
4550 AC_TRY_COMMAND([$gcc_cv_as -mmcu=avrxmega3 conftest.s -o conftest.o])
4551 AC_TRY_COMMAND([$gcc_cv_ld -mavrxmega3 conftest.o -o conftest.elf])
4552 AC_TRY_COMMAND([$gcc_cv_nm conftest.elf > conftest.nm])
98f9d0ca 4553 if test -s conftest.nm
3266ddb3
GJL
4554 then
4555 if grep ' R xxvaryy' conftest.nm > /dev/null; then
4556 AC_MSG_RESULT(yes)
98f9d0ca
GJL
4557 AC_DEFINE(HAVE_LD_AVR_AVRXMEGA3_RODATA_IN_FLASH, 1,
4558 [Define if your default avr linker script for avrxmega3 leaves .rodata in flash.])
3266ddb3
GJL
4559 else
4560 AC_MSG_RESULT(no: avrxmega3 .rodata located in RAM)
4561 echo "$as_me: nm output was" >&AS_MESSAGE_LOG_FD
4562 cat conftest.nm >&AS_MESSAGE_LOG_FD
3266ddb3 4563 avr_ld_ver="`$gcc_cv_ld -v | sed -e 's:^.* ::'`"
98f9d0ca 4564 AC_MSG_WARN([[support for avrxmega3 .rodata in flash needs Binutils 2.29 or higher (have $avr_ld_ver)]])
3266ddb3
GJL
4565 fi
4566 else
4567 AC_MSG_RESULT(test failed)
4568 echo "$as_me: failed program was" >&AS_MESSAGE_LOG_FD
4569 cat conftest.s >&AS_MESSAGE_LOG_FD
98f9d0ca 4570 AC_MSG_WARN([[see `config.log' for details]])
3266ddb3 4571 fi
98f9d0ca 4572 rm -f conftest.s conftest.o conftest.elf conftest.nm
0c9dc4ae
GJL
4573 ;;
4574
682a45fc
HPN
4575 cris-*-*)
4576 gcc_GAS_CHECK_FEATURE([-no-mul-bug-abort option],
e0b6d0b3 4577 gcc_cv_as_cris_no_mul_bug,
682a45fc
HPN
4578 [-no-mul-bug-abort], [.text],,
4579 [AC_DEFINE(HAVE_AS_NO_MUL_BUG_ABORT_OPTION, 1,
4580 [Define if your assembler supports the -no-mul-bug-abort option.])])
4581 ;;
4582
8ada417f 4583 sparc*-*-*)
e0b6d0b3 4584 gcc_GAS_CHECK_FEATURE([-relax option], gcc_cv_as_sparc_relax,
8ada417f
ZW
4585 [-relax], [.text],,
4586 [AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
4587 [Define if your assembler supports -relax option.])])
4588
878ee0ab 4589 gcc_GAS_CHECK_FEATURE([GOTDATA_OP relocs],
e0b6d0b3 4590 gcc_cv_as_sparc_gotdata_op,
878ee0ab
DM
4591 [-K PIC],
4592[.text
6d7b45ad 4593.align 4
878ee0ab
DM
4594foo:
4595 nop
4596bar:
4597 sethi %gdop_hix22(foo), %g1
4598 xor %g1, %gdop_lox10(foo), %g1
4599 ld [[%l7 + %g1]], %g2, %gdop(foo)],
4600 [if test x$gcc_cv_ld != x \
46bc665f 4601 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
7673c962
RO
4602 if test x$gcc_cv_objdump != x; then
4603 if $gcc_cv_objdump -s -j .text conftest 2> /dev/null \
4604 | grep ' 03000004 82186004 c405c001'> /dev/null 2>&1; then
46bc665f 4605 gcc_cv_as_sparc_gotdata_op=no
7673c962 4606 else
46bc665f 4607 gcc_cv_as_sparc_gotdata_op=yes
46bc665f 4608 fi
46bc665f 4609 fi
878ee0ab
DM
4610 fi
4611 rm -f conftest],
4612 [AC_DEFINE(HAVE_AS_SPARC_GOTDATA_OP, 1,
4613 [Define if your assembler and linker support GOTDATA_OP relocs.])])
4614
8ada417f 4615 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs],
e0b6d0b3 4616 gcc_cv_as_sparc_ua_pcrel,
8ada417f
ZW
4617 [-K PIC],
4618[.text
4619foo:
4620 nop
4621.data
4622.align 4
4623.byte 0
4624.uaword %r_disp32(foo)],
4625 [if test x$gcc_cv_ld != x \
4626 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
4627 gcc_cv_as_sparc_ua_pcrel=yes
4628 fi
4629 rm -f conftest],
4630 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
17e9e88c 4631 [Define if your assembler and linker support unaligned PC relative relocs.])
cf7b8b0d 4632
8ada417f 4633 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs against hidden symbols],
e0b6d0b3 4634 gcc_cv_as_sparc_ua_pcrel_hidden,
8ada417f
ZW
4635 [-K PIC],
4636[.data
4637.align 4
4638.byte 0x31
4639.uaword %r_disp32(foo)
4640.byte 0x32, 0x33, 0x34
4641.global foo
4642.hidden foo
4643foo:
4644.skip 4],
4645 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
4646 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
4647 && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
4648 | grep ' 31000000 07323334' > /dev/null 2>&1; then
4649 if $gcc_cv_objdump -R conftest 2> /dev/null \
4650 | grep 'DISP32' > /dev/null 2>&1; then
4651 :
22252625 4652 else
8ada417f 4653 gcc_cv_as_sparc_ua_pcrel_hidden=yes
5b68c389 4654 fi
8ada417f
ZW
4655 fi
4656 rm -f conftest],
4657 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
4658 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])])
4659 ]) # unaligned pcrel relocs
4660
4661 gcc_GAS_CHECK_FEATURE([offsetable %lo()],
e0b6d0b3 4662 gcc_cv_as_sparc_offsetable_lo10,
8ada417f
ZW
4663 [-xarch=v9],
4664[.text
4665 or %g1, %lo(ab) + 12, %g1
4666 or %g1, %lo(ab + 12), %g1],
4667 [if test x$gcc_cv_objdump != x \
ecb0ccbc 4668 && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \
8ada417f 4669 | grep ' 82106000 82106000' > /dev/null 2>&1; then
1b5c0152 4670 gcc_cv_as_sparc_offsetable_lo10=yes
8ada417f
ZW
4671 fi],
4672 [AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
4673 [Define if your assembler supports offsetable %lo().])])
e8b141b5
DM
4674
4675 gcc_GAS_CHECK_FEATURE([FMAF, HPC, and VIS 3.0 instructions],
e0b6d0b3 4676 gcc_cv_as_sparc_fmaf,
e8b141b5
DM
4677 [-xarch=v9d],
4678 [.text
26e2f443
DM
4679 .register %g2, #scratch
4680 .register %g3, #scratch
e8b141b5
DM
4681 .align 4
4682 fmaddd %f0, %f2, %f4, %f6
4683 addxccc %g1, %g2, %g3
4684 fsrl32 %f2, %f4, %f8
4685 fnaddd %f10, %f12, %f14],,
4686 [AC_DEFINE(HAVE_AS_FMAF_HPC_VIS3, 1,
4687 [Define if your assembler supports FMAF, HPC, and VIS 3.0 instructions.])])
8b98b5fd
DM
4688
4689 gcc_GAS_CHECK_FEATURE([SPARC4 instructions],
e0b6d0b3 4690 gcc_cv_as_sparc_sparc4,
8b98b5fd
DM
4691 [-xarch=sparc4],
4692 [.text
4693 .register %g2, #scratch
4694 .register %g3, #scratch
4695 .align 4
4696 cxbe %g2, %g3, 1f
46971: cwbneg %g2, %g3, 1f
46981: sha1
4699 md5
4700 aes_kexpand0 %f4, %f6, %f8
4701 des_round %f38, %f40, %f42, %f44
4702 camellia_f %f54, %f56, %f58, %f60
4703 kasumi_fi_xor %f46, %f48, %f50, %f52],,
4704 [AC_DEFINE(HAVE_AS_SPARC4, 1,
4705 [Define if your assembler supports SPARC4 instructions.])])
1f65ae7a 4706
690f24b7 4707 gcc_GAS_CHECK_FEATURE([SPARC5 and VIS 4.0 instructions],
e0b6d0b3 4708 gcc_cv_as_sparc_sparc5,
690f24b7
JM
4709 [-xarch=sparc5],
4710 [.text
4711 .register %g2, #scratch
4712 .register %g3, #scratch
4713 .align 4
4714 subxc %g1, %g2, %g3
4715 fpadd8 %f0, %f2, %f4],,
4716 [AC_DEFINE(HAVE_AS_SPARC5_VIS4, 1,
4717 [Define if your assembler supports SPARC5 and VIS 4.0 instructions.])])
4718
bcc3c3f1 4719 gcc_GAS_CHECK_FEATURE([SPARC6 instructions],
e0b6d0b3 4720 gcc_cv_as_sparc_sparc6,
bcc3c3f1
JM
4721 [-xarch=sparc6],
4722 [.text
4723 .register %g2, #scratch
4724 .register %g3, #scratch
4725 .align 4
4726 rd %entropy, %g1
4727 fpsll64x %f0, %f2, %f4],,
4728 [AC_DEFINE(HAVE_AS_SPARC6, 1,
4729 [Define if your assembler supports SPARC6 instructions.])])
4730
1f65ae7a 4731 gcc_GAS_CHECK_FEATURE([LEON instructions],
e0b6d0b3 4732 gcc_cv_as_sparc_leon,
1f65ae7a
EB
4733 [-Aleon],
4734 [.text
4735 .register %g2, #scratch
4736 .register %g3, #scratch
4737 .align 4
4738 smac %g2, %g3, %g1
4739 umac %g2, %g3, %g1
ba21a04a 4740 casa [[%g2]] 0xb, %g3, %g1],,
1f65ae7a
EB
4741 [AC_DEFINE(HAVE_AS_LEON, 1,
4742 [Define if your assembler supports LEON instructions.])])
1cb36a98
RH
4743 ;;
4744
4745changequote(,)dnl
c307e6dd 4746 i[34567]86-*-* | x86_64-*-*)
1cb36a98 4747changequote([,])dnl
f7e413e2
DK
4748 case $target_os in
4749 cygwin*)
4750 # Full C++ conformance when using a shared libstdc++-v3 requires some
4751 # support from the Cygwin DLL, which in more recent versions exports
4752 # wrappers to aid in interposing and redirecting operators new, delete,
4753 # etc., as per n2800 #17.6.4.6 [replacement.functions]. Check if we
4754 # are configuring for a version of Cygwin that exports the wrappers.
b802ae5c 4755 if test x$host = x$target && test x$host_cpu = xi686; then
f7e413e2
DK
4756 AC_CHECK_FUNC([__wrap__Znaj],[gcc_ac_cygwin_dll_wrappers=yes],[gcc_ac_cygwin_dll_wrappers=no])
4757 else
4758 # Can't check presence of libc functions during cross-compile, so
4759 # we just have to assume we're building for an up-to-date target.
4760 gcc_ac_cygwin_dll_wrappers=yes
4761 fi
4762 AC_DEFINE_UNQUOTED(USE_CYGWIN_LIBSTDCXX_WRAPPERS,
4763 [`if test $gcc_ac_cygwin_dll_wrappers = yes; then echo 1; else echo 0; fi`],
4764 [Define if you want to generate code by default that assumes that the
4765 Cygwin DLL exports wrappers to support libstdc++ function replacement.])
4766 esac
d38bc601 4767 case $target_os in
ee2499b4 4768 cygwin* | pe | mingw32*)
233215fe
DK
4769 # Recent binutils allows the three-operand form of ".comm" on PE. This
4770 # definition is used unconditionally to initialise the default state of
4771 # the target option variable that governs usage of the feature.
1918f4b7
SB
4772 gcc_GAS_CHECK_FEATURE([.comm with alignment], gcc_cv_as_comm_has_align,,
4773 [.comm foo,1,32])
233215fe
DK
4774 AC_DEFINE_UNQUOTED(HAVE_GAS_ALIGNED_COMM,
4775 [`if test $gcc_cv_as_comm_has_align = yes; then echo 1; else echo 0; fi`],
4776 [Define if your assembler supports specifying the alignment
4777 of objects allocated using the GAS .comm command.])
d38bc601
BF
4778 # Used for DWARF 2 in PE
4779 gcc_GAS_CHECK_FEATURE([.secrel32 relocs],
1918f4b7 4780 gcc_cv_as_ix86_pe_secrel32,,
d38bc601
BF
4781[.text
4782foo: nop
4783.data
4784 .secrel32 foo],
4785 [if test x$gcc_cv_ld != x \
4786 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1; then
4787 gcc_cv_as_ix86_pe_secrel32=yes
4788 fi
4789 rm -f conftest],
4790 [AC_DEFINE(HAVE_GAS_PE_SECREL32_RELOC, 1,
4791 [Define if your assembler and linker support 32-bit section relative relocs via '.secrel32 label'.])])
3bec79c5
DK
4792 # Test if the assembler supports the extended form of the .section
4793 # directive that specifies section alignment. LTO support uses this,
4794 # but normally only after installation, so we warn but don't fail the
4795 # configure if LTO is enabled but the assembler does not support it.
4796 gcc_GAS_CHECK_FEATURE([.section with alignment], gcc_cv_as_section_has_align,
e0b6d0b3 4797 -fatal-warnings,[.section lto_test,"dr0"])
3bec79c5
DK
4798 if test x$gcc_cv_as_section_has_align != xyes; then
4799 case ",$enable_languages," in
4800 *,lto,*)
4801 AC_MSG_WARN([LTO for $target requires binutils >= 2.20.1, but version found appears insufficient; LTO will not work until binutils is upgraded.])
4802 ;;
4803 esac
4804 fi
d38bc601
BF
4805 ;;
4806 esac
743b8dd6 4807 case $target_os in
f18cbc1e 4808 darwin2* | darwin19*)
743b8dd6 4809 gcc_GAS_CHECK_FEATURE([llvm assembler x86-pad-for-align option],
e5d9873f 4810 gcc_cv_as_mllvm_x86_pad_for_align,
743b8dd6
IS
4811 [-mllvm -x86-pad-for-align=false], [.text],,
4812 [AC_DEFINE(HAVE_AS_MLLVM_X86_PAD_FOR_ALIGN, 1,
a335cf24 4813 [Define if your macOS assembler supports -mllvm -x86-pad-for-align=false.])])
743b8dd6
IS
4814 ;;
4815 esac
d38bc601 4816
e0b6d0b3 4817 gcc_GAS_CHECK_FEATURE([-xbrace_comment], gcc_cv_as_ix86_xbrace_comment,
8c2e5ecf
RO
4818 [-xbrace_comment=no], [.text],,
4819 [AC_DEFINE(HAVE_AS_XBRACE_COMMENT_OPTION, 1,
4820 [Define if your assembler supports -xbrace_comment option.])])
4821
8ada417f 4822 gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
e0b6d0b3 4823 gcc_cv_as_ix86_filds,,
005f915e 4824 [filds (%ebp); fists (%ebp)],,
a3a5e3d1
UB
4825 [AC_DEFINE(HAVE_AS_IX86_FILDS, 1,
4826 [Define if your assembler uses filds and fists mnemonics.])])
4827
4828 gcc_GAS_CHECK_FEATURE([fildq and fistpq mnemonics],
e0b6d0b3 4829 gcc_cv_as_ix86_fildq,,
005f915e 4830 [fildq (%ebp); fistpq (%ebp)],,
a3a5e3d1
UB
4831 [AC_DEFINE(HAVE_AS_IX86_FILDQ, 1,
4832 [Define if your assembler uses fildq and fistq mnemonics.])])
8ada417f 4833
f6f5dff2 4834 gcc_GAS_CHECK_FEATURE([cmov syntax],
e0b6d0b3 4835 gcc_cv_as_ix86_cmov_sun_syntax,,
f6f5dff2
RO
4836 [cmovl.l %edx, %eax],,
4837 [AC_DEFINE(HAVE_AS_IX86_CMOV_SUN_SYNTAX, 1,
4838 [Define if your assembler supports the Sun syntax for cmov.])])
4839
b6c03bcd 4840 gcc_GAS_CHECK_FEATURE([ffreep mnemonic],
e0b6d0b3 4841 gcc_cv_as_ix86_ffreep,,
b6c03bcd
RS
4842 [ffreep %st(1)],,
4843 [AC_DEFINE(HAVE_AS_IX86_FFREEP, 1,
4844 [Define if your assembler supports the ffreep mnemonic.])])
4845
ed104137 4846 gcc_GAS_CHECK_FEATURE([.quad directive],
e0b6d0b3 4847 gcc_cv_as_ix86_quad,,
ed104137
RO
4848 [.quad 0],,
4849 [AC_DEFINE(HAVE_AS_IX86_QUAD, 1,
4850 [Define if your assembler supports the .quad directive.])])
4851
38ca3765 4852 gcc_GAS_CHECK_FEATURE([sahf mnemonic],
e0b6d0b3 4853 gcc_cv_as_ix86_sahf,,
953c29f7
UB
4854 [.code64
4855 sahf],,
38ca3765 4856 [AC_DEFINE(HAVE_AS_IX86_SAHF, 1,
953c29f7 4857 [Define if your assembler supports the sahf mnemonic in 64bit mode.])])
38ca3765 4858
fe04878d 4859 gcc_GAS_CHECK_FEATURE([interunit movq mnemonic],
e0b6d0b3 4860 gcc_cv_as_ix86_interunit_movq,,
fe04878d
UB
4861 [.code64
4862 movq %mm0, %rax
13a26a7d
UB
4863 movq %rax, %xmm0])
4864 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_INTERUNIT_MOVQ,
4865 [`if test $gcc_cv_as_ix86_interunit_movq = yes; then echo 1; else echo 0; fi`],
4866 [Define if your assembler supports interunit movq mnemonic.])
fe04878d 4867
5dcfdccd 4868 gcc_GAS_CHECK_FEATURE([hle prefixes],
e0b6d0b3 4869 gcc_cv_as_ix86_hle,,
54af4523 4870 [lock xacquire cmpxchg %esi, (%ecx)],,
5dcfdccd
KY
4871 [AC_DEFINE(HAVE_AS_IX86_HLE, 1,
4872 [Define if your assembler supports HLE prefixes.])])
4873
afd2c302 4874 gcc_GAS_CHECK_FEATURE([swap suffix],
e0b6d0b3 4875 gcc_cv_as_ix86_swap,,
afd2c302
SD
4876 [movl.s %esp, %ebp],,
4877 [AC_DEFINE(HAVE_AS_IX86_SWAP, 1,
4878 [Define if your assembler supports the swap suffix.])])
4879
68b92f78 4880 gcc_GAS_CHECK_FEATURE([different section symbol subtraction],
e0b6d0b3 4881 gcc_cv_as_ix86_diff_sect_delta,,
68b92f78
RS
4882 [.section .rodata
4883.L1:
4884 .long .L2-.L1
4885 .long .L3-.L1
4886 .text
4887.L3: nop
4888.L2: nop],,
4889 [AC_DEFINE(HAVE_AS_IX86_DIFF_SECT_DELTA, 1,
4890 [Define if your assembler supports the subtraction of symbols in different sections.])])
4891
2433310d 4892 gcc_GAS_CHECK_FEATURE([rep and lock prefix],
e0b6d0b3 4893 gcc_cv_as_ix86_rep_lock_prefix,,
2433310d 4894 [rep movsl
43283548
UB
4895 rep ret
4896 rep nop
4897 rep bsf %ecx, %eax
4898 rep bsr %ecx, %eax
4bade865 4899 lock addl %edi, (%eax,%esi)
7085bfb6
UB
4900 lock orl $0, (%esp)],,
4901 [AC_DEFINE(HAVE_AS_IX86_REP_LOCK_PREFIX, 1,
4902 [Define if the assembler supports 'rep <insn>, lock <insn>'.])])
2433310d 4903
88f7c49a 4904 gcc_GAS_CHECK_FEATURE([ud2 mnemonic],
e0b6d0b3 4905 gcc_cv_as_ix86_ud2,,
88f7c49a
RM
4906 [ud2],,
4907 [AC_DEFINE(HAVE_AS_IX86_UD2, 1,
4908 [Define if your assembler supports the 'ud2' mnemonic.])])
4909
e1ebd31d
UB
4910 # Enforce 32-bit output with gas and gld.
4911 if test x$gas = xyes; then
4912 as_ix86_gas_32_opt="--32"
4913 fi
4914 if echo "$ld_ver" | grep GNU > /dev/null; then
4915 if $gcc_cv_ld -V 2>/dev/null | grep elf_i386_sol2 > /dev/null; then
4916 ld_ix86_gld_32_opt="-melf_i386_sol2"
4917 else
4918 ld_ix86_gld_32_opt="-melf_i386"
4919 fi
4920 fi
4921
8950516e 4922 gcc_GAS_CHECK_FEATURE([R_386_TLS_GD_PLT reloc],
e0b6d0b3 4923 gcc_cv_as_ix86_tlsgdplt,
e1ebd31d 4924 [$as_ix86_gas_32_opt],
0f24748c
RO
4925 [call tls_gd@tlsgdplt],
4926 [if test x$gcc_cv_ld != x \
e1ebd31d 4927 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o -G > /dev/null 2>&1; then
0f24748c
RO
4928 gcc_cv_as_ix86_tlsgdplt=yes
4929 fi
4930 rm -f conftest],
8950516e 4931 [AC_DEFINE(HAVE_AS_IX86_TLSGDPLT, 1,
0f24748c 4932 [Define if your assembler and linker support @tlsgdplt.])])
8950516e 4933
040c446d
RO
4934 conftest_s='
4935 .section .tdata,"aw'$tls_section_flag'",@progbits
4936tls_ld:
4937 .section .text,"ax",@progbits
4938 call tls_ld@tlsldmplt'
e1ebd31d 4939
8950516e 4940 gcc_GAS_CHECK_FEATURE([R_386_TLS_LDM_PLT reloc],
e0b6d0b3 4941 gcc_cv_as_ix86_tlsldmplt,
e1ebd31d 4942 [$as_ix86_gas_32_opt],
040c446d 4943 [$conftest_s],
0f24748c 4944 [if test x$gcc_cv_ld != x \
e1ebd31d 4945 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o -G > /dev/null 2>&1; then
0f24748c
RO
4946 gcc_cv_as_ix86_tlsldmplt=yes
4947 fi
caa16d41
RO
4948 rm -f conftest])
4949 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_TLSLDMPLT,
4950 [`if test $gcc_cv_as_ix86_tlsldmplt = yes; then echo 1; else echo 0; fi`],
4951 [Define to 1 if your assembler and linker support @tlsldmplt.])
4952
caa16d41
RO
4953 conftest_s='
4954 .section .text,"ax",@progbits
4955 .globl _start
4956 .type _start, @function
4957_start:
4958 leal value@tlsldm(%ebx), %eax
4959 call ___tls_get_addr@plt
4960
4961 .section .tdata,"aw'$tls_section_flag'",@progbits
4962 .type value, @object
4963value:'
4964 gcc_GAS_CHECK_FEATURE([R_386_TLS_LDM reloc],
e0b6d0b3 4965 gcc_cv_as_ix86_tlsldm,
49677530 4966 [$as_ix86_gas_32_opt],
caa16d41
RO
4967 [$conftest_s],
4968 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
49677530 4969 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o $ld_tls_libs -lc > /dev/null 2>&1; then
caa16d41
RO
4970 if $gcc_cv_objdump -d conftest 2>/dev/null | grep nop > /dev/null \
4971 || dis conftest 2>/dev/null | grep nop > /dev/null; then
4972 gcc_cv_as_ix86_tlsldm=yes
4973 fi
4974 fi
4975 rm -f conftest])
4976 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_TLSLDM,
4977 [`if test $gcc_cv_as_ix86_tlsldm = yes; then echo 1; else echo 0; fi`],
4978 [Define to 1 if your assembler and linker support @tlsldm.])
8950516e 4979
c0597759
L
4980 conftest_s='
4981 .data
4982bar:
4983 .byte 1
4984 .text
4985 .global _start
4986_start:
4987 cmpl $0, bar@GOT
4988 jmp *_start@GOT'
4989 gcc_GAS_CHECK_FEATURE([R_386_GOT32X reloc],
e0b6d0b3 4990 gcc_cv_as_ix86_got32x,
49677530 4991 [$as_ix86_gas_32_opt],
c0597759
L
4992 [$conftest_s],
4993 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
4994 && test x$gcc_cv_readelf != x \
4995 && $gcc_cv_readelf --relocs --wide conftest.o 2>&1 \
4996 | grep R_386_GOT32X > /dev/null 2>&1 \
49677530 4997 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o > /dev/null 2>&1; then
c0597759
L
4998 if $gcc_cv_objdump -dw conftest 2>&1 \
4999 | grep 0xffffff > /dev/null 2>&1; then
5000 gcc_cv_as_ix86_got32x=no
5001 else
5002 gcc_cv_as_ix86_got32x=yes
5003 fi
5004 fi
5005 rm -f conftest])
5006 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_GOT32X,
5007 [`if test x"$gcc_cv_as_ix86_got32x" = xyes; then echo 1; else echo 0; fi`],
5008 [Define 0/1 if your assembler and linker support @GOT.])
e1ebd31d
UB
5009
5010 gcc_GAS_CHECK_FEATURE([GOTOFF in data],
e0b6d0b3 5011 gcc_cv_as_ix86_gotoff_in_data,
e1ebd31d
UB
5012 [$as_ix86_gas_32_opt],
5013[ .text
5014.L0:
5015 nop
5016 .data
5017 .long .L0@GOTOFF])
5018 AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
5019 [`if test $gcc_cv_as_ix86_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
5020 [Define true if the assembler supports '.long foo@GOTOFF'.])
5021
de86ff8f
L
5022 conftest_s='
5023 .section .text,"ax",@progbits
5024 .globl _start
5025 .type _start, @function
5026_start:
5027 leal ld@tlsldm(%ecx), %eax
5028 call *___tls_get_addr@GOT(%ecx)
5029 leal gd@tlsgd(%ecx), %eax
5030 call *___tls_get_addr@GOT(%ecx)
5031
5032 .section .tdata,"aw'$tls_section_flag'",@progbits
5033 .type ld, @object
5034ld:
5035 .byte 0
5036 .globl gd
5037 .type gd, @object
5038gd:
5039 .byte 0'
5040 gcc_GAS_CHECK_FEATURE([calling ___tls_get_addr via GOT],
e0b6d0b3 5041 gcc_cv_as_ix86_tls_get_addr_via_got,
de86ff8f
L
5042 [$as_ix86_gas_32_opt],
5043 [$conftest_s],
5044 [if test x$gcc_cv_ld != x \
5045 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o > /dev/null 2>&1; then
5046 gcc_cv_as_ix86_tls_get_addr_via_got=yes
5047 fi
5048 rm -f conftest])
5049 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_TLS_GET_ADDR_GOT,
5050 [`if test x"$gcc_cv_as_ix86_tls_get_addr_via_got" = xyes; then echo 1; else echo 0; fi`],
5051 [Define 0/1 if your assembler and linker support calling ___tls_get_addr via GOT.])
1cb36a98 5052 ;;
ef1ecf87
RH
5053
5054 ia64*-*-*)
8ada417f 5055 gcc_GAS_CHECK_FEATURE([ltoffx and ldxmov relocs],
e0b6d0b3 5056 gcc_cv_as_ia64_ltoffx_ldxmov_relocs,,
cfa9ee99 5057[ .text
ef1ecf87
RH
5058 addl r15 = @ltoffx(x#), gp
5059 ;;
d8b3b4f4
JM
5060 ld8.mov r16 = [[r15]], x#
5061],,
8ada417f
ZW
5062 [AC_DEFINE(HAVE_AS_LTOFFX_LDXMOV_RELOCS, 1,
5063 [Define if your assembler supports ltoffx and ldxmov relocations.])])
5064
ef1ecf87 5065 ;;
8ada417f 5066
2c4a9cff 5067 powerpc*-*-*)
4b7a5264 5068
8ada417f 5069 case $target in
8af4d362
PB
5070 *-*-darwin*)
5071 gcc_GAS_CHECK_FEATURE([.machine directive support],
e0b6d0b3 5072 gcc_cv_as_machine_directive,,
8af4d362
PB
5073 [ .machine ppc7400])
5074 if test x$gcc_cv_as_machine_directive != xyes; then
5075 echo "*** This target requires an assembler supporting \".machine\"" >&2
aeebd94c 5076 echo you can get it from: https://gcc.gnu.org/pub/gcc/infrastructure/cctools-528.5.dmg >&2
8af4d362
PB
5077 test x$build = x$target && exit 1
5078 fi
4b7a5264
DE
5079 ;;
5080 esac
5081
5082 case $target in
5083 *-*-aix*) conftest_s=' .machine "pwr5"
5084 .csect .text[[PR]]
5085 mfcr 3,128';;
5086 *-*-darwin*) conftest_s=' .text
6b37db3c 5087 mfcr r3,128';;
4c67db14 5088 *) conftest_s=' .machine power4
d2ab3e37 5089 .text
6b37db3c 5090 mfcr 3,128';;
8ada417f 5091 esac
8ada417f
ZW
5092
5093 gcc_GAS_CHECK_FEATURE([mfcr field support],
e0b6d0b3 5094 gcc_cv_as_powerpc_mfcrf,,
8ada417f
ZW
5095 [$conftest_s],,
5096 [AC_DEFINE(HAVE_AS_MFCRF, 1,
5097 [Define if your assembler supports mfcr field.])])
432218ba 5098
7f970b70
AM
5099 case $target in
5100 *-*-aix*) conftest_s=' .csect .text[[PR]]
5101LCF..0:
5102 addis 11,30,_GLOBAL_OFFSET_TABLE_-LCF..0@ha';;
5103 *-*-darwin*)
5104 conftest_s=' .text
5105LCF0:
5106 addis r11,r30,_GLOBAL_OFFSET_TABLE_-LCF0@ha';;
5107 *) conftest_s=' .text
5108.LCF0:
5109 addis 11,30,_GLOBAL_OFFSET_TABLE_-.LCF0@ha';;
5110 esac
5111
695d8830 5112 gcc_GAS_CHECK_FEATURE([rel16 relocs],
e0b6d0b3 5113 gcc_cv_as_powerpc_rel16, -a32,
695d8830
AS
5114 [$conftest_s],,
5115 [AC_DEFINE(HAVE_AS_REL16, 1,
5116 [Define if your assembler supports R_PPC_REL16 relocs.])])
5117
d40c9e33
PB
5118 case $target in
5119 *-*-aix*) conftest_s=' .machine "pwr7"
5120 .csect .text[[PR]]
5121 lxvd2x 1,2,3';;
5122 *) conftest_s=' .machine power7
5123 .text
5124 lxvd2x 1,2,3';;
5125 esac
5126
5127 gcc_GAS_CHECK_FEATURE([vector-scalar support],
e0b6d0b3 5128 gcc_cv_as_powerpc_vsx, -a32,
d40c9e33
PB
5129 [$conftest_s],,
5130 [AC_DEFINE(HAVE_AS_VSX, 1,
5131 [Define if your assembler supports VSX instructions.])])
5132
e51917ae 5133 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
e0b6d0b3 5134 gcc_cv_as_powerpc_gnu_attribute,,
e51917ae
JM
5135 [.gnu_attribute 4,1],,
5136 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5137 [Define if your assembler supports .gnu_attribute.])])
9752c4ad 5138
157bb85d 5139 gcc_GAS_CHECK_FEATURE([prologue entry point marker support],
e0b6d0b3 5140 gcc_cv_as_powerpc_entry_markers,-a64 --fatal-warnings,
157bb85d
UW
5141 [ .reloc .,R_PPC64_ENTRY; nop],,
5142 [AC_DEFINE(HAVE_AS_ENTRY_MARKERS, 1,
5143 [Define if your assembler supports the R_PPC64_ENTRY relocation.])])
5144
3f79c0ad 5145 gcc_GAS_CHECK_FEATURE([plt sequence marker support],
e0b6d0b3 5146 gcc_cv_as_powerpc_pltseq_markers,-a32 --fatal-warnings,
3f79c0ad
AM
5147 [ .reloc .,R_PPC_PLTSEQ; nop],,
5148 [AC_DEFINE(HAVE_AS_PLTSEQ, 1,
5149 [Define if your assembler supports R_PPC*_PLTSEQ relocations.])])
5150
636cf8b1
RS
5151 case $target in
5152 *-*-aix*)
a52f938b 5153 gcc_GAS_CHECK_FEATURE([AIX .ref support],
e0b6d0b3 5154 gcc_cv_as_aix_ref,,
636cf8b1
RS
5155 [ .csect stuff[[rw]]
5156 stuff:
5157 .long 1
5158 .extern sym
5159 .ref sym
5160 ],,
5161 [AC_DEFINE(HAVE_AS_REF, 1,
5162 [Define if your assembler supports .ref])])
b8cd1630
ML
5163
5164 gcc_GAS_CHECK_FEATURE([AIX DWARF location lists section support],
5165 gcc_cv_as_aix_dwloc,,
5166 [ .dwsect 0xA0000
5167 Lframe..0:
5168 .vbyte 4,Lframe..0
5169 ],,
5170 [AC_DEFINE(HAVE_XCOFF_DWARF_EXTRAS, 1,
5171 [Define if your assembler supports AIX debug frame section label reference.])])
51fbbb92
DE
5172 ;;
5173 esac
5174 ;;
5175
8ada417f
ZW
5176 mips*-*-*)
5177 gcc_GAS_CHECK_FEATURE([explicit relocation support],
e0b6d0b3 5178 gcc_cv_as_mips_explicit_relocs,,
8ada417f
ZW
5179[ lw $4,%gp_rel(foo)($4)],,
5180 [if test x$target_cpu_default = x
5181 then target_cpu_default=MASK_EXPLICIT_RELOCS
5182 else target_cpu_default="($target_cpu_default)|MASK_EXPLICIT_RELOCS"
5183 fi])
51fbbb92 5184
4551169f 5185 gcc_GAS_CHECK_FEATURE([-mno-shared support],
e0b6d0b3 5186 gcc_cv_as_mips_no_shared,[-mno-shared], [nop],,
4551169f
RS
5187 [AC_DEFINE(HAVE_AS_NO_SHARED, 1,
5188 [Define if the assembler understands -mno-shared.])])
dcb957d9
JM
5189
5190 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
e0b6d0b3 5191 gcc_cv_as_mips_gnu_attribute,,
dcb957d9
JM
5192 [.gnu_attribute 4,1],,
5193 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5194 [Define if your assembler supports .gnu_attribute.])])
a44380d2 5195
050af144 5196 gcc_GAS_CHECK_FEATURE([.module support],
e0b6d0b3 5197 gcc_cv_as_mips_dot_module,[-32],
a871c139
MF
5198 [.module mips2
5199 .module fp=xx],,
050af144
MF
5200 [AC_DEFINE(HAVE_AS_DOT_MODULE, 1,
5201 [Define if your assembler supports .module.])])
5202 if test x$gcc_cv_as_mips_dot_module = xno \
5203 && test x$with_fp_32 != x; then
5204 AC_MSG_ERROR(
5205 [Requesting --with-fp-32= requires assembler support for .module.])
5206 fi
5207
22c4c869 5208 gcc_GAS_CHECK_FEATURE([.micromips support],
e0b6d0b3 5209 gcc_cv_as_micromips_support,[--fatal-warnings],
22c4c869
CM
5210 [.set micromips],,
5211 [AC_DEFINE(HAVE_GAS_MICROMIPS, 1,
5212 [Define if your assembler supports the .set micromips directive])])
5213
a44380d2 5214 gcc_GAS_CHECK_FEATURE([.dtprelword support],
e0b6d0b3 5215 gcc_cv_as_mips_dtprelword,,
a44380d2
JM
5216 [.section .tdata,"awT",@progbits
5217x:
5218 .word 2
5219 .text
5220 .dtprelword x+0x8000],,
5221 [AC_DEFINE(HAVE_AS_DTPRELWORD, 1,
5222 [Define if your assembler supports .dtprelword.])])
b53da244 5223
293b77b0 5224 gcc_GAS_CHECK_FEATURE([DSPR1 mult with four accumulators support],
e0b6d0b3 5225 gcc_cv_as_mips_dspr1_mult,,
293b77b0
CF
5226[ .set mips32r2
5227 .set nodspr2
5228 .set dsp
5229 madd $ac3,$4,$5
5230 maddu $ac3,$4,$5
5231 msub $ac3,$4,$5
5232 msubu $ac3,$4,$5
5233 mult $ac3,$4,$5
5234 multu $ac3,$4,$5],,
5235 [AC_DEFINE(HAVE_AS_DSPR1_MULT, 1,
5236 [Define if your assembler supports DSPR1 mult.])])
5237
b53da244
AN
5238 AC_MSG_CHECKING(assembler and linker for explicit JALR relocation)
5239 gcc_cv_as_ld_jalr_reloc=no
5240 if test $gcc_cv_as_mips_explicit_relocs = yes; then
5241 if test $in_tree_ld = yes ; then
5242 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 20 -o "$gcc_cv_gld_major_version" -gt 2 \
5243 && test $in_tree_ld_is_elf = yes; then
5244 gcc_cv_as_ld_jalr_reloc=yes
5245 fi
5246 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x; then
5247 echo ' .ent x' > conftest.s
1e1f96b5
CM
5248 echo 'x: lw $2,%got_disp(y)($3)' >> conftest.s
5249 echo ' lw $25,%call16(y)($28)' >> conftest.s
b53da244
AN
5250 echo ' .reloc 1f,R_MIPS_JALR,y' >> conftest.s
5251 echo '1: jalr $25' >> conftest.s
5252 echo ' .reloc 1f,R_MIPS_JALR,x' >> conftest.s
5253 echo '1: jalr $25' >> conftest.s
5254 echo ' .end x' >> conftest.s
5255 if $gcc_cv_as -o conftest.o conftest.s >/dev/null 2>&AS_MESSAGE_LOG_FD \
5256 && $gcc_cv_ld -shared -o conftest.so conftest.o >/dev/null 2>&AS_MESSAGE_LOG_FD; then
bc492e47
RO
5257 if $gcc_cv_objdump -d conftest.so | grep jalr >/dev/null 2>&1 \
5258 && $gcc_cv_objdump -d conftest.so | grep "bal.*<x>" >/dev/null 2>&1; then
b53da244
AN
5259 gcc_cv_as_ld_jalr_reloc=yes
5260 fi
5261 fi
5262 rm -f conftest.*
5263 fi
5264 fi
5265 if test $gcc_cv_as_ld_jalr_reloc = yes; then
5266 if test x$target_cpu_default = x; then
5267 target_cpu_default=MASK_RELAX_PIC_CALLS
5268 else
5269 target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
5270 fi
5271 fi
5272 AC_MSG_RESULT($gcc_cv_as_ld_jalr_reloc)
49576e25
RS
5273
5274 AC_CACHE_CHECK([linker for .eh_frame personality relaxation],
5275 [gcc_cv_ld_mips_personality_relaxation],
5276 [gcc_cv_ld_mips_personality_relaxation=no
5277 if test $in_tree_ld = yes ; then
5278 if test "$gcc_cv_gld_major_version" -eq 2 \
5279 -a "$gcc_cv_gld_minor_version" -ge 21 \
5280 -o "$gcc_cv_gld_major_version" -gt 2; then
5281 gcc_cv_ld_mips_personality_relaxation=yes
5282 fi
5283 elif test x$gcc_cv_as != x \
5284 -a x$gcc_cv_ld != x \
5285 -a x$gcc_cv_readelf != x ; then
5286 cat > conftest.s <<EOF
5287 .cfi_startproc
5288 .cfi_personality 0x80,indirect_ptr
5289 .ent test
5290test:
5291 nop
5292 .end test
5293 .cfi_endproc
5294
5295 .section .data,"aw",@progbits
5296indirect_ptr:
5297 .dc.a personality
5298EOF
5299 if $gcc_cv_as -KPIC -o conftest.o conftest.s > /dev/null 2>&1 \
5300 && $gcc_cv_ld -o conftest conftest.o -shared > /dev/null 2>&1; then
5301 if $gcc_cv_readelf -d conftest 2>&1 \
5302 | grep TEXTREL > /dev/null 2>&1; then
5303 :
5304 elif $gcc_cv_readelf --relocs conftest 2>&1 \
5305 | grep 'R_MIPS_REL32 *$' > /dev/null 2>&1; then
5306 :
5307 else
5308 gcc_cv_ld_mips_personality_relaxation=yes
5309 fi
5310 fi
5311 fi
5312 rm -f conftest.s conftest.o conftest])
5313 if test x$gcc_cv_ld_mips_personality_relaxation = xyes; then
5314 AC_DEFINE(HAVE_LD_PERSONALITY_RELAXATION, 1,
5315 [Define if your linker can relax absolute .eh_frame personality
5316pointers into PC-relative form.])
5317 fi
ff3f3951
MR
5318
5319 gcc_GAS_CHECK_FEATURE([-mnan= support],
e0b6d0b3 5320 gcc_cv_as_mips_nan,
ff3f3951
MR
5321 [-mnan=2008],,,
5322 [AC_DEFINE(HAVE_AS_NAN, 1,
5323 [Define if the assembler understands -mnan=.])])
5324 if test x$gcc_cv_as_mips_nan = xno \
5325 && test x$with_nan != x; then
5326 AC_MSG_ERROR(
5327 [Requesting --with-nan= requires assembler support for -mnan=])
5328 fi
dbad5e72 5329 ;;
8682b1a5
JL
5330 msp430-*-*)
5331 # Earlier GAS versions generically support .gnu_attribute, but the
5332 # msp430 assembler will not do anything with it.
5333 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
e0b6d0b3 5334 gcc_cv_as_msp430_gnu_attribute,,
8682b1a5
JL
5335 [.gnu_attribute 4,1],,
5336 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5337 [Define if your assembler supports .gnu_attribute.])])
5338 gcc_GAS_CHECK_FEATURE([.mspabi_attribute support],
e0b6d0b3 5339 gcc_cv_as_msp430_mspabi_attribute,,
b75863a8 5340 [.mspabi_attribute 4,2],,
8682b1a5
JL
5341 [AC_DEFINE(HAVE_AS_MSPABI_ATTRIBUTE, 1,
5342 [Define if your assembler supports .mspabi_attribute.])])
02afb6a9
JL
5343 if test x$enable_newlib_nano_formatted_io = xyes; then
5344 AC_DEFINE(HAVE_NEWLIB_NANO_FORMATTED_IO, 1, [Define if GCC has been
5345configured with --enable-newlib-nano-formatted-io.])
5346 fi
8682b1a5 5347 ;;
2d33dcfe
SL
5348 nios2-*-*)
5349 # Versions 2.33 and earlier lacked support for the %gotoff relocation
5350 # syntax that is documented in the ABI specification.
5351 gcc_GAS_CHECK_FEATURE([support for %gotoff relocations in constant data],
e0b6d0b3 5352 gcc_cv_as_nios2_gotoff_relocation,,
2d33dcfe
SL
5353[ .extern foo
5354 .data
5355 .long %gotoff(foo)],,
5356 [AC_DEFINE(HAVE_AS_NIOS2_GOTOFF_RELOCATION, 1,
5357 [Define if your assembler supports %gotoff relocation syntax.])])
5358 ;;
8e966210
KC
5359 riscv*-*-*)
5360 gcc_GAS_CHECK_FEATURE([.attribute support],
e0b6d0b3 5361 gcc_cv_as_riscv_attribute,,
8e966210
KC
5362 [.attribute stack_align,4],,
5363 [AC_DEFINE(HAVE_AS_RISCV_ATTRIBUTE, 1,
5364 [Define if your assembler supports .attribute.])])
4b815282 5365 gcc_GAS_CHECK_FEATURE([-misa-spec= support],
e0b6d0b3 5366 gcc_cv_as_riscv_isa_spec,
4b815282
KC
5367 [-misa-spec=2.2],,,
5368 [AC_DEFINE(HAVE_AS_MISA_SPEC, 1,
5369 [Define if the assembler understands -misa-spec=.])])
5370 gcc_GAS_CHECK_FEATURE([-march=rv32i_zifencei support],
e0b6d0b3 5371 gcc_cv_as_riscv_march_zifencei,
affdeda1 5372 [-march=rv32i_zifencei2p0],,,
4b815282
KC
5373 [AC_DEFINE(HAVE_AS_MARCH_ZIFENCEI, 1,
5374 [Define if the assembler understands -march=rv*_zifencei.])])
8e966210 5375 ;;
66434729 5376 loongarch*-*-*)
b44786f6 5377 gcc_GAS_CHECK_FEATURE([.dtprelword support],
5378 gcc_cv_as_loongarch_dtprelword, [2,18,0],,
5379 [.section .tdata,"awT",@progbits
5380x:
5381 .word 2
5382 .text
5383 .dtprelword x+0x8000],,
5384 [AC_DEFINE(HAVE_AS_DTPRELWORD, 1,
5385 [Define if your assembler supports .dtprelword.])])
66434729
XR
5386 gcc_GAS_CHECK_FEATURE([explicit relocation support],
5387 gcc_cv_as_loongarch_explicit_relocs,,
5388 [a:pcalau12i $t0,%pc_hi20(a)],,
5389 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
5390 [Define if your assembler supports explicit relocation.])])
201e8d9f
LC
5391 gcc_GAS_CHECK_FEATURE([eh_frame pcrel encoding support],
5392 gcc_cv_as_loongarch_eh_frame_pcrel_encoding_support,,
5393 [.cfi_startproc
5394 .cfi_personality 0x9b,a
5395 .cfi_lsda 0x1b,b
5396 .cfi_endproc],,
5397 [AC_DEFINE(HAVE_AS_EH_FRAME_PCREL_ENCODING_SUPPORT, 1,
5398 [Define if your assembler supports eh_frame pcrel encoding.])])
9bab65a7
LC
5399 gcc_GAS_CHECK_FEATURE([-mrelax option], gcc_cv_as_loongarch_relax,
5400 [-mrelax], [.text],,
5401 [AC_DEFINE(HAVE_AS_MRELAX_OPTION, 1,
5402 [Define if your assembler supports -mrelax option.])])
b44786f6 5403 ;;
45901378
AK
5404 s390*-*-*)
5405 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
e0b6d0b3 5406 gcc_cv_as_s390_gnu_attribute,,
45901378
AK
5407 [.gnu_attribute 8,1],,
5408 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5409 [Define if your assembler supports .gnu_attribute.])])
ec47b086 5410 gcc_GAS_CHECK_FEATURE([.machine and .machinemode support],
e0b6d0b3 5411 gcc_cv_as_s390_machine_machinemode,,
ec47b086
DV
5412 [ .machinemode push
5413 .machinemode pop
5414 .machine push
5415 .machine pop],,
5416 [AC_DEFINE(HAVE_AS_MACHINE_MACHINEMODE, 1,
5417 [Define if your assembler supports .machine and .machinemode.])])
5418 gcc_GAS_CHECK_FEATURE([architecture modifiers support],
e0b6d0b3 5419 gcc_cv_as_s390_architecture_modifiers,,
ec47b086
DV
5420 [ .machine z13+vx ],,
5421 [AC_DEFINE(HAVE_AS_ARCHITECTURE_MODIFIERS, 1,
5422 [Define if your assembler supports architecture modifiers.])])
b8923037 5423 gcc_GAS_CHECK_FEATURE([vector load/store alignment hints],
e0b6d0b3 5424 gcc_cv_as_s390_vector_loadstore_alignment_hints,,
b8923037
AK
5425 [ vl %v24,0(%r15),3 ],,
5426 [AC_DEFINE(HAVE_AS_VECTOR_LOADSTORE_ALIGNMENT_HINTS, 1,
5427 [Define if your assembler supports vl/vst/vlm/vstm with an optional alignment hint argument.])])
929fd91b 5428 gcc_GAS_CHECK_FEATURE([vector load/store alignment hints on z13],
e0b6d0b3 5429 gcc_cv_as_s390_vector_loadstore_alignment_hints_on_z13, [-mzarch -march=z13],
929fd91b
SSF
5430 [ vl %v24,0(%r15),3 ],,
5431 [AC_DEFINE(HAVE_AS_VECTOR_LOADSTORE_ALIGNMENT_HINTS_ON_Z13, 1,
5432 [Define if your assembler supports vl/vst/vlm/vstm with an optional alignment hint argument on z13.])])
b8923037 5433
45901378 5434 ;;
dbad5e72
SE
5435esac
5436
b44786f6 5437# Mips, LoongArch and HP-UX need the GNU assembler.
dbad5e72 5438# Linux on IA64 might be able to use the Intel assembler.
8ada417f 5439
dbad5e72 5440case "$target" in
b44786f6 5441 mips*-*-* | loongarch*-*-* | *-*-hpux* )
82563d35
RS
5442 if test x$gas_flag = xyes \
5443 || test x"$host" != x"$build" \
5444 || test ! -x "$gcc_cv_as" \
5445 || "$gcc_cv_as" -v < /dev/null 2>&1 | grep GNU > /dev/null; then
5446 :
5447 else
5448 echo "*** This configuration requires the GNU assembler" >&2
5449 exit 1
5450 fi
8ada417f
ZW
5451 ;;
5452esac
dbad5e72 5453
8086230e
AS
5454# AMD GCN needs the LLVM assembler and linker.
5455# Test that LLVM is at least 13.0.1.
cfa1f822
MV
5456case "$target" in
5457 amdgcn-* | gcn-*)
8086230e
AS
5458 AC_MSG_CHECKING(llvm assembler version)
5459 gcc_cv_as_version="unknown"
cfa1f822 5460 if test x$gcc_cv_as != x; then
8086230e
AS
5461 gcc_cv_as_version=`$gcc_cv_as --version 2>&1 | sed -ne '/version/s/.* \([[0-9]]\)/\1/p' || echo error`
5462 case "$gcc_cv_as_version" in
5463 13.0.[[1-9]]*) ;; # 13.0.1+
5464 13.[[1-9]]*) ;; # 13.1+
5465 1[[4-9]]*) ;; # 14..19
5466 [[2-9]][[0-9]]*) ;; # 20..99
5467 [[1-9]][[0-9]][[0-9]]*) ;; # 100+
5468 error) AC_MSG_ERROR([cannot determine LLVM version]) ;;
5469 *) AC_MSG_ERROR([LLVM 13.0.1 or later is required (found LLVM $gcc_cv_as_version)]) ;;
5470 esac
6ca03ca3 5471 fi
8086230e 5472 AC_MSG_RESULT([$gcc_cv_as_version, ok])
1af16666
AS
5473 ;;
5474esac
5475
36bd6eaf
AS
5476case "$target" in
5477 arm*)
5478 gcc_GAS_CHECK_FEATURE([assembler for arm accepts context-specific architecture extensions],
5479 gcc_cv_as_arm_option_extensions,
5480 [-march=armv8.1-m.main+mve],
5481 [.text
5482 .thumb
5483 .syntax unified
5484 vmov.f32 s0, s1],,
5485 [AC_DEFINE(HAVE_GAS_ARM_EXTENDED_ARCH, 1,
5486 [Define if your Arm assembler permits context-specific feature extensions.])])
5487esac
5488
9d147085
RH
5489# ??? Not all targets support dwarf2 debug_line, even within a version
5490# of gas. Moreover, we need to emit a valid instruction to trigger any
5491# info to the output file. So, as supported targets are added to gas 2.11,
5492# add some instruction here to (also) show we expect this might work.
5493# ??? Once 2.11 is released, probably need to add first known working
5494# version to the per-target configury.
7fa2619a 5495case "$cpu_type" in
b44786f6 5496 aarch64 | alpha | arc | arm | avr | bfin | cris | csky | i386 | loongarch | m32c \
5497 | m68k | microblaze | mips | nds32 | nios2 | pa | riscv | rs6000 | score | sparc \
fc259b52 5498 | visium | xstormy16 | xtensa)
9d147085
RH
5499 insn="nop"
5500 ;;
7fa2619a 5501 ia64 | s390)
9d147085
RH
5502 insn="nop 0"
5503 ;;
7fa2619a 5504 mmix)
2853bc5a
HPN
5505 insn="swym 0"
5506 ;;
8ada417f
ZW
5507esac
5508if test x"$insn" != x; then
5509 conftest_s="\
5510 .file 1 \"conftest.s\"
5511 .loc 1 3 0
5512 $insn"
5513 gcc_GAS_CHECK_FEATURE([dwarf2 debug_line support],
1918f4b7
SB
5514 gcc_cv_as_dwarf2_debug_line,,
5515 [$conftest_s],
080a5bb0
EB
5516 [if test x$gcc_cv_objdump != x \
5517 && $gcc_cv_objdump -h conftest.o 2> /dev/null \
5518 | grep debug_line > /dev/null 2>&1; then
8ada417f 5519 gcc_cv_as_dwarf2_debug_line=yes
f1b2727f
IS
5520 elif test x$gcc_cv_otool != x \
5521 && $gcc_cv_otool -l conftest.o 2> /dev/null \
5522 | grep debug_line > /dev/null 2>&1; then
5523 gcc_cv_as_dwarf2_debug_line=yes
8ada417f
ZW
5524 fi])
5525
5526# The .debug_line file table must be in the exact order that
5527# we specified the files, since these indices are also used
5528# by DW_AT_decl_file. Approximate this test by testing if
5529# the assembler bitches if the same index is assigned twice.
5530 gcc_GAS_CHECK_FEATURE([buggy dwarf2 .file directive],
e0b6d0b3 5531 gcc_cv_as_dwarf2_file_buggy,,
8ada417f
ZW
5532[ .file 1 "foo.s"
5533 .file 1 "bar.s"])
5534
5535 if test $gcc_cv_as_dwarf2_debug_line = yes \
5536 && test $gcc_cv_as_dwarf2_file_buggy = no; then
bd2b9f1e 5537 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
8ada417f 5538 [Define if your assembler supports dwarf2 .file/.loc directives,
eaec9b3d 5539 and preserves file table indices exactly as given.])
bd2b9f1e
AO
5540
5541 if test $gcc_cv_as_leb128 = yes; then
5542 conftest_s="\
5543 .file 1 \"conftest.s\"
5544 .loc 1 3 0 view .LVU1
5545 $insn
5546 .data
5547 .uleb128 .LVU1
5548 .uleb128 .LVU1
5549"
5550 gcc_GAS_CHECK_FEATURE([dwarf2 debug_view support],
1918f4b7
SB
5551 gcc_cv_as_dwarf2_debug_view,,
5552 [$conftest_s],,
bd2b9f1e
AO
5553 [AC_DEFINE(HAVE_AS_DWARF2_DEBUG_VIEW, 1,
5554 [Define if your assembler supports views in dwarf2 .loc directives.])])
5555 fi
8ada417f
ZW
5556 fi
5557
5558 gcc_GAS_CHECK_FEATURE([--gdwarf2 option],
5559 gcc_cv_as_gdwarf2_flag,
e0b6d0b3 5560 [--gdwarf2], [$insn],,
8ada417f
ZW
5561 [AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
5562[Define if your assembler supports the --gdwarf2 option.])])
5563
6923255e
JJ
5564 gcc_GAS_CHECK_FEATURE([--gdwarf-5 option],
5565 gcc_cv_as_gdwarf_5_flag,
e0b6d0b3 5566 [--gdwarf-5], [$insn],
aca12136
EB
5567 [if test x$gcc_cv_objdump != x \
5568 && $gcc_cv_objdump -Wi conftest.o 2>&1 \
fe5cb7f9
JJ
5569 | grep DW_TAG_compile_unit > /dev/null 2>&1; then
5570 gcc_cv_as_gdwarf_5_flag=yes;
5571 fi],[AC_DEFINE(HAVE_AS_GDWARF_5_DEBUG_FLAG, 1,
6923255e
JJ
5572[Define if your assembler supports the --gdwarf-5 option.])])
5573
aca12136
EB
5574 case $target_os in
5575 win32 | pe | cygwin* | mingw32*)
5576 section_flags=\"dr\"
5577 function_type=".def foo; .scl 2; .type 32; .endef"
5578 function_size="";;
5579 *)
5580 section_flags=\"\",%progbits
5581 function_type=".type foo, %function"
5582 function_size=".size foo, .-foo";;
5583 esac
6923255e
JJ
5584 dwarf4_debug_info_size=0x46
5585 dwarf4_high_pc_form=7
5586 dwarf4_debug_aranges_size=0x2c
5587 dwarf4_line_sz=9
5588 for dwarf4_addr_size in 8 4; do
5589 conftest_s="\
5590 .file \"a.c\"
5591 .text
5592.Ltext0:
5593 .p2align 4
5594 .globl foo
aca12136 5595 $function_type
6923255e
JJ
5596foo:
5597.LFB0:
5598.LM1:
5599 $insn
5600.LM2:
5601.LFE0:
aca12136 5602 $function_size
6923255e 5603.Letext0:
aca12136 5604 .section .debug_info,$section_flags
6923255e
JJ
5605.Ldebug_info0:
5606 .4byte $dwarf4_debug_info_size
5607 .2byte 0x4
5608 .4byte .Ldebug_abbrev0
5609 .byte 0x$dwarf4_addr_size
5610 .byte 0x1
5611 .ascii \"GNU C17\\0\"
5612 .byte 0xc
5613 .ascii \"a.c\\0\"
5614 .ascii \"/\\0\"
5615 .${dwarf4_addr_size}byte .Ltext0
5616 .${dwarf4_addr_size}byte .Letext0-.Ltext0
5617 .4byte .Ldebug_line0
5618 .byte 0x2
5619 .ascii \"foo\\0\"
5620 .byte 0x1
5621 .byte 0x2
5622 .byte 0x1
5623 .${dwarf4_addr_size}byte .LFB0
5624 .${dwarf4_addr_size}byte .LFE0-.LFB0
5625 .byte 0x1
5626 .byte 0x9c
5627 .byte 0
aca12136 5628 .section .debug_abbrev,$section_flags
6923255e
JJ
5629.Ldebug_abbrev0:
5630 .byte 0x1
5631 .byte 0x11
5632 .byte 0x1
5633 .byte 0x25
5634 .byte 0x8
5635 .byte 0x13
5636 .byte 0xb
5637 .byte 0x3
5638 .byte 0x8
5639 .byte 0x1b
5640 .byte 0x8
5641 .byte 0x11
5642 .byte 0x1
5643 .byte 0x12
5644 .byte 0x$dwarf4_high_pc_form
5645 .byte 0x10
5646 .byte 0x17
5647 .byte 0
5648 .byte 0
5649 .byte 0x2
5650 .byte 0x2e
5651 .byte 0
5652 .byte 0x3f
5653 .byte 0x19
5654 .byte 0x3
5655 .byte 0x8
5656 .byte 0x3a
5657 .byte 0xb
5658 .byte 0x3b
5659 .byte 0xb
5660 .byte 0x39
5661 .byte 0xb
5662 .byte 0x11
5663 .byte 0x1
5664 .byte 0x12
5665 .byte 0x$dwarf4_high_pc_form
5666 .byte 0x40
5667 .byte 0x18
5668 .byte 0
5669 .byte 0
5670 .byte 0
aca12136 5671 .section .debug_aranges,$section_flags
6923255e
JJ
5672 .4byte $dwarf4_debug_aranges_size
5673 .2byte 0x2
5674 .4byte .Ldebug_info0
5675 .byte 0x8
5676 .byte 0
5677 .2byte 0
5678 .2byte 0
5679 .${dwarf4_addr_size}byte .Ltext0
5680 .${dwarf4_addr_size}byte .Letext0-.Ltext0
5681 .${dwarf4_addr_size}byte 0
5682 .${dwarf4_addr_size}byte 0
aca12136 5683 .section .debug_line,$section_flags
6923255e
JJ
5684.Ldebug_line0:
5685 .4byte .LELT0-.LSLT0
5686.LSLT0:
5687 .2byte 0x4
5688 .4byte .LELTP0-.LASLTP0
5689.LASLTP0:
5690 .byte 0x1
5691 .byte 0x1
5692 .byte 0x1
5693 .byte 0xf6
5694 .byte 0xf2
5695 .byte 0xd
5696 .byte 0
5697 .byte 0x1
5698 .byte 0x1
5699 .byte 0x1
5700 .byte 0x1
5701 .byte 0
5702 .byte 0
5703 .byte 0
5704 .byte 0x1
5705 .byte 0
5706 .byte 0
5707 .byte 0x1
5708 .byte 0
5709 .ascii \"a.c\\0\"
5710 .byte 0
5711 .byte 0
5712 .byte 0
5713 .byte 0
5714.LELTP0:
5715 .byte 0
5716 .byte 0x$dwarf4_line_sz
5717 .byte 0x2
5718 .${dwarf4_addr_size}byte .LM1
5719 .byte 0x18
5720 .byte 0x5
5721 .byte 0x1
5722 .byte 0
5723 .byte 0x$dwarf4_line_sz
5724 .byte 0x2
5725 .${dwarf4_addr_size}byte .LM2
5726 .byte 0x1
5727 .byte 0x5
5728 .byte 0x1
5729 .byte 0
5730 .byte 0x$dwarf4_line_sz
5731 .byte 0x2
5732 .${dwarf4_addr_size}byte .Letext0
5733 .byte 0
5734 .byte 0x1
5735 .byte 0x1
5736.LELT0:
aca12136 5737 .section .debug_str,$section_flags
6923255e
JJ
5738 .ident \"GCC\"
5739"
5740 dwarf4_success=no
5741 if test $dwarf4_addr_size = 4; then
5742 gcc_GAS_CHECK_FEATURE([assembly of compiler generated 32-bit .debug_line],
1918f4b7
SB
5743 gcc_cv_as_debug_line_32_flag,,
5744 [$conftest_s],,
1aeb7d7d 5745 [dwarf4_success=yes])
6923255e
JJ
5746 else
5747 gcc_GAS_CHECK_FEATURE([assembly of compiler generated 64-bit .debug_line],
1918f4b7
SB
5748 gcc_cv_as_debug_line_64_flag,,
5749 [$conftest_s],,
6923255e
JJ
5750 [dwarf4_success=yes])
5751 fi
5752 if test $dwarf4_success = yes; then
1aeb7d7d 5753 dwarf4_success=no
6923255e
JJ
5754 gcc_GAS_CHECK_FEATURE([--gdwarf-4 not refusing compiler generated .debug_line],
5755 gcc_cv_as_dwarf_4_debug_line_flag,
e0b6d0b3 5756 [--gdwarf-4], [$conftest_s],,
1aeb7d7d 5757 [dwarf4_success=yes])
6923255e
JJ
5758 break
5759 fi
5760 dwarf4_debug_info_size=0x36
5761 dwarf4_high_pc_form=6
5762 dwarf4_debug_aranges_size=0x1c
5763 dwarf4_line_sz=5
5764 done
5765
1aeb7d7d
L
5766 if test $dwarf4_success = yes; then
5767 conftest_s="\
5768 .file \"foo.c\"
5769 .text
5770bar:
5771#APP
5772# 82 \"xxx.h\" 1
5773 $insn
5774# 0 \"\" 2
5775#NO_APP
5776 $insn
5777foo:
5778 .file 1 \"foo.c\"
5779 $insn
5780 .file 2 \"foo.h\"
5781 ret
5782"
5783 dwarf4_success=no
5784 gcc_GAS_CHECK_FEATURE([--gdwarf-4 with the APP marker],
e0b6d0b3 5785 gcc_cv_as_dwarf_4_app_flag,
1aeb7d7d
L
5786 [--gdwarf-4], [$conftest_s],, [dwarf4_success=yes])
5787 fi
5788
5789 if test $dwarf4_success = yes; then
5790 conftest_s="\
5791 .text
5792 .globl foo
aca12136 5793 $function_type
1aeb7d7d
L
5794foo:
5795 $insn
aca12136 5796 $function_size
1aeb7d7d
L
5797 .file 1 \"foo.c\"
5798"
5799 gcc_GAS_CHECK_FEATURE([working --gdwarf-4/--gdwarf-5 for all sources],
e0b6d0b3 5800 gcc_cv_as_working_gdwarf_n_flag,
1aeb7d7d
L
5801 [--gdwarf-4],
5802 [$conftest_s],
5803 [changequote(,)dnl
aca12136
EB
5804 if test x$gcc_cv_objdump != x \
5805 && $gcc_cv_objdump -W conftest.o 2>&1 \
1aeb7d7d
L
5806 | grep conftest.s > /dev/null 2>&1; then
5807 gcc_cv_as_working_gdwarf_n_flag=no
5808 else
5809 gcc_cv_as_working_gdwarf_n_flag=yes
5810 fi
5811 changequote([,])dnl])
5812 if test $gcc_cv_as_working_gdwarf_n_flag = yes; then
5813 AC_DEFINE(HAVE_AS_WORKING_DWARF_N_FLAG, 1,
5814[Define if your assembler supports --gdwarf-4/--gdwarf-5 even with
5815 compiler generated .debug_line.])
5816 fi
5817 fi
5818
c8aea42c
PB
5819 gcc_GAS_CHECK_FEATURE([--debug-prefix-map option],
5820 gcc_cv_as_debug_prefix_map_flag,
e0b6d0b3 5821 [--debug-prefix-map /a=/b], [$insn],,
c8aea42c
PB
5822 [AC_DEFINE(HAVE_AS_DEBUG_PREFIX_MAP, 1,
5823[Define if your assembler supports the --debug-prefix-map option.])])
9d147085 5824fi
5f0e9ea2 5825
29d7cbd1 5826gcc_GAS_CHECK_FEATURE([compressed debug sections],
e0b6d0b3 5827 gcc_cv_as_compress_debug,,,
29d7cbd1
RO
5828 [# gas compiled without zlib cannot compress debug sections and warns
5829 # about it, but still exits successfully. So check for this, too.
5830 if $gcc_cv_as --compress-debug-sections -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null
5831 then
5832 gcc_cv_as_compress_debug=0
26607a63 5833 elif $gcc_cv_as --compress-debug-sections=zlib -o conftest.o conftest.s > /dev/null 2>&1
29d7cbd1
RO
5834 then
5835 gcc_cv_as_compress_debug=1
5836 gcc_cv_as_compress_debug_option="--compress-debug-sections"
5837 gcc_cv_as_no_compress_debug_option="--nocompress-debug-sections"
b7723e13
ML
5838 # Since binutils 2.40, gas supports --compress-debug-sections=zstd.
5839 if $gcc_cv_as --compress-debug-sections=zstd -o conftest.o conftest.s > /dev/null 2>&1
5840 then
5841 gcc_cv_as_compress_debug=2
5842 fi
29d7cbd1
RO
5843 else
5844 gcc_cv_as_compress_debug=0
29d7cbd1
RO
5845 fi])
5846AC_DEFINE_UNQUOTED(HAVE_AS_COMPRESS_DEBUG, $gcc_cv_as_compress_debug,
5847[Define to the level of your assembler's compressed debug section support.])
5848AC_DEFINE_UNQUOTED(AS_COMPRESS_DEBUG_OPTION, "$gcc_cv_as_compress_debug_option",
5849[Define to the assembler option to enable compressed debug sections.])
5850AC_DEFINE_UNQUOTED(AS_NO_COMPRESS_DEBUG_OPTION, "$gcc_cv_as_no_compress_debug_option",
5851[Define to the assembler option to disable compressed debug sections.])
5852
1918f4b7 5853gcc_GAS_CHECK_FEATURE([.lcomm with alignment], gcc_cv_as_lcomm_with_alignment,,
28e6bb13
NC
5854[.lcomm bar,4,16],,
5855[AC_DEFINE(HAVE_GAS_LCOMM_WITH_ALIGNMENT, 1,
5856 [Define if your assembler supports .lcomm with an alignment field.])])
5857
75a2bcc0
JM
5858if test x$with_sysroot = x && test x$host = x$target \
5859 && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" \
5860 && test "$prefix" != "NONE"; then
5861 AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include",
5862[Define to PREFIX/include if cpp should also search that directory.])
5863fi
5864
75a2bcc0
JM
5865# Determine the version of glibc, if any, used on the target.
5866AC_MSG_CHECKING([for target glibc version])
5867AC_ARG_WITH([glibc-version],
5868 [AS_HELP_STRING([--with-glibc-version=M.N],
5869 [assume GCC used with glibc version M.N or later])], [
5870if [echo "$with_glibc_version" | grep '^[0-9][0-9]*\.[0-9][0-9]*$']; then
5871 glibc_version_major=`echo "$with_glibc_version" | sed -e 's/\..*//'`
5872 glibc_version_minor=`echo "$with_glibc_version" | sed -e 's/.*\.//'`
5873else
5874 AC_MSG_ERROR([option --with-glibc-version requires a version number M.N])
5875fi], [
5876glibc_version_major=0
5877glibc_version_minor=0
5878[if test -f $target_header_dir/features.h \
5879 && glibc_version_major_define=`$EGREP '^[ ]*#[ ]*define[ ]+__GLIBC__[ ]+[0-9]' $target_header_dir/features.h` \
5880 && glibc_version_minor_define=`$EGREP '^[ ]*#[ ]*define[ ]+__GLIBC_MINOR__[ ]+[0-9]' $target_header_dir/features.h`; then
5881 glibc_version_major=`echo "$glibc_version_major_define" | sed -e 's/.*__GLIBC__[ ]*//'`
5882 glibc_version_minor=`echo "$glibc_version_minor_define" | sed -e 's/.*__GLIBC_MINOR__[ ]*//'`
5883fi]])
5884AC_MSG_RESULT([$glibc_version_major.$glibc_version_minor])
2f73a6c7
JM
5885AC_DEFINE_UNQUOTED([TARGET_GLIBC_MAJOR], [$glibc_version_major],
5886[GNU C Library major version number used on the target, or 0.])
5887AC_DEFINE_UNQUOTED([TARGET_GLIBC_MINOR], [$glibc_version_minor],
5888[GNU C Library minor version number used on the target, or 0.])
75a2bcc0 5889
e31bcd1b 5890AC_ARG_ENABLE(gnu-unique-object,
87e6d9dc
TB
5891 [AS_HELP_STRING([--enable-gnu-unique-object],
5892 [enable the use of the @gnu_unique_object ELF extension on glibc systems])],
e31bcd1b
JM
5893 [case $enable_gnu_unique_object in
5894 yes | no) ;;
5895 *) AC_MSG_ERROR(['$enable_gnu_unique_object' is an invalid value for --enable-gnu-unique-object.
5896Valid choices are 'yes' and 'no'.]) ;;
5897 esac],
1918f4b7 5898 [gcc_GAS_CHECK_FEATURE([gnu_unique_object], gcc_cv_as_gnu_unique_object,,
5ab22850
RR
5899 [.type foo, '$target_type_format_char'gnu_unique_object],,
5900# We need to unquote above to to use the definition from config.gcc.
e31bcd1b 5901# Also check for ld.so support, i.e. glibc 2.11 or higher.
75a2bcc0
JM
5902 [GCC_GLIBC_VERSION_GTE_IFELSE([2], [11], [enable_gnu_unique_object=yes], )]
5903 )])
e31bcd1b
JM
5904if test x$enable_gnu_unique_object = xyes; then
5905 AC_DEFINE(HAVE_GAS_GNU_UNIQUE_OBJECT, 1,
5906 [Define if your assembler supports @gnu_unique_object.])
5907fi
5908
03943c05
AO
5909AC_CACHE_CHECK([assembler for tolerance to line number 0],
5910 [gcc_cv_as_line_zero],
5911 [gcc_cv_as_line_zero=no
7cad8a8f 5912 if test "x$gcc_cv_as" != x; then
03943c05
AO
5913 { echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
5914 if AC_TRY_COMMAND([$gcc_cv_as -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD 2>conftest.out]) &&
5915 test "x`cat conftest.out`" = x
5916 then
5917 gcc_cv_as_line_zero=yes
5918 else
5919 echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
5920 cat conftest.s >&AS_MESSAGE_LOG_FD
5921 echo "configure: error output was" >&AS_MESSAGE_LOG_FD
5922 cat conftest.out >&AS_MESSAGE_LOG_FD
5923 fi
5924 rm -f conftest.o conftest.s conftest.out
5925 fi])
5926if test "x$gcc_cv_as_line_zero" = xyes; then
5927 AC_DEFINE([HAVE_AS_LINE_ZERO], 1,
5928[Define if the assembler won't complain about a line such as # 0 "" 2.])
5929fi
5930
25e08379
PP
5931AC_MSG_CHECKING(support for thin archives)
5932thin_archive_support=no
5933echo 'int main (void) { return 0; }' > conftest.c
5934if ($AR --version | sed 1q | grep "GNU ar" \
5935 && $CC $CFLAGS -c conftest.c \
5936 && $AR rcT conftest.a conftest.o \
5937 && $CC $CFLAGS $LDFLAGS -o conftest conftest.a) >/dev/null 2>&1; then
5938 thin_archive_support=yes
5939fi
5940rm -f conftest.c conftest.o conftest.a conftest
5941AC_MSG_RESULT($thin_archive_support)
5942AC_SUBST(thin_archive_support)
5943
275b60d6
JJ
5944AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
5945gcc_cv_ld_eh_frame_hdr=no
34a86c2b 5946if test $in_tree_ld = yes ; then
5408ac6c
HPN
5947 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 12 -o "$gcc_cv_gld_major_version" -gt 2 \
5948 && test $in_tree_ld_is_elf = yes; then
275b60d6
JJ
5949 gcc_cv_ld_eh_frame_hdr=yes
5950 fi
5951elif test x$gcc_cv_ld != x; then
6961669f
RO
5952 if echo "$ld_ver" | grep GNU > /dev/null; then
5953 # Check if linker supports --eh-frame-hdr option
8dc877eb 5954 if $gcc_cv_ld --help 2>&1 | grep eh-frame-hdr > /dev/null; then
6961669f
RO
5955 gcc_cv_ld_eh_frame_hdr=yes
5956 fi
5957 else
5958 case "$target" in
5959 *-*-solaris2*)
e279edb0
RO
5960 # Sun ld has various bugs in .eh_frame_hdr support before version 1.2251.
5961 if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2251; then
6961669f
RO
5962 gcc_cv_ld_eh_frame_hdr=yes
5963 fi
5964 ;;
5965 esac
5966 fi
275b60d6 5967fi
232b67d9 5968GCC_TARGET_TEMPLATE([HAVE_LD_EH_FRAME_HDR])
275b60d6
JJ
5969if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
5970 AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
6961669f 5971[Define if your linker supports .eh_frame_hdr.])
275b60d6
JJ
5972fi
5973AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
5974
5022315a
RO
5975AC_MSG_CHECKING(linker CIEv3 in .eh_frame support)
5976gcc_cv_ld_eh_frame_ciev3=no
5977if test $in_tree_ld = yes ; then
5978 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 \
5979 && test $in_tree_ld_is_elf = yes; then
5980 gcc_cv_ld_eh_frame_ciev3=yes
5981 fi
5982elif test x$gcc_cv_ld != x; then
5983 if echo "$ld_ver" | grep GNU > /dev/null; then
5984 gcc_cv_ld_eh_frame_ciev3=yes
5985 if test 0"$ld_date" -lt 20040513; then
5986 if test -n "$ld_date"; then
5987 # If there was date string, but was earlier than 2004-05-13, fail
5988 gcc_cv_ld_eh_frame_ciev3=no
5989 elif test "$ld_vers_major" -lt 2; then
5990 gcc_cv_ld_eh_frame_ciev3=no
5991 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
5992 gcc_cv_ld_eh_frame_ciev3=no
5993 fi
5994 fi
5995 else
5996 case "$target" in
5997 *-*-solaris2*)
5998 # Sun ld added support for CIE v3 in .eh_frame in Solaris 11.1.
5999 if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2324; then
6000 gcc_cv_ld_eh_frame_ciev3=yes
6001 fi
6002 ;;
6003 esac
6004 fi
6005fi
6006AC_DEFINE_UNQUOTED(HAVE_LD_EH_FRAME_CIEV3,
6007 [`if test x"$gcc_cv_ld_eh_frame_ciev3" = xyes; then echo 1; else echo 0; fi`],
6008 [Define 0/1 if your linker supports CIE v3 in .eh_frame.])
6009AC_MSG_RESULT($gcc_cv_ld_eh_frame_ciev3)
6010
24a4dd31
JJ
6011AC_MSG_CHECKING(linker position independent executable support)
6012gcc_cv_ld_pie=no
6013if test $in_tree_ld = yes ; then
df2a1cc4
RO
6014 case "$target" in
6015 # Full PIE support on Solaris was only introduced in gld 2.26.
6016 *-*-solaris2*) gcc_gld_pie_min_version=26 ;;
6017 *) gcc_gld_pie_min_version=15 ;;
6018 esac
6019 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge "$gcc_gld_pie_min_version" -o "$gcc_cv_gld_major_version" -gt 2 \
5408ac6c 6020 && test $in_tree_ld_is_elf = yes; then
24a4dd31
JJ
6021 gcc_cv_ld_pie=yes
6022 fi
6023elif test x$gcc_cv_ld != x; then
df2a1cc4 6024 # Check if linker supports -pie option
8dc877eb 6025 if $gcc_cv_ld --help 2>&1 | grep -- -pie > /dev/null; then
df2a1cc4
RO
6026 gcc_cv_ld_pie=yes
6027 case "$target" in
6028 *-*-solaris2*)
6029 if echo "$ld_ver" | grep GNU > /dev/null \
6030 && test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 26; then
6031 gcc_cv_ld_pie=no
6032 fi
6033 ;;
6034 esac
6035 else
6036 case "$target" in
6037 *-*-solaris2.1[[1-9]]*)
f021f1d3 6038 # Solaris 11.3 added PIE support.
df2a1cc4
RO
6039 if $gcc_cv_ld -z help 2>&1 | grep -- type.*pie > /dev/null; then
6040 gcc_cv_ld_pie=yes
24a4dd31 6041 fi
df2a1cc4
RO
6042 ;;
6043 esac
6044 fi
24a4dd31
JJ
6045fi
6046if test x"$gcc_cv_ld_pie" = xyes; then
6047 AC_DEFINE(HAVE_LD_PIE, 1,
df2a1cc4 6048[Define if your linker supports PIE option.])
24a4dd31
JJ
6049fi
6050AC_MSG_RESULT($gcc_cv_ld_pie)
77ad54d9
ST
6051
6052AC_MSG_CHECKING(linker PIE support with copy reloc)
6053gcc_cv_ld_pie_copyreloc=no
6054if test $gcc_cv_ld_pie = yes ; then
6055 if test $in_tree_ld = yes ; then
6056 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 25 -o "$gcc_cv_gld_major_version" -gt 2; then
6057 gcc_cv_ld_pie_copyreloc=yes
6058 fi
6059 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6060 # Check if linker supports -pie option with copy reloc
6061 case "$target" in
6062 i?86-*-linux* | x86_64-*-linux*)
6063 cat > conftest1.s <<EOF
6064 .globl a_glob
6065 .data
6066 .type a_glob, @object
6067 .size a_glob, 4
6068a_glob:
6069 .long 2
6070EOF
6071 cat > conftest2.s <<EOF
6072 .text
6073 .globl main
6074 .type main, @function
6075main:
6076 movl %eax, a_glob(%rip)
6077 .size main, .-main
7b3592ee
L
6078 .globl ptr
6079 .section .data.rel,"aw",@progbits
6080 .type ptr, @object
6081ptr:
6082 .quad a_glob
77ad54d9
ST
6083EOF
6084 if $gcc_cv_as --64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
6085 && $gcc_cv_ld -shared -melf_x86_64 -o conftest1.so conftest1.o > /dev/null 2>&1 \
6086 && $gcc_cv_as --64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
6087 && $gcc_cv_ld -pie -melf_x86_64 -o conftest conftest2.o conftest1.so > /dev/null 2>&1; then
6088 gcc_cv_ld_pie_copyreloc=yes
6089 fi
6090 rm -f conftest conftest1.so conftest1.o conftest2.o conftest1.s conftest2.s
6091 ;;
6092 esac
6093 fi
77ad54d9 6094fi
1be71446
L
6095AC_DEFINE_UNQUOTED(HAVE_LD_PIE_COPYRELOC,
6096 [`if test x"$gcc_cv_ld_pie_copyreloc" = xyes; then echo 1; else echo 0; fi`],
6097 [Define 0/1 if your linker supports -pie option with copy reloc.])
77ad54d9 6098AC_MSG_RESULT($gcc_cv_ld_pie_copyreloc)
24a4dd31 6099
22ba88ef
EB
6100AC_MSG_CHECKING(linker EH-compatible garbage collection of sections)
6101gcc_cv_ld_eh_gc_sections=no
6102if test $in_tree_ld = yes ; then
6103 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 17 -o "$gcc_cv_gld_major_version" -gt 2 \
6104 && test $in_tree_ld_is_elf = yes; then
6105 gcc_cv_ld_eh_gc_sections=yes
6106 fi
6107elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
6108 cat > conftest.s <<EOF
6109 .section .text
6110.globl _start
6111 .type _start, @function
6112_start:
6113 .long foo
6114 .size _start, .-_start
6115 .section .text.foo,"ax",@progbits
6116 .type foo, @function
6117foo:
6118 .long 0
6119 .size foo, .-foo
6120 .section .gcc_except_table.foo,"a",@progbits
6121.L0:
6122 .long 0
6123 .section .eh_frame,"a",@progbits
6124 .long .L0
6125EOF
6126 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6127 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
6128 | grep "gc-sections option ignored" > /dev/null; then
6129 gcc_cv_ld_eh_gc_sections=no
2e2b183b
RO
6130 elif $gcc_cv_objdump -h conftest 2> /dev/null \
6131 | grep gcc_except_table > /dev/null; then
22ba88ef 6132 gcc_cv_ld_eh_gc_sections=yes
e9d207d9
EB
6133 # If no COMDAT groups, the compiler will emit .gnu.linkonce.t. sections.
6134 if test x$gcc_cv_as_comdat_group != xyes; then
6135 gcc_cv_ld_eh_gc_sections=no
6136 cat > conftest.s <<EOF
6137 .section .text
6138.globl _start
6139 .type _start, @function
6140_start:
6141 .long foo
6142 .size _start, .-_start
6143 .section .gnu.linkonce.t.foo,"ax",@progbits
6144 .type foo, @function
6145foo:
6146 .long 0
6147 .size foo, .-foo
6148 .section .gcc_except_table.foo,"a",@progbits
6149.L0:
6150 .long 0
6151 .section .eh_frame,"a",@progbits
6152 .long .L0
6153EOF
6154 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6155 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
6156 | grep "gc-sections option ignored" > /dev/null; then
6157 gcc_cv_ld_eh_gc_sections=no
2e2b183b
RO
6158 elif $gcc_cv_objdump -h conftest 2> /dev/null \
6159 | grep gcc_except_table > /dev/null; then
e9d207d9
EB
6160 gcc_cv_ld_eh_gc_sections=yes
6161 fi
6162 fi
6163 fi
22ba88ef
EB
6164 fi
6165 fi
6166 rm -f conftest.s conftest.o conftest
6167fi
e9d207d9
EB
6168case "$target" in
6169 hppa*-*-linux*)
6170 # ??? This apparently exposes a binutils bug with PC-relative relocations.
6171 gcc_cv_ld_eh_gc_sections=no
6172 ;;
6173esac
22ba88ef
EB
6174if test x$gcc_cv_ld_eh_gc_sections = xyes; then
6175 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS, 1,
6176 [Define if your linker supports garbage collection of
6177 sections in presence of EH frames.])
6178fi
6179AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections)
6180
1b500976
JJ
6181AC_MSG_CHECKING(linker EH garbage collection of sections bug)
6182gcc_cv_ld_eh_gc_sections_bug=no
6183if test $in_tree_ld = yes ; then
6184 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -lt 19 -o "$gcc_cv_gld_major_version" -lt 2 \
6185 && test $in_tree_ld_is_elf = yes; then
6186 gcc_cv_ld_eh_gc_sections_bug=yes
6187 fi
6188elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x -a x$gcc_cv_as_comdat_group = xyes; then
6189 gcc_cv_ld_eh_gc_sections_bug=yes
6190 cat > conftest.s <<EOF
6191 .section .text
6192.globl _start
6193 .type _start, @function
6194_start:
6195 .long foo
6196 .size _start, .-_start
6197 .section .text.startup.foo,"ax",@progbits
6198 .type foo, @function
6199foo:
6200 .long 0
6201 .size foo, .-foo
6202 .section .gcc_except_table.foo,"a",@progbits
6203.L0:
6204 .long 0
6205 .section .eh_frame,"a",@progbits
6206 .long .L0
6207EOF
6208 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6209 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
6210 | grep "gc-sections option ignored" > /dev/null; then
6211 :
6212 elif $gcc_cv_objdump -h conftest 2> /dev/null \
6213 | grep gcc_except_table > /dev/null; then
6214 gcc_cv_ld_eh_gc_sections_bug=no
6215 fi
6216 fi
6217 rm -f conftest.s conftest.o conftest
6218fi
6219if test x$gcc_cv_ld_eh_gc_sections_bug = xyes; then
6220 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS_BUG, 1,
6221 [Define if your linker has buggy garbage collection of
6222 sections support when .text.startup.foo like sections are used.])
6223fi
6224AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections_bug)
6225
29d7cbd1 6226AC_MSG_CHECKING(linker for compressed debug sections)
26607a63
ML
6227# GNU ld/gold support --compressed-debug-sections=zlib since binutils 2.26.
6228if $gcc_cv_ld --help 2>&1 | grep -- '--compress-debug-sections.*\<zlib-gabi\>' > /dev/null; then
29d7cbd1 6229 gcc_cv_ld_compress_debug=1
29d7cbd1 6230 gcc_cv_ld_compress_debug_option="--compress-debug-sections"
b7723e13
ML
6231 # Detect zstd debug section compression support
6232 if $gcc_cv_ld --help 2>&1 | grep -- '--compress-debug-sections.*\<zstd\>' > /dev/null; then
6233 gcc_cv_ld_compress_debug=2
6234 fi
29d7cbd1
RO
6235else
6236changequote(,)dnl
6237 case "${target}" in
6238 *-*-solaris2*)
6239 # Introduced in Solaris 11.2.
6240 if $gcc_cv_ld --help 2>&1 | grep -- '-z compress-sections' > /dev/null; then
26607a63 6241 gcc_cv_ld_compress_debug=1
29d7cbd1
RO
6242 gcc_cv_ld_compress_debug_option="-z compress-sections"
6243 else
6244 gcc_cv_ld_compress_debug=0
6245 fi
6246 ;;
6247 *)
6248 # Assume linkers other than GNU ld don't support compessed debug
6249 # sections.
6250 gcc_cv_ld_compress_debug=0
6251 ;;
6252 esac
6253changequote([,])dnl
6254fi
6255AC_DEFINE_UNQUOTED(HAVE_LD_COMPRESS_DEBUG, $gcc_cv_ld_compress_debug,
6256[Define to the level of your linker's compressed debug section support.])
6257AC_DEFINE_UNQUOTED(LD_COMPRESS_DEBUG_OPTION, "$gcc_cv_ld_compress_debug_option",
6258[Define to the linker option to enable compressed debug sections.])
6259AC_MSG_RESULT($gcc_cv_ld_compress_debug)
6260
eb89c82f
IS
6261if test x"$ld64_flag" = x"yes"; then
6262
6263 # Set defaults for possibly untestable items.
6264 gcc_cv_ld64_export_dynamic=0
d3cc82dc 6265 gcc_cv_ld64_platform_version=0
fc92f581 6266 gcc_cv_ld64_demangle=0
eb89c82f
IS
6267
6268 if test "$build" = "$host"; then
6269 darwin_try_test=1
6270 else
6271 darwin_try_test=0
6272 fi
6273
6274 # On Darwin, because of FAT library support, it is often possible to execute
6275 # exes from compatible archs even when the host differs from the build system.
6276 case "$build","$host" in
6277 x86_64-*-darwin*,i?86-*-darwin* | powerpc64*-*-darwin*,powerpc*-*-darwin*)
6278 darwin_try_test=1;;
6279 *) ;;
6280 esac
6281
6282 # If the configurer specified a minimum ld64 version to be supported, then use
6283 # that to determine feature support.
6284 if test x"${gcc_cv_ld64_version}" != x; then
c6d01ef8
IS
6285 AC_MSG_CHECKING(ld64 specified version)
6286 gcc_cv_ld64_major=`echo "$gcc_cv_ld64_version" | sed -e 's/\..*//'`
eb89c82f 6287 AC_MSG_RESULT($gcc_cv_ld64_major)
fc92f581
IS
6288 if test "$gcc_cv_ld64_major" -ge 97; then
6289 gcc_cv_ld64_demangle=1
6290 fi
d3cc82dc 6291 if test "$gcc_cv_ld64_major" -ge 236; then
eb89c82f
IS
6292 gcc_cv_ld64_export_dynamic=1
6293 fi
d3cc82dc
IS
6294 if test "$gcc_cv_ld64_major" -ge 512; then
6295 gcc_cv_ld64_platform_version=1
6296 fi
eb89c82f
IS
6297 elif test -x "$gcc_cv_ld" -a "$darwin_try_test" -eq 1; then
6298 # If the version was not specified, try to find it.
6299 AC_MSG_CHECKING(linker version)
6300 if test x"${gcc_cv_ld64_version}" = x; then
0beac920
RO
6301 gcc_cv_ld64_version=`$gcc_cv_ld -v 2>&1 | $EGREP 'ld64|dyld' \
6302 | sed -e 's/.*ld64-//' -e 's/.*dyld-//'| awk '{print $1}'`
eb89c82f
IS
6303 fi
6304 AC_MSG_RESULT($gcc_cv_ld64_version)
6305
fc92f581
IS
6306 AC_MSG_CHECKING(linker for -demangle support)
6307 gcc_cv_ld64_demangle=1
6308 if $gcc_cv_ld -demangle < /dev/null 2>&1 | grep 'unknown option' > /dev/null; then
6309 gcc_cv_ld64_demangle=0
6310 fi
6311 AC_MSG_RESULT($gcc_cv_ld64_demangle)
6312
eb89c82f
IS
6313 AC_MSG_CHECKING(linker for -export_dynamic support)
6314 gcc_cv_ld64_export_dynamic=1
6315 if $gcc_cv_ld -export_dynamic < /dev/null 2>&1 | grep 'unknown option' > /dev/null; then
6316 gcc_cv_ld64_export_dynamic=0
6317 fi
6318 AC_MSG_RESULT($gcc_cv_ld64_export_dynamic)
d3cc82dc
IS
6319
6320 AC_MSG_CHECKING(linker for -platform_version support)
6321 gcc_cv_ld64_platform_version=1
6322 if $gcc_cv_ld -platform_version macos 10.5 0.0 < /dev/null 2>&1 | grep 'unknown option' > /dev/null; then
6323 gcc_cv_ld64_platform_version=0
6324 fi
6325 AC_MSG_RESULT($gcc_cv_ld64_platform_version)
eb89c82f
IS
6326 fi
6327
6328 if test x"${gcc_cv_ld64_version}" != x; then
6329 AC_DEFINE_UNQUOTED(LD64_VERSION, "${gcc_cv_ld64_version}",
6330 [Define to ld64 version.])
6331 fi
6332
fc92f581
IS
6333 AC_DEFINE_UNQUOTED(LD64_HAS_DEMANGLE, $gcc_cv_ld64_demangle,
6334 [Define to 1 if ld64 supports '-demangle'.])
6335
eb89c82f
IS
6336 AC_DEFINE_UNQUOTED(LD64_HAS_EXPORT_DYNAMIC, $gcc_cv_ld64_export_dynamic,
6337 [Define to 1 if ld64 supports '-export_dynamic'.])
d3cc82dc
IS
6338
6339 AC_DEFINE_UNQUOTED(LD64_HAS_PLATFORM_VERSION, $gcc_cv_ld64_platform_version,
6340 [Define to 1 if ld64 supports '-platform_version'.])
eb89c82f
IS
6341fi
6342
3b5e8ee4
IS
6343if test x"$dsymutil_flag" = x"yes"; then
6344
6345 # If the user specified a dsymutil path, then we will already have the
6346 # version string, otherwise, pick it up.
6347 if test x"$gcc_cv_dsymutil" = x; then
6348 AC_MSG_WARN([dsymutil is a required tool for this system, but not found])
6349 dsymutil_vers="tool unspecified"
6350 elif test x"$dsymutil_vers" = x; then
6351 dsymutil_vers=`$gcc_cv_dsymutil -v /dev/null 2>&1`
6352 fi
6353
6354 dsymutil_temp=`echo $dsymutil_vers | sed 1q`
6355 AC_MSG_CHECKING(dsymutil version "$dsymutil_temp")
6356 if echo $dsymutil_temp | grep dwarfutils- > /dev/null; then
6357 dsymutil_kind=DWARFUTILS
6358 dsymutil_vers=`echo $dsymutil_temp | sed 's/.*dwarfutils-\([[0-9\.]]*\).*/\1/'`
6359 elif echo $dsymutil_temp | grep clang- > /dev/null; then
6360 dsymutil_kind=CLANG
6361 dsymutil_vers=`echo $dsymutil_temp | sed 's/.*clang-\([[0-9\.]]*\).*/\1/'`
6362 elif echo $dsymutil_temp | grep 'LLVM version ' > /dev/null; then
6363 dsymutil_kind=LLVM
6364 dsymutil_vers=`echo $dsymutil_temp | sed 's/.*LLVM\ version\ \([[0-9\.]]*\).*/\1/'`
6365 else
6366 dsymutil_kind=UNKNOWN
6367 dsymutil_vers="0.0"
6368 fi
6369 dsymutil_major=`expr "$dsymutil_vers" : '\([[0-9]]*\)'`
6370 dsymutil_minor=`expr "$dsymutil_vers" : '[[0-9]]*\.\([[0-9]]*\)'`
6371 dsymutil_tiny=`expr "$dsymutil_vers" : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'`
6372 if test x"${dsymutil_minor}" = x; then
6373 dsymutil_minor=0
6374 fi
6375 if test x"${dsymutil_tiny}" = x; then
6376 dsymutil_tiny=0
6377 fi
6378 AC_DEFINE_UNQUOTED(DSYMUTIL_VERSION, [$dsymutil_kind,${dsymutil_major},${dsymutil_minor},${dsymutil_tiny}],
6379 [Define to the dsymutil version.])
6380 AC_MSG_RESULT($dsymutil_vers : $dsymutil_kind ${dsymutil_major} ${dsymutil_minor} ${dsymutil_tiny} )
6381fi
6382
a49a96f6
JJ
6383case $target_os in
6384 win32 | pe | cygwin* | mingw32*)
6385 AC_MSG_CHECKING(broken PE linker dwarf5 support)
6386 gcc_cv_ld_broken_pe_dwarf5=yes
6387 if test $in_tree_ld = yes ; then
6388 if grep -q '\.debug_loclists.*BLOCK.*__section_alignment__.*NOLOAD.*:' \
6389 $gcc_cv_ld_gld_srcdir/scripttempl/pe*.sc \
6390 && grep -q '\.debug_rnglists.*BLOCK.*__section_alignment__.*NOLOAD.*:' \
6391 $gcc_cv_ld_gld_srcdir/scripttempl/pe*.sc; then
6392 gcc_cv_ld_broken_pe_dwarf5=no
6393 fi
6394 else
6395 if $gcc_cv_ld --verbose 2>&1 | grep -q '\.debug_loclists.*BLOCK.*__section_alignment__.*NOLOAD.*:' \
6396 && $gcc_cv_ld --verbose 2>&1 | grep -q '\.debug_rnglists.*BLOCK.*__section_alignment__.*NOLOAD.*:'; then
6397 gcc_cv_ld_broken_pe_dwarf5=no
6398 fi
6399 fi
6400 if test x$gcc_cv_ld_broken_pe_dwarf5 = xyes; then
6401 AC_DEFINE(HAVE_LD_BROKEN_PE_DWARF5, 1,
6402 [Define if the PE linker has broken DWARF 5 support.])
6403 fi
6404 AC_MSG_RESULT($gcc_cv_ld_broken_pe_dwarf5)
2bdf17de
EB
6405
6406 AC_MSG_CHECKING(PE linker --disable-dynamicbase support)
6407 gcc_cv_ld_disable_dynamicbase=no
6408 if test $in_tree_ld = yes; then
6409 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 36 -o "$gcc_cv_gld_major_version" -gt 2; then \
6410 gcc_cv_ld_disable_dynamicbase=yes
6411 fi
6412 else
6413 if $gcc_cv_ld --help 2>&1 | grep -q 'disable\-]dynamicbase' > /dev/null; then
6414 gcc_cv_ld_disable_dynamicbase=yes
6415 fi
6416 fi
6417 if test x"$gcc_cv_ld_disable_dynamicbase" = xyes; then
6418 AC_DEFINE(HAVE_LD_PE_DISABLE_DYNAMICBASE, 1,
6419 [Define if the PE linker supports --disable-dynamicbase option.])
6420 fi
6421 AC_MSG_RESULT($gcc_cv_ld_disable_dynamicbase)
a49a96f6
JJ
6422 ;;
6423esac
6424
630327c3
NN
6425# --------
6426# UNSORTED
6427# --------
6428
82e923f6
RS
6429AC_CACHE_CHECK(linker --as-needed support,
6430gcc_cv_ld_as_needed,
6431[gcc_cv_ld_as_needed=no
e927b6ad
RO
6432gcc_cv_ld_as_needed_option='--as-needed'
6433gcc_cv_ld_no_as_needed_option='--no-as-needed'
765f1bf9
AM
6434if test $in_tree_ld = yes ; then
6435 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 \
6436 && test $in_tree_ld_is_elf = yes; then
6437 gcc_cv_ld_as_needed=yes
fefedb94
JJ
6438 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 28; then
6439 gcc_cv_ld_as_needed_option='--push-state --as-needed'
6440 gcc_cv_ld_no_as_needed_option='--pop-state'
6441 fi
765f1bf9
AM
6442 fi
6443elif test x$gcc_cv_ld != x; then
8dc877eb
RO
6444 # Check if linker supports --as-needed and --no-as-needed options
6445 if $gcc_cv_ld --help 2>&1 | grep as-needed > /dev/null; then
6446 gcc_cv_ld_as_needed=yes
fefedb94
JJ
6447 if $gcc_cv_ld --help 2>&1 | grep push-state > /dev/null \
6448 && $gcc_cv_ld --help 2>&1 | grep pop-state > /dev/null \
6449 && echo "$ld_ver" | grep GNU > /dev/null \
6450 && test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -ge 28; then
6451 # Use these options only when both ld.bfd and ld.gold support
6452 # --push-state/--pop-state, which unfortunately wasn't added
6453 # at the same time.
6454 gcc_cv_ld_as_needed_option='--push-state --as-needed'
6455 gcc_cv_ld_no_as_needed_option='--pop-state'
6456 fi
8dc877eb
RO
6457 fi
6458 case "$target:$gnu_ld" in
6459 *-*-solaris2*:no)
6460 # Solaris 2 ld always supports -z ignore/-z record. Prefer the native
6461 # forms.
6462 gcc_cv_ld_as_needed=yes
6463 gcc_cv_ld_as_needed_option="-z ignore"
6464 gcc_cv_ld_no_as_needed_option="-z record"
6465 ;;
6466 esac
765f1bf9 6467fi
56cf7859
RO
6468# --as-needed/-z ignore can only be used if libgcc_s.so.1 uses
6469# dl_iterate_phdr, i.e. since Solaris 11.
6470case "$target" in
6471 *-*-solaris2.1[[1-9]]*)
6472 case "$target" in
6473 i?86-*-* | x86_64-*-*)
6474 if echo "$ld_ver" | grep GNU > /dev/null; then
6475 # Doesn't work with gld on Solaris/x86 due to PR ld/12320.
6476 gcc_cv_ld_as_needed=no
6477 fi
6478 ;;
6479 esac
6480 ;;
6481 *-*-solaris2*)
6482 gcc_cv_ld_as_needed=no
6483 ;;
6484esac
82e923f6 6485])
765f1bf9
AM
6486if test x"$gcc_cv_ld_as_needed" = xyes; then
6487 AC_DEFINE(HAVE_LD_AS_NEEDED, 1,
e927b6ad
RO
6488[Define if your linker supports --as-needed/--no-as-needed or equivalent options.])
6489 AC_DEFINE_UNQUOTED(LD_AS_NEEDED_OPTION, "$gcc_cv_ld_as_needed_option",
6490[Define to the linker option to ignore unused dependencies.])
6491 AC_DEFINE_UNQUOTED(LD_NO_AS_NEEDED_OPTION, "$gcc_cv_ld_no_as_needed_option",
6492[Define to the linker option to keep unused dependencies.])
765f1bf9 6493fi
765f1bf9 6494
3c698bf0
RO
6495AC_MSG_CHECKING(linker mapfile support for clearing hardware capabilities)
6496saved_LDFLAGS="$LDFLAGS"
6497for clearcap_map in sol2-clearcapv2.map sol2-clearcap.map; do
6498 LDFLAGS="$saved_LDFLAGS -Wl,-M,${srcdir}/config/$clearcap_map"
22e05272 6499 AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) {return 0;}])],
3c698bf0
RO
6500 [gcc_cv_ld_clearcap=yes; break], [gcc_cv_ld_clearcap=no])
6501done
6502LDFLAGS="$saved_LDFLAGS"
6503if test "x$gcc_cv_ld_clearcap" = xyes; then
6504 AC_DEFINE([HAVE_LD_CLEARCAP], 1,
6505[Define if the linker supports clearing hardware capabilities via mapfile.])
6506 AC_CONFIG_LINKS([clearcap.map:${srcdir}/config/$clearcap_map])
6507fi
6508AC_MSG_RESULT($gcc_cv_ld_clearcap)
6509
e9dda04f
AM
6510case "$target" in
6511 powerpc*-*-*)
6512 case "$target" in
6513 *le-*-linux*)
6514 emul_name="-melf32lppc"
6515 ;;
6516 *)
6517 emul_name="-melf32ppc"
6518 ;;
6519 esac
6520 AC_CACHE_CHECK(linker .gnu.attributes long double support,
6521 gcc_cv_ld_ppc_attr,
6522 [gcc_cv_ld_ppc_attr=no
6523 if test x"$ld_is_gold" = xyes; then
6524 gcc_cv_ld_ppc_attr=yes
6525 elif test $in_tree_ld = yes ; then
6526 if test "$gcc_cv_gld_major_version" -eq 2 \
6527 -a "$gcc_cv_gld_minor_version" -ge 28 \
6528 -o "$gcc_cv_gld_major_version" -gt 2; then
6529 gcc_cv_ld_ppc_attr=yes
6530 fi
6531 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6532 # check that merging the long double .gnu_attribute doesn't warn
6533 cat > conftest1.s <<EOF
6534 .gnu_attribute 4,1
6535EOF
6536 cat > conftest2.s <<EOF
6537 .gnu_attribute 4,9
6538EOF
6539 if $gcc_cv_as -a32 -o conftest1.o conftest1.s > /dev/null 2>&1 \
6540 && $gcc_cv_as -a32 -o conftest2.o conftest2.s > /dev/null 2>&1 \
6541 && $gcc_cv_ld $emul_name -r -o conftest.o conftest1.o conftest2.o > /dev/null 2> conftest.err \
6542 && test ! -s conftest.err; then
6543 gcc_cv_ld_ppc_attr=yes
6544 fi
6545 rm -f conftest.err conftest.o conftest1.o conftest2.o conftest1.s conftest2.s
6546 fi
6547 ])
6548 if test x$gcc_cv_ld_ppc_attr = xyes; then
6549 AC_DEFINE(HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE, 1,
6550 [Define if your PowerPC linker has .gnu.attributes long double support.])
6551 fi
6552 ;;
6553esac
6554
d82bf747 6555case "$target:$tm_file" in
a9ef07fe 6556 powerpc64*-*-freebsd* | powerpc64*-*-linux* | powerpc*-*-linux*rs6000/biarch64.h*)
a26f86dc 6557 case "$target" in
14523c25
AB
6558 *le-*-linux*)
6559 emul_name="-melf64lppc"
6560 ;;
a26f86dc
AT
6561 *-*-linux*)
6562 emul_name="-melf64ppc"
6563 ;;
2a418323
PK
6564 *le-*-freebsd*)
6565 emul_name="-melf64lppc_fbsd"
6566 ;;
a26f86dc
AT
6567 *-*-freebsd*)
6568 emul_name="-melf64ppc_fbsd"
6569 ;;
6570 esac
85b776df
AM
6571 AC_CACHE_CHECK(linker support for omitting dot symbols,
6572 gcc_cv_ld_no_dot_syms,
6573 [gcc_cv_ld_no_dot_syms=no
38e1b75f
AM
6574 if test x"$ld_is_gold" = xyes; then
6575 gcc_cv_ld_no_dot_syms=yes
6576 elif test $in_tree_ld = yes ; then
85b776df
AM
6577 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2; then
6578 gcc_cv_ld_no_dot_syms=yes
6579 fi
6580 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6581 cat > conftest1.s <<EOF
6582 .text
6583 bl .foo
6584EOF
6585 cat > conftest2.s <<EOF
6586 .section ".opd","aw"
6587 .align 3
6588 .globl foo
6589 .type foo,@function
6590foo:
6591 .quad .LEfoo,.TOC.@tocbase,0
6592 .text
6593.LEfoo:
6594 blr
6595 .size foo,.-.LEfoo
6596EOF
6597 if $gcc_cv_as -a64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
6598 && $gcc_cv_as -a64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
a26f86dc 6599 && $gcc_cv_ld $emul_name -o conftest conftest1.o conftest2.o > /dev/null 2>&1; then
85b776df
AM
6600 gcc_cv_ld_no_dot_syms=yes
6601 fi
6602 rm -f conftest conftest1.o conftest2.o conftest1.s conftest2.s
6603 fi
6604 ])
6605 if test x"$gcc_cv_ld_no_dot_syms" = xyes; then
6606 AC_DEFINE(HAVE_LD_NO_DOT_SYMS, 1,
6607 [Define if your PowerPC64 linker only needs function descriptor syms.])
6608 fi
070b27da
AM
6609
6610 AC_CACHE_CHECK(linker large toc support,
6611 gcc_cv_ld_large_toc,
6612 [gcc_cv_ld_large_toc=no
38e1b75f
AM
6613 if test x"$ld_is_gold" = xyes; then
6614 gcc_cv_ld_large_toc=yes
6615 elif test $in_tree_ld = yes ; then
070b27da
AM
6616 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 21 -o "$gcc_cv_gld_major_version" -gt 2; then
6617 gcc_cv_ld_large_toc=yes
6618 fi
6619 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6620 cat > conftest.s <<EOF
6621 .section ".tbss","awT",@nobits
6622 .align 3
6623ie0: .space 8
6624 .global _start
6625 .text
6626_start:
6627 addis 9,13,ie0@got@tprel@ha
6628 ld 9,ie0@got@tprel@l(9)
6629EOF
6630 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1 \
a26f86dc 6631 && $gcc_cv_ld $emul_name --no-toc-sort -o conftest conftest.o > /dev/null 2>&1; then
070b27da
AM
6632 gcc_cv_ld_large_toc=yes
6633 fi
6634 rm -f conftest conftest.o conftest.s
6635 fi
6636 ])
6637 if test x"$gcc_cv_ld_large_toc" = xyes; then
6638 AC_DEFINE(HAVE_LD_LARGE_TOC, 1,
6639 [Define if your PowerPC64 linker supports a large TOC.])
6640 fi
3954ead0
AM
6641
6642 AC_CACHE_CHECK(linker toc pointer alignment,
6643 gcc_cv_ld_toc_align,
6644 [if test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_nm != x; then
6645 cat > conftest.s <<EOF
6646 .global _start
6647 .text
6648_start:
6649 addis 9,2,x@got@ha
6650 .section .data.rel.ro,"aw",@progbits
6651 .p2align 16
6652 .space 32768
6653x: .quad .TOC.
6654EOF
6655 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1 \
458bc9b1 6656 && $gcc_cv_ld $emul_name -z norelro -o conftest conftest.o > /dev/null 2>&1; then
3954ead0
AM
6657 gcc_cv_ld_toc_align=`$gcc_cv_nm conftest | ${AWK} '/\.TOC\./ { match ($0, "0[[[:xdigit:]]]*", a); print strtonum ("0x" substr(a[[0]], length(a[[0]])-3)) }'`
6658 fi
6659 rm -f conftest conftest.o conftest.s
6660 fi
6661 ])
6662 if test -n "$gcc_cv_ld_toc_align" && test $gcc_cv_ld_toc_align -gt 8; then
6663 AC_DEFINE_UNQUOTED(POWERPC64_TOC_POINTER_ALIGNMENT, $gcc_cv_ld_toc_align,
6664 [Define to .TOC. alignment forced by your linker.])
6665 fi
85b776df
AM
6666 ;;
6667esac
6668
9e81cc8b
DE
6669case "$target" in
6670 *-*-aix*)
6671 AC_CACHE_CHECK(linker large toc support,
6672 gcc_cv_ld_large_toc,
6673 [gcc_cv_ld_large_toc=no
6674 if test x$gcc_cv_as != x ; then
6675 cat > conftest.s <<EOF
6676 .toc
6677LC..1:
6678 .tc a[[TC]],a[[RW]]
6679 .extern a[[RW]]
6680 .csect .text[[PR]]
6681.largetoctest:
6682 addis 9,LC..1@u(2)
6683 ld 3,LC..1@l(9)
6684EOF
6685 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1; then
6686 gcc_cv_ld_large_toc=yes
6687 fi
6688 rm -f conftest conftest.o conftest.s
6689 fi
6690 ])
6691 if test x"$gcc_cv_ld_large_toc" = xyes; then
6692 AC_DEFINE(HAVE_LD_LARGE_TOC, 1,
01ae4861 6693 [Define if your PowerPC64 linker supports a large TOC.])
9e81cc8b
DE
6694 fi
6695 ;;
6696esac
6697
cd533689
PP
6698AC_CACHE_CHECK(linker --build-id support,
6699 gcc_cv_ld_buildid,
6700 [gcc_cv_ld_buildid=no
6701 if test $in_tree_ld = yes ; then
6702 if test "$gcc_cv_gld_major_version" -eq 2 -a \
6703 "$gcc_cv_gld_minor_version" -ge 18 -o \
6704 "$gcc_cv_gld_major_version" -gt 2 \
6705 && test $in_tree_ld_is_elf = yes; then
6706 gcc_cv_ld_buildid=yes
6707 fi
6708 elif test x$gcc_cv_ld != x; then
8dc877eb 6709 if $gcc_cv_ld --help 2>&1 | grep build-id > /dev/null; then
cd533689
PP
6710 gcc_cv_ld_buildid=yes
6711 fi
6712 fi])
6713if test x"$gcc_cv_ld_buildid" = xyes; then
6714 AC_DEFINE(HAVE_LD_BUILDID, 1,
6715 [Define if your linker supports --build-id.])
6716fi
6717
6718AC_ARG_ENABLE(linker-build-id,
b88ecf55
AS
6719[AS_HELP_STRING([--enable-linker-build-id],
6720 [compiler will always pass --build-id to linker])],
cd533689
PP
6721[],
6722enable_linker_build_id=no)
6723
6724if test x"$enable_linker_build_id" = xyes; then
6725 if test x"$gcc_cv_ld_buildid" = xyes; then
6726 AC_DEFINE(ENABLE_LD_BUILDID, 1,
6727 [Define if gcc should always pass --build-id to linker.])
6728 else
6729 AC_MSG_WARN(--build-id is not supported by your linker; --enable-linker-build-id ignored)
6730 fi
6731fi
6732
a6198222
RO
6733# In binutils 2.21, GNU ld gained support for new emulations fully
6734# supporting the Solaris 2 ABI. Detect their presence in the linker used.
6735AC_CACHE_CHECK(linker *_sol2 emulation support,
6736 gcc_cv_ld_sol2_emulation,
6737 [gcc_cv_ld_sol2_emulation=no
6738 if test $in_tree_ld = yes ; then
6739 if test "$gcc_cv_gld_major_version" -eq 2 -a \
6740 "$gcc_cv_gld_minor_version" -ge 21 -o \
6741 "$gcc_cv_gld_major_version" -gt 2 \
6742 && test $in_tree_ld_is_elf = yes; then
6743 gcc_cv_ld_sol2_emulation=yes
6744 fi
6745 elif test x$gcc_cv_ld != x; then
6746 if $gcc_cv_ld -V 2>/dev/null | sed -e '1,/Supported emulations/d;q' | \
6747 grep _sol2 > /dev/null; then
6748 gcc_cv_ld_sol2_emulation=yes
6749 fi
6750 fi])
6751if test x"$gcc_cv_ld_sol2_emulation" = xyes; then
6752 AC_DEFINE(HAVE_LD_SOL2_EMULATION, 1,
6753 [Define if your linker supports the *_sol2 emulations.])
6754fi
6755
380e5ca4
MM
6756AC_CACHE_CHECK(linker --sysroot support,
6757 gcc_cv_ld_sysroot,
6758 [gcc_cv_ld_sysroot=no
6759 if test $in_tree_ld = yes ; then
6760 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 ; then
7032df40 6761 gcc_cv_ld_sysroot=yes
380e5ca4
MM
6762 fi
6763 elif test x$gcc_cv_ld != x; then
8dc877eb 6764 if $gcc_cv_ld --help 2>&1 | grep sysroot > /dev/null; then
380e5ca4
MM
6765 gcc_cv_ld_sysroot=yes
6766 fi
6767 fi])
6768if test x"$gcc_cv_ld_sysroot" = xyes; then
6769 AC_DEFINE(HAVE_LD_SYSROOT, 1,
6770 [Define if your linker supports --sysroot.])
6771fi
6772
2d110442
RO
6773case $target in
6774*-*-solaris2*)
6775 # Check for system-provided CRTs on Solaris 11.x and Solaris 12.
6776 AC_CACHE_CHECK([system-provided CRTs on Solaris],
6777 gcc_cv_solaris_crts,
6778 [gcc_cv_solaris_crts=no
6779 if test x$host != x$target; then
6780 if test "x$with_sysroot" = xyes; then
6781 target_sysroot="${test_exec_prefix}/${target_noncanonical}/sys-root"
6782 else
6783 target_sysroot="${with_sysroot}"
6784 fi
6785 fi
6786 target_libdir="$target_sysroot/usr/lib"
6787 # At the time they were added, gcrt1.o became a symlink for backwards
6788 # compatibility on x86, while crt1.o was added on sparc, so check for that.
6789 case $target in
6790 i?86-*-solaris2* | x86_64-*-solaris2*)
6791 if test -h "$target_libdir/gcrt1.o"; then gcc_cv_solaris_crts=yes; fi
6792 ;;
6793 sparc*-*-solaris2*)
6794 if test -f "$target_libdir/crt1.o"; then gcc_cv_solaris_crts=yes; fi
6795 ;;
6796 esac])
6797 ;;
6798esac
6799if test x$gcc_cv_solaris_crts = xyes; then
6800 AC_DEFINE(HAVE_SOLARIS_CRTS, 1,
6801 [Define if the system-provided CRTs are present on Solaris.])
6802fi
6803
78fd4c51
SL
6804AC_ARG_ENABLE(libssp,
6805[AS_HELP_STRING([--enable-libssp], [enable linking against libssp])],
6806[case "${enableval}" in
6807 yes|no)
6808 ;;
6809 *)
6810 AC_MSG_ERROR([unknown libssp setting $enableval])
6811 ;;
6812esac], [])
6813
77008252 6814# Test for stack protector support in target C library.
a6ccdbab 6815AC_CACHE_CHECK(__stack_chk_fail in target C library,
78fd4c51
SL
6816 gcc_cv_libc_provides_ssp,
6817 [gcc_cv_libc_provides_ssp=no
6818 if test "x$enable_libssp" = "xno"; then
6819 gcc_cv_libc_provides_ssp=yes
6820 elif test "x$enable_libssp" = "xyes"; then
6821 gcc_cv_libc_provides_ssp=no
6822 else
a6ccdbab 6823 case "$target" in
755658a5
GR
6824 *-*-musl*)
6825 # All versions of musl provide stack protector
6826 gcc_cv_libc_provides_ssp=yes;;
8466af06 6827 *-*-linux* | *-*-kfreebsd*-gnu)
75a2bcc0 6828 # glibc 2.4 and later provides __stack_chk_fail and
77008252 6829 # either __stack_chk_guard, or TLS access to stack guard canary.
75a2bcc0
JM
6830 GCC_GLIBC_VERSION_GTE_IFELSE([2], [4], [gcc_cv_libc_provides_ssp=yes], [
6831 [if test -f $target_header_dir/features.h \
1a242e3c 6832 && $EGREP '^[ ]*#[ ]*define[ ]+__GNU_LIBRARY__[ ]+([1-9][0-9]|[6-9])' \
6961669f 6833 $target_header_dir/features.h > /dev/null; then
75a2bcc0 6834 if $EGREP '^[ ]*#[ ]*define[ ]+__UCLIBC__[ ]+1' \
6961669f
RO
6835 $target_header_dir/features.h > /dev/null && \
6836 test -f $target_header_dir/bits/uClibc_config.h && \
1a242e3c 6837 $EGREP '^[ ]*#[ ]*define[ ]+__UCLIBC_HAS_SSP__[ ]+1' \
6961669f 6838 $target_header_dir/bits/uClibc_config.h > /dev/null; then
fed6d628 6839 gcc_cv_libc_provides_ssp=yes
77008252 6840 fi
40295cc7
IZ
6841 # all versions of Bionic support stack protector
6842 elif test -f $target_header_dir/sys/cdefs.h \
6843 && $EGREP '^[ ]*#[ ]*define[ ]+__BIONIC__[ ]+1' \
6844 $target_header_dir/sys/cdefs.h > /dev/null; then
6845 gcc_cv_libc_provides_ssp=yes
75a2bcc0 6846 fi]])
a6ccdbab 6847 ;;
4cc115a2
TS
6848 *-*-gnu*)
6849 # Avoid complicated tests (see
6850 # <http://gcc.gnu.org/ml/gcc/2008-10/msg00130.html>) and for now
6851 # simply assert that glibc does provide this, which is true for all
6852 # realistically usable GNU/Hurd configurations.
755658a5 6853 # All supported versions of musl provide it as well
4cc115a2 6854 gcc_cv_libc_provides_ssp=yes;;
388dc9e6 6855 *-*-darwin* | *-*-freebsd* | *-*-netbsd*)
a6ccdbab
EC
6856 AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes],
6857 [echo "no __stack_chk_fail on this target"])
6858 ;;
78fd4c51
SL
6859 *) gcc_cv_libc_provides_ssp=no ;;
6860 esac
6861 fi])
a6ccdbab 6862
77008252
JJ
6863if test x$gcc_cv_libc_provides_ssp = xyes; then
6864 AC_DEFINE(TARGET_LIBC_PROVIDES_SSP, 1,
6865 [Define if your target C library provides stack protector support])
6866fi
6867
e0f6cba0
MG
6868# Check whether --enable-default-ssp was given.
6869AC_ARG_ENABLE(default-ssp,
6870[AS_HELP_STRING([--enable-default-ssp],
6871 [enable Stack Smashing Protection as default])],[
6872if test x$gcc_cv_libc_provides_ssp = xyes; then
6873 case "$target" in
6874 ia64*-*-*) enable_default_ssp=no ;;
6875 *) enable_default_ssp=$enableval ;;
6876 esac
6877else
6878 enable_default_ssp=no
6879fi],
6880enable_default_ssp=no)
9a557138 6881if test x$enable_default_ssp = xyes ; then
e0f6cba0
MG
6882 AC_DEFINE(ENABLE_DEFAULT_SSP, 1,
6883 [Define if your target supports default stack protector and it is enabled.])
6884fi
6885AC_SUBST([enable_default_ssp])
6886
f4e749b4
TT
6887# Test for <sys/sdt.h> on the target.
6888GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
4f8aac77
DS
6889AC_CACHE_CHECK([sys/sdt.h in the target C library], [gcc_cv_sys_sdt_h], [
6890 gcc_cv_sys_sdt_h=no
6891 if test -f $target_header_dir/sys/sdt.h; then
6892 gcc_cv_sys_sdt_h=yes
6893 fi
6894])
6895AS_IF([test x$gcc_cv_sys_sdt_h = xyes], [
6896 AC_DEFINE([HAVE_SYS_SDT_H], [1],
f4e749b4 6897 [Define if your target C library provides sys/sdt.h])
4f8aac77 6898])
f4e749b4 6899
ed965309
JJ
6900# Check if TFmode long double should be used by default or not.
6901# Some glibc targets used DFmode long double, but with glibc 2.4
6902# and later they can use TFmode.
6903case "$target" in
f7cc5390 6904 powerpc*-*-linux* | \
ed965309
JJ
6905 sparc*-*-linux* | \
6906 s390*-*-linux* | \
6907 alpha*-*-linux*)
6908 AC_ARG_WITH(long-double-128,
b88ecf55
AS
6909 [AS_HELP_STRING([--with-long-double-128],
6910 [use 128-bit long double by default])],
8d7be8d6
SN
6911 gcc_cv_target_ldbl128="$with_long_double_128", [
6912 case "$target" in
6913 s390*-*-linux-musl*)
6914 gcc_cv_target_ldbl128=yes
6915 ;;
6916 powerpc*-*-linux-musl*)
6917 gcc_cv_target_ldbl128=no
6918 ;;
6919 *)]
75a2bcc0
JM
6920 [GCC_GLIBC_VERSION_GTE_IFELSE([2], [4], [gcc_cv_target_ldbl128=yes], [
6921 [gcc_cv_target_ldbl128=no
ed965309 6922 grep '^[ ]*#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
6961669f 6923 $target_header_dir/bits/wordsize.h > /dev/null 2>&1 \
65280f6c 6924 && gcc_cv_target_ldbl128=yes
8d7be8d6
SN
6925 ]])]
6926 [
6927 ;;
6928 esac
6929 ])
ed965309
JJ
6930 ;;
6931esac
6932if test x$gcc_cv_target_ldbl128 = xyes; then
6933 AC_DEFINE(TARGET_DEFAULT_LONG_DOUBLE_128, 1,
6934 [Define if TFmode long double should be the default])
6935fi
6936
8c7a27d5
MM
6937# Check if TFmode long double target should use the IBM extended double or IEEE
6938# 128-bit floating point formats if long doubles are 128-bits long. The long
6939# double type can only be switched on powerpc64 bit Linux systems where VSX is
6940# supported. Other PowerPC systems do not build the IEEE 128-bit emulator in
6941# libgcc.
6942AC_ARG_WITH([long-double-format],
6943 [AS_HELP_STRING([--with-long-double-format={ieee,ibm}]
6944 [Specify whether PowerPC long double uses IEEE or IBM format])],[
6945case "$target:$with_long_double_format" in
6946 powerpc64le-*-linux*:ieee | powerpc64le-*-linux*:ibm)
6947 :
6948 ;;
6949 powerpc64-*-linux*:ieee | powerpc64-*-linux*:ibm)
6950 # IEEE 128-bit emulation is only built on 64-bit VSX Linux systems
6951 case "$with_cpu" in
6952 power7 | power8 | power9 | power1*)
6953 :
6954 ;;
6955 *)
6956 AC_MSG_ERROR([Configuration option --with-long-double-format is only \
6957supported if the default cpu is power7 or newer])
6958 with_long_double_format=""
6959 ;;
6960 esac
6961 ;;
de2c1d00 6962 powerpc64*-*-linux*:*)
8c7a27d5
MM
6963 AC_MSG_ERROR([--with-long-double-format argument should be ibm or ieee])
6964 with_long_double_format=""
6965 ;;
6966 *)
6967 AC_MSG_ERROR([Configure option --with-long-double-format is only supported \
6968on 64-bit PowerPC VSX Linux systems])
6969 with_long_double_format=""
6970 ;;
6971esac],
6972 [])
6973
26a2e6ae
PB
6974# Check if the target LIBC supports exporting the AT_PLATFORM and AT_HWCAP
6975# values in the TCB. Currently, only GLIBC 2.23 and later support this.
6976gcc_cv_libc_provides_hwcap_in_tcb=no
6977case "$target" in
6978 powerpc*-*-linux*)
6979 GCC_GLIBC_VERSION_GTE_IFELSE([2], [23], [gcc_cv_libc_provides_hwcap_in_tcb=yes], )
6980 ;;
6981esac
6982if test x$gcc_cv_libc_provides_hwcap_in_tcb = xyes; then
6983 AC_DEFINE(TARGET_LIBC_PROVIDES_HWCAP_IN_TCB, 1,
6984 [Define if your target C Library provides the AT_HWCAP value in the TCB])
6985fi
6986
54b3d52c
DM
6987# Check if the target LIBC handles PT_GNU_STACK.
6988gcc_cv_libc_gnustack=unknown
6989case "$target" in
25abbb92
IL
6990 mips*-*-linux-musl*)
6991 gcc_cv_libc_gnustack=yes
6992 ;;
54b3d52c
DM
6993 mips*-*-linux*)
6994 GCC_GLIBC_VERSION_GTE_IFELSE([2], [31], [gcc_cv_libc_gnustack=yes], )
6995 ;;
6996esac
6997if test x$gcc_cv_libc_gnustack = xyes; then
6998 AC_DEFINE(TARGET_LIBC_GNUSTACK, 1,
6999 [Define if your target C Library properly handles PT_GNU_STACK])
7000fi
7001
6961669f
RO
7002AC_MSG_CHECKING(dl_iterate_phdr in target C library)
7003gcc_cv_target_dl_iterate_phdr=unknown
7004case "$target" in
ccd1242e 7005 *-*-solaris2*)
6961669f
RO
7006 # <link.h> needs both a dl_iterate_phdr declaration and support for
7007 # compilation with largefile support.
7008 if grep dl_iterate_phdr $target_header_dir/link.h > /dev/null 2>&1 \
7009 && grep 'large file capable' $target_header_dir/link.h > /dev/null 2>&1; then
7010 gcc_cv_target_dl_iterate_phdr=yes
7011 else
7012 gcc_cv_target_dl_iterate_phdr=no
7013 fi
7014 ;;
dbed5a9b
JM
7015 *-*-dragonfly* | *-*-freebsd*)
7016 if grep dl_iterate_phdr $target_header_dir/sys/link_elf.h > /dev/null 2>&1; then
7017 gcc_cv_target_dl_iterate_phdr=yes
7018 else
7019 gcc_cv_target_dl_iterate_phdr=no
7020 fi
7021 ;;
755658a5
GR
7022 *-linux-musl*)
7023 gcc_cv_target_dl_iterate_phdr=yes
7024 ;;
6961669f
RO
7025esac
7026GCC_TARGET_TEMPLATE([TARGET_DL_ITERATE_PHDR])
7027if test x$gcc_cv_target_dl_iterate_phdr = xyes; then
7028 AC_DEFINE(TARGET_DL_ITERATE_PHDR, 1,
7029[Define if your target C library provides the `dl_iterate_phdr' function.])
7030fi
7031AC_MSG_RESULT($gcc_cv_target_dl_iterate_phdr)
7032
cd030c07
DN
7033# We no longer support different GC mechanisms. Emit an error if
7034# the user configures with --with-gc.
81bf3d9e 7035AC_ARG_WITH(gc,
b88ecf55 7036[AS_HELP_STRING([--with-gc={page,zone}],
cd030c07
DN
7037 [this option is not supported anymore. It used to choose
7038 the garbage collection mechanism to use with the compiler])],
7039[AC_MSG_ERROR([Configure option --with-gc is only supported up to GCC 4.7.x])],
7040[])
81bf3d9e 7041
00020c16
ILT
7042# Libraries to use on the host. This will normally be set by the top
7043# level Makefile. Here we simply capture the value for our Makefile.
7044if test -z "${HOST_LIBS+set}"; then
7045 HOST_LIBS=
7046fi
7047AC_SUBST(HOST_LIBS)
7048
3c809ba4 7049# Use the system's zlib library.
96a58590 7050AM_ZLIB
3c809ba4 7051
dc6746e7
PT
7052dnl Very limited version of automake's enable-maintainer-mode
7053
7054AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
7055 dnl maintainer-mode is disabled by default
7056 AC_ARG_ENABLE(maintainer-mode,
b88ecf55
AS
7057[AS_HELP_STRING([--enable-maintainer-mode],
7058 [enable make rules and dependencies not useful
7059 (and sometimes confusing) to the casual installer])],
dc6746e7
PT
7060 maintainer_mode=$enableval,
7061 maintainer_mode=no)
7062
7063AC_MSG_RESULT($maintainer_mode)
7064
7065if test "$maintainer_mode" = "yes"; then
7066 MAINT=''
7067else
7068 MAINT='#'
7069fi
7070AC_SUBST(MAINT)dnl
7071
909b30a1
EG
7072dnl Variables for tags utilities; copied from automake 1.16.4+'s init.m4
7073if test -z "$CTAGS"; then
7074 CTAGS=ctags
7075fi
7076AC_SUBST([CTAGS])
7077if test -z "$ETAGS"; then
7078 ETAGS=etags
7079fi
7080AC_SUBST([ETAGS])
7081if test -z "$CSCOPE"; then
7082 CSCOPE=cscope
7083fi
7084AC_SUBST([CSCOPE])
7085
427b248d
JM
7086dnl Whether to prevent multiple front-ends from linking at the same time
7087
7088AC_MSG_CHECKING([whether to avoid linking multiple front-ends at once])
7089 AC_ARG_ENABLE(link-mutex,
7090[AS_HELP_STRING([--enable-link-mutex],
7091 [avoid linking multiple front-ends at once to avoid thrashing
7092 on the build machine])],
7093 do_link_mutex=$enableval,
7094 do_link_mutex=no)
7095AC_MSG_RESULT($do_link_mutex)
7096
7097if test "$do_link_mutex" = "yes"; then
7098 DO_LINK_MUTEX=true
8b2766e8 7099 AC_MSG_WARN([--enable-link-mutex is deprecated and will be removed in the next release, use --enable-link-serialization instead])
427b248d
JM
7100else
7101 DO_LINK_MUTEX=false
7102fi
7103AC_SUBST(DO_LINK_MUTEX)
7104
d326ebc9
JJ
7105dnl Whether to prevent multiple GCC front-ends from linking at the same time
7106
7107AC_MSG_CHECKING([whether to serialize linking of multiple front-ends])
7108 AC_ARG_ENABLE(link-serialization,
7109[AS_HELP_STRING([--enable-link-serialization],
7110 [avoid linking multiple GCC front-ends at once using make
7111 dependencies to avoid thrashing on the build machine])],
7112 do_link_serialization=$enableval,
7113 do_link_serialization=no)
7114AC_MSG_RESULT($do_link_serialization)
7115
7116case "$do_link_serialization" in
7117 yes)
7118 DO_LINK_SERIALIZATION=1;;
7119 [[1-9]] | [[1-9]][[0-9]] | [[1-9]][[0-9]][[0-9]])
7120 DO_LINK_SERIALIZATION=$do_link_serialization;;
7121 no)
7122 DO_LINK_SERIALIZATION=;;
7123 *)
7124 AC_MSG_ERROR(bad value ${do_link_serialization} given for --enable-link-serialization) ;;
7125esac
7126AC_SUBST(DO_LINK_SERIALIZATION)
7127
630327c3
NN
7128# --------------
7129# Language hooks
7130# --------------
7131
571a8de5
DE
7132# Make empty files to contain the specs and options for each language.
7133# Then add #include lines to for a compiler that has specs and/or options.
7134
cc11cc9b 7135subdirs=
d7b42618 7136lang_opt_files=
571a8de5 7137lang_specs_files=
3103b7db 7138lang_tree_files=
571a8de5
DE
7139# These (without "all_") are set in each config-lang.in.
7140# `language' must be a single word so is spelled singularly.
7141all_languages=
571a8de5 7142all_compilers=
fda9c731 7143all_outputs='Makefile'
223bf296
TS
7144# List of language configure and makefile fragments.
7145all_lang_configurefrags=
2ed26f6b 7146all_lang_makefrags=
11a67599 7147# Additional files for gengtype
ef69da62 7148all_gtfiles="$target_gtfiles"
571a8de5 7149
cc11cc9b
PB
7150# These are the languages that are set in --enable-languages,
7151# and are available in the GCC tree.
7152all_selected_languages=
7153
571a8de5
DE
7154# Add the language fragments.
7155# Languages are added via two mechanisms. Some information must be
7156# recorded in makefile variables, these are defined in config-lang.in.
7157# We accumulate them and plug them into the main Makefile.
7158# The other mechanism is a set of hooks for each of the main targets
7159# like `clean', `install', etc.
7160
571a8de5
DE
7161language_hooks="Make-hooks"
7162
cc11cc9b 7163for lang in ${srcdir}/*/config-lang.in
571a8de5 7164do
cc11cc9b 7165changequote(,)dnl
1546bb64
PB
7166 test "$lang" = "${srcdir}/*/config-lang.in" && continue
7167
cc11cc9b
PB
7168 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
7169 if test "x$lang_alias" = x
7170 then
7171 echo "$lang doesn't set \$language." 1>&2
7172 exit 1
7173 fi
7174 subdir="`echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
7175 subdirs="$subdirs $subdir"
349c3166
OH
7176
7177 # $gcc_subdir is where the gcc integration files are to be found
7178 # for a language, both for internal compiler purposes (compiler
7179 # sources implementing front-end to GCC tree converters), and for
7180 # build infrastructure purposes (Make-lang.in, etc.)
7181 #
7182 # This will be <subdir> (relative to $srcdir) if a line like
7183 # gcc_subdir="<subdir>" or gcc_subdir=<subdir>
7184 # is found in <langdir>/config-lang.in, and will remain <langdir>
7185 # otherwise.
7186 #
7187 # Except for the language alias (fetched above), the regular
7188 # "config-lang.in" contents are always retrieved from $gcc_subdir,
7189 # so a <langdir>/config-lang.in setting gcc_subdir typically sets
7190 # only this and the language alias.
7191
7192 gcc_subdir=`sed -n -e 's,^gcc_subdir=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^gcc_subdir=\([^ ]*\).*$,\1,p' $lang`
7193 if [ "$gcc_subdir" = "" ]; then
7194 gcc_subdir="$subdir"
7195 fi
7196
cc11cc9b
PB
7197 case ",$enable_languages," in
7198 *,$lang_alias,*)
7199 all_selected_languages="$all_selected_languages $lang_alias"
349c3166
OH
7200 if test -f $srcdir/$gcc_subdir/lang-specs.h; then
7201 lang_specs_files="$lang_specs_files $srcdir/$gcc_subdir/lang-specs.h"
cc11cc9b
PB
7202 fi
7203 ;;
7204 esac
7205changequote([,])dnl
7206
cc11cc9b
PB
7207 language=
7208 boot_language=
7209 compilers=
cc11cc9b
PB
7210 outputs=
7211 gtfiles=
1546bb64 7212 subdir_requires=
349c3166 7213 . ${srcdir}/$gcc_subdir/config-lang.in
cc11cc9b
PB
7214 if test "x$language" = x
7215 then
349c3166 7216 echo "${srcdir}/$gcc_subdir/config-lang.in doesn't set \$language." 1>&2
cc11cc9b
PB
7217 exit 1
7218 fi
1546bb64
PB
7219
7220 ok=:
7221 case ",$enable_languages," in
7222 *,$lang_alias,*) ;;
7223 *)
7224 for i in $subdir_requires; do
b6348cb3 7225 test -f "${srcdir}/$i/config-lang.in" && continue
1546bb64
PB
7226 ok=false
7227 break
7228 done
7229 ;;
7230 esac
7231 $ok || continue
7232
223bf296 7233 all_lang_configurefrags="$all_lang_configurefrags \$(srcdir)/$gcc_subdir/config-lang.in"
ff99d05f
JJ
7234 if test "x$language" = xc && test -n "$all_lang_makefrags"; then
7235 # Put c/Make-lang.in fragment first to match serialization languages order.
7236 all_lang_makefrags="\$(srcdir)/$gcc_subdir/Make-lang.in $all_lang_makefrags"
7237 else
7238 all_lang_makefrags="$all_lang_makefrags \$(srcdir)/$gcc_subdir/Make-lang.in"
7239 fi
349c3166
OH
7240 if test -f $srcdir/$gcc_subdir/lang.opt; then
7241 lang_opt_files="$lang_opt_files $srcdir/$gcc_subdir/lang.opt"
fd438373 7242 all_opt_files="$all_opt_files $srcdir/$gcc_subdir/lang.opt"
1546bb64 7243 fi
349c3166
OH
7244 if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then
7245 lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def"
1546bb64 7246 fi
cc11cc9b 7247 all_languages="$all_languages $language"
cc11cc9b 7248 all_compilers="$all_compilers $compilers"
cc11cc9b 7249 all_outputs="$all_outputs $outputs"
11a67599 7250 all_gtfiles="$all_gtfiles [[$subdir]] $gtfiles"
d7f09764
DN
7251 case ",$enable_languages," in
7252 *,lto,*)
7253 AC_DEFINE(ENABLE_LTO, 1, [Define to enable LTO support.])
7254 enable_lto=yes
7255 AC_SUBST(enable_lto)
7256 ;;
7257 *) ;;
7258 esac
571a8de5
DE
7259done
7260
cbc59f01 7261check_languages=
cc11cc9b 7262for language in $all_selected_languages
cbc59f01 7263do
cc11cc9b 7264 check_languages="$check_languages check-$language"
cbc59f01
DD
7265done
7266
033eb567
DM
7267selftest_languages=
7268for language in $all_selected_languages
7269do
7270 selftest_languages="$selftest_languages selftest-$language"
7271done
7272
62b81e45 7273# We link each language in with a set of hooks, reached indirectly via
cc11cc9b 7274# lang.${target}. Only do so for selected languages.
571a8de5
DE
7275
7276rm -f Make-hooks
7277touch Make-hooks
bd97af06 7278target_list="all.cross start.encap rest.encap tags \
c3e80a16
EG
7279 install-common install-man install-info install-dvi install-pdf \
7280 install-html dvi pdf html uninstall info man srcextra srcman srcinfo \
2a4c0366 7281 mostlyclean clean distclean maintainer-clean install-plugin"
cc11cc9b 7282
571a8de5
DE
7283for t in $target_list
7284do
7285 x=
cc11cc9b 7286 for lang in $all_selected_languages
571a8de5 7287 do
cc11cc9b 7288 x="$x $lang.$t"
571a8de5
DE
7289 done
7290 echo "lang.$t: $x" >> Make-hooks
7291done
7292
d326ebc9
JJ
7293echo "ifeq (\$(DO_LINK_SERIALIZATION),)" >> Make-hooks
7294echo "SERIAL_LIST =" >> Make-hooks
7295echo else >> Make-hooks
7296lang_cnt=0
7297lang_list=
a774a6a2 7298prev=c
d326ebc9
JJ
7299serialization_languages=c
7300for lang in $all_selected_languages
7301do
7302 test $lang = c && continue
7303 if test $lang = lto; then
7304 serialization_languages="$serialization_languages lto1 lto2"
7305 else
7306 serialization_languages="$serialization_languages $lang"
7307 fi
7308done
7309for lang in $serialization_languages
7310do
7311 test $lang = c && continue
7312 lang_cnt=`expr $lang_cnt + 1`
7313 lang_list=" $prev$lang_list"
a774a6a2 7314 prev=${lang}
d326ebc9
JJ
7315done
7316echo "SERIAL_LIST = \$(wordlist \$(DO_LINK_SERIALIZATION),$lang_cnt,$lang_list)" >> Make-hooks
7317echo endif >> Make-hooks
7318echo "SERIAL_COUNT = `expr $lang_cnt + 1`" >> Make-hooks
7319echo "INDEX.c = 0" >> Make-hooks
7320lang_idx=1
7321for lang in $serialization_languages
7322do
7323 test $lang = c && continue
a774a6a2 7324 echo "$lang.prev = \$(if \$(word $lang_cnt,\$(SERIAL_LIST)),\$(\$(word $lang_cnt,\$(SERIAL_LIST)).serial))" >> Make-hooks
d326ebc9
JJ
7325 echo "INDEX.$lang = $lang_idx" >> Make-hooks
7326 lang_cnt=`expr $lang_cnt - 1`
7327 lang_idx=`expr $lang_idx + 1`
7328done
7329
fd438373
MM
7330# --------
7331# Option include files
7332# --------
7333
7334${AWK} -f $srcdir/opt-include.awk $all_opt_files > option-includes.mk
7335option_includes="option-includes.mk"
7336AC_SUBST_FILE(option_includes)
7337
630327c3
NN
7338# --------
7339# UNSORTED
7340# --------
7341
cc06d68c 7342# Create .gdbinit.
296e46bd 7343
cc06d68c
GP
7344echo "dir ." > .gdbinit
7345echo "dir ${srcdir}" >> .gdbinit
7346if test x$gdb_needs_out_file_path = xyes
7347then
7348 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
7349fi
7350if test "x$subdirs" != x; then
7351 for s in $subdirs
7352 do
7353 echo "dir ${srcdir}/$s" >> .gdbinit
7354 done
296e46bd 7355fi
cc06d68c 7356echo "source ${srcdir}/gdbinit.in" >> .gdbinit
8dce4dbc 7357echo "python import sys; sys.path.append('${srcdir}'); import gdbhooks" >> .gdbinit
296e46bd 7358
3bd7b086
L
7359# Put a breakpoint on __asan_report_error to help with debugging buffer
7360# overflow.
7361case "$CFLAGS" in
7362*-fsanitize=address*)
7363 echo "source ${srcdir}/gdbasan.in" >> .gdbinit
7364 ;;
7365esac
7366
15c723f3 7367gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)'
d062c304 7368AC_SUBST(gcc_tooldir)
4c112cda 7369AC_SUBST(dollar)
d062c304 7370
2bbea3a6
RH
7371# Find a directory in which to install a shared libgcc.
7372
7373AC_ARG_ENABLE(version-specific-runtime-libs,
b88ecf55
AS
7374[AS_HELP_STRING([--enable-version-specific-runtime-libs],
7375 [specify that runtime libraries should be
7376 installed in a compiler-specific directory])])
2bbea3a6 7377
46f18e7b
RK
7378# Substitute configuration variables
7379AC_SUBST(subdirs)
8ac9d31f 7380AC_SUBST(srcdir)
46f18e7b 7381AC_SUBST(all_compilers)
e2500fed 7382AC_SUBST(all_gtfiles)
223bf296 7383AC_SUBST(all_lang_configurefrags)
2ed26f6b 7384AC_SUBST(all_lang_makefrags)
9f3d1bc2 7385AC_SUBST(all_languages)
cc11cc9b 7386AC_SUBST(all_selected_languages)
9f3d1bc2
BK
7387AC_SUBST(build_exeext)
7388AC_SUBST(build_install_headers_dir)
7389AC_SUBST(build_xm_file_list)
e22340b0 7390AC_SUBST(build_xm_include_list)
11642c3a 7391AC_SUBST(build_xm_defines)
a0e527e3 7392AC_SUBST(build_file_translate)
cbc59f01 7393AC_SUBST(check_languages)
033eb567 7394AC_SUBST(selftest_languages)
9f3d1bc2 7395AC_SUBST(cpp_install_dir)
2ed26f6b
ZW
7396AC_SUBST(xmake_file)
7397AC_SUBST(tmake_file)
aca600aa
AS
7398AC_SUBST(TM_ENDIAN_CONFIG)
7399AC_SUBST(TM_MULTILIB_CONFIG)
7400AC_SUBST(TM_MULTILIB_EXCEPTIONS_CONFIG)
30500d84 7401AC_SUBST(extra_gcc_objs)
9b91e436
KT
7402AC_SUBST(user_headers_inc_next_pre)
7403AC_SUBST(user_headers_inc_next_post)
9f3d1bc2 7404AC_SUBST(extra_headers_list)
46f18e7b 7405AC_SUBST(extra_objs)
9f3d1bc2 7406AC_SUBST(extra_programs)
9f3d1bc2 7407AC_SUBST(float_h_file)
cc1e60ea 7408AC_SUBST(gcc_config_arguments)
9f3d1bc2 7409AC_SUBST(gcc_gxx_include_dir)
17719d09 7410AC_SUBST(gcc_gxx_include_dir_add_sysroot)
662b9c55
IS
7411AC_SUBST(gcc_gxx_libcxx_include_dir)
7412AC_SUBST(gcc_gxx_libcxx_include_dir_add_sysroot)
9f3d1bc2 7413AC_SUBST(host_exeext)
46f18e7b 7414AC_SUBST(host_xm_file_list)
e22340b0 7415AC_SUBST(host_xm_include_list)
11642c3a 7416AC_SUBST(host_xm_defines)
476d9098 7417AC_SUBST(out_host_hook_obj)
9f3d1bc2 7418AC_SUBST(install)
d7b42618 7419AC_SUBST(lang_opt_files)
9f3d1bc2 7420AC_SUBST(lang_specs_files)
3103b7db 7421AC_SUBST(lang_tree_files)
46f18e7b 7422AC_SUBST(local_prefix)
9f3d1bc2
BK
7423AC_SUBST(md_file)
7424AC_SUBST(objc_boehm_gc)
7425AC_SUBST(out_file)
7426AC_SUBST(out_object_file)
c49a6962
JM
7427AC_SUBST(common_out_file)
7428AC_SUBST(common_out_object_file)
9f3d1bc2 7429AC_SUBST(tm_file_list)
e22340b0 7430AC_SUBST(tm_include_list)
d5355cb2 7431AC_SUBST(tm_defines)
11642c3a 7432AC_SUBST(tm_p_file_list)
e22340b0 7433AC_SUBST(tm_p_include_list)
b4c522fa
IB
7434AC_SUBST(tm_d_file_list)
7435AC_SUBST(tm_d_include_list)
b1c06fd9
IB
7436AC_SUBST(tm_rust_file_list)
7437AC_SUBST(tm_rust_include_list)
e22340b0
ZW
7438AC_SUBST(xm_file_list)
7439AC_SUBST(xm_include_list)
3d9d2476 7440AC_SUBST(xm_defines)
207bf79d 7441AC_SUBST(use_gcc_stdint)
aac69a49
NC
7442AC_SUBST(c_target_objs)
7443AC_SUBST(cxx_target_objs)
c776a6d0 7444AC_SUBST(fortran_target_objs)
b4c522fa 7445AC_SUBST(d_target_objs)
b1c06fd9 7446AC_SUBST(rust_target_objs)
11642c3a 7447AC_SUBST(target_cpu_default)
46f18e7b 7448
46f18e7b
RK
7449AC_SUBST_FILE(language_hooks)
7450
7903cebc
NN
7451# Echo link setup.
7452if test x${build} = x${host} ; then
7453 if test x${host} = x${target} ; then
7454 echo "Links are now set up to build a native compiler for ${target}." 1>&2
7455 else
7456 echo "Links are now set up to build a cross-compiler" 1>&2
7457 echo " from ${host} to ${target}." 1>&2
7458 fi
46f18e7b 7459else
7903cebc
NN
7460 if test x${host} = x${target} ; then
7461 echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
7462 echo " for ${target}." 1>&2
7463 else
7464 echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
7465 echo " from ${host} to ${target}." 1>&2
7466 fi
46f18e7b
RK
7467fi
7468
6de9cd9a
DN
7469AC_ARG_VAR(GMPLIBS,[How to link GMP])
7470AC_ARG_VAR(GMPINC,[How to find GMP include files])
7471
e357a5e0
SP
7472AC_ARG_VAR(ISLLIBS,[How to link isl])
7473AC_ARG_VAR(ISLINC,[How to find isl include files])
eae1a5d4
RG
7474if test "x${ISLLIBS}" != "x" ; then
7475 AC_DEFINE(HAVE_isl, 1, [Define if isl is in use.])
7476fi
f8bf9252 7477
ddc8de03 7478GCC_ENABLE_PLUGINS
68a607d8
DN
7479AC_SUBST(pluginlibs)
7480AC_SUBST(enable_plugin)
7481if test x"$enable_plugin" = x"yes"; then
7482 AC_DEFINE(ENABLE_PLUGIN, 1, [Define to enable plugin support.])
7483fi
7484
87e6d9dc 7485
459260ec
DM
7486# Enable --enable-host-shared
7487AC_ARG_ENABLE(host-shared,
7488[AS_HELP_STRING([--enable-host-shared],
b6cb10af 7489 [build host code as shared libraries])])
459260ec 7490AC_SUBST(enable_host_shared)
459260ec 7491
b6cb10af
MP
7492# Enable --enable-host-pie
7493AC_ARG_ENABLE(host-pie,
7494[AS_HELP_STRING([--enable-host-pie],
7495 [build host code as PIE])])
7496AC_SUBST(enable_host_pie)
459260ec 7497
33ebb0df
MP
7498# Enable --enable-host-bind-now
7499AC_ARG_ENABLE(host-bind-now,
7500[AS_HELP_STRING([--enable-host-bind-now],
7501 [link host code as BIND_NOW])])
7502AC_SUBST(enable_host_bind_now)
7503
87e6d9dc
TB
7504AC_ARG_ENABLE(libquadmath-support,
7505[AS_HELP_STRING([--disable-libquadmath-support],
7506 [disable libquadmath support for Fortran])],
7507ENABLE_LIBQUADMATH_SUPPORT=$enableval,
7508ENABLE_LIBQUADMATH_SUPPORT=yes)
7509if test "${ENABLE_LIBQUADMATH_SUPPORT}" != "no" ; then
7510 AC_DEFINE(ENABLE_LIBQUADMATH_SUPPORT, 1,
7511 [Define to 1 to enable libquadmath support])
7512fi
7513
7514
79bec923
ST
7515# Specify what hash style to use by default.
7516AC_ARG_WITH([linker-hash-style],
7517[AC_HELP_STRING([--with-linker-hash-style={sysv,gnu,both}],
7518 [specify the linker hash style])],
7519[case x"$withval" in
7520 xsysv)
7521 LINKER_HASH_STYLE=sysv
7522 ;;
7523 xgnu)
7524 LINKER_HASH_STYLE=gnu
7525 ;;
7526 xboth)
7527 LINKER_HASH_STYLE=both
7528 ;;
7529 *)
7530 AC_MSG_ERROR([$withval is an invalid option to --with-linker-hash-style])
7531 ;;
7532 esac],
7533[LINKER_HASH_STYLE=''])
7534if test x"${LINKER_HASH_STYLE}" != x; then
7535 AC_DEFINE_UNQUOTED(LINKER_HASH_STYLE, "$LINKER_HASH_STYLE",
7536 [The linker hash style])
7537fi
7538
899c78ae
JJ
7539# Specify what should be the default of -fdiagnostics-color option.
7540AC_ARG_WITH([diagnostics-color],
7541[AC_HELP_STRING([--with-diagnostics-color={never,auto,auto-if-env,always}],
7542 [specify the default of -fdiagnostics-color option
7543 auto-if-env stands for -fdiagnostics-color=auto if
7544 GCC_COLOR environment variable is present and
7545 -fdiagnostics-color=never otherwise])],
7546[case x"$withval" in
7547 xnever)
7548 DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_NO
7549 ;;
7550 xauto)
7551 DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_AUTO
7552 ;;
7553 xauto-if-env)
7554 DIAGNOSTICS_COLOR_DEFAULT=-1
7555 ;;
7556 xalways)
7557 DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_YES
7558 ;;
7559 *)
7560 AC_MSG_ERROR([$withval is an invalid option to --with-diagnostics-color])
7561 ;;
7562 esac],
7563[DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_AUTO])
7564AC_DEFINE_UNQUOTED(DIAGNOSTICS_COLOR_DEFAULT, $DIAGNOSTICS_COLOR_DEFAULT,
7565 [The default for -fdiagnostics-color option])
7566
458c8d64
BE
7567# Specify what should be the default of -fdiagnostics-urls option.
7568AC_ARG_WITH([diagnostics-urls],
7569[AC_HELP_STRING([--with-diagnostics-urls={never,auto,auto-if-env,always}],
7570 [specify the default of -fdiagnostics-urls option
7571 auto-if-env stands for -fdiagnostics-urls=auto if
7572 GCC_URLS or TERM_URLS environment variable is present and
7573 -fdiagnostics-urls=never otherwise])],
7574[case x"$withval" in
7575 xnever)
7576 DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_NO
7577 ;;
7578 xauto)
7579 DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_AUTO
7580 ;;
7581 xauto-if-env)
7582 DIAGNOSTICS_URLS_DEFAULT=-1
7583 ;;
7584 xalways)
7585 DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_YES
7586 ;;
7587 *)
7588 AC_MSG_ERROR([$withval is an invalid option to --with-diagnostics-urls])
7589 ;;
7590 esac],
7591[DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_AUTO])
7592AC_DEFINE_UNQUOTED(DIAGNOSTICS_URLS_DEFAULT, $DIAGNOSTICS_URLS_DEFAULT,
7593 [The default for -fdiagnostics-urls option])
7594
35485da9 7595# Generate gcc-driver-name.h containing GCC_DRIVER_NAME for the benefit
e53b6e56 7596# of jit/jit-playback.cc.
001ddaa8
DM
7597gcc_driver_version=`eval "${get_gcc_base_ver} $srcdir/BASE-VER"`
7598echo "gcc_driver_version: ${gcc_driver_version}"
35485da9 7599cat > gcc-driver-name.h <<EOF
001ddaa8 7600#define GCC_DRIVER_NAME "${target_noncanonical}-gcc-${gcc_driver_version}${exeext}"
35485da9
DM
7601EOF
7602
428b3812
L
7603# Check whether --enable-default-pie was given.
7604AC_ARG_ENABLE(default-pie,
7605[AS_HELP_STRING([--enable-default-pie],
7606 [enable Position Independent Executable as default])],
7607enable_default_pie=$enableval,
7608enable_default_pie=no)
9a557138 7609if test x$enable_default_pie = xyes ; then
428b3812
L
7610 AC_DEFINE(ENABLE_DEFAULT_PIE, 1,
7611 [Define if your target supports default PIE and it is enabled.])
7612fi
7613AC_SUBST([enable_default_pie])
7614
7615# Check if -fno-PIE works.
7616AC_CACHE_CHECK([for -fno-PIE option],
7617 [gcc_cv_c_no_fpie],
fee22a80
L
7618 [saved_CXXFLAGS="$CXXFLAGS"
7619 CXXFLAGS="$CXXFLAGS -fno-PIE"
22e05272 7620 AC_COMPILE_IFELSE([AC_LANG_SOURCE([int main(void) {return 0;}])],
428b3812
L
7621 [gcc_cv_c_no_fpie=yes],
7622 [gcc_cv_c_no_fpie=no])
fee22a80 7623 CXXFLAGS="$saved_CXXFLAGS"])
428b3812
L
7624
7625# Check if -no-pie works.
7626AC_CACHE_CHECK([for -no-pie option],
7627 [gcc_cv_no_pie],
7628 [saved_LDFLAGS="$LDFLAGS"
7629 LDFLAGS="$LDFLAGS -no-pie"
22e05272 7630 AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) {return 0;}])],
428b3812
L
7631 [gcc_cv_no_pie=yes],
7632 [gcc_cv_no_pie=no])
7633 LDFLAGS="$saved_LDFLAGS"])
b6cb10af
MP
7634
7635if test x$enable_host_shared = xyes; then
7636 PICFLAG=-fPIC
7637elif test x$enable_host_pie = xyes; then
7638 PICFLAG=-fPIE
7639elif test x$gcc_cv_c_no_fpie = xyes; then
7640 PICFLAG=-fno-PIE
7641else
7642 PICFLAG=
428b3812 7643fi
b6cb10af 7644
33ebb0df
MP
7645AC_SUBST([PICFLAG])
7646
b6cb10af
MP
7647if test x$enable_host_pie = xyes; then
7648 LD_PICFLAG=-pie
7649elif test x$gcc_cv_no_pie = xyes; then
7650 LD_PICFLAG=-no-pie
7651else
7652 LD_PICFLAG=
7653fi
7654
33ebb0df
MP
7655if test x$enable_host_bind_now = xyes; then
7656 LD_PICFLAG="$LD_PICFLAG -Wl,-z,now"
7657fi
7658
b6cb10af 7659AC_SUBST([LD_PICFLAG])
428b3812 7660
7e9c5bb0
L
7661# Enable Intel CET on Intel CET enabled host if jit is enabled.
7662GCC_CET_HOST_FLAGS(CET_HOST_FLAGS)
7663case x$enable_languages in
7664*jit*)
7665 ;;
7666*)
7667 CET_HOST_FLAGS=
7668 ;;
7669esac
7670AC_SUBST(CET_HOST_FLAGS)
7671
6de59c8a
IE
7672# Check linker supports '-z bndplt'
7673ld_bndplt_support=no
7674AC_MSG_CHECKING(linker -z bndplt option)
7675if test x"$ld_is_gold" = xno; then
7676 if test $in_tree_ld = yes ; then
7677 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 25 -o "$gcc_cv_gld_major_version" -gt 2; then
7678 ld_bndplt_support=yes
7679 fi
7680 elif test x$gcc_cv_ld != x; then
7681 # Check if linker supports -a bndplt option
8dc877eb 7682 if $gcc_cv_ld --help 2>&1 | grep -- '-z bndplt' > /dev/null; then
6de59c8a
IE
7683 ld_bndplt_support=yes
7684 fi
7685 fi
7686fi
7687if test x"$ld_bndplt_support" = xyes; then
7688 AC_DEFINE(HAVE_LD_BNDPLT_SUPPORT, 1,
7689 [Define if your linker supports -z bndplt])
7690fi
7691AC_MSG_RESULT($ld_bndplt_support)
7692
7e495577
AI
7693# Check linker supports '--push-state'/'--pop-state'
7694ld_pushpopstate_support=no
7695AC_MSG_CHECKING(linker --push-state/--pop-state options)
7696if test x"$ld_is_gold" = xno; then
7697 if test $in_tree_ld = yes ; then
7698 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 25 -o "$gcc_cv_gld_major_version" -gt 2; then
7699 ld_pushpopstate_support=yes
7700 fi
7701 elif test x$gcc_cv_ld != x; then
7702 # Check if linker supports --push-state/--pop-state options
8dc877eb 7703 if $gcc_cv_ld --help 2>&1 | grep -- '--push-state' > /dev/null; then
7e495577
AI
7704 ld_pushpopstate_support=yes
7705 fi
7706 fi
7707fi
7708if test x"$ld_pushpopstate_support" = xyes; then
7709 AC_DEFINE(HAVE_LD_PUSHPOPSTATE_SUPPORT, 1,
7710 [Define if your linker supports --push-state/--pop-state])
7711fi
7712AC_MSG_RESULT($ld_pushpopstate_support)
7713
a5dd6b69
MH
7714# On s390, float_t has historically been statically defined as double for no
7715# good reason. To comply with the C standard in the light of this definition,
7716# gcc has evaluated float expressions in double precision when in
7717# standards-compatible mode or when given -fexcess-precision=standard. To enable
7718# a smooth transition towards the new model used by most architectures, where
7719# gcc describes its behavior via the macro __FLT_EVAL_METHOD__ and glibc derives
7720# float_t from that, this behavior can be configured with
7721# --enable-s390-excess-float-precision. When given as enabled, that flag selects
33f92509
MH
7722# the old model. When omitted, native builds and cross compiles that have target
7723# libc headers will detect whether libc clamps float_t to double and in that
7724# case maintain the old model. Otherwise, they will default to the new model.
a5dd6b69
MH
7725AC_ARG_ENABLE(s390-excess-float-precision,
7726 [AS_HELP_STRING([--enable-s390-excess-float-precision],
7727 [on s390 targets, evaluate float with double precision
7728 when in standards-conforming mode])],
7729 [],[enable_s390_excess_float_precision=auto])
7730
7731case $target in
7732 s390*-linux*)
33f92509
MH
7733 if test x"$enable_s390_excess_float_precision" = xauto; then
7734 # Can we autodetect the behavior of the target libc?
7735 if test "$target" = "$host" -a "$host" = "$build"; then
7736 enable_s390_excess_float_precision=autodetect
7737 elif test "x$with_headers" != xno; then
7738 # cross build. are target headers available?
7739 # carefully coerce the build-system compiler to use target headers
7740 saved_CXXFLAGS="$CXXFLAGS"
47abe2ab
MH
7741 fixed_XGCC_FLAGS_FOR_TARGET=`echo "$XGCC_FLAGS_FOR_TARGET" | sed 's/-B/-idirafter/g'`
7742 CROSS_TEST_CXXFLAGS="-nostdinc $fixed_XGCC_FLAGS_FOR_TARGET"
33f92509
MH
7743 CXXFLAGS="$CROSS_TEST_CXXFLAGS"
7744 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
7745#include <math.h>
7746]])], [enable_s390_excess_float_precision=autodetect], [])
7747 CXXFLAGS="$saved_CXXFLAGS"
7748 fi
7749
7750 if test x"$enable_s390_excess_float_precision" = xautodetect; then
7751 saved_CXXFLAGS="$CXXFLAGS"
7752 if ! test "$target" = "$host" -a "$host" = "$build"; then
7753 CXXFLAGS="$CROSS_TEST_CXXFLAGS"
7754 unset CROSS_TEST_CXXFLAGS
7755 fi
7756 AC_CACHE_CHECK([for glibc clamping float_t to double],
7757 gcc_cv_float_t_clamped_to_double, [
7758 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
a5dd6b69
MH
7759#define __FLT_EVAL_METHOD__ 0
7760#include <math.h>
33f92509
MH
7761int dummy[sizeof(float_t) == sizeof(double) ? 1 : -1];
7762]])],
7763 [gcc_cv_float_t_clamped_to_double=yes],
7764 [gcc_cv_float_t_clamped_to_double=no])])
7765 CXXFLAGS="$saved_CXXFLAGS"
7766 enable_s390_excess_float_precision="$gcc_cv_float_t_clamped_to_double"
7767 else
7768 # no way to detect behavior of target libc, default to new model
7769 enable_s390_excess_float_precision=no
a5dd6b69
MH
7770 fi
7771 fi
7772
7773 GCC_TARGET_TEMPLATE(ENABLE_S390_EXCESS_FLOAT_PRECISION)
7774 if test x"$enable_s390_excess_float_precision" = xyes; then
7775 AC_DEFINE(ENABLE_S390_EXCESS_FLOAT_PRECISION, 1,
7776[Define to enable evaluating float expressions with double precision in
7777standards-compatible mode on s390 targets.])
7778 fi
7779 ;;
7780esac
7781
46f18e7b
RK
7782# Configure the subdirectories
7783# AC_CONFIG_SUBDIRS($subdirs)
7784
7785# Create the Makefile
5891b37d 7786# and configure language subdirectories
914c5af7
NN
7787AC_CONFIG_FILES($all_outputs)
7788
7789AC_CONFIG_COMMANDS([default],
cdcc6a01 7790[
f1faaabd
NN
7791case ${CONFIG_HEADERS} in
7792 *auto-host.h:config.in*)
7793 echo > cstamp-h ;;
cdcc6a01 7794esac
2ed26f6b 7795# Make sure all the subdirs exist.
c49a6962 7796for d in $subdirs doc build common c-family
2ed26f6b 7797do
2ed26f6b 7798 test -d $d || mkdir $d
2ed26f6b 7799done
0d24f4d1 7800],
35f06ae4 7801[subdirs='$subdirs'])
914c5af7 7802AC_OUTPUT