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