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