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