]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/configure.ac
dumping cleanup phase 1 -- Removing TODO_dump_func
[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
d5be1dd4 4# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
a4da6485 5# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
46f18e7b 6
1322177d 7#This file is part of GCC.
46f18e7b 8
1322177d
LB
9#GCC is free software; you can redistribute it and/or modify it under
10#the terms of the GNU General Public License as published by the Free
9dcd6f09 11#Software Foundation; either version 3, or (at your option) any later
1322177d 12#version.
46f18e7b 13
1322177d
LB
14#GCC is distributed in the hope that it will be useful, but WITHOUT
15#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17#for more details.
46f18e7b
RK
18
19#You should have received a copy of the GNU General Public License
9dcd6f09
NC
20#along with GCC; see the file COPYING3. If not see
21#<http://www.gnu.org/licenses/>.
46f18e7b 22
34a86c2b
NN
23# --------------------------------
24# Initialization and sanity checks
25# --------------------------------
26
df58e648 27AC_PREREQ(2.64)
914c5af7
NN
28AC_INIT
29AC_CONFIG_SRCDIR(tree.c)
b7cb92ad 30AC_CONFIG_HEADER(auto-host.h:config.in)
cdcc6a01 31
9f18db39
PB
32gcc_version=`cat $srcdir/BASE-VER`
33
34a86c2b 34# Determine the host, build, and target systems
914c5af7
NN
35AC_CANONICAL_BUILD
36AC_CANONICAL_HOST
37AC_CANONICAL_TARGET
34a86c2b 38
caa55b1e 39# Determine the noncanonical target name, for directory use.
392765bf 40ACX_NONCANONICAL_TARGET
caa55b1e 41
4665e56c
NN
42# Determine the target- and build-specific subdirectories
43GCC_TOPLEV_SUBDIRS
44
34a86c2b
NN
45# Set program_transform_name
46AC_ARG_PROGRAM
46f18e7b 47
75a39864
JL
48# Check for bogus environment variables.
49# Test if LIBRARY_PATH contains the notation for the current directory
50# since this would lead to problems installing/building glibc.
51# LIBRARY_PATH contains the current directory if one of the following
52# is true:
53# - one of the terminals (":" and ";") is the first or last sign
54# - two terminals occur directly after each other
55# - the path contains an element with a dot in it
56AC_MSG_CHECKING(LIBRARY_PATH variable)
57changequote(,)dnl
58case ${LIBRARY_PATH} in
59 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
60 library_path_setting="contains current directory"
61 ;;
62 *)
63 library_path_setting="ok"
64 ;;
65esac
66changequote([,])dnl
67AC_MSG_RESULT($library_path_setting)
68if test "$library_path_setting" != "ok"; then
69AC_MSG_ERROR([
70*** LIBRARY_PATH shouldn't contain the current directory when
079bd08e 71*** building gcc. Please change the environment variable
75a39864
JL
72*** and run configure again.])
73fi
74
75# Test if GCC_EXEC_PREFIX contains the notation for the current directory
76# since this would lead to problems installing/building glibc.
77# GCC_EXEC_PREFIX contains the current directory if one of the following
78# is true:
79# - one of the terminals (":" and ";") is the first or last sign
80# - two terminals occur directly after each other
81# - the path contains an element with a dot in it
82AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
83changequote(,)dnl
84case ${GCC_EXEC_PREFIX} in
85 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
86 gcc_exec_prefix_setting="contains current directory"
87 ;;
88 *)
89 gcc_exec_prefix_setting="ok"
90 ;;
91esac
92changequote([,])dnl
93AC_MSG_RESULT($gcc_exec_prefix_setting)
94if test "$gcc_exec_prefix_setting" != "ok"; then
95AC_MSG_ERROR([
96*** GCC_EXEC_PREFIX shouldn't contain the current directory when
079bd08e 97*** building gcc. Please change the environment variable
75a39864
JL
98*** and run configure again.])
99fi
100
34a86c2b
NN
101# -----------
102# Directories
103# -----------
104
105# Specify the local prefix
106local_prefix=
107AC_ARG_WITH(local-prefix,
b88ecf55
AS
108[AS_HELP_STRING([--with-local-prefix=DIR],
109 [specifies directory to put local include])],
34a86c2b
NN
110[case "${withval}" in
111yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
112no) ;;
113*) local_prefix=$with_local_prefix ;;
114esac])
115
116# Default local prefix if it is empty
117if test x$local_prefix = x; then
118 local_prefix=/usr/local
119fi
120
121# Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
122# passed in by the toplevel make and thus we'd get different behavior
123# depending on where we built the sources.
124gcc_gxx_include_dir=
125# Specify the g++ header file directory
126AC_ARG_WITH(gxx-include-dir,
b88ecf55
AS
127[AS_HELP_STRING([--with-gxx-include-dir=DIR],
128 [specifies directory to put g++ header files])],
34a86c2b
NN
129[case "${withval}" in
130yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
131no) ;;
132*) gcc_gxx_include_dir=$with_gxx_include_dir ;;
133esac])
134
0f57bf40 135# This logic must match libstdc++-v3/acinclude.m4:GLIBCXX_EXPORT_INSTALL_INFO.
34a86c2b
NN
136if test x${gcc_gxx_include_dir} = x; then
137 if test x${enable_version_specific_runtime_libs} = xyes; then
138 gcc_gxx_include_dir='${libsubdir}/include/c++'
139 else
0f57bf40
MM
140 libstdcxx_incdir='include/c++/$(version)'
141 if test x$host != x$target; then
142 libstdcxx_incdir="$target_alias/$libstdcxx_incdir"
143 fi
15c723f3 144 gcc_gxx_include_dir="\$(libsubdir)/\$(libsubdir_to_prefix)$libstdcxx_incdir"
34a86c2b
NN
145 fi
146fi
147
148AC_ARG_WITH(cpp_install_dir,
b88ecf55
AS
149[AC_HELP_STRING([--with-cpp-install-dir=DIR],
150 [install the user visible C preprocessor in DIR
151 (relative to PREFIX) as well as PREFIX/bin])],
34a86c2b
NN
152[if test x$withval = xyes; then
153 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
154elif test x$withval != xno; then
155 cpp_install_dir=$withval
156fi])
157
51b9ff45
KC
158# We would like to our source tree to be readonly. However when releases or
159# pre-releases are generated, the flex/bison generated files as well as the
160# various formats of manuals need to be included along with the rest of the
161# sources. Therefore we have --enable-generated-files-in-srcdir to do
162# just that.
163
03787dfd
KC
164AC_MSG_CHECKING([whether to place generated files in the source directory])
165 dnl generated-files-in-srcdir is disabled by default
166 AC_ARG_ENABLE(generated-files-in-srcdir,
b88ecf55
AS
167 [AS_HELP_STRING([--enable-generated-files-in-srcdir],
168 [put copies of generated files in source dir
169 intended for creating source tarballs for users
170 without texinfo bison or flex])],
03787dfd
KC
171 generated_files_in_srcdir=$enableval,
172 generated_files_in_srcdir=no)
173
174AC_MSG_RESULT($generated_files_in_srcdir)
175
176if test "$generated_files_in_srcdir" = "yes"; then
177 GENINSRC=''
03787dfd
KC
178else
179 GENINSRC='#'
03787dfd
KC
180fi
181AC_SUBST(GENINSRC)
51b9ff45 182
34a86c2b
NN
183# -------------------
184# Find default linker
185# -------------------
46f18e7b
RK
186
187# With GNU ld
188AC_ARG_WITH(gnu-ld,
b88ecf55 189[AS_HELP_STRING([--with-gnu-ld], [arrange to work with GNU ld])],
df6faf79
JW
190gnu_ld_flag="$with_gnu_ld",
191gnu_ld_flag=no)
46f18e7b 192
ab339d62
AO
193# With pre-defined ld
194AC_ARG_WITH(ld,
b88ecf55 195[AS_HELP_STRING([--with-ld], [arrange to use the specified ld (full pathname)])],
3ccc3a56
AO
196DEFAULT_LINKER="$with_ld")
197if test x"${DEFAULT_LINKER+set}" = x"set"; then
198 if test ! -x "$DEFAULT_LINKER"; then
99c012a8 199 AC_MSG_ERROR([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
e154a394 200 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
201 gnu_ld_flag=yes
202 fi
119d24d1
KG
203 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
204 [Define to enable the use of a default linker.])
ab339d62
AO
205fi
206
2091ff66
NF
207gnu_ld=`if test x"$gnu_ld_flag" = x"yes"; then echo 1; else echo 0; fi`
208AC_DEFINE_UNQUOTED(HAVE_GNU_LD, $gnu_ld, [Define if using GNU ld.])
209
34a86c2b
NN
210AC_MSG_CHECKING([whether a default linker was specified])
211if test x"${DEFAULT_LINKER+set}" = x"set"; then
212 if test x"$gnu_ld_flag" = x"no"; then
213 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
214 else
215 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
216 fi
217else
218 AC_MSG_RESULT(no)
219fi
220
d594623a
L
221# With demangler in GNU ld
222AC_ARG_WITH(demangler-in-ld,
b88ecf55 223[AS_HELP_STRING([--with-demangler-in-ld], [try to use demangler in GNU ld])],
d594623a
L
224demangler_in_ld="$with_demangler_in_ld",
225demangler_in_ld=no)
226
34a86c2b
NN
227# ----------------------
228# Find default assembler
229# ----------------------
230
46f18e7b
RK
231# With GNU as
232AC_ARG_WITH(gnu-as,
b88ecf55 233[AS_HELP_STRING([--with-gnu-as], [arrange to work with GNU as])],
df6faf79
JW
234gas_flag="$with_gnu_as",
235gas_flag=no)
46f18e7b 236
ab339d62 237AC_ARG_WITH(as,
b88ecf55 238[AS_HELP_STRING([--with-as], [arrange to use the specified as (full pathname)])],
3ccc3a56
AO
239DEFAULT_ASSEMBLER="$with_as")
240if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
241 if test ! -x "$DEFAULT_ASSEMBLER"; then
99c012a8 242 AC_MSG_ERROR([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
e154a394 243 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
244 gas_flag=yes
245 fi
119d24d1
KG
246 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
247 [Define to enable the use of a default assembler.])
3ccc3a56 248fi
ab339d62 249
dc60b775
CD
250gnu_as=`if test x"$gas_flag" = x"yes"; then echo 1; else echo 0; fi`
251AC_DEFINE_UNQUOTED(HAVE_GNU_AS, $gnu_as, [Define if using GNU as.])
252
34a86c2b
NN
253AC_MSG_CHECKING([whether a default assembler was specified])
254if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
255 if test x"$gas_flag" = x"no"; then
256 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
4e88d51b 257 else
34a86c2b 258 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
4e88d51b 259 fi
34a86c2b
NN
260else
261 AC_MSG_RESULT(no)
4e88d51b 262fi
46f18e7b 263
34a86c2b
NN
264# ---------------
265# Find C compiler
266# ---------------
13c22933 267
426ca3ca
RO
268# If a non-executable a.out is present (e.g. created by GNU as above even if
269# invoked with -v only), the IRIX 6 native ld just overwrites the existing
270# file, even when creating an executable, so an execution test fails.
271# Remove possible default executable files to avoid this.
272#
273# FIXME: This really belongs into AC_PROG_CC and can be removed once
274# Autoconf includes it.
275rm -f a.out a.exe b.out
276
414d23ae
HPN
277# Find the native compiler
278AC_PROG_CC
3b620440 279AM_PROG_CC_C_O
00020c16 280AC_PROG_CXX
3d4e720a
ST
281ACX_PROG_GNAT([-I"$srcdir"/ada])
282
414d23ae
HPN
283# autoconf is lame and doesn't give us any substitution variable for this.
284if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
285 NO_MINUS_C_MINUS_O=yes
286else
287 OUTPUT_OPTION='-o $@'
288fi
289AC_SUBST(NO_MINUS_C_MINUS_O)
290AC_SUBST(OUTPUT_OPTION)
291
ec6c7392
PB
292# Remove the -O2: for historical reasons, unless bootstrapping we prefer
293# optimizations to be activated explicitly by the toplevel.
294case "$CC" in
295 */prev-gcc/xgcc*) ;;
296 *) CFLAGS=`echo $CFLAGS | sed "s/-O[[s0-9]]* *//" ` ;;
297esac
298AC_SUBST(CFLAGS)
299
73458fb7
NN
300# -------------------------
301# Check C compiler features
302# -------------------------
303
60d26958 304AC_USE_SYSTEM_EXTENSIONS
34a86c2b
NN
305AC_PROG_CPP
306AC_C_INLINE
34a86c2b 307
480767a9
ILT
308AC_SYS_LARGEFILE
309
34a86c2b 310# sizeof(char) is 1 by definition.
bf3b7cd3
JD
311AC_CHECK_SIZEOF(void *)
312AC_CHECK_SIZEOF(short)
313AC_CHECK_SIZEOF(int)
314AC_CHECK_SIZEOF(long)
5ec1c5e6
KC
315AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
316AC_CHECK_TYPES([__int64], [AC_CHECK_SIZEOF(__int64)])
7c2a2dbf 317GCC_STDINT_TYPES
34a86c2b 318
34a86c2b
NN
319# ---------------------
320# Warnings and checking
321# ---------------------
322
b5472e1d
NN
323# Check $CC warning features (if it's GCC).
324# We want to use -pedantic, but we don't want warnings about
325# * 'long long'
326# * variadic macros
89a42ac8 327# * overlong strings
b5472e1d
NN
328# So, we only use -pedantic if we can disable those warnings.
329
f6e377f8 330ACX_PROG_CC_WARNING_OPTS(
00020c16 331 m4_quote(m4_do([-W -Wall -Wwrite-strings -Wcast-qual])), [loose_warn])
f6e377f8 332ACX_PROG_CC_WARNING_OPTS(
00020c16
ILT
333 m4_quote(m4_do([-Wstrict-prototypes -Wmissing-prototypes])),
334 [c_loose_warn])
335ACX_PROG_CC_WARNING_OPTS(
336 m4_quote(m4_do([-Wmissing-format-attribute])), [strict_warn])
337ACX_PROG_CC_WARNING_OPTS(
338 m4_quote(m4_do([-Wold-style-definition -Wc++-compat])), [c_strict_warn])
f6e377f8 339ACX_PROG_CC_WARNING_ALMOST_PEDANTIC(
75c9cbe3
AS
340 m4_quote(m4_do([-Wno-long-long -Wno-variadic-macros ],
341 [-Wno-overlength-strings])), [strict_warn])
3bbd5a19
PB
342ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual], [strict_warn])
343
344# The above macros do nothing if the compiler is not GCC. However, the
00020c16
ILT
345# Makefile has more goo to add other flags, so these variables are used
346# to enable warnings only for GCC.
414d23ae 347warn_cflags=
00020c16 348warn_cxxflags=
414d23ae
HPN
349if test "x$GCC" = "xyes"; then
350 warn_cflags='$(GCC_WARN_CFLAGS)'
00020c16 351 warn_cxxflags='$(GCC_WARN_CXXFLAGS)'
414d23ae
HPN
352fi
353AC_SUBST(warn_cflags)
00020c16 354AC_SUBST(warn_cxxflags)
414d23ae 355
8b1f719a 356# Enable expensive internal checks
a1286ef5
ZW
357is_release=
358if test x"`cat $srcdir/DEV-PHASE`" != xexperimental; then
359 is_release=yes
360fi
dd859b8a 361
a494747c 362AC_ARG_ENABLE(checking,
b88ecf55
AS
363[AS_HELP_STRING([[--enable-checking[=LIST]]],
364 [enable expensive run-time checks. With LIST,
365 enable only specific categories of checks.
366 Categories are: yes,no,all,none,release.
367 Flags are: assert,df,fold,gc,gcac,gimple,misc,
368 rtlflag,rtl,runtime,tree,valgrind,types])],
e1bbfc5c
NS
369[ac_checking_flags="${enableval}"],[
370# Determine the default checks.
371if test x$is_release = x ; then
372 ac_checking_flags=yes
373else
374 ac_checking_flags=release
375fi])
e1bbfc5c 376IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
04c3028a 377for check in release $ac_checking_flags
e1bbfc5c
NS
378do
379 case $check in
cdce5c16 380 # these set all the flags to specific states
0d475361 381 yes) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking= ;
cdce5c16 382 ac_fold_checking= ; ac_gc_checking=1 ;
726a989a 383 ac_gc_always_collect= ; ac_gimple_checking=1 ; ac_rtl_checking= ;
232b67d9 384 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
7e98624c 385 ac_tree_checking=1 ; ac_valgrind_checking= ;
1b24a790 386 ac_types_checking=1 ;;
3089f8b5 387 no|none) ac_assert_checking= ; ac_checking= ; ac_df_checking= ;
cdce5c16 388 ac_fold_checking= ; ac_gc_checking= ;
726a989a 389 ac_gc_always_collect= ; ac_gimple_checking= ; ac_rtl_checking= ;
232b67d9 390 ac_rtlflag_checking= ; ac_runtime_checking= ;
7e98624c
RG
391 ac_tree_checking= ; ac_valgrind_checking= ;
392 ac_types_checking= ;;
3089f8b5 393 all) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
cdce5c16 394 ac_fold_checking=1 ; ac_gc_checking=1 ;
726a989a 395 ac_gc_always_collect=1 ; ac_gimple_checking=1 ; ac_rtl_checking=1 ;
cdce5c16 396 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
7e98624c
RG
397 ac_tree_checking=1 ; ac_valgrind_checking= ;
398 ac_types_checking=1 ;;
3089f8b5 399 release) ac_assert_checking=1 ; ac_checking= ; ac_df_checking= ;
cdce5c16 400 ac_fold_checking= ; ac_gc_checking= ;
726a989a 401 ac_gc_always_collect= ; ac_gimple_checking= ; ac_rtl_checking= ;
cdce5c16 402 ac_rtlflag_checking= ; ac_runtime_checking=1 ;
7e98624c
RG
403 ac_tree_checking= ; ac_valgrind_checking= ;
404 ac_types_checking= ;;
cdce5c16 405 # these enable particular checks
e1bbfc5c 406 assert) ac_assert_checking=1 ;;
3089f8b5 407 df) ac_df_checking=1 ;;
e1bbfc5c
NS
408 fold) ac_fold_checking=1 ;;
409 gc) ac_gc_checking=1 ;;
410 gcac) ac_gc_always_collect=1 ;;
726a989a 411 gimple) ac_gimple_checking=1 ;;
e1bbfc5c 412 misc) ac_checking=1 ;;
e1bbfc5c 413 rtl) ac_rtl_checking=1 ;;
cdce5c16 414 rtlflag) ac_rtlflag_checking=1 ;;
b53ef395 415 runtime) ac_runtime_checking=1 ;;
e1bbfc5c 416 tree) ac_tree_checking=1 ;;
7e98624c 417 types) ac_types_checking=1 ;;
cdce5c16 418 valgrind) ac_valgrind_checking=1 ;;
e1bbfc5c
NS
419 *) AC_MSG_ERROR(unknown check category $check) ;;
420 esac
421done
422IFS="$ac_save_IFS"
423
204250d2 424nocommon_flag=""
119d24d1
KG
425if test x$ac_checking != x ; then
426 AC_DEFINE(ENABLE_CHECKING, 1,
427[Define if you want more run-time sanity checks. This one gets a grab
428 bag of miscellaneous but relatively cheap checks.])
204250d2 429 nocommon_flag=-fno-common
119d24d1 430fi
204250d2 431AC_SUBST(nocommon_flag)
3089f8b5
PB
432if test x$ac_df_checking != x ; then
433 AC_DEFINE(ENABLE_DF_CHECKING, 1,
434[Define if you want more run-time sanity checks for dataflow.])
435fi
06c37c96
NS
436if test x$ac_assert_checking != x ; then
437 AC_DEFINE(ENABLE_ASSERT_CHECKING, 1,
438[Define if you want assertions enabled. This is a cheap check.])
439fi
726a989a
RB
440if test x$ac_gimple_checking != x ; then
441 AC_DEFINE(ENABLE_GIMPLE_CHECKING, 1,
442[Define if you want operations on GIMPLE (the basic data structure of
443the high-level optimizers) to be checked for dynamic type safety at
444runtime. This is moderately expensive.])
445fi
232b67d9 446GCC_TARGET_TEMPLATE(ENABLE_RUNTIME_CHECKING)
b53ef395
NS
447if test x$ac_runtime_checking != x ; then
448 AC_DEFINE(ENABLE_RUNTIME_CHECKING, 1,
449[Define if you want runtime assertions enabled. This is a cheap check.])
450fi
119d24d1
KG
451if test x$ac_tree_checking != x ; then
452 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
453[Define if you want all operations on trees (the basic data
454 structure of the front ends) to be checked for dynamic type safety
13f05fd0
BM
455 at runtime. This is moderately expensive. The tree browser debugging
456 routines will also be enabled by this option.
457 ])
458 TREEBROWSER=tree-browser.o
119d24d1 459fi
7e98624c
RG
460if test x$ac_types_checking != x ; then
461 AC_DEFINE(ENABLE_TYPES_CHECKING, 1,
462[Define if you want all gimple types to be verified after gimplifiation.
463 This is cheap.
464 ])
465fi
13f05fd0 466AC_SUBST(TREEBROWSER)
119d24d1
KG
467if test x$ac_rtl_checking != x ; then
468 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
469[Define if you want all operations on RTL (the basic data structure
470 of the optimizer and back end) to be checked for dynamic type safety
471 at runtime. This is quite expensive.])
472fi
4c76f856
JJ
473if test x$ac_rtlflag_checking != x ; then
474 AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
475[Define if you want RTL flag accesses to be checked against the RTL
476 codes that are supported for each access macro. This is relatively
477 cheap.])
478fi
119d24d1
KG
479if test x$ac_gc_checking != x ; then
480 AC_DEFINE(ENABLE_GC_CHECKING, 1,
481[Define if you want the garbage collector to do object poisoning and
482 other memory allocation checks. This is quite expensive.])
483fi
484if test x$ac_gc_always_collect != x ; then
485 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
486[Define if you want the garbage collector to operate in maximally
487 paranoid mode, validating the entire heap and collecting garbage at
488 every opportunity. This is extremely expensive.])
489fi
5dfa45d0
JJ
490if test x$ac_fold_checking != x ; then
491 AC_DEFINE(ENABLE_FOLD_CHECKING, 1,
492[Define if you want fold checked that it never destructs its argument.
493 This is quite expensive.])
494fi
414d23ae
HPN
495valgrind_path_defines=
496valgrind_command=
6938ec6c
NN
497
498dnl # This check AC_REQUIREs various stuff, so it *must not* be inside
499dnl # an if statement. This was the source of very frustrating bugs
500dnl # in converting to autoconf 2.5x!
501AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
502
cdce5c16 503if test x$ac_valgrind_checking != x ; then
414d23ae
HPN
504 # It is certainly possible that there's valgrind but no valgrind.h.
505 # GCC relies on making annotations so we must have both.
a207b594 506 AC_MSG_CHECKING(for VALGRIND_DISCARD in <valgrind/memcheck.h>)
f04f1d2c
KC
507 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
508 [[#include <valgrind/memcheck.h>
a207b594
HPN
509#ifndef VALGRIND_DISCARD
510#error VALGRIND_DISCARD not defined
f04f1d2c 511#endif]])],
a207b594
HPN
512 [gcc_cv_header_valgrind_memcheck_h=yes],
513 [gcc_cv_header_valgrind_memcheck_h=no])
514 AC_MSG_RESULT($gcc_cv_header_valgrind_memcheck_h)
14011ca4 515 AC_MSG_CHECKING(for VALGRIND_DISCARD in <memcheck.h>)
f04f1d2c
KC
516 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
517 [[#include <memcheck.h>
14011ca4
AJ
518#ifndef VALGRIND_DISCARD
519#error VALGRIND_DISCARD not defined
f04f1d2c
KC
520#endif]])],
521 [gcc_cv_header_memcheck_h=yes],
522 [gcc_cv_header_memcheck_h=no])
14011ca4 523 AC_MSG_RESULT($gcc_cv_header_memcheck_h)
414d23ae
HPN
524 AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
525 [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
a207b594
HPN
526 if test "x$valgrind_path" = "x" \
527 || (test $have_valgrind_h = no \
528 && test $gcc_cv_header_memcheck_h = no \
529 && test $gcc_cv_header_valgrind_memcheck_h = no); then
530 AC_MSG_ERROR([*** Can't find both valgrind and valgrind/memcheck.h, memcheck.h or valgrind.h])
414d23ae
HPN
531 fi
532 valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
533 valgrind_command="$valgrind_path -q"
534 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
535[Define if you want to run subprograms and generated programs
536 through valgrind (a memory checker). This is extremely expensive.])
a207b594
HPN
537 if test $gcc_cv_header_valgrind_memcheck_h = yes; then
538 AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1,
539 [Define if valgrind's valgrind/memcheck.h header is installed.])
540 fi
14011ca4
AJ
541 if test $gcc_cv_header_memcheck_h = yes; then
542 AC_DEFINE(HAVE_MEMCHECK_H, 1,
543 [Define if valgrind's memcheck.h header is installed.])
544 fi
414d23ae
HPN
545fi
546AC_SUBST(valgrind_path_defines)
547AC_SUBST(valgrind_command)
51d0e20c 548
22aa533e
NS
549# Enable code coverage collection
550AC_ARG_ENABLE(coverage,
b88ecf55
AS
551[AS_HELP_STRING([[--enable-coverage[=LEVEL]]],
552 [enable compiler's code coverage collection.
553 Use to measure compiler performance and locate
554 unused parts of the compiler. With LEVEL, specify
555 optimization. Values are opt, noopt,
556 default is noopt])],
22aa533e 557[case "${enableval}" in
6dd297da
NN
558 yes|noopt)
559 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O0"
560 ;;
561 opt)
562 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O2"
563 ;;
564 no)
565 # a.k.a. --disable-coverage
566 coverage_flags=""
567 ;;
568 *)
569 AC_MSG_ERROR(unknown coverage setting $enableval)
570 ;;
22aa533e 571esac],
2043c38e 572[coverage_flags=""])
22aa533e
NS
573AC_SUBST(coverage_flags)
574
439a7e54 575AC_ARG_ENABLE(gather-detailed-mem-stats,
b88ecf55
AS
576[AS_HELP_STRING([--enable-gather-detailed-mem-stats],
577 [enable detailed memory allocation stats gathering])], [],
439a7e54
DN
578[enable_gather_detailed_mem_stats=no])
579if test x$enable_gather_detailed_mem_stats = xyes ; then
580 AC_DEFINE(GATHER_STATISTICS, 1,
581 [Define to enable detailed memory allocation stats gathering.])
582fi
583
73458fb7
NN
584# -------------------------------
585# Miscenalleous configure options
586# -------------------------------
34a86c2b 587
00020c16
ILT
588# See if we are building gcc with C++.
589AC_ARG_ENABLE(build-with-cxx,
b88ecf55
AS
590[AS_HELP_STRING([--enable-build-with-cxx],
591 [build with C++ compiler instead of C compiler])],
00020c16
ILT
592ENABLE_BUILD_WITH_CXX=$enableval,
593ENABLE_BUILD_WITH_CXX=no)
594AC_SUBST(ENABLE_BUILD_WITH_CXX)
5427046f
ILT
595if test "$ENABLE_BUILD_WITH_CXX" = "yes"; then
596 AC_DEFINE(ENABLE_BUILD_WITH_CXX, 1,
597 [Define if building with C++.])
598fi
00020c16 599
34a86c2b
NN
600# With stabs
601AC_ARG_WITH(stabs,
b88ecf55
AS
602[AS_HELP_STRING([--with-stabs],
603 [arrange to use stabs instead of host debug format])],
34a86c2b
NN
604stabs="$with_stabs",
605stabs=no)
606
34a86c2b
NN
607# Determine whether or not multilibs are enabled.
608AC_ARG_ENABLE(multilib,
b88ecf55
AS
609[AS_HELP_STRING([--enable-multilib],
610 [enable library support for multiple ABIs])],
34a86c2b
NN
611[], [enable_multilib=yes])
612AC_SUBST(enable_multilib)
3ecc3258 613
4bafaa6f
L
614# Enable __cxa_atexit for C++.
615AC_ARG_ENABLE(__cxa_atexit,
b88ecf55 616[AS_HELP_STRING([--enable-__cxa_atexit], [enable __cxa_atexit for C++])],
4bafaa6f 617[], [])
2121a768 618
486aa804 619# Enable C extension for decimal float if target supports it.
3c39bca6 620GCC_AC_ENABLE_DECIMAL_FLOAT([$target])
486aa804 621
79b87c74 622dfp=`if test $enable_decimal_float != no; then echo 1; else echo 0; fi`
486aa804
BE
623AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_FLOAT, $dfp,
624[Define to 1 to enable decimal float extension to C.])
625
cc0ae0ca
L
626# Use default_decimal_float for dependency.
627enable_decimal_float=$default_decimal_float
628
79b87c74
MM
629bid=`if test $enable_decimal_float = bid; then echo 1; else echo 0; fi`
630AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_BID_FORMAT, $bid,
631[Define to 1 to specify that we are using the BID decimal floating
632point format instead of DPD])
633
ab22c1fa
CF
634# Enable C extension for fixed-point arithmetic.
635AC_ARG_ENABLE(fixed-point,
b88ecf55
AS
636[AS_HELP_STRING([--enable-fixed-point],
637 [enable fixed-point arithmetic extension to C])],
638[],
ab22c1fa
CF
639[
640 case $target in
641 mips*-*-*)
d5be1dd4
RS
642 case $host in
643 mips*-sgi-irix*)
84f47d20 644 AC_MSG_WARN([fixed-point is not supported on IRIX, ignored])
d5be1dd4
RS
645 enable_fixed_point=no
646 ;;
647 *)
648 enable_fixed_point=yes
649 ;;
650 esac
ab22c1fa
CF
651 ;;
652 *)
84f47d20 653 AC_MSG_WARN([fixed-point is not supported for this target, ignored])
ab22c1fa
CF
654 enable_fixed_point=no
655 ;;
656 esac
657])
658AC_SUBST(enable_fixed_point)
659
660fixedpoint=`if test $enable_fixed_point = yes; then echo 1; else echo 0; fi`
661AC_DEFINE_UNQUOTED(ENABLE_FIXED_POINT, $fixedpoint,
662[Define to 1 to enable fixed-point arithmetic extension to C.])
663
0bbb1697
RK
664# Enable threads
665# Pass with no value to take the default
666# Pass with a value to specify a thread package
667AC_ARG_ENABLE(threads,
b88ecf55
AS
668[AS_HELP_STRING([[--enable-threads[=LIB]]],
669 [enable thread usage for target GCC,
670 using LIB thread package])],,
615be2cf 671[enable_threads=''])
0bbb1697 672
8dea1cca 673AC_ARG_ENABLE(tls,
b88ecf55
AS
674[AS_HELP_STRING([--enable-tls],
675 [enable or disable generation of tls code
676 overriding the assembler check for tls support])],
8dea1cca
DD
677[
678 case $enable_tls in
679 yes | no) ;;
680 *) AC_MSG_ERROR(['$enable_tls' is an invalid value for --enable-tls.
681Valid choices are 'yes' and 'no'.]) ;;
682 esac
683], [enable_tls=''])
684
d8bb17c8 685AC_ARG_ENABLE(objc-gc,
b88ecf55
AS
686[AS_HELP_STRING([--enable-objc-gc],
687 [enable the use of Boehm's garbage collector with
688 the GNU Objective-C runtime])],
2618c083 689if test x$enable_objc_gc = xno; then
d8bb17c8
OP
690 objc_boehm_gc=''
691else
692 objc_boehm_gc=1
693fi,
694objc_boehm_gc='')
695
90e6a802 696AC_ARG_WITH(dwarf2,
b88ecf55 697[AS_HELP_STRING([--with-dwarf2], [force the default debug format to be DWARF 2])],
87921b81 698dwarf2="$with_dwarf2",
90e6a802
RL
699dwarf2=no)
700
50503ac8 701AC_ARG_ENABLE(shared,
b88ecf55 702[AS_HELP_STRING([--disable-shared], [don't provide a shared libgcc])],
c785e0fa
AO
703[
704 case $enable_shared in
705 yes | no) ;;
706 *)
707 enable_shared=no
708 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
709 for pkg in $enableval; do
710 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
711 enable_shared=yes
712 fi
713 done
714 IFS="$ac_save_ifs"
715 ;;
716 esac
717], [enable_shared=yes])
50503ac8
RH
718AC_SUBST(enable_shared)
719
160633c6 720AC_ARG_WITH(build-sysroot,
b88ecf55
AS
721 [AS_HELP_STRING([--with-build-sysroot=sysroot],
722 [use sysroot as the system root during the build])])
160633c6 723
4977bab6 724AC_ARG_WITH(sysroot,
b88ecf55
AS
725[AS_HELP_STRING([[--with-sysroot[=DIR]]],
726 [search for usr/lib, usr/include, et al, within DIR])],
4977bab6
ZW
727[
728 case ${with_sysroot} in
caa55b1e 729 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_noncanonical}/sys-root' ;;
4977bab6
ZW
730 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
731 esac
732
733 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
14da6073 734 CROSS_SYSTEM_HEADER_DIR='$(TARGET_SYSTEM_ROOT)$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
b28250ab 735
748670c2
RS
736 if test "x$prefix" = xNONE; then
737 test_prefix=/usr/local
738 else
739 test_prefix=$prefix
740 fi
047d636f 741 if test "x$exec_prefix" = xNONE; then
748670c2 742 test_exec_prefix=$test_prefix
047d636f 743 else
748670c2 744 test_exec_prefix=$exec_prefix
047d636f
DJ
745 fi
746 case ${TARGET_SYSTEM_ROOT} in
91710e62 747 "${test_prefix}"|"${test_prefix}/"*|\
748670c2
RS
748 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
749 '${prefix}'|'${prefix}/'*|\
91710e62 750 '${exec_prefix}'|'${exec_prefix}/'*)
047d636f
DJ
751 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
752 TARGET_SYSTEM_ROOT_DEFINE="$t"
753 ;;
754 esac
4977bab6
ZW
755], [
756 TARGET_SYSTEM_ROOT=
db720d9a 757 TARGET_SYSTEM_ROOT_DEFINE=
4977bab6
ZW
758 CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include'
759])
760AC_SUBST(TARGET_SYSTEM_ROOT)
761AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
762AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
763
e11ddaf5
NS
764AC_ARG_WITH(specs,
765 [AS_HELP_STRING([--with-specs=SPECS],
766 [add SPECS to driver command-line processing])],
767 [CONFIGURE_SPECS=$withval],
768 [CONFIGURE_SPECS=]
769)
770AC_SUBST(CONFIGURE_SPECS)
771
2f41c1d6
PB
772ACX_PKGVERSION([GCC])
773ACX_BUGURL([http://gcc.gnu.org/bugs.html])
774
e4c9c075
PB
775# Sanity check enable_languages in case someone does not run the toplevel
776# configure # script.
777AC_ARG_ENABLE(languages,
b88ecf55 778[AS_HELP_STRING([--enable-languages=LIST], [specify which front-ends to build])],
e4c9c075
PB
779[case ,${enable_languages}, in
780 ,,|,yes,)
781 # go safe -- we cannot be much sure without the toplevel
782 # configure's
783 # analysis of which target libs are present and usable
784 enable_languages=c
785 ;;
786 *,all,*)
787 AC_MSG_ERROR([only the toplevel supports --enable-languages=all])
788 ;;
789 *,c,*)
790 ;;
791 *)
792 enable_languages=c,${enable_languages}
793 ;;
794esac],
795[enable_languages=c])
796
aca600aa 797AC_ARG_WITH(multilib-list,
b88ecf55 798[AS_HELP_STRING([--with-multilib-list], [select multilibs (SH only)])],
aca600aa
AS
799:,
800with_multilib_list=default)
801
73458fb7
NN
802# -------------------------
803# Checks for other programs
804# -------------------------
61842080 805
e9a25f70
JL
806AC_PROG_MAKE_SET
807
46f18e7b
RK
808# Find some useful tools
809AC_PROG_AWK
776dc15d 810# We need awk to create options.c and options.h.
2c4902b9
NN
811# Bail out if it's missing.
812case ${AWK} in
813 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
814esac
815
99e757d5 816gcc_AC_PROG_LN_S
ad6717df 817ACX_PROG_LN($LN_S)
46f18e7b 818AC_PROG_RANLIB
343a6100
MM
819case "${host}" in
820*-*-darwin*)
821 # By default, the Darwin ranlib will not treat common symbols as
822 # definitions when building the archive table of contents. Other
823 # ranlibs do that; pass an option to the Darwin ranlib that makes
824 # it behave similarly.
825 ranlib_flags="-c"
826 ;;
827*)
828 ranlib_flags=""
829esac
830AC_SUBST(ranlib_flags)
831
99e757d5 832gcc_AC_PROG_INSTALL
46f18e7b 833
3a000df0
KC
834# See if cmp has --ignore-initial.
835gcc_AC_PROG_CMP_IGNORE_INITIAL
836
955be633
JM
837# See if we have the mktemp command.
838AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
839
7c27e184
PB
840# See if makeinfo has been installed and is modern enough
841# that we can use it.
3bbd5a19 842ACX_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
09fa0705 843 [GNU texinfo.* \([0-9][0-9.]*\)],
7326a39e 844 [4.[7-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*])
09fa0705
ZW
845if test $gcc_cv_prog_makeinfo_modern = no; then
846 AC_MSG_WARN([
847*** Makeinfo is missing or too old.
17db6582 848*** Info documentation will not be built.])
09fa0705 849 BUILD_INFO=
09fa0705 850else
7c27e184 851 BUILD_INFO=info
09fa0705 852fi
7c27e184 853AC_SUBST(BUILD_INFO)
09fa0705 854
3f896fc2
JM
855# Is pod2man recent enough to regenerate manpages?
856AC_MSG_CHECKING([for recent Pod::Man])
7be33370 857if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
fd939e46 858 AC_MSG_RESULT(yes)
7c27e184 859 GENERATED_MANPAGES=generated-manpages
fd939e46
JM
860else
861 AC_MSG_RESULT(no)
862 GENERATED_MANPAGES=
863fi
7c27e184 864AC_SUBST(GENERATED_MANPAGES)
fd939e46 865
3bbd5a19
PB
866MISSING="${CONFIG_SHELL-/bin/sh} $ac_aux_dir/missing"
867
1e608388
ZW
868# How about lex?
869dnl Don't use AC_PROG_LEX; we insist on flex.
870dnl LEXLIB is not useful in gcc.
7c27e184 871AC_CHECK_PROGS([FLEX], flex, [$MISSING flex])
1e608388
ZW
872
873# Bison?
7c27e184
PB
874AC_CHECK_PROGS([BISON], bison, [$MISSING bison])
875
876# Binutils are not build modules, unlike bison/flex/makeinfo. So we
877# check for build == host before using them.
1e608388 878
f6a874ac 879# NM
414adbdd
GK
880if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
881 && test -d ../binutils ; then
bfa912a8 882 NM='${objdir}/../binutils/nm-new'
f6a874ac
JW
883else
884 AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm)
885fi
886
887# AR
414adbdd
GK
888if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
889 && test -d ../binutils ; then
bfa912a8 890 AR='${objdir}/../binutils/ar'
f6a874ac
JW
891else
892 AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar)
893fi
894
895
73458fb7
NN
896# --------------------
897# Checks for C headers
898# --------------------
899
ca9bc441
NN
900# Need to reject headers which give warnings, so that the -Werror bootstrap
901# works later. *sigh* This needs to come before all header checks.
902AC_PROG_CPP_WERROR
903
73458fb7
NN
904AC_HEADER_STDC
905AC_HEADER_TIME
4f4e53dd 906ACX_HEADER_STRING
73458fb7 907AC_HEADER_SYS_WAIT
dfb77e37 908AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h iconv.h \
1072ec3f 909 fcntl.h unistd.h sys/file.h sys/time.h sys/mman.h \
73458fb7 910 sys/resource.h sys/param.h sys/times.h sys/stat.h \
56694dd9 911 direct.h malloc.h langinfo.h ldfcn.h locale.h wchar.h)
73458fb7
NN
912
913# Check for thread headers.
914AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
915AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
916
917# These tests can't be done till we know if we have limits.h.
918gcc_AC_C_CHAR_BIT
9791c75c 919AC_C_BIGENDIAN
73458fb7 920
5427046f
ILT
921# ----------------------
922# Checks for C++ headers
923# ----------------------
924
c658f0ce
ILT
925dnl Autoconf will give an error in the configure script if there is no
926dnl C++ preprocessor. Hack to prevent that.
927m4_pushdef([AC_MSG_ERROR], m4_defn([AC_MSG_WARN]))[]dnl
928AC_PROG_CXXCPP
929m4_popdef([AC_MSG_ERROR])[]dnl
930
5427046f
ILT
931AC_LANG_PUSH(C++)
932
933AC_CHECK_HEADERS(unordered_map)
934AC_CHECK_HEADERS(tr1/unordered_map)
935AC_CHECK_HEADERS(ext/hash_map)
936
937AC_LANG_POP(C++)
938
73458fb7
NN
939# --------
940# UNSORTED
941# --------
942
73458fb7 943
4e70264f
ZW
944# These libraries may be used by collect2.
945# We may need a special search path to get them linked.
946AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
947[save_LIBS="$LIBS"
7f2749d4 948for libs in '' -lld -lmld \
4e70264f
ZW
949 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
950 '-L/usr/lib/cmplrs/cc3.11 -lmld'
951do
952 LIBS="$libs"
953 AC_TRY_LINK_FUNC(ldopen,
954 [gcc_cv_collect2_libs="$libs"; break])
955done
956LIBS="$save_LIBS"
957test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
958case $gcc_cv_collect2_libs in
959 "none required") ;;
960 *) COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
961esac
962AC_SUBST(COLLECT2_LIBS)
963
7f2749d4
RK
964# When building Ada code on Alpha, we need exc_resume which is usually in
965# -lexc. So test for it.
966save_LIBS="$LIBS"
967LIBS=
968AC_SEARCH_LIBS(exc_resume, exc)
969GNAT_LIBEXC="$LIBS"
970LIBS="$save_LIBS"
971AC_SUBST(GNAT_LIBEXC)
972
62c9aa5f
ZW
973# Some systems put ldexp and frexp in libm instead of libc; assume
974# they're both in the same place. jcf-dump needs them.
975save_LIBS="$LIBS"
976LIBS=
977AC_SEARCH_LIBS(ldexp, m)
978LDEXP_LIB="$LIBS"
979LIBS="$save_LIBS"
980AC_SUBST(LDEXP_LIB)
981
7636d567
JW
982# Use <inttypes.h> only if it exists,
983# doesn't clash with <sys/types.h>, and declares intmax_t.
984AC_MSG_CHECKING(for inttypes.h)
985AC_CACHE_VAL(gcc_cv_header_inttypes_h,
f04f1d2c
KC
986[AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
987[[#include <sys/types.h>
988#include <inttypes.h>]],
989 [[intmax_t i = -1;]])],
9da0e39b 990 [gcc_cv_header_inttypes_h=yes],
f04f1d2c 991 [gcc_cv_header_inttypes_h=no])])
7636d567 992AC_MSG_RESULT($gcc_cv_header_inttypes_h)
9da0e39b 993if test $gcc_cv_header_inttypes_h = yes; then
119d24d1
KG
994 AC_DEFINE(HAVE_INTTYPES_H, 1,
995 [Define if you have a working <inttypes.h> header file.])
9da0e39b 996fi
cdcc6a01 997
9612ab65
ZW
998dnl Disabled until we have a complete test for buggy enum bitfields.
999dnl gcc_AC_C_ENUM_BF_UNSIGNED
c149cc37 1000
0d667716
KG
1001define(gcc_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
1002 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
1003 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
1004 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
1005 putchar_unlocked putc_unlocked)
52a6edcc 1006AC_CHECK_FUNCS(times clock kill getrlimit setrlimit atoll atoq \
d2e506f2 1007 sysconf strsignal getrusage nl_langinfo \
71f3e391 1008 gettimeofday mbstowcs wcswidth mmap setlocale \
0d667716 1009 gcc_UNLOCKED_FUNCS)
a81fb89e 1010
39f6c4c8
KW
1011if test x$ac_cv_func_mbstowcs = xyes; then
1012 AC_CACHE_CHECK(whether mbstowcs works, gcc_cv_func_mbstowcs_works,
f04f1d2c 1013[ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
39f6c4c8
KW
1014int main()
1015{
1016 mbstowcs(0, "", 0);
1017 return 0;
f04f1d2c
KC
1018}]])],
1019 [gcc_cv_func_mbstowcs_works=yes],
1020 [gcc_cv_func_mbstowcs_works=no],
1021 [gcc_cv_func_mbstowcs_works=yes])])
39f6c4c8
KW
1022 if test x$gcc_cv_func_mbstowcs_works = xyes; then
1023 AC_DEFINE(HAVE_WORKING_MBSTOWCS, 1,
1024 [Define this macro if mbstowcs does not crash when its
1025 first argument is NULL.])
1026 fi
1027fi
1028
78c9cb99 1029AC_CHECK_TYPE(ssize_t, int)
bba09b5a 1030AC_CHECK_TYPE(caddr_t, char *)
56f48ce9 1031
1072ec3f 1032gcc_AC_FUNC_MMAP_BLACKLIST
b27d2bd5
MK
1033
1034case "${host}" in
ee262b6f 1035*-*-*vms*)
2c55543b 1036 # Under VMS, vfork works very differently than on Unix. The standard test
ee262b6f
DR
1037 # won't work, and it isn't easily adaptable. It makes more sense to
1038 # just force it.
1039 ac_cv_func_vfork_works=yes
1040 ;;
b27d2bd5 1041esac
f04f1d2c 1042AC_FUNC_FORK
f1b54f9b 1043
f91abfce 1044AM_ICONV
56694dd9
ZW
1045# Until we have in-tree GNU iconv:
1046LIBICONV_DEP=
1047AC_SUBST(LIBICONV_DEP)
1048
1049AM_LC_MESSAGES
f91abfce 1050
a03ea89b
BM
1051AM_LANGINFO_CODESET
1052
86cf1cbd
KG
1053# We will need to find libiberty.h and ansidecl.h
1054saved_CFLAGS="$CFLAGS"
1055CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
ed5b9f96
GK
1056gcc_AC_CHECK_DECLS(getenv atol asprintf sbrk abort atof getcwd getwd \
1057 strsignal strstr strverscmp \
1058 errno snprintf vsnprintf vasprintf malloc realloc calloc \
367e8319 1059 free basename getopt clock getpagesize gcc_UNLOCKED_FUNCS, , ,[
d02af173 1060#include "ansidecl.h"
86cf1cbd 1061#include "system.h"])
c5c76735 1062
f31e826b 1063gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
d02af173 1064#include "ansidecl.h"
86cf1cbd 1065#include "system.h"
d2cabf16
KG
1066#ifdef HAVE_SYS_RESOURCE_H
1067#include <sys/resource.h>
1068#endif
1069])
1070
f04f1d2c 1071AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
b2522d2b
HPN
1072#include "ansidecl.h"
1073#include "system.h"
1074#ifdef HAVE_SYS_RESOURCE_H
1075#include <sys/resource.h>
1076#endif
f04f1d2c 1077]], [[rlim_t l = 0;]])],[],[AC_DEFINE([rlim_t],[long],
236ec2d7 1078[Define to `long' if <sys/resource.h> doesn't define.])])
b2522d2b 1079
2102b2fe
RS
1080# On AIX 5.2, <ldfcn.h> conflicts with <fcntl.h>, as both define incompatible
1081# FREAD and FWRITE macros. Fortunately, for GCC's single usage of ldgetname
1082# in collect2.c, <fcntl.h> isn't visible, but the configure test below needs
1083# to undef these macros to get the correct value for HAVE_DECL_LDGETNAME.
351df804
KG
1084gcc_AC_CHECK_DECLS(ldgetname, , ,[
1085#include "ansidecl.h"
1086#include "system.h"
1087#ifdef HAVE_LDFCN_H
2102b2fe
RS
1088#undef FREAD
1089#undef FWRITE
351df804
KG
1090#include <ldfcn.h>
1091#endif
1092])
1093
c1800ec8
ZW
1094gcc_AC_CHECK_DECLS(times, , ,[
1095#include "ansidecl.h"
1096#include "system.h"
1097#ifdef HAVE_SYS_TIMES_H
1098#include <sys/times.h>
1099#endif
1100])
1101
4f6d8cc8
GK
1102gcc_AC_CHECK_DECLS(sigaltstack, , ,[
1103#include "ansidecl.h"
1104#include "system.h"
1105#include <signal.h>
1106])
1107
c1800ec8
ZW
1108# More time-related stuff.
1109AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
f04f1d2c 1110AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
c1800ec8
ZW
1111#include "ansidecl.h"
1112#include "system.h"
1113#ifdef HAVE_SYS_TIMES_H
1114#include <sys/times.h>
1115#endif
f04f1d2c 1116]], [[struct tms tms;]])],[ac_cv_struct_tms=yes],[ac_cv_struct_tms=no])])
c1800ec8
ZW
1117if test $ac_cv_struct_tms = yes; then
1118 AC_DEFINE(HAVE_STRUCT_TMS, 1,
1119 [Define if <sys/times.h> defines struct tms.])
1120fi
1121
1122# use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
1123# revisit after autoconf 2.50.
1124AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
f04f1d2c 1125AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
c1800ec8
ZW
1126#include "ansidecl.h"
1127#include "system.h"
f04f1d2c 1128]], [[clock_t x;]])],[gcc_cv_type_clock_t=yes],[gcc_cv_type_clock_t=no])])
c1800ec8
ZW
1129if test $gcc_cv_type_clock_t = yes; then
1130 AC_DEFINE(HAVE_CLOCK_T, 1,
1131 [Define if <time.h> defines clock_t.])
1132fi
1133
86cf1cbd
KG
1134# Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
1135CFLAGS="$saved_CFLAGS"
1136
eb70d86d
AS
1137gcc_AC_INITFINI_ARRAY
1138
75923b2f 1139# mkdir takes a single argument on some systems.
99e757d5 1140gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
75923b2f 1141
46f18e7b
RK
1142# File extensions
1143manext='.1'
1144objext='.o'
46f18e7b
RK
1145AC_SUBST(manext)
1146AC_SUBST(objext)
46f18e7b 1147
4977bab6
ZW
1148# With Setjmp/Longjmp based exception handling.
1149AC_ARG_ENABLE(sjlj-exceptions,
b88ecf55
AS
1150[AS_HELP_STRING([--enable-sjlj-exceptions],
1151 [arrange to use setjmp/longjmp exception handling])],
399fe3e1
JDA
1152[case $target in
1153 *-*-hpux10*)
1154 if test $enableval != yes; then
1155 AC_MSG_WARN([dwarf2 exceptions not supported, sjlj exceptions forced])
1156 enableval=yes
1157 fi
1158 ;;
1159esac
1160force_sjlj_exceptions=yes],
1161[case $target in
1162 *-*-hpux10*)
1163 force_sjlj_exceptions=yes
1164 enableval=yes
1165 ;;
1166 *)
1167 force_sjlj_exceptions=no
1168 ;;
1169esac])
1170if test $force_sjlj_exceptions = yes; then
1171 sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
1172 AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
1173 [Define 0/1 to force the choice for exception handling model.])
1174fi
4977bab6 1175
443728bb
L
1176# For platforms with the unwind ABI which includes an unwind library,
1177# libunwind, we can choose to use the system libunwind.
e64f5acf 1178# config.gcc also contains tests of with_system_libunwind.
e61c76c9 1179GCC_CHECK_UNWIND_GETIPINFO
e64f5acf 1180
34a86c2b
NN
1181# --------------------------------------------------------
1182# Build, host, and target specific configuration fragments
1183# --------------------------------------------------------
1184
5b28c537
NN
1185# Collect build-machine-specific information.
1186. ${srcdir}/config.build
1187
a89ea0df
NN
1188# Collect host-machine-specific information.
1189. ${srcdir}/config.host
1190
ef69da62 1191target_gtfiles=
a89ea0df
NN
1192
1193# Collect target-machine-specific information.
b01bc573 1194. ${srcdir}/config.gcc
46f18e7b
RK
1195
1196extra_objs="${host_extra_objs} ${extra_objs}"
30500d84 1197extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
46f18e7b
RK
1198
1199# Default the target-machine variables that were not explicitly set.
75bffa71 1200if test x"$tm_file" = x
46f18e7b
RK
1201then tm_file=$cpu_type/$cpu_type.h; fi
1202
6b2adea9 1203if test x"$extra_headers" = x
46f18e7b
RK
1204then extra_headers=; fi
1205
75bffa71 1206if test x$md_file = x
e98e406f 1207then md_file=$cpu_type/$cpu_type.md; fi
46f18e7b 1208
75bffa71 1209if test x$out_file = x
46f18e7b
RK
1210then out_file=$cpu_type/$cpu_type.c; fi
1211
75bffa71 1212if test x"$tmake_file" = x
46f18e7b
RK
1213then tmake_file=$cpu_type/t-$cpu_type
1214fi
1215
90e6a802 1216if test x"$dwarf2" = xyes
756ee602 1217then tm_file="$tm_file tm-dwarf2.h"
90e6a802
RL
1218fi
1219
46f18e7b 1220# Say what files are being used for the output code and MD file.
11642c3a 1221echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
46f18e7b
RK
1222echo "Using \`$srcdir/config/$md_file' as machine description file."
1223
11642c3a 1224# If any of the xm_file variables contain nonexistent files, warn
4dc0535b
ZW
1225# about them and drop them.
1226
11642c3a
ZW
1227bx=
1228for x in $build_xm_file; do
1229 if test -f $srcdir/config/$x
1230 then bx="$bx $x"
11642c3a
ZW
1231 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1232 fi
1233done
1234build_xm_file="$bx"
1235
1236hx=
1237for x in $host_xm_file; do
1238 if test -f $srcdir/config/$x
1239 then hx="$hx $x"
11642c3a
ZW
1240 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1241 fi
1242done
1243host_xm_file="$hx"
1244
1245tx=
1246for x in $xm_file; do
1247 if test -f $srcdir/config/$x
1248 then tx="$tx $x"
11642c3a
ZW
1249 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1250 fi
1251done
1252xm_file="$tx"
1253
46f18e7b
RK
1254count=a
1255for f in $tm_file; do
1256 count=${count}x
1257done
75bffa71 1258if test $count = ax; then
46f18e7b
RK
1259 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
1260else
1261 echo "Using the following target machine macro files:"
1262 for f in $tm_file; do
1263 echo " $srcdir/config/$f"
1264 done
1265fi
1266
4977bab6
ZW
1267if test x$need_64bit_hwint = xyes; then
1268 AC_DEFINE(NEED_64BIT_HOST_WIDE_INT, 1,
1269[Define to 1 if HOST_WIDE_INT must be 64 bits wide (see hwint.h).])
1270fi
1271
99fa8911
AP
1272if test x$use_long_long_for_widest_fast_int = xyes; then
1273 AC_DEFINE(USE_LONG_LONG_FOR_WIDEST_FAST_INT, 1,
1274[Define to 1 if the 'long long' (or '__int64') is wider than 'long' but still
1275efficiently supported by the host hardware.])
1276fi
1277
46f18e7b
RK
1278count=a
1279for f in $host_xm_file; do
1280 count=${count}x
1281done
11642c3a
ZW
1282if test $count = a; then
1283 :
1284elif test $count = ax; then
46f18e7b
RK
1285 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
1286else
1287 echo "Using the following host machine macro files:"
1288 for f in $host_xm_file; do
1289 echo " $srcdir/config/$f"
1290 done
1291fi
476d9098 1292echo "Using ${out_host_hook_obj} for host machine hooks."
46f18e7b 1293
75bffa71 1294if test "$host_xm_file" != "$build_xm_file"; then
46f18e7b
RK
1295 count=a
1296 for f in $build_xm_file; do
1297 count=${count}x
1298 done
11642c3a
ZW
1299 if test $count = a; then
1300 :
1301 elif test $count = ax; then
46f18e7b
RK
1302 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
1303 else
1304 echo "Using the following build machine macro files:"
1305 for f in $build_xm_file; do
1306 echo " $srcdir/config/$f"
1307 done
1308 fi
1309fi
1310
4f6d8cc8 1311case ${host} in
b8ec3cc8 1312 powerpc*-*-darwin*)
4f6d8cc8
GK
1313 AC_CACHE_CHECK([whether mcontext_t fields have underscores],
1314 gcc_cv_mcontext_underscores,
1315 AC_COMPILE_IFELSE([
ba7da42a 1316#include <sys/cdefs.h>
de4fb767 1317#include <sys/signal.h>
4f6d8cc8
GK
1318#include <ucontext.h>
1319int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; }
1320],
1321 gcc_cv_mcontext_underscores=no, gcc_cv_mcontext_underscores=yes))
1322 if test $gcc_cv_mcontext_underscores = yes; then
1323 AC_DEFINE(HAS_MCONTEXT_T_UNDERSCORES,,dnl
1324 [mcontext_t fields start with __])
1325 fi
1326 ;;
1327esac
1328
8bb915b6
NN
1329# ---------
1330# Threading
1331# ---------
1332
c2e494a8 1333# Check if a valid thread package
615be2cf 1334case ${enable_threads} in
c2e494a8
NN
1335 "" | no)
1336 # No threads
1337 target_thread_file='single'
1338 ;;
1339 yes)
1340 # default
1341 target_thread_file='single'
1342 ;;
c8028650 1343 aix | dce | lynx | mipssde | nks | posix | posix95 | rtems | \
da90c957 1344 single | tpf | vxworks | win32)
615be2cf 1345 target_thread_file=${enable_threads}
c2e494a8
NN
1346 ;;
1347 *)
615be2cf 1348 echo "${enable_threads} is an unknown thread package" 1>&2
c2e494a8
NN
1349 exit 1
1350 ;;
1351esac
1352
1353if test x${thread_file} = x; then
1354 # No thread file set by target-specific clauses in config.gcc,
1355 # so use file chosen by default logic above
1356 thread_file=${target_thread_file}
46f18e7b 1357fi
46f18e7b 1358
8bb915b6
NN
1359# Make gthr-default.h if we have a thread file.
1360gthread_flags=
1361if test $thread_file != single; then
b15a9f63
RW
1362 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h-t
1363 if diff gthr-default.h-t gthr-default.h 2>/dev/null; then
1364 rm -f gthr-default.h-t
1365 else
1366 mv -f gthr-default.h-t gthr-default.h
1367 fi
8bb915b6
NN
1368 gthread_flags=-DHAVE_GTHR_DEFAULT
1369fi
1370AC_SUBST(gthread_flags)
1371
1372# --------
1373# UNSORTED
1374# --------
1375
18fbf599 1376use_cxa_atexit=no
2121a768
JT
1377if test x$enable___cxa_atexit = xyes || \
1378 test x$enable___cxa_atexit = x -a x$default_use_cxa_atexit = xyes; then
18fbf599 1379 if test x$host = x$target; then
97388150
DS
1380 case $host in
1381 # mingw32 doesn't have __cxa_atexit but uses atexit registration
1382 # keyed to flag_use_cxa_atexit
1383 *-*-mingw32*)
1384 use_cxa_atexit=yes
1385 ;;
1386 *)
1387 AC_CHECK_FUNC(__cxa_atexit,[use_cxa_atexit=yes],
1388 [echo "__cxa_atexit can't be enabled on this target"])
5f60e48f 1389 ;;
97388150 1390 esac
18fbf599
PB
1391 else
1392 # We can't check for __cxa_atexit when building a cross, so assume
1393 # it is available
1394 use_cxa_atexit=yes
1395 fi
1396 if test x$use_cxa_atexit = xyes; then
c7b5e395 1397 AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 2,
18fbf599
PB
1398 [Define if you want to use __cxa_atexit, rather than atexit, to
1399 register C++ destructors for local statics and global objects.
1400 This is essential for fully standards-compliant handling of
1401 destructors, but requires __cxa_atexit in libc.])
1402 fi
2121a768
JT
1403fi
1404
a5381466 1405# Look for a file containing extra machine modes.
1c0ca89d
ZW
1406if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
1407 extra_modes_file='$(srcdir)'/config/${extra_modes}
a5381466 1408 AC_SUBST(extra_modes_file)
e22340b0 1409 AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "config/$extra_modes",
a5381466
ZW
1410 [Define to the name of a file containing a list of extra machine modes
1411 for this architecture.])
a5381466
ZW
1412fi
1413
75685792
RS
1414# Convert extra_options into a form suitable for Makefile use.
1415extra_opt_files=
fd438373 1416all_opt_files=
75685792
RS
1417for f in $extra_options; do
1418 extra_opt_files="$extra_opt_files \$(srcdir)/config/$f"
fd438373 1419 all_opt_files="$all_opt_files $srcdir/config/$f"
75685792
RS
1420done
1421AC_SUBST(extra_opt_files)
1422
b7cb92ad 1423# auto-host.h is the file containing items generated by autoconf and is
e9a25f70 1424# the first file included by config.h.
4977bab6 1425# If host=build, it is correct to have bconfig include auto-host.h
db81d74a
RH
1426# as well. If host!=build, we are in error and need to do more
1427# work to find out the build config parameters.
75bffa71 1428if test x$host = x$build
db81d74a 1429then
eaf4e618 1430 build_auto=auto-host.h
b7cb92ad
JL
1431else
1432 # We create a subdir, then run autoconf in the subdir.
1433 # To prevent recursion we set host and build for the new
1434 # invocation of configure to the build for this invocation
1435 # of configure.
1436 tempdir=build.$$
1437 rm -rf $tempdir
1438 mkdir $tempdir
1439 cd $tempdir
1440 case ${srcdir} in
b86ecfa9 1441 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
b7cb92ad
JL
1442 *) realsrcdir=../${srcdir};;
1443 esac
d920e825
L
1444 saved_CFLAGS="${CFLAGS}"
1445 CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
f8c33439 1446 LDFLAGS="${LDFLAGS_FOR_BUILD}" \
d920e825 1447 ${realsrcdir}/configure \
33e70558 1448 --enable-languages=${enable_languages-all} \
534d0cc0 1449 --target=$target_alias --host=$build_alias --build=$build_alias
d920e825 1450 CFLAGS="${saved_CFLAGS}"
b7cb92ad
JL
1451
1452 # We just finished tests for the build machine, so rename
1453 # the file auto-build.h in the gcc directory.
1454 mv auto-host.h ../auto-build.h
1455 cd ..
1456 rm -rf $tempdir
eaf4e618 1457 build_auto=auto-build.h
db81d74a 1458fi
71b5d516 1459AC_SUBST(build_subdir)
db81d74a 1460
eaf4e618 1461tm_file="${tm_file} defaults.h"
4977bab6
ZW
1462tm_p_file="${tm_p_file} tm-preds.h"
1463host_xm_file="auto-host.h ansidecl.h ${host_xm_file}"
1464build_xm_file="${build_auto} ansidecl.h ${build_xm_file}"
49691411 1465# We don't want ansidecl.h in target files, write code there in ISO/GNU C.
b4862477 1466# put this back in temporarily.
232b67d9 1467xm_file="auto-host.h ansidecl.h ${xm_file}"
0056a9b5 1468
34a86c2b
NN
1469# --------
1470# UNSORTED
1471# --------
1472
afabd8e6 1473changequote(,)dnl
cc1e60ea 1474# Compile in configure arguments.
8105825d 1475if test -f configargs.h ; then
cc1e60ea 1476 # Being re-configured.
022dae81 1477 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
cc1e60ea
JM
1478 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
1479else
1480 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
1481fi
eeae7b41
DJ
1482
1483# Double all backslashes and backslash all quotes to turn
1484# gcc_config_arguments into a C string.
1485sed -e 's/\\/\\\\/g; s/"/\\"/g' <<EOF >conftest.out
1486$gcc_config_arguments
1487EOF
1488gcc_config_arguments_str=`cat conftest.out`
1489rm -f conftest.out
1490
cc1e60ea
JM
1491cat > configargs.h <<EOF
1492/* Generated automatically. */
eeae7b41 1493static const char configuration_arguments[] = "$gcc_config_arguments_str";
a6687d2b 1494static const char thread_model[] = "$thread_file";
7816bea0
DJ
1495
1496static const struct {
1497 const char *name, *value;
1498} configure_default_options[] = $configure_default_options;
cc1e60ea 1499EOF
75bffa71 1500changequote([,])dnl
46f18e7b 1501
0c463e16 1502changequote(,)dnl
40540e68
RAE
1503gcc_BASEVER=`cat $srcdir/BASE-VER`
1504gcc_DEVPHASE=`cat $srcdir/DEV-PHASE`
1505gcc_DATESTAMP=`cat $srcdir/DATESTAMP`
0c463e16 1506if test -f $srcdir/REVISION ; then
40540e68 1507 gcc_REVISION=`cat $srcdir/REVISION`
0c463e16
RAE
1508else
1509 gcc_REVISION=""
1510fi
1511cat > plugin-version.h <<EOF
1512#include "configargs.h"
1513
1514static char basever[] = "$gcc_BASEVER";
1515static char datestamp[] = "$gcc_DATESTAMP";
1516static char devphase[] = "$gcc_DEVPHASE";
1517static char revision[] = "$gcc_REVISION";
1518
1519/* FIXME plugins: We should make the version information more precise.
1520 One way to do is to add a checksum. */
1521
1522static struct plugin_gcc_version gcc_version = {basever, datestamp,
1523 devphase, revision,
1524 configuration_arguments};
1525EOF
1526changequote([,])dnl
1527
ab87f8c8 1528# Internationalization
56694dd9 1529ZW_GNU_GETTEXT_SISTER_DIR
dc6746e7 1530
56694dd9
ZW
1531# If LIBINTL contains LIBICONV, then clear LIBICONV so we don't get
1532# -liconv on the link line twice.
1533case "$LIBINTL" in *$LIBICONV*)
1534 LIBICONV= ;;
1535esac
ab87f8c8 1536
7f970b70 1537AC_ARG_ENABLE(secureplt,
b88ecf55
AS
1538[AS_HELP_STRING([--enable-secureplt],
1539 [enable -msecure-plt by default for PowerPC])],
7f970b70
AM
1540[], [])
1541
ad211091
KT
1542AC_ARG_ENABLE(leading-mingw64-underscores,
1543 AS_HELP_STRING([--enable-leading-mingw64-underscores],
b88ecf55 1544 [enable leading underscores on 64 bit mingw targets]),
ad211091
KT
1545 [],[])
1546AS_IF([ test x"$enable_leading_mingw64_underscores" = xyes ],
1547 [AC_DEFINE(USE_MINGW64_LEADING_UNDERSCORES, 1,
1548 [Define if we should use leading underscore on 64 bit mingw targets])])
1549
922e3e33 1550AC_ARG_ENABLE(cld,
b88ecf55 1551[AS_HELP_STRING([--enable-cld], [enable -mcld by default for 32bit x86])], [],
922e3e33
UB
1552[enable_cld=no])
1553
d79389af 1554AC_ARG_ENABLE(frame-pointer,
b88ecf55
AS
1555[AS_HELP_STRING([--enable-frame-pointer],
1556 [enable -fno-omit-frame-pointer by default for 32bit x86])], [],
d79389af
L
1557[
1558case $target_os in
1b2d4118
JH
1559linux* | darwin[[8912]]*)
1560 # Enable -fomit-frame-pointer by default for Linux and Darwin with
1561 # DWARF2.
d79389af
L
1562 enable_frame_pointer=no
1563 ;;
1564*)
1565 enable_frame_pointer=yes
1566 ;;
1567esac
1568])
1569
f4ab28e3
MK
1570# Windows32 Registry support for specifying GCC installation paths.
1571AC_ARG_ENABLE(win32-registry,
b88ecf55
AS
1572[AS_HELP_STRING([--disable-win32-registry],
1573 [disable lookup of installation paths in the
1574 Registry on Windows hosts])
1575AS_HELP_STRING([--enable-win32-registry], [enable registry lookup (default)])
1576AS_HELP_STRING([--enable-win32-registry=KEY],
1577 [use KEY instead of GCC version as the last portion
1578 of the registry key])],,)
a1286ef5 1579
4e70264f 1580case $host_os in
a1286ef5
ZW
1581 win32 | pe | cygwin* | mingw32* | uwin*)
1582 if test "x$enable_win32_registry" != xno; then
1583 AC_SEARCH_LIBS(RegOpenKeyExA, advapi32,, [enable_win32_registry=no])
1584 fi
f4ab28e3 1585
a1286ef5
ZW
1586 if test "x$enable_win32_registry" != xno; then
1587 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
1588 [Define to 1 if installation paths should be looked up in the Windows
1589 Registry. Ignored on non-Windows hosts.])
1590
1591 if test "x$enable_win32_registry" != xyes \
1592 && test "x$enable_win32_registry" != x; then
1593 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$enable_win32_registry",
1594 [Define to be the last component of the Windows registry key under which
1595 to look for installation paths. The full key used will be
1596 HKEY_LOCAL_MACHINE/SOFTWARE/Free Software Foundation/{WIN32_REGISTRY_KEY}.
1597 The default is the GCC version number.])
1598 fi
1599 fi
f4ab28e3
MK
1600 ;;
1601esac
1602
7fa10b25 1603# Get an absolute path to the GCC top-level source directory
1e6347d8 1604holddir=`${PWDCMD-pwd}`
7fa10b25 1605cd $srcdir
1e6347d8 1606topdir=`${PWDCMD-pwd}`
7fa10b25
RK
1607cd $holddir
1608
af5e4ada 1609# Conditionalize the makefile for this host machine.
2ed26f6b 1610xmake_file=
c406e779 1611for f in ${host_xmake_file}
94f42018 1612do
75bffa71 1613 if test -f ${srcdir}/config/$f
94f42018 1614 then
2ed26f6b 1615 xmake_file="${xmake_file} \$(srcdir)/config/$f"
94f42018
DE
1616 fi
1617done
46f18e7b 1618
af5e4ada 1619# Conditionalize the makefile for this target machine.
2ed26f6b 1620tmake_file_=
c406e779 1621for f in ${tmake_file}
94f42018 1622do
75bffa71 1623 if test -f ${srcdir}/config/$f
94f42018 1624 then
2ed26f6b 1625 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
94f42018
DE
1626 fi
1627done
2ed26f6b 1628tmake_file="${tmake_file_}"
5891b37d 1629
af5e4ada 1630out_object_file=`basename $out_file .c`.o
5891b37d 1631
75685792 1632tm_file_list="options.h"
f938f60c 1633tm_include_list="options.h insn-constants.h"
af5e4ada 1634for f in $tm_file; do
64ccbc99 1635 case $f in
3ca43df7
RS
1636 ./* )
1637 f=`echo $f | sed 's/^..//'`
1638 tm_file_list="${tm_file_list} $f"
1639 tm_include_list="${tm_include_list} $f"
1640 ;;
d02af173 1641 defaults.h )
e22340b0
ZW
1642 tm_file_list="${tm_file_list} \$(srcdir)/$f"
1643 tm_include_list="${tm_include_list} $f"
1644 ;;
1645 * )
1646 tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
1647 tm_include_list="${tm_include_list} config/$f"
1648 ;;
64ccbc99 1649 esac
af5e4ada 1650done
46f18e7b 1651
80cf2e08
JM
1652libgcc_tm_file_list=
1653libgcc_tm_include_list=
1654for f in $libgcc_tm_file; do
1655 libgcc_tm_file_list="${libgcc_tm_file_list} \$(srcdir)/../libgcc/config/$f"
1656 libgcc_tm_include_list="${libgcc_tm_include_list} ../libgcc/config/$f"
1657done
1658
11642c3a 1659tm_p_file_list=
e22340b0 1660tm_p_include_list=
11642c3a 1661for f in $tm_p_file; do
4977bab6
ZW
1662 case $f in
1663 tm-preds.h )
e22340b0
ZW
1664 tm_p_file_list="${tm_p_file_list} $f"
1665 tm_p_include_list="${tm_p_include_list} $f"
1666 ;;
1667 * )
1668 tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
1669 tm_p_include_list="${tm_p_include_list} config/$f"
1670 esac
1671done
1672
1673xm_file_list=
1674xm_include_list=
1675for f in $xm_file; do
1676 case $f in
1677 ansidecl.h )
1678 xm_file_list="${xm_file_list} \$(srcdir)/../include/$f"
1679 xm_include_list="${xm_include_list} $f"
1680 ;;
1681 auto-host.h )
1682 xm_file_list="${xm_file_list} $f"
1683 xm_include_list="${xm_include_list} $f"
1684 ;;
1685 * )
1686 xm_file_list="${xm_file_list} \$(srcdir)/config/$f"
1687 xm_include_list="${xm_include_list} config/$f"
1688 ;;
4977bab6 1689 esac
11642c3a
ZW
1690done
1691
af5e4ada 1692host_xm_file_list=
e22340b0 1693host_xm_include_list=
af5e4ada 1694for f in $host_xm_file; do
64ccbc99 1695 case $f in
d02af173 1696 ansidecl.h )
e22340b0
ZW
1697 host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/$f"
1698 host_xm_include_list="${host_xm_include_list} $f"
1699 ;;
e2500fed 1700 auto-host.h )
e22340b0
ZW
1701 host_xm_file_list="${host_xm_file_list} $f"
1702 host_xm_include_list="${host_xm_include_list} $f"
1703 ;;
1704 * )
1705 host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f"
1706 host_xm_include_list="${host_xm_include_list} config/$f"
1707 ;;
64ccbc99 1708 esac
af5e4ada
DE
1709done
1710
1711build_xm_file_list=
1712for f in $build_xm_file; do
64ccbc99 1713 case $f in
d02af173 1714 ansidecl.h )
e22340b0
ZW
1715 build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/$f"
1716 build_xm_include_list="${build_xm_include_list} $f"
1717 ;;
e2500fed 1718 auto-build.h | auto-host.h )
e22340b0
ZW
1719 build_xm_file_list="${build_xm_file_list} $f"
1720 build_xm_include_list="${build_xm_include_list} $f"
1721 ;;
1722 * )
1723 build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f"
1724 build_xm_include_list="${build_xm_include_list} config/$f"
1725 ;;
64ccbc99 1726 esac
af5e4ada 1727done
46f18e7b 1728
2989d30c
GK
1729# Define macro CROSS_DIRECTORY_STRUCTURE in compilation if this is a
1730# cross-compiler which does not use the native headers and libraries.
a078a589
ZW
1731# Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
1732CROSS= AC_SUBST(CROSS)
1733ALL=all.internal AC_SUBST(ALL)
1734SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
b28250ab
MM
1735
1736if test "x$with_build_sysroot" != x; then
14da6073 1737 build_system_header_dir=$with_build_sysroot'$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
b28250ab
MM
1738else
1739 # This value is used, even on a native system, because
1740 # CROSS_SYSTEM_HEADER_DIR is just
1741 # $(TARGET_SYSTEM_ROOT)$(NATIVE_SYSTEM_HEADER_DIR).
1742 build_system_header_dir='$(CROSS_SYSTEM_HEADER_DIR)'
1743fi
1744
75bffa71 1745if test x$host != x$target
af5e4ada 1746then
2989d30c 1747 CROSS="-DCROSS_DIRECTORY_STRUCTURE"
a078a589 1748 ALL=all.cross
160633c6 1749 SYSTEM_HEADER_DIR=$build_system_header_dir
343f59d9 1750 case "$host","$target" in
3a7e8b87
GK
1751 # Darwin crosses can use the host system's libraries and headers,
1752 # because of the fat library support. Of course, it must be the
1753 # same version of Darwin on both sides. Allow the user to
1754 # just say --target=foo-darwin without a version number to mean
1755 # "the version on this system".
1756 *-*-darwin*,*-*-darwin*)
1757 hostos=`echo $host | sed 's/.*-darwin/darwin/'`
1758 targetos=`echo $target | sed 's/.*-darwin/darwin/'`
1759 if test $hostos = $targetos -o $targetos = darwin ; then
1760 CROSS=
1761 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)'
1762 with_headers=yes
1763 fi
1764 ;;
1765
343f59d9
AM
1766 i?86-*-*,x86_64-*-* \
1767 | powerpc*-*-*,powerpc64*-*-*)
1768 CROSS="$CROSS -DNATIVE_CROSS" ;;
1769 esac
e1dbd4c8
KT
1770
1771 case $target in
1772 *-*-mingw*)
1773 if test "x$with_headers" = x; then
1774 with_headers=yes
1775 fi
1776 ;;
1777 *)
1778 ;;
1779 esac
7a615b25 1780elif test "x$TARGET_SYSTEM_ROOT" != x; then
b28250ab 1781 SYSTEM_HEADER_DIR=$build_system_header_dir
af5e4ada 1782fi
46f18e7b 1783
b39d221a
EC
1784# If this is a cross-compiler that does not
1785# have its own set of headers then define
1786# inhibit_libc
1787
dc06db20
R
1788# If this is using newlib, without having the headers available now,
1789# then define inhibit_libc in LIBGCC2_CFLAGS.
fecd6201
ZW
1790# This prevents libgcc2 from containing any code which requires libc
1791# support.
a929bc28 1792: ${inhibit_libc=false}
dc06db20
R
1793if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
1794 test x$with_newlib = xyes ; } &&
e50084fa 1795 { test "x$with_headers" = x || test "x$with_headers" = xno ; } ; then
160633c6 1796 inhibit_libc=true
b39d221a
EC
1797fi
1798AC_SUBST(inhibit_libc)
1799
a078a589
ZW
1800# When building gcc with a cross-compiler, we need to adjust things so
1801# that the generator programs are still built with the native compiler.
52c0e446 1802# Also, we cannot run fixincludes.
a078a589
ZW
1803
1804# These are the normal (build=host) settings:
eaf9f3b2 1805CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD)
4977bab6 1806BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS)
f8c33439 1807BUILD_LDFLAGS='$(LDFLAGS)' AC_SUBST(BUILD_LDFLAGS)
a078a589 1808STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
587dc9c6 1809
83599948
NS
1810# And these apply if build != host, or we are generating coverage data
1811if test x$build != x$host || test "x$coverage_flags" != x
af5e4ada 1812then
b11e4747 1813 BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)'
f8c33439 1814 BUILD_LDFLAGS='$(LDFLAGS_FOR_BUILD)'
af5e4ada 1815fi
46f18e7b 1816
ae3a15bb
DE
1817# Expand extra_headers to include complete path.
1818# This substitutes for lots of t-* files.
1819extra_headers_list=
b1ef58c8
NN
1820# Prepend $(srcdir)/config/${cpu_type}/ to every entry in extra_headers.
1821for file in ${extra_headers} ; do
1822 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
1823done
ae3a15bb 1824
1617e5ee
GK
1825# If use_gcc_tgmath is set, append ginclude/tgmath.h.
1826if test x"$use_gcc_tgmath" = xyes
1827then extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/tgmath.h"
1828fi
1829
c38f02df
ILT
1830# Define collect2 in Makefile.
1831case $host_can_use_collect2 in
1832 no) collect2= ;;
1833 *) collect2='collect2$(exeext)' ;;
1834esac
1835AC_SUBST([collect2])
1836
af5e4ada 1837# Add a definition of USE_COLLECT2 if system wants one.
34a86c2b
NN
1838case $use_collect2 in
1839 no) use_collect2= ;;
1840 "") ;;
1841 *)
1842 host_xm_defines="${host_xm_defines} USE_COLLECT2"
1843 xm_defines="${xm_defines} USE_COLLECT2"
c38f02df
ILT
1844 case $host_can_use_collect2 in
1845 no)
1846 AC_MSG_ERROR([collect2 is required but cannot be built on this system])
1847 ;;
1848 esac
34a86c2b
NN
1849 ;;
1850esac
af5e4ada 1851
1cd0b716
DK
1852AC_DEFINE_UNQUOTED(LTOPLUGINSONAME,"${host_lto_plugin_soname}",
1853[Define to the name of the LTO plugin DSO that must be
1854 passed to the linker's -plugin=LIB option.])
1855
630327c3
NN
1856# ---------------------------
1857# Assembler & linker features
1858# ---------------------------
1859
da0f6381
PB
1860# During stage 2, ld is actually gcc/collect-ld, which is a small script to
1861# discern between when to use prev-ld/ld-new and when to use ld/ld-new.
1862# However when ld-new is first executed from the build tree, libtool will
1863# relink it as .libs/lt-ld-new, so that it can give it an RPATH that refers
1864# to the build tree. While doing this we need to use the previous-stage
1865# linker, or we have an infinite loop. The presence of a shell script as
1866# ld/ld-new, and the fact that the script *uses ld itself*, is what confuses
1867# the gcc/collect-ld script. So we need to know how libtool works, or
1868# exec-tool will fail.
1869
1870m4_defun([_LT_CONFIG_COMMANDS], [])
1871AC_PROG_LIBTOOL
1872AC_SUBST(objdir)
1873AC_SUBST(enable_fast_install)
1874
d869a8c4
NN
1875# Identify the assembler which will work hand-in-glove with the newly
1876# built GCC, so that we can examine its features. This is the assembler
1877# which will be driven by the driver program.
1878#
1879# If build != host, and we aren't building gas in-tree, we identify a
1880# build->target assembler and hope that it will have the same features
1881# as the host->target assembler we'll be using.
981d4858
JM
1882gcc_cv_gas_major_version=
1883gcc_cv_gas_minor_version=
a2f319ea 1884gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
e8b05380
PB
1885
1886m4_pattern_allow([AS_FOR_TARGET])dnl
1887AS_VAR_SET_IF(gcc_cv_as,, [
3ccc3a56
AO
1888if test -x "$DEFAULT_ASSEMBLER"; then
1889 gcc_cv_as="$DEFAULT_ASSEMBLER"
34a86c2b 1890elif test -f $gcc_cv_as_gas_srcdir/configure.in \
08d105fa
AO
1891 && test -f ../gas/Makefile \
1892 && test x$build = x$host; then
e8b05380
PB
1893 gcc_cv_as=../gas/as-new$build_exeext
1894elif test -x as$build_exeext; then
1895 # Build using assembler in the current directory.
1896 gcc_cv_as=./as$build_exeext
4a150fc8 1897elif ( set dummy $AS_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
1898 gcc_cv_as="$AS_FOR_TARGET"
1899else
1900 AC_PATH_PROG(gcc_cv_as, $AS_FOR_TARGET)
1901fi])
1902
1903ORIGINAL_AS_FOR_TARGET=$gcc_cv_as
1904AC_SUBST(ORIGINAL_AS_FOR_TARGET)
be0fe523
PB
1905case "$ORIGINAL_AS_FOR_TARGET" in
1906 ./as | ./as$build_exeext) ;;
1907 *) AC_CONFIG_FILES(as:exec-tool.in, [chmod +x as]) ;;
1908esac
e8b05380
PB
1909
1910AC_MSG_CHECKING(what assembler to use)
1911if test "$gcc_cv_as" = ../gas/as-new$build_exeext; then
08d105fa
AO
1912 # Single tree build which includes gas. We want to prefer it
1913 # over whatever linker top-level may have detected, since
1914 # we'll use what we're building after installation anyway.
e8b05380 1915 AC_MSG_RESULT(newly built gas)
ad9c4d9f
NN
1916 in_tree_gas=yes
1917 _gcc_COMPUTE_GAS_VERSION
5408ac6c
HPN
1918 in_tree_gas_is_elf=no
1919 if grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1920 || (grep 'obj_format = multi' ../gas/Makefile \
1921 && grep 'extra_objects =.* obj-elf' ../gas/Makefile) > /dev/null
1922 then
1923 in_tree_gas_is_elf=yes
1924 fi
e8b05380
PB
1925else
1926 AC_MSG_RESULT($gcc_cv_as)
1927 in_tree_gas=no
981d4858
JM
1928fi
1929
d869a8c4
NN
1930# Identify the linker which will work hand-in-glove with the newly
1931# built GCC, so that we can examine its features. This is the linker
1932# which will be driven by the driver program.
1933#
1934# If build != host, and we aren't building gas in-tree, we identify a
1935# build->target linker and hope that it will have the same features
1936# as the host->target linker we'll be using.
275b60d6
JJ
1937gcc_cv_gld_major_version=
1938gcc_cv_gld_minor_version=
1939gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
1940gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
e8b05380
PB
1941
1942AS_VAR_SET_IF(gcc_cv_ld,, [
275b60d6
JJ
1943if test -x "$DEFAULT_LINKER"; then
1944 gcc_cv_ld="$DEFAULT_LINKER"
34a86c2b 1945elif test -f $gcc_cv_ld_gld_srcdir/configure.in \
08d105fa
AO
1946 && test -f ../ld/Makefile \
1947 && test x$build = x$host; then
e8b05380
PB
1948 gcc_cv_ld=../ld/ld-new$build_exeext
1949elif test -x collect-ld$build_exeext; then
1950 # Build using linker in the current directory.
1951 gcc_cv_ld=./collect-ld$build_exeext
4a150fc8 1952elif ( set dummy $LD_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
1953 gcc_cv_ld="$LD_FOR_TARGET"
1954else
1955 AC_PATH_PROG(gcc_cv_ld, $LD_FOR_TARGET)
1956fi])
1957
5938f74d
L
1958ORIGINAL_PLUGIN_LD_FOR_TARGET=$gcc_cv_ld
1959PLUGIN_LD=`basename $gcc_cv_ld`
1960AC_ARG_WITH(plugin-ld,
b88ecf55 1961[AS_HELP_STRING([[--with-plugin-ld=[ARG]]], [specify the plugin linker])],
5938f74d
L
1962[if test x"$withval" != x; then
1963 ORIGINAL_PLUGIN_LD_FOR_TARGET="$withval"
1964 PLUGIN_LD="$withval"
1965 fi])
1966AC_SUBST(ORIGINAL_PLUGIN_LD_FOR_TARGET)
1967AC_DEFINE_UNQUOTED(PLUGIN_LD, "$PLUGIN_LD", [Specify plugin linker])
1968
1dcc82c2
DK
1969# Check to see if we are using gold instead of ld
1970AC_MSG_CHECKING(whether we are using gold)
1971ld_is_gold=no
1972if test x$gcc_cv_ld != x; then
1973 if $gcc_cv_ld --version 2>/dev/null | sed 1q \
1974 | grep "GNU gold" > /dev/null; then
1975 ld_is_gold=yes
1976 fi
1977fi
1978AC_MSG_RESULT($ld_is_gold)
1979
e8b05380
PB
1980ORIGINAL_LD_FOR_TARGET=$gcc_cv_ld
1981AC_SUBST(ORIGINAL_LD_FOR_TARGET)
be0fe523
PB
1982case "$ORIGINAL_LD_FOR_TARGET" in
1983 ./collect-ld | ./collect-ld$build_exeext) ;;
1984 *) AC_CONFIG_FILES(collect-ld:exec-tool.in, [chmod +x collect-ld]) ;;
1985esac
e8b05380
PB
1986
1987AC_MSG_CHECKING(what linker to use)
55b46574
RO
1988if test "$gcc_cv_ld" = ../ld/ld-new$build_exeext \
1989 || test "$gcc_cv_ld" = ../gold/ld-new$build_exeext; then
08d105fa
AO
1990 # Single tree build which includes ld. We want to prefer it
1991 # over whatever linker top-level may have detected, since
1992 # we'll use what we're building after installation anyway.
e8b05380 1993 AC_MSG_RESULT(newly built ld)
34a86c2b 1994 in_tree_ld=yes
5408ac6c
HPN
1995 in_tree_ld_is_elf=no
1996 if (grep 'EMUL = .*elf' ../ld/Makefile \
8a45d680
AN
1997 || grep 'EMUL = .*linux' ../ld/Makefile \
1998 || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then
5408ac6c 1999 in_tree_ld_is_elf=yes
55b46574
RO
2000 elif test "$ld_is_gold" = yes; then
2001 in_tree_ld_is_elf=yes
5408ac6c 2002 fi
275b60d6
JJ
2003 for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ld_gld_srcdir/configure.in $gcc_cv_ld_gld_srcdir/Makefile.in
2004 do
2005changequote(,)dnl
58ea87a9 2006 gcc_cv_gld_version=`sed -n -e 's/^[ ]*\(VERSION=[0-9]*\.[0-9]*.*\)/\1/p' < $f`
275b60d6
JJ
2007 if test x$gcc_cv_gld_version != x; then
2008 break
2009 fi
2010 done
275b60d6
JJ
2011 gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
2012 gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
2013changequote([,])dnl
e8b05380
PB
2014else
2015 AC_MSG_RESULT($gcc_cv_ld)
2016 in_tree_ld=no
275b60d6
JJ
2017fi
2018
981d4858 2019# Figure out what nm we will be using.
f9c1196a 2020gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
e8b05380 2021AS_VAR_SET_IF(gcc_cv_nm,, [
9f18db39 2022if test -f $gcc_cv_binutils_srcdir/configure.in \
c15b113b
DD
2023 && test -f ../binutils/Makefile \
2024 && test x$build = x$host; then
9f18db39
PB
2025 gcc_cv_nm=../binutils/nm-new$build_exeext
2026elif test -x nm$build_exeext; then
57991eba 2027 gcc_cv_nm=./nm$build_exeext
4a150fc8 2028elif ( set dummy $NM_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
2029 gcc_cv_nm="$NM_FOR_TARGET"
2030else
2031 AC_PATH_PROG(gcc_cv_nm, $NM_FOR_TARGET)
2032fi])
9f18db39 2033
9f18db39 2034AC_MSG_CHECKING(what nm to use)
e8b05380
PB
2035if test "$gcc_cv_nm" = ../binutils/nm-new$build_exeext; then
2036 # Single tree build which includes binutils.
2037 AC_MSG_RESULT(newly built nm)
2038 in_tree_nm=yes
2039else
2040 AC_MSG_RESULT($gcc_cv_nm)
2041 in_tree_nm=no
2042fi
2043
2044ORIGINAL_NM_FOR_TARGET=$gcc_cv_nm
2045AC_SUBST(ORIGINAL_NM_FOR_TARGET)
be0fe523
PB
2046case "$ORIGINAL_NM_FOR_TARGET" in
2047 ./nm | ./nm$build_exeext) ;;
2048 *) AC_CONFIG_FILES(nm:exec-tool.in, [chmod +x nm]) ;;
2049esac
2050
981d4858 2051
3cae5780 2052# Figure out what objdump we will be using.
e8b05380 2053AS_VAR_SET_IF(gcc_cv_objdump,, [
d739199a 2054if test -f $gcc_cv_binutils_srcdir/configure.in \
c15b113b
DD
2055 && test -f ../binutils/Makefile \
2056 && test x$build = x$host; then
f9c1196a 2057 # Single tree build which includes binutils.
9f18db39 2058 gcc_cv_objdump=../binutils/objdump$build_exeext
d739199a
DJ
2059elif test -x objdump$build_exeext; then
2060 gcc_cv_objdump=./objdump$build_exeext
4a150fc8 2061elif ( set dummy $OBJDUMP_FOR_TARGET; test -x $[2] ); then
e8b05380
PB
2062 gcc_cv_objdump="$OBJDUMP_FOR_TARGET"
2063else
2064 AC_PATH_PROG(gcc_cv_objdump, $OBJDUMP_FOR_TARGET)
2065fi])
d739199a 2066
d739199a 2067AC_MSG_CHECKING(what objdump to use)
e8b05380
PB
2068if test "$gcc_cv_objdump" = ../binutils/objdump$build_exeext; then
2069 # Single tree build which includes binutils.
2070 AC_MSG_RESULT(newly built objdump)
2071elif test x$gcc_cv_objdump = x; then
2072 AC_MSG_RESULT(not found)
2073else
2074 AC_MSG_RESULT($gcc_cv_objdump)
2075fi
3cae5780 2076
6e97481b
JJ
2077# Figure out what readelf we will be using.
2078AS_VAR_SET_IF(gcc_cv_readelf,, [
2079if test -f $gcc_cv_binutils_srcdir/configure.in \
2080 && test -f ../binutils/Makefile \
2081 && test x$build = x$host; then
2082 # Single tree build which includes binutils.
2083 gcc_cv_readelf=../binutils/readelf$build_exeext
2084elif test -x readelf$build_exeext; then
2085 gcc_cv_readelf=./readelf$build_exeext
2086else
2087 AC_PATH_PROG(gcc_cv_readelf, readelf)
2088fi])
2089
2090AC_MSG_CHECKING(what readelf to use)
2091if test "$gcc_cv_readelf" = ../binutils/readelf$build_exeext; then
2092 # Single tree build which includes binutils.
2093 AC_MSG_RESULT(newly built readelf)
2094elif test x$gcc_cv_readelf = x; then
2095 AC_MSG_RESULT(not found)
2096else
2097 AC_MSG_RESULT($gcc_cv_readelf)
2098fi
2099
981d4858 2100# Figure out what assembler alignment features are present.
8ada417f
ZW
2101gcc_GAS_CHECK_FEATURE([.balign and .p2align], gcc_cv_as_balign_and_p2align,
2102 [2,6,0],,
2103[.balign 4
2104.p2align 2],,
2105[AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN, 1,
2106 [Define if your assembler supports .balign and .p2align.])])
2107
2108gcc_GAS_CHECK_FEATURE([.p2align with maximum skip], gcc_cv_as_max_skip_p2align,
2109 [2,8,0],,
2110 [.p2align 4,,7],,
2111[AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN, 1,
2112 [Define if your assembler supports specifying the maximum number
2113 of bytes to skip when using the GAS .p2align command.])])
2114
5708d18d
MS
2115gcc_GAS_CHECK_FEATURE([.literal16], gcc_cv_as_literal16,
2116 [2,8,0],,
2117 [.literal16],,
2118[AC_DEFINE(HAVE_GAS_LITERAL16, 1,
2119 [Define if your assembler supports .literal16.])])
2120
8ada417f
ZW
2121gcc_GAS_CHECK_FEATURE([working .subsection -1], gcc_cv_as_subsection_m1,
2122 [elf,2,9,0],,
2123 [conftest_label1: .word 0
d1accaa3
JJ
2124.subsection -1
2125conftest_label2: .word 0
8ada417f
ZW
2126.previous],
2127 [if test x$gcc_cv_nm != x; then
2128 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
2129 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
2130 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1
2131 then :
2132 else gcc_cv_as_subsection_m1=yes
2133 fi
2134 rm -f conftest.nm1 conftest.nm2
2135 fi],
2136 [AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
2137 [Define if your assembler supports .subsection and .subsection -1 starts
2138 emitting at the beginning of your section.])])
2139
2140gcc_GAS_CHECK_FEATURE([.weak], gcc_cv_as_weak,
2141 [2,2,0],,
2142 [ .weak foobar],,
2143[AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])])
2144
a0203ca7
AO
2145gcc_GAS_CHECK_FEATURE([.weakref], gcc_cv_as_weakref,
2146 [2,17,0],,
2147 [ .weakref foobar, barfnot],,
2148[AC_DEFINE(HAVE_GAS_WEAKREF, 1, [Define if your assembler supports .weakref.])])
2149
e41f3691
JDA
2150gcc_GAS_CHECK_FEATURE([.nsubspa comdat], gcc_cv_as_nsubspa_comdat,
2151 [2,15,91],,
2152 [ .SPACE $TEXT$
2153 .NSUBSPA $CODE$,COMDAT],,
2154[AC_DEFINE(HAVE_GAS_NSUBSPA_COMDAT, 1, [Define if your assembler supports .nsubspa comdat option.])])
2155
8ada417f
ZW
2156# .hidden needs to be supported in both the assembler and the linker,
2157# because GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
2158# This is irritatingly difficult to feature test for; we have to check the
2159# date string after the version number. If we've got an in-tree
2160# ld, we don't know its patchlevel version, so we set the baseline at 2.13
2161# to be safe.
2162# The gcc_GAS_CHECK_FEATURE call just sets a cache variable.
2163gcc_GAS_CHECK_FEATURE([.hidden], gcc_cv_as_hidden,
2164 [elf,2,13,0],,
2165[ .hidden foobar
ed104137
RO
2166foobar:],[
2167# Solaris 9/x86 as incorrectly emits an alias for a hidden symbol with
2168# STV_HIDDEN, so disable .hidden support if so.
2169case "${target}" in
2170 i?86-*-solaris2*)
2171 if test x$gcc_cv_as != x && test x$gcc_cv_objdump != x; then
2172 cat > conftest.s <<EOF
2173.globl hidden
2174 .hidden hidden
2175hidden:
2176.globl default
2177 .set default,hidden
2178EOF
2179 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
2180 && $gcc_cv_objdump -t conftest.o 2>/dev/null | \
2181 grep '\.hidden default' > /dev/null; then
2182 gcc_cv_as_hidden=no
2183 else
2184 gcc_cv_as_hidden=yes
2185 fi
2186 else
2187 # Assume bug is present if objdump is missing.
2188 gcc_cv_as_hidden=no
2189 fi
2190 ;;
2191 *)
2192 gcc_cv_as_hidden=yes
2193 ;;
2194esac])
ee610fcd
RO
2195case "${target}" in
2196 *-*-darwin*)
2197 # Darwin as has some visibility support, though with a different syntax.
2198 gcc_cv_as_hidden=yes
2199 ;;
2200esac
8ada417f 2201
ba885ec5
NS
2202# gnu_indirect_function type is an extension proposed at
2203# http://groups.google/com/group/generic-abi/files. It allows dynamic runtime
2204# selection of function implementation
f6c5fbfd
NS
2205AC_ARG_ENABLE(gnu-indirect-function,
2206 [AS_HELP_STRING([--enable-gnu-indirect-function],
2207 [enable the use of the @gnu_indirect_function to glibc systems])],
2208 [case $enable_gnu_indirect_function in
2209 yes | no) ;;
2210 *) AC_MSG_ERROR(['$enable_gnu_indirect_function' is an invalid value for --enable-gnu-indirect-function.
2211Valid choices are 'yes' and 'no'.]) ;;
2212 esac],
2213 [enable_gnu_indirect_function="$default_gnu_indirect_function"])
2214if test x$enable_gnu_indirect_function = xyes; then
2215 AC_DEFINE(HAVE_GNU_INDIRECT_FUNCTION, 1,
2216 [Define if your system supports gnu indirect functions.])
ba885ec5
NS
2217fi
2218
10ca6198
JJ
2219changequote(,)dnl
2220if test $in_tree_ld != yes ; then
2221 ld_ver=`$gcc_cv_ld --version 2>/dev/null | sed 1q`
55b46574
RO
2222 if echo "$ld_ver" | grep GNU > /dev/null; then
2223 if test x"$ld_is_gold" = xyes; then
2224 # GNU gold --version looks like this:
2225 #
2226 # GNU gold (GNU Binutils 2.21.51.20110225) 1.11
2227 #
2228 # We extract the binutils version which is more familiar and specific
2229 # than the gold version.
2230 ld_vers=`echo $ld_ver | sed -n \
2231 -e 's,^[^)]*[ ]\([0-9][0-9]*\.[0-9][0-9]*[^)]*\)) .*$,\1,p'`
2232 else
2233 # GNU ld --version looks like this:
2234 #
2235 # GNU ld (GNU Binutils) 2.21.51.20110225
2236 ld_vers=`echo $ld_ver | sed -n \
2237 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
2238 fi
10ca6198
JJ
2239 ld_date=`echo $ld_ver | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'`
2240 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
2241 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
2242 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
55c4f715
RO
2243 else
2244 case "${target}" in
2245 *-*-solaris2*)
2246 #
2247 # Solaris 2 ld -V output looks like this for a regular version:
2248 #
2249 # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1699
2250 #
2251 # but test versions add stuff at the end:
2252 #
2253 # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1701:onnv-ab196087-6931056-03/25/10
2254 #
2255 ld_ver=`$gcc_cv_ld -V 2>&1`
2256 if echo "$ld_ver" | grep 'Solaris Link Editors' > /dev/null; then
2257 ld_vers=`echo $ld_ver | sed -n \
2258 -e 's,^.*: 5\.[0-9][0-9]*-\([0-9]\.[0-9][0-9]*\).*$,\1,p'`
2259 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
2260 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
2261 fi
2262 ;;
2263 esac
10ca6198
JJ
2264 fi
2265fi
2266changequote([,])dnl
2267
8ada417f 2268AC_CACHE_CHECK(linker for .hidden support, gcc_cv_ld_hidden,
e5dfb95f 2269[[if test $in_tree_ld = yes ; then
8ada417f
ZW
2270 gcc_cv_ld_hidden=no
2271 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 \
2272 && test $in_tree_ld_is_elf = yes; then
2273 gcc_cv_ld_hidden=yes
2274 fi
2275else
2276 gcc_cv_ld_hidden=yes
55b46574
RO
2277 if test x"$ld_is_gold" = xyes; then
2278 :
2279 elif echo "$ld_ver" | grep GNU > /dev/null; then
8ada417f
ZW
2280 if test 0"$ld_date" -lt 20020404; then
2281 if test -n "$ld_date"; then
2282 # If there was date string, but was earlier than 2002-04-04, fail
2283 gcc_cv_ld_hidden=no
2284 elif test -z "$ld_vers"; then
2285 # If there was no date string nor ld version number, something is wrong
2286 gcc_cv_ld_hidden=no
2287 else
8ada417f
ZW
2288 test -z "$ld_vers_patch" && ld_vers_patch=0
2289 if test "$ld_vers_major" -lt 2; then
2290 gcc_cv_ld_hidden=no
2291 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
2292 gcc_cv_ld_hidden="no"
2293 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 -a "$ld_vers_patch" -eq 0; then
2294 gcc_cv_ld_hidden=no
c72931a6 2295 fi
8ada417f 2296 fi
789b7de5 2297 fi
8ada417f 2298 else
28690784 2299 case "${target}" in
ee610fcd
RO
2300 *-*-darwin*)
2301 # Darwin ld has some visibility support.
2302 gcc_cv_ld_hidden=yes
2303 ;;
b0fd7d27 2304 hppa64*-*-hpux* | ia64*-*-hpux*)
28690784
JDA
2305 gcc_cv_ld_hidden=yes
2306 ;;
319840d3
RO
2307 *-*-solaris2.8*)
2308 # .hidden support was backported to Solaris 8, starting with ld
2309 # version 1.276.
2310 if test "$ld_vers_minor" -ge 276; then
2311 gcc_cv_ld_hidden=yes
2312 else
2313 gcc_cv_ld_hidden=no
2314 fi
2315 ;;
5e87dc23 2316 *-*-solaris2.9* | *-*-solaris2.1[0-9]*)
a93e1899
RO
2317 # Support for .hidden in Sun ld appeared in Solaris 9 FCS, but
2318 # .symbolic was only added in Solaris 9 12/02.
5e87dc23
RO
2319 gcc_cv_ld_hidden=yes
2320 ;;
28690784
JDA
2321 *)
2322 gcc_cv_ld_hidden=no
2323 ;;
2324 esac
8ada417f 2325 fi
e5dfb95f 2326fi]])
8ada417f 2327libgcc_visibility=no
9e944a16 2328AC_SUBST(libgcc_visibility)
232b67d9 2329GCC_TARGET_TEMPLATE([HAVE_GAS_HIDDEN])
0f31374d 2330if test $gcc_cv_as_hidden = yes && test $gcc_cv_ld_hidden = yes; then
8ada417f
ZW
2331 libgcc_visibility=yes
2332 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
2333 [Define if your assembler and linker support .hidden.])
2334fi
6a9c5260 2335
e73da78e
RO
2336AC_MSG_CHECKING(linker read-only and read-write section mixing)
2337gcc_cv_ld_ro_rw_mix=unknown
2338if test $in_tree_ld = yes ; then
2339 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 \
2340 && test $in_tree_ld_is_elf = yes; then
2341 gcc_cv_ld_ro_rw_mix=read-write
2342 fi
2343elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
2344 echo '.section myfoosect, "a"' > conftest1.s
2345 echo '.section myfoosect, "aw"' > conftest2.s
2346 echo '.byte 1' >> conftest2.s
2347 echo '.section myfoosect, "a"' > conftest3.s
2348 echo '.byte 0' >> conftest3.s
2349 if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
2350 && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
2351 && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \
2352 && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
2353 conftest2.o conftest3.o > /dev/null 2>&1; then
2354 gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
2355 | sed -e '/myfoosect/!d' -e N`
2356 if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
2357 if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
2358 gcc_cv_ld_ro_rw_mix=read-only
2359 else
2360 gcc_cv_ld_ro_rw_mix=read-write
2361 fi
2362 fi
2363 fi
2364changequote(,)dnl
2365 rm -f conftest.* conftest[123].*
2366changequote([,])dnl
2367fi
2368if test x$gcc_cv_ld_ro_rw_mix = xread-write; then
2369 AC_DEFINE(HAVE_LD_RO_RW_SECTION_MIXING, 1,
2370 [Define if your linker links a mix of read-only
2371 and read-write sections into a read-write section.])
2372fi
2373AC_MSG_RESULT($gcc_cv_ld_ro_rw_mix)
2374
8ada417f
ZW
2375# Check if we have .[us]leb128, and support symbol arithmetic with it.
2376gcc_GAS_CHECK_FEATURE([.sleb128 and .uleb128], gcc_cv_as_leb128,
2377 [elf,2,11,0],,
2378[ .data
b7460f24
RH
2379 .uleb128 L2 - L1
2380L1:
2381 .uleb128 1280
2382 .sleb128 -1010
8ada417f 2383L2:],
e5dfb95f 2384[[# GAS versions before 2.11 do not support uleb128,
8ada417f
ZW
2385 # despite appearing to.
2386 # ??? There exists an elf-specific test that will crash
2387 # the assembler. Perhaps it's better to figure out whether
2388 # arbitrary sections are supported and try the test.
bace148a 2389 as_ver=`$gcc_cv_as --version 2>/dev/null | sed 1q`
8ada417f 2390 if echo "$as_ver" | grep GNU > /dev/null; then
ddcd0f6f 2391 as_vers=`echo $as_ver | sed -n \
115e6e55 2392 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
ddcd0f6f
BS
2393 as_major=`expr "$as_vers" : '\([0-9]*\)'`
2394 as_minor=`expr "$as_vers" : '[0-9]*\.\([0-9]*\)'`
8ada417f
ZW
2395 if test $as_major -eq 2 && test $as_minor -lt 11
2396 then :
2397 else gcc_cv_as_leb128=yes
2398 fi
e5dfb95f 2399 fi]],
8ada417f
ZW
2400 [AC_DEFINE(HAVE_AS_LEB128, 1,
2401 [Define if your assembler supports .sleb128 and .uleb128.])])
2402
d4ea4622
RH
2403# Check if we have assembler support for unwind directives.
2404gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive,
6e60703f 2405 ,,
d4ea4622
RH
2406[ .text
2407 .cfi_startproc
2408 .cfi_offset 0, 0
2409 .cfi_same_value 1
2410 .cfi_def_cfa 1, 2
2411 .cfi_escape 1, 2, 3, 4, 5
e73da78e
RO
2412 .cfi_endproc],
2413[case "$target" in
2414 *-*-solaris*)
2415 # If the linker used on Solaris (like Sun ld) isn't capable of merging
2416 # read-only and read-write sections, we need to make sure that the
2417 # assembler used emits read-write .eh_frame sections.
2418 if test "x$gcc_cv_ld_ro_rw_mix" != xread-write; then
2419 if test "x$gcc_cv_objdump" != x; then
2420 if $gcc_cv_objdump -h conftest.o 2>/dev/null | \
2421 sed -e /.eh_frame/!d -e N | grep READONLY > /dev/null; then
2422 gcc_cv_as_cfi_directive=no
2423 else
eb2573ee
RO
2424 case "$target" in
2425 i?86-*-solaris2.1[[0-9]]*)
2426 # On Solaris/x86, make sure that GCC and gas agree on using
2427 # read-only .eh_frame sections for 64-bit.
2428 if $gcc_cv_as --64 -o conftest.o conftest.s > /dev/null 2>&1 && \
2429 $gcc_cv_objdump -h conftest.o 2>/dev/null | \
2430 sed -e /.eh_frame/!d -e N | \
2431 grep READONLY > /dev/null; then
2432 gcc_cv_as_cfi_directive=yes
2433 else
2434 gcc_cv_as_cfi_directive=no
2435 fi
2436 ;;
2437 *)
2438 gcc_cv_as_cfi_directive=yes
2439 ;;
2440 esac
e73da78e
RO
2441 fi
2442 else
2443 # no objdump, err on the side of caution
2444 gcc_cv_as_cfi_directive=no
2445 fi
2446 else
2447 gcc_cv_as_cfi_directive=yes
2448 fi
2449 ;;
2450 *-*-*)
2451 gcc_cv_as_cfi_directive=yes
2452 ;;
2453esac])
92053f38 2454if test $gcc_cv_as_cfi_directive = yes && test x$gcc_cv_objdump != x; then
6e97481b
JJ
2455gcc_GAS_CHECK_FEATURE([working cfi advance], gcc_cv_as_cfi_advance_working,
2456 ,,
2457[ .text
2458 .cfi_startproc
2459 .cfi_adjust_cfa_offset 64
7ac22e17 2460 .skip 75040, 0
6e97481b
JJ
2461 .cfi_adjust_cfa_offset 128
2462 .cfi_endproc],
e5dfb95f 2463[[
92053f38 2464if $gcc_cv_objdump -Wf conftest.o 2>/dev/null \
7ac22e17 2465 | grep 'DW_CFA_advance_loc[24]:[ ][ ]*75040[ ]' >/dev/null; then
6e97481b
JJ
2466 gcc_cv_as_cfi_advance_working=yes
2467fi
e5dfb95f 2468]])
6e97481b 2469else
92053f38 2470 # no objdump, err on the side of caution
66f91112 2471 gcc_cv_as_cfi_advance_working=no
6e97481b 2472fi
174425ad 2473GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_DIRECTIVE)
d4ea4622 2474AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE,
6e97481b
JJ
2475 [`if test $gcc_cv_as_cfi_directive = yes \
2476 && test $gcc_cv_as_cfi_advance_working = yes; then echo 1; else echo 0; fi`],
058514b3
RH
2477 [Define 0/1 if your assembler supports CFI directives.])
2478
174425ad 2479GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE)
058514b3 2480gcc_GAS_CHECK_FEATURE([cfi personality directive],
6e60703f 2481 gcc_cv_as_cfi_personality_directive, ,,
058514b3 2482[ .text
042628f9 2483 .cfi_startproc
058514b3
RH
2484 .cfi_personality 0, symbol
2485 .cfi_endproc])
2486AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE,
2487 [`if test $gcc_cv_as_cfi_personality_directive = yes;
2488 then echo 1; else echo 0; fi`],
2489 [Define 0/1 if your assembler supports .cfi_personality.])
d4ea4622 2490
7d45fb94
JJ
2491gcc_GAS_CHECK_FEATURE([cfi sections directive],
2492 gcc_cv_as_cfi_sections_directive, ,,
2493[ .text
2494 .cfi_sections .debug_frame, .eh_frame
2495 .cfi_startproc
92053f38
RH
2496 .cfi_endproc],
2497[case $target_os in
2498 win32 | pe | cygwin* | mingw32* | uwin*)
2499 # Need to check that we generated the correct relocation for the
2500 # .debug_frame section. This was fixed for binutils 2.21.
2501 gcc_cv_as_cfi_sections_directive=no
2502 if test "x$gcc_cv_objdump" != x; then
2503 if $gcc_cv_objdump -j .debug_frame -r conftest.o 2>/dev/null | \
2504 grep secrel > /dev/null; then
2505 gcc_cv_as_cfi_sections_directive=yes
2506 fi
2507 fi
2508 ;;
2509 *)
2510 gcc_cv_as_cfi_sections_directive=yes
2511 ;;
2512esac])
174425ad 2513GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_SECTIONS_DIRECTIVE)
7d45fb94
JJ
2514AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_SECTIONS_DIRECTIVE,
2515 [`if test $gcc_cv_as_cfi_sections_directive = yes;
2516 then echo 1; else echo 0; fi`],
2517 [Define 0/1 if your assembler supports .cfi_sections.])
2518
8ada417f
ZW
2519# GAS versions up to and including 2.11.0 may mis-optimize
2520# .eh_frame data.
2521gcc_GAS_CHECK_FEATURE(eh_frame optimization, gcc_cv_as_eh_frame,
2522 [elf,2,12,0],,
2523[ .text
c64688ae
RH
2524.LFB1:
2525 .4byte 0
2526.L1:
2527 .4byte 0
2528.LFE1:
2529 .section .eh_frame,"aw",@progbits
2530__FRAME_BEGIN__:
2531 .4byte .LECIE1-.LSCIE1
2532.LSCIE1:
2533 .4byte 0x0
2534 .byte 0x1
2535 .ascii "z\0"
2536 .byte 0x1
2537 .byte 0x78
2538 .byte 0x1a
2539 .byte 0x0
2540 .byte 0x4
2541 .4byte 1
2542 .p2align 1
2543.LECIE1:
2544.LSFDE1:
2545 .4byte .LEFDE1-.LASFDE1
2546.LASFDE1:
2547 .4byte .LASFDE1-__FRAME_BEGIN__
2548 .4byte .LFB1
2549 .4byte .LFE1-.LFB1
2550 .byte 0x4
2551 .4byte .LFE1-.LFB1
2552 .byte 0x4
2553 .4byte .L1-.LFB1
8ada417f 2554.LEFDE1:],
ba479fd2
NN
2555[ dnl # For autoconf 2.5x, must protect trailing spaces with @&t@.
2556cat > conftest.lit <<EOF
c64688ae
RH
2557 0000 10000000 00000000 017a0001 781a0004 .........z..x...
2558 0010 01000000 12000000 18000000 00000000 ................
ba479fd2 2559 0020 08000000 04080000 0044 .........D @&t@
01efb963 2560EOF
ba479fd2 2561cat > conftest.big <<EOF
01efb963
AS
2562 0000 00000010 00000000 017a0001 781a0004 .........z..x...
2563 0010 00000001 00000012 00000018 00000000 ................
ba479fd2 2564 0020 00000008 04000000 0844 .........D @&t@
c64688ae 2565EOF
8ada417f
ZW
2566 # If the assembler didn't choke, and we can objdump,
2567 # and we got the correct data, then succeed.
dbc02e7f
AS
2568 # The text in the here-document typically retains its unix-style line
2569 # endings, while the output of objdump will use host line endings.
2570 # Therefore, use diff -b for the comparisons.
8ada417f
ZW
2571 if test x$gcc_cv_objdump != x \
2572 && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
2573 | tail -3 > conftest.got \
dbc02e7f
AS
2574 && { diff -b conftest.lit conftest.got > /dev/null 2>&1 \
2575 || diff -b conftest.big conftest.got > /dev/null 2>&1; }
8ada417f
ZW
2576 then
2577 gcc_cv_as_eh_frame=yes
2578 elif AC_TRY_COMMAND($gcc_cv_as -o conftest.o --traditional-format /dev/null); then
2579 gcc_cv_as_eh_frame=buggy
2580 else
2581 # Uh oh, what do we do now?
2582 gcc_cv_as_eh_frame=no
2583 fi])
2584
2585if test $gcc_cv_as_eh_frame = buggy; then
2586 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
2587 [Define if your assembler mis-optimizes .eh_frame data.])
201556f0 2588fi
201556f0 2589
8ada417f
ZW
2590gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
2591 [elf,2,12,0], [--fatal-warnings],
5d4856a0 2592 [.section .rodata.str, "aMS", @progbits, 1])
c18a5b6c
MM
2593if test $gcc_cv_as_shf_merge = no; then
2594 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
2595 [elf,2,12,0], [--fatal-warnings],
2596 [.section .rodata.str, "aMS", %progbits, 1])
2597fi
5d4856a0
RO
2598AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_MERGE,
2599 [`if test $gcc_cv_as_shf_merge = yes; then echo 1; else echo 0; fi`],
2600[Define 0/1 if your assembler supports marking sections with SHF_MERGE flag.])
8ada417f 2601
2ca48caa
RO
2602gcc_GAS_CHECK_FEATURE([COMDAT group support (GNU as)],
2603 gcc_cv_as_comdat_group,
11176d2a 2604 [elf,2,16,0], [--fatal-warnings],
c18a5b6c
MM
2605 [.section .text,"axG",@progbits,.foo,comdat])
2606if test $gcc_cv_as_comdat_group = yes; then
2607 gcc_cv_as_comdat_group_percent=no
2ca48caa 2608 gcc_cv_as_comdat_group_group=no
c18a5b6c 2609else
2ca48caa
RO
2610 gcc_GAS_CHECK_FEATURE([COMDAT group support (GNU as, %type)],
2611 gcc_cv_as_comdat_group_percent,
11176d2a 2612 [elf,2,16,0], [--fatal-warnings],
c18a5b6c 2613 [.section .text,"axG",%progbits,.foo,comdat])
2ca48caa
RO
2614 if test $gcc_cv_as_comdat_group_percent = yes; then
2615 gcc_cv_as_comdat_group_group=no
2616 else
2617 case "${target}" in
2618 # Sun as uses a completely different syntax.
2619 *-*-solaris2*)
2620 case "${target}" in
2621 sparc*-*-solaris2*)
2622 conftest_s='
2623 .group foo,".text%foo",#comdat
2624 .section ".text%foo", #alloc,#execinstr,#progbits
2625 .globl foo
2626 foo:
2627 '
2628 ;;
2629 i?86-*-solaris2*)
2630 conftest_s='
2631 .group foo,.text%foo,#comdat
2632 .section .text%foo, "ax", @progbits
2633 .globl foo
2634 foo:
2635 '
2636 ;;
2637 esac
2638 gcc_GAS_CHECK_FEATURE([COMDAT group support (Sun as, .group)],
2639 gcc_cv_as_comdat_group_group,
2640 ,, [$conftest_s])
2641 ;;
2642 esac
2643 fi
c18a5b6c 2644fi
1dcc82c2
DK
2645if test x"$ld_is_gold" = xyes; then
2646 comdat_group=yes
2647elif test $in_tree_ld = yes ; then
39ba7b7d
JB
2648 comdat_group=no
2649 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 \
2650 && test $in_tree_ld_is_elf = yes; then
2651 comdat_group=yes
2652 fi
55c4f715 2653elif echo "$ld_ver" | grep GNU > /dev/null; then
11176d2a
JB
2654 comdat_group=yes
2655 if test 0"$ld_date" -lt 20050308; then
2656 if test -n "$ld_date"; then
2657 # If there was date string, but was earlier than 2005-03-08, fail
2658 comdat_group=no
2659 elif test "$ld_vers_major" -lt 2; then
2660 comdat_group=no
2661 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
2662 comdat_group=no
2663 fi
2664 fi
1cf0118d 2665else
55c4f715
RO
2666changequote(,)dnl
2667 case "${target}" in
2668 *-*-solaris2.1[1-9]*)
2ca48caa 2669 comdat_group=no
55c4f715
RO
2670 # Sun ld has COMDAT group support since Solaris 9, but it doesn't
2671 # interoperate with GNU as until Solaris 11 build 130, i.e. ld
2672 # version 1.688.
2673 #
2ca48caa
RO
2674 # If using Sun as for COMDAT group as emitted by GCC, one needs at
2675 # least ld version 1.2267.
2676 if test "$ld_vers_major" -gt 1; then
55c4f715 2677 comdat_group=yes
2ca48caa
RO
2678 elif test "x$gas_flag" = xyes && test "$ld_vers_minor" -ge 1688; then
2679 comdat_group=yes
2680 elif test "$ld_vers_minor" -ge 2267; then
2681 comdat_group=yes
55c4f715
RO
2682 fi
2683 ;;
2684 *)
2685 # Assume linkers other than GNU ld don't support COMDAT group.
2686 comdat_group=no
2687 ;;
2688 esac
2689changequote([,])dnl
1cf0118d 2690fi
55c4f715
RO
2691# Allow overriding the automatic COMDAT group tests above.
2692AC_ARG_ENABLE(comdat,
2693 [AS_HELP_STRING([--enable-comdat], [enable COMDAT group support])],
2694 [comdat_group="$enable_comdat"])
1cf0118d
RO
2695if test $comdat_group = no; then
2696 gcc_cv_as_comdat_group=no
2697 gcc_cv_as_comdat_group_percent=no
2ca48caa 2698 gcc_cv_as_comdat_group_group=no
11176d2a
JB
2699fi
2700AC_DEFINE_UNQUOTED(HAVE_COMDAT_GROUP,
2ca48caa
RO
2701 [`if test $gcc_cv_as_comdat_group = yes \
2702 || test $gcc_cv_as_comdat_group_percent = yes \
2703 || test $gcc_cv_as_comdat_group_group = yes; then echo 1; else echo 0; fi`],
11176d2a 2704[Define 0/1 if your assembler and linker support COMDAT groups.])
c18a5b6c 2705
6c52e687
CC
2706gcc_GAS_CHECK_FEATURE([line table discriminator support],
2707 gcc_cv_as_discriminator,
2708 [2,19,51],,
2709[ .text
2710 .file 1 "conf.c"
2711 .loc 1 1 0 discriminator 1],,
2712[AC_DEFINE(HAVE_GAS_DISCRIMINATOR, 1,
2713 [Define if your assembler supports the .loc discriminator sub-directive.])])
2714
6a7a462c 2715# Thread-local storage - the check is heavily parameterized.
f996902d
RH
2716conftest_s=
2717tls_first_major=
2718tls_first_minor=
9739c90c 2719tls_as_opt=
f996902d
RH
2720case "$target" in
2721changequote(,)dnl
6f9b006d
RH
2722 alpha*-*-*)
2723 conftest_s='
2724 .section ".tdata","awT",@progbits
2725foo: .long 25
2726 .text
2727 ldq $27,__tls_get_addr($29) !literal!1
2728 lda $16,foo($29) !tlsgd!1
2729 jsr $26,($27),__tls_get_addr !lituse_tlsgd!1
2730 ldq $27,__tls_get_addr($29) !literal!2
2731 lda $16,foo($29) !tlsldm!2
2732 jsr $26,($27),__tls_get_addr !lituse_tlsldm!2
2733 ldq $1,foo($29) !gotdtprel
2734 ldah $2,foo($29) !dtprelhi
2735 lda $3,foo($2) !dtprello
2736 lda $4,foo($29) !dtprel
2737 ldq $1,foo($29) !gottprel
2738 ldah $2,foo($29) !tprelhi
2739 lda $3,foo($2) !tprello
2740 lda $4,foo($29) !tprel'
2741 tls_first_major=2
2742 tls_first_minor=13
2f3321ca 2743 tls_as_opt=--fatal-warnings
6f9b006d 2744 ;;
ad9646c7
HPN
2745 cris-*-*|crisv32-*-*)
2746 conftest_s='
2747 .section ".tdata","awT",@progbits
2748x: .long 25
2749 .text
2750 move.d x:IE,$r10
2751 nop'
2752 tls_first_major=2
2753 tls_first_minor=20
2754 tls_as_opt=--fatal-warnings
2755 ;;
e4dd71de
AH
2756 frv*-*-*)
2757 conftest_s='
2758 .section ".tdata","awT",@progbits
2759x: .long 25
2760 .text
2761 call #gettlsoff(x)'
2762 tls_first_major=2
2763 tls_first_minor=14
2764 ;;
51076f96
RC
2765 hppa*-*-linux*)
2766 conftest_s='
2767t1: .reg %r20
2768t2: .reg %r21
2769gp: .reg %r19
2770 .section ".tdata","awT",@progbits
2771foo: .long 25
2772 .text
2773 .align 4
2774 addil LT%foo-$tls_gdidx$,gp
2775 ldo RT%foo-$tls_gdidx$(%r1),%arg0
2776 b __tls_get_addr
2777 nop
2778 addil LT%foo-$tls_ldidx$,gp
2779 b __tls_get_addr
2780 ldo RT%foo-$tls_ldidx$(%r1),%arg0
2781 addil LR%foo-$tls_dtpoff$,%ret0
2782 ldo RR%foo-$tls_dtpoff$(%r1),%t1
2783 mfctl %cr27,%t1
2784 addil LT%foo-$tls_ieoff$,gp
2785 ldw RT%foo-$tls_ieoff$(%r1),%t2
2786 add %t1,%t2,%t3
2787 mfctl %cr27,%t1
2788 addil LR%foo-$tls_leoff$,%t1
2789 ldo RR%foo-$tls_leoff$(%r1),%t2'
2790 tls_first_major=2
2791 tls_first_minor=15
2792 tls_as_opt=--fatal-warnings
2793 ;;
d3585b76
DJ
2794 arm*-*-*)
2795 conftest_s='
2796 .section ".tdata","awT",%progbits
2797foo: .long 25
2798 .text
2799.word foo(gottpoff)
2800.word foo(tpoff)
2801.word foo(tlsgd)
2802.word foo(tlsldm)
2803.word foo(tlsldo)'
2804 tls_first_major=2
2805 tls_first_minor=17
2806 ;;
f996902d 2807 i[34567]86-*-*)
f1c26cad 2808 case "$target" in
f1c26cad
RO
2809 i[34567]86-*-solaris2.*)
2810 on_solaris=yes
16c9d3b1 2811 tga_func=___tls_get_addr
f1c26cad
RO
2812 ;;
2813 *)
2814 on_solaris=no
2815 ;;
2816 esac
2817 if test x$on_solaris = xyes && test x$gas_flag = xno; then
2818 conftest_s='
2819 .section .tdata,"awt",@progbits'
2820 tls_first_major=0
2821 tls_first_minor=0
2822changequote([,])dnl
2823 AC_DEFINE(TLS_SECTION_ASM_FLAG, 't',
2824[Define to the flag used to mark TLS sections if the default (`T') doesn't work.])
2825changequote(,)dnl
2826 else
2827 conftest_s='
2828 .section ".tdata","awT",@progbits'
2829 tls_first_major=2
2830 tls_first_minor=14
2831 tls_as_opt="--fatal-warnings"
2832 fi
2833 conftest_s="$conftest_s
f996902d
RH
2834foo: .long 25
2835 .text
2836 movl %gs:0, %eax
f1c26cad
RO
2837 leal foo@tlsgd(,%ebx,1), %eax
2838 leal foo@tlsldm(%ebx), %eax
2839 leal foo@dtpoff(%eax), %edx
2840 movl foo@gottpoff(%ebx), %eax
2841 subl foo@gottpoff(%ebx), %eax
2842 addl foo@gotntpoff(%ebx), %eax
2843 movl foo@indntpoff, %eax
2844 movl \$foo@tpoff, %eax
2845 subl \$foo@tpoff, %eax
2846 leal foo@ntpoff(%ecx), %eax"
2847 ;;
75d38379
JJ
2848 x86_64-*-*)
2849 conftest_s='
2850 .section ".tdata","awT",@progbits
2851foo: .long 25
2852 .text
2853 movq %fs:0, %rax
2854 leaq foo@TLSGD(%rip), %rdi
2855 leaq foo@TLSLD(%rip), %rdi
2856 leaq foo@DTPOFF(%rax), %rdx
2857 movq foo@GOTTPOFF(%rip), %rax
2858 movq $foo@TPOFF, %rax'
2859 tls_first_major=2
2860 tls_first_minor=14
2f3321ca 2861 tls_as_opt=--fatal-warnings
f996902d 2862 ;;
7b6e506e
RH
2863 ia64-*-*)
2864 conftest_s='
2865 .section ".tdata","awT",@progbits
2866foo: data8 25
2867 .text
2868 addl r16 = @ltoff(@dtpmod(foo#)), gp
2869 addl r17 = @ltoff(@dtprel(foo#)), gp
2870 addl r18 = @ltoff(@tprel(foo#)), gp
2871 addl r19 = @dtprel(foo#), gp
2872 adds r21 = @dtprel(foo#), r13
2873 movl r23 = @dtprel(foo#)
2874 addl r20 = @tprel(foo#), gp
2875 adds r22 = @tprel(foo#), r13
2876 movl r24 = @tprel(foo#)'
2877 tls_first_major=2
2878 tls_first_minor=13
2f3321ca 2879 tls_as_opt=--fatal-warnings
7b6e506e 2880 ;;
69229b81
DJ
2881 mips*-*-*)
2882 conftest_s='
2883 .section .tdata,"awT",@progbits
2884x:
2885 .word 2
2886 .text
2887 addiu $4, $28, %tlsgd(x)
2888 addiu $4, $28, %tlsldm(x)
2889 lui $4, %dtprel_hi(x)
2890 addiu $4, $4, %dtprel_lo(x)
2891 lw $4, %gottprel(x)($28)
2892 lui $4, %tprel_hi(x)
2893 addiu $4, $4, %tprel_lo(x)'
2894 tls_first_major=2
2895 tls_first_minor=16
2896 tls_as_opt='-32 --fatal-warnings'
2897 ;;
75df395f
MK
2898 m68k-*-*)
2899 conftest_s='
2900 .section .tdata,"awT",@progbits
2901x:
2902 .word 2
2903 .text
2904foo:
2905 move.l x@TLSGD(%a5),%a0
2906 move.l x@TLSLDM(%a5),%a0
2907 move.l x@TLSLDO(%a5),%a0
2908 move.l x@TLSIE(%a5),%a0
2909 move.l x@TLSLE(%a5),%a0'
2910 tls_first_major=2
2911 tls_first_minor=19
2912 tls_as_opt='--fatal-warnings'
2913 ;;
c4501e62
JJ
2914 powerpc-*-*)
2915 conftest_s='
2916 .section ".tdata","awT",@progbits
2917 .align 2
2918ld0: .space 4
2919ld1: .space 4
2920x1: .space 4
2921x2: .space 4
2922x3: .space 4
2923 .text
2924 addi 3,31,ld0@got@tlsgd
2925 bl __tls_get_addr
2926 addi 3,31,x1@got@tlsld
2927 bl __tls_get_addr
2928 addi 9,3,x1@dtprel
2929 addis 9,3,x2@dtprel@ha
2930 addi 9,9,x2@dtprel@l
2931 lwz 9,x3@got@tprel(31)
2932 add 9,9,x@tls
2933 addi 9,2,x1@tprel
2934 addis 9,2,x2@tprel@ha
2935 addi 9,9,x2@tprel@l'
2936 tls_first_major=2
2937 tls_first_minor=14
2f3321ca 2938 tls_as_opt="-a32 --fatal-warnings"
c4501e62
JJ
2939 ;;
2940 powerpc64-*-*)
2941 conftest_s='
2942 .section ".tdata","awT",@progbits
2943 .align 3
2944ld0: .space 8
2945ld1: .space 8
2946x1: .space 8
2947x2: .space 8
2948x3: .space 8
2949 .text
2950 addi 3,2,ld0@got@tlsgd
2951 bl .__tls_get_addr
2952 nop
2953 addi 3,2,ld1@toc
2954 bl .__tls_get_addr
2955 nop
2956 addi 3,2,x1@got@tlsld
2957 bl .__tls_get_addr
2958 nop
2959 addi 9,3,x1@dtprel
2960 bl .__tls_get_addr
2961 nop
2962 addis 9,3,x2@dtprel@ha
2963 addi 9,9,x2@dtprel@l
2964 bl .__tls_get_addr
2965 nop
2966 ld 9,x3@got@dtprel(2)
2967 add 9,9,3
2968 bl .__tls_get_addr
2969 nop'
2970 tls_first_major=2
2971 tls_first_minor=14
2f3321ca 2972 tls_as_opt="-a64 --fatal-warnings"
c4501e62 2973 ;;
fd3cd001
UW
2974 s390-*-*)
2975 conftest_s='
2976 .section ".tdata","awT",@progbits
2977foo: .long 25
2978 .text
2979 .long foo@TLSGD
2980 .long foo@TLSLDM
2981 .long foo@DTPOFF
2982 .long foo@NTPOFF
2983 .long foo@GOTNTPOFF
2984 .long foo@INDNTPOFF
2985 l %r1,foo@GOTNTPOFF(%r12)
2986 l %r1,0(%r1):tls_load:foo
2987 bas %r14,0(%r1,%r13):tls_gdcall:foo
2988 bas %r14,0(%r1,%r13):tls_ldcall:foo'
2989 tls_first_major=2
2990 tls_first_minor=14
2f3321ca 2991 tls_as_opt="-m31 --fatal-warnings"
fd3cd001
UW
2992 ;;
2993 s390x-*-*)
2994 conftest_s='
2995 .section ".tdata","awT",@progbits
2996foo: .long 25
2997 .text
2998 .quad foo@TLSGD
2999 .quad foo@TLSLDM
3000 .quad foo@DTPOFF
3001 .quad foo@NTPOFF
3002 .quad foo@GOTNTPOFF
3003 lg %r1,foo@GOTNTPOFF(%r12)
3004 larl %r1,foo@INDNTPOFF
3005 brasl %r14,__tls_get_offset@PLT:tls_gdcall:foo
3006 brasl %r14,__tls_get_offset@PLT:tls_ldcall:foo'
3007 tls_first_major=2
3008 tls_first_minor=14
2f3321ca 3009 tls_as_opt="-m64 -Aesame --fatal-warnings"
fd3cd001 3010 ;;
9ff13962
KK
3011 sh-*-* | sh[34]-*-*)
3012 conftest_s='
3013 .section ".tdata","awT",@progbits
3014foo: .long 25
3015 .text
3016 .long foo@TLSGD
3017 .long foo@TLSLDM
3018 .long foo@DTPOFF
3019 .long foo@GOTTPOFF
3020 .long foo@TPOFF'
3021 tls_first_major=2
3022 tls_first_minor=13
2f3321ca 3023 tls_as_opt=--fatal-warnings
9ff13962 3024 ;;
5751a10b 3025 sparc*-*-*)
2f3321ca
EB
3026 case "$target" in
3027 sparc*-sun-solaris2.*)
3028 on_solaris=yes
16c9d3b1 3029 tga_func=__tls_get_addr
2f3321ca
EB
3030 ;;
3031 *)
3032 on_solaris=no
3033 ;;
3034 esac
3035 if test x$on_solaris = xyes && test x$gas_flag = xno; then
3036 conftest_s='
16c9d3b1 3037 .section ".tdata",#alloc,#write,#tls'
2f3321ca
EB
3038 tls_first_major=0
3039 tls_first_minor=0
3040 else
3041 conftest_s='
16c9d3b1
RO
3042 .section ".tdata","awT",@progbits'
3043 tls_first_major=2
3044 tls_first_minor=14
3045 tls_as_opt="-32 --fatal-warnings"
3046 fi
3047 conftest_s="$conftest_s
5751a10b
JJ
3048foo: .long 25
3049 .text
3050 sethi %tgd_hi22(foo), %o0
3051 add %o0, %tgd_lo10(foo), %o1
3052 add %l7, %o1, %o0, %tgd_add(foo)
3053 call __tls_get_addr, %tgd_call(foo)
3054 sethi %tldm_hi22(foo), %l1
3055 add %l1, %tldm_lo10(foo), %l2
3056 add %l7, %l2, %o0, %tldm_add(foo)
3057 call __tls_get_addr, %tldm_call(foo)
3058 sethi %tldo_hix22(foo), %l3
3059 xor %l3, %tldo_lox10(foo), %l4
3060 add %o0, %l4, %l5, %tldo_add(foo)
3061 sethi %tie_hi22(foo), %o3
3062 add %o3, %tie_lo10(foo), %o3
3063 ld [%l7 + %o3], %o2, %tie_ld(foo)
3064 add %g7, %o2, %o4, %tie_add(foo)
3065 sethi %tle_hix22(foo), %l1
3066 xor %l1, %tle_lox10(foo), %o5
16c9d3b1 3067 ld [%g7 + %o5], %o1"
5751a10b 3068 ;;
6a7a462c
BW
3069 xtensa*-*-*)
3070 conftest_s='
3071 .section ".tdata","awT",@progbits
3072foo: .long 25
3073 .text
3074 movi a8, foo@TLSFUNC
3075 movi a10, foo@TLSARG
3076 callx8.tls a8, foo@TLSCALL'
3077 tls_first_major=2
3078 tls_first_minor=19
3079 ;;
5751a10b 3080changequote([,])dnl
f996902d 3081esac
8dea1cca
DD
3082set_have_as_tls=no
3083if test "x$enable_tls" = xno ; then
3084 : # TLS explicitly disabled.
3085elif test "x$enable_tls" = xyes ; then
3086 set_have_as_tls=yes # TLS explicitly enabled.
3087elif test -z "$tls_first_major"; then
8ada417f
ZW
3088 : # If we don't have a check, assume no support.
3089else
3090 gcc_GAS_CHECK_FEATURE(thread-local storage support, gcc_cv_as_tls,
2f3321ca 3091 [$tls_first_major,$tls_first_minor,0], [$tls_as_opt], [$conftest_s],,
8dea1cca
DD
3092 [set_have_as_tls=yes])
3093fi
16c9d3b1 3094case "$target" in
23d50abb
RO
3095 *-*-irix6*)
3096 # IRIX 6.5 rld and libc.so lack TLS support, so even if gas and gld
3097 # with TLS support are in use, native TLS cannot work.
3098 set_have_as_tls=no
3099 ;;
3100 *-*-osf*)
3101 # Tru64 UNIX loader and libc.so lack TLS support, so even if gas and
3102 # gld with TLS support are in use, native TLS cannot work.
3103 set_have_as_tls=no
3104 ;;
16c9d3b1
RO
3105 # TLS was introduced in the Solaris 9 FCS release and backported to
3106 # Solaris 8 patches. Support for GNU-style TLS on x86 was only
3107 # introduced in Solaris 9 4/04, replacing the earlier Sun style that Sun
3108 # ld and GCC don't support any longer.
3109 *-*-solaris2.*)
3110 AC_MSG_CHECKING(linker and ld.so.1 TLS support)
3111 ld_tls_support=no
3112 # Check ld and ld.so.1 TLS support.
3113 if echo "$ld_ver" | grep GNU > /dev/null; then
3114 # Assume all interesting versions of GNU ld have TLS support.
3115 # FIXME: still need ld.so.1 support, i.e. ld version checks below.
3116 ld_tls_support=yes
3117 else
3118 case "$target" in
3119 # Solaris 8/x86 ld has GNU style TLS support since version 1.280.
3120 i?86-*-solaris2.8)
3121 min_tls_ld_vers_minor=280
3122 ;;
3123 # Solaris 8/SPARC ld has TLS support since version 1.272.
3124 sparc*-*-solaris2.8)
3125 min_tls_ld_vers_minor=272
3126 ;;
3127 # Solaris 9/x86 ld has GNU style TLS support since version 1.374.
3128 i?86-*-solaris2.9)
3129 min_tls_ld_vers_minor=374
3130 ;;
3131 # Solaris 9/SPARC and Solaris 10+ ld have TLS support since FCS.
3132 sparc*-*-solaris2.9 | *-*-solaris2.1[[0-9]]*)
3133 min_tls_ld_vers_minor=343
3134 ;;
3135 esac
2b48f20d 3136 if test "$ld_vers_major" -gt 1 || \
16c9d3b1
RO
3137 test "$ld_vers_minor" -ge "$min_tls_ld_vers_minor"; then
3138 ld_tls_support=yes
3139 else
3140 set_have_as_tls=no
3141 fi
3142 fi
3143 AC_MSG_RESULT($ld_tls_support)
3144
3145 save_LIBS="$LIBS"
3146 save_LDFLAGS="$LDFLAGS"
3147 LIBS=
3148 LDFLAGS=
3149
3150 AC_MSG_CHECKING(alternate thread library)
3151 case "$target" in
3152 # TLS support was backported to Solaris 8 patches, but only lives in
3153 # the alternate thread library which became the default in Solaris 9.
3154 # We want to always use that, irrespective of TLS support.
3155 *-*-solaris2.8)
3156 # Take multilib subdir into account. There's no spec to handle
3157 # this. The 64 symlink exists since Solaris 8.
3158 lwp_dir=/usr/lib/lwp
3159 lwp_spec="-L$lwp_dir%{m64:/64} -R$lwp_dir%{m64:/64}"
3160 LDFLAGS="-L$lwp_dir -R$lwp_dir"
3161 ;;
3162 *-*-solaris2*)
3163 lwp_dir="none"
3164 lwp_spec=""
3165 ;;
3166 esac
3167 # Always define LIB_THREAD_LDFLAGS_SPEC, even without TLS support.
3168 AC_DEFINE_UNQUOTED(LIB_THREAD_LDFLAGS_SPEC, "$lwp_spec",
3169 [Define to the linker flags to use for -pthread.])
3170 AC_MSG_RESULT($lwp_dir)
3171
3172 AC_MSG_CHECKING(library containing $tga_func)
3173 # Before Solaris 10, __tls_get_addr (SPARC/x64) resp. ___tls_get_addr
3174 # (32-bit x86) only lived in libthread, so check for that. Keep
3175 # set_have_as_tls if found, disable if not.
3176 AC_SEARCH_LIBS([$tga_func], [thread],, [set_have_as_tls=no])
3177 # Clear LIBS if we cannot support TLS.
3178 if test $set_have_as_tls = no; then
3179 LIBS=
3180 fi
3181 # Always define LIB_TLS_SPEC, even without TLS support.
3182 AC_DEFINE_UNQUOTED(LIB_TLS_SPEC, "$LIBS",
3183 [Define to the library containing __tls_get_addr/___tls_get_addr.])
3184 AC_MSG_RESULT($LIBS)
3185
3186 LIBS="$save_LIBS"
3187 LDFLAGS="$save_LDFLAGS"
3188 ;;
3189esac
8dea1cca
DD
3190if test $set_have_as_tls = yes ; then
3191 AC_DEFINE(HAVE_AS_TLS, 1,
16c9d3b1 3192 [Define if your assembler and linker support thread-local storage.])
f996902d 3193fi
8ada417f
ZW
3194
3195# Target-specific assembler checks.
f996902d 3196
7e9d8517
L
3197AC_MSG_CHECKING(linker -Bstatic/-Bdynamic option)
3198gcc_cv_ld_static_dynamic=no
c6092243
RO
3199gcc_cv_ld_static_option='-Bstatic'
3200gcc_cv_ld_dynamic_option='-Bdynamic'
7e9d8517 3201if test $in_tree_ld = yes ; then
83f0ccb8 3202 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
3203 gcc_cv_ld_static_dynamic=yes
3204 fi
3205elif test x$gcc_cv_ld != x; then
bb127cd8
RO
3206 # Check if linker supports -Bstatic/-Bdynamic option
3207 if $gcc_cv_ld --help 2>/dev/null | grep -- -Bstatic > /dev/null \
3208 && $gcc_cv_ld --help 2>/dev/null | grep -- -Bdynamic > /dev/null; then
3209 gcc_cv_ld_static_dynamic=yes
3210 else
3211 case "$target" in
c6092243
RO
3212 # Tru64 UNIX support -noso/-so_archive instead of -Bstatic/-Bdynamic.
3213 alpha*-dec-osf*)
3214 gcc_cv_ld_static_dynamic=yes
3215 gcc_cv_ld_static_option="-noso"
3216 gcc_cv_ld_dynamic_option="-so_archive"
3217 ;;
c9f58b9a
RO
3218 # IRIX 6 ld supports -Bstatic/-Bdynamic.
3219 mips-sgi-irix6*)
3220 gcc_cv_ld_static_dynamic=yes
3221 ;;
bb127cd8
RO
3222 # Solaris 2 ld always supports -Bstatic/-Bdynamic.
3223 *-*-solaris2*)
3224 gcc_cv_ld_static_dynamic=yes
3225 ;;
3226 esac
3227 fi
7e9d8517
L
3228fi
3229if test x"$gcc_cv_ld_static_dynamic" = xyes; then
3230 AC_DEFINE(HAVE_LD_STATIC_DYNAMIC, 1,
c6092243
RO
3231[Define if your linker supports -Bstatic/-Bdynamic or equivalent options.])
3232 AC_DEFINE_UNQUOTED(LD_STATIC_OPTION, "$gcc_cv_ld_static_option",
3233[Define to the linker option to disable use of shared objects.])
3234 AC_DEFINE_UNQUOTED(LD_DYNAMIC_OPTION, "$gcc_cv_ld_dynamic_option",
3235[Define to the linker option to enable use of shared objects.])
7e9d8517
L
3236fi
3237AC_MSG_RESULT($gcc_cv_ld_static_dynamic)
3238
d594623a
L
3239if test x"$demangler_in_ld" = xyes; then
3240 AC_MSG_CHECKING(linker --demangle support)
3241 gcc_cv_ld_demangle=no
3242 if test $in_tree_ld = yes; then
3243 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 \
3244 gcc_cv_ld_demangle=yes
3245 fi
3246 elif test x$gcc_cv_ld != x -a x"$gnu_ld" = xyes; then
3247 # Check if the GNU linker supports --demangle option
3248 if $gcc_cv_ld --help 2>/dev/null | grep no-demangle > /dev/null; then
3249 gcc_cv_ld_demangle=yes
3250 fi
3251 fi
3252 if test x"$gcc_cv_ld_demangle" = xyes; then
3253 AC_DEFINE(HAVE_LD_DEMANGLE, 1,
3254[Define if your linker supports --demangle option.])
3255 fi
3256 AC_MSG_RESULT($gcc_cv_ld_demangle)
3257fi
3258
96bdf9b4 3259AC_MSG_CHECKING(linker plugin support)
55b46574 3260gcc_cv_lto_plugin=0
f3d533d3 3261if test -f liblto_plugin.la; then
df33b41f
RO
3262 save_ld_ver="$ld_ver"
3263 save_ld_vers_major="$ld_vers_major"
3264 save_ld_vers_minor="$ld_vers_minor"
3265 save_ld_is_gold="$ld_is_gold"
3266
3267 ld_is_gold=no
55b46574 3268
df33b41f
RO
3269 if test $in_tree_ld = yes -a x"$ORIGINAL_PLUGIN_LD_FOR_TARGET" = x"$gcc_cv_ld"; then
3270 ld_ver="GNU ld"
3271 # FIXME: ld_is_gold?
3272 ld_vers_major="$gcc_cv_gld_major_version"
3273 ld_vers_minor="$gcc_cv_gld_minor_version"
3274 else
3275 # Determine plugin linker version.
3276 # FIXME: Partial duplicate from above, generalize.
3277changequote(,)dnl
3278 ld_ver=`$ORIGINAL_PLUGIN_LD_FOR_TARGET --version 2>/dev/null | sed 1q`
3279 if echo "$ld_ver" | grep GNU > /dev/null; then
3280 if echo "$ld_ver" | grep "GNU gold" > /dev/null; then
3281 ld_is_gold=yes
3282 ld_vers=`echo $ld_ver | sed -n \
3283 -e 's,^[^)]*[ ]\([0-9][0-9]*\.[0-9][0-9]*[^)]*\)) .*$,\1,p'`
3284 else
3285 ld_vers=`echo $ld_ver | sed -n \
3286 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
3287 fi
3288 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
3289 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
55b46574 3290 fi
df33b41f
RO
3291changequote([,])dnl
3292 fi
3293
3294 # Determine plugin support.
3295 if echo "$ld_ver" | grep GNU > /dev/null; then
55b46574
RO
3296 # Require GNU ld or gold 2.21+ for plugin support by default.
3297 if test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -ge 21; then
3298 gcc_cv_lto_plugin=2
3299 # Allow -fuse-linker-plugin to enable plugin support in GNU gold 2.20.
3300 elif test "$ld_is_gold" = yes -a "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 20; then
3301 gcc_cv_lto_plugin=1
96bdf9b4 3302 fi
96bdf9b4 3303 fi
df33b41f
RO
3304
3305 ld_ver="$save_ld_ver"
3306 ld_vers_major="$save_ld_vers_major"
3307 ld_vers_minor="$save_ld_vers_minor"
3308 ld_is_gold="$save_ld_is_gold"
96bdf9b4 3309fi
55b46574
RO
3310AC_DEFINE_UNQUOTED(HAVE_LTO_PLUGIN, $gcc_cv_lto_plugin,
3311 [Define to the level of your linker's plugin support.])
96bdf9b4
JH
3312AC_MSG_RESULT($gcc_cv_lto_plugin)
3313
275b60d6 3314case "$target" in
3a37b08e
RH
3315 # All TARGET_ABI_OSF targets.
3316 alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
8ada417f
ZW
3317 gcc_GAS_CHECK_FEATURE([explicit relocation support],
3318 gcc_cv_as_alpha_explicit_relocs, [2,12,0],,
3319[ .set nomacro
3a37b08e
RH
3320 .text
3321 extbl $3, $2, $3 !lituse_bytoff!1
3322 ldq $2, a($29) !literal!1
3323 ldq $4, b($29) !literal!2
3324 ldq_u $3, 0($2) !lituse_base!1
3325 ldq $27, f($29) !literal!5
3326 jsr $26, ($27), f !lituse_jsr!5
3327 ldah $29, 0($26) !gpdisp!3
3328 lda $0, c($29) !gprel
3329 ldah $1, d($29) !gprelhigh
3330 lda $1, d($1) !gprellow
8ada417f
ZW
3331 lda $29, 0($29) !gpdisp!3],,
3332 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
3333 [Define if your assembler supports explicit relocations.])])
d006f5eb
RH
3334 gcc_GAS_CHECK_FEATURE([jsrdirect relocation support],
3335 gcc_cv_as_alpha_jsrdirect_relocs, [2,16,90],,
3336[ .set nomacro
3337 .text
3338 ldq $27, a($29) !literal!1
3339 jsr $26, ($27), a !lituse_jsrdirect!1],,
3340 [AC_DEFINE(HAVE_AS_JSRDIRECT_RELOCS, 1,
3341 [Define if your assembler supports the lituse_jsrdirect relocation.])])
3a37b08e 3342 ;;
e95b1e6a 3343
682a45fc
HPN
3344 cris-*-*)
3345 gcc_GAS_CHECK_FEATURE([-no-mul-bug-abort option],
3346 gcc_cv_as_cris_no_mul_bug,[2,15,91],
3347 [-no-mul-bug-abort], [.text],,
3348 [AC_DEFINE(HAVE_AS_NO_MUL_BUG_ABORT_OPTION, 1,
3349 [Define if your assembler supports the -no-mul-bug-abort option.])])
3350 ;;
3351
8ada417f
ZW
3352 sparc*-*-*)
3353 gcc_GAS_CHECK_FEATURE([.register], gcc_cv_as_sparc_register_op,,,
3354 [.register %g2, #scratch],,
3355 [AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
3356 [Define if your assembler supports .register.])])
3357
3358 gcc_GAS_CHECK_FEATURE([-relax option], gcc_cv_as_sparc_relax,,
3359 [-relax], [.text],,
3360 [AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
3361 [Define if your assembler supports -relax option.])])
3362
878ee0ab
DM
3363 gcc_GAS_CHECK_FEATURE([GOTDATA_OP relocs],
3364 gcc_cv_as_sparc_gotdata_op,,
3365 [-K PIC],
3366[.text
6d7b45ad 3367.align 4
878ee0ab
DM
3368foo:
3369 nop
3370bar:
3371 sethi %gdop_hix22(foo), %g1
3372 xor %g1, %gdop_lox10(foo), %g1
3373 ld [[%l7 + %g1]], %g2, %gdop(foo)],
3374 [if test x$gcc_cv_ld != x \
46bc665f 3375 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
7673c962
RO
3376 if test x$gcc_cv_objdump != x; then
3377 if $gcc_cv_objdump -s -j .text conftest 2> /dev/null \
3378 | grep ' 03000004 82186004 c405c001'> /dev/null 2>&1; then
46bc665f 3379 gcc_cv_as_sparc_gotdata_op=no
7673c962 3380 else
46bc665f 3381 gcc_cv_as_sparc_gotdata_op=yes
46bc665f 3382 fi
46bc665f 3383 fi
878ee0ab
DM
3384 fi
3385 rm -f conftest],
3386 [AC_DEFINE(HAVE_AS_SPARC_GOTDATA_OP, 1,
3387 [Define if your assembler and linker support GOTDATA_OP relocs.])])
3388
8ada417f
ZW
3389 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs],
3390 gcc_cv_as_sparc_ua_pcrel,,
3391 [-K PIC],
3392[.text
3393foo:
3394 nop
3395.data
3396.align 4
3397.byte 0
3398.uaword %r_disp32(foo)],
3399 [if test x$gcc_cv_ld != x \
3400 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
3401 gcc_cv_as_sparc_ua_pcrel=yes
3402 fi
3403 rm -f conftest],
3404 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
17e9e88c 3405 [Define if your assembler and linker support unaligned PC relative relocs.])
cf7b8b0d 3406
8ada417f
ZW
3407 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs against hidden symbols],
3408 gcc_cv_as_sparc_ua_pcrel_hidden,,
3409 [-K PIC],
3410[.data
3411.align 4
3412.byte 0x31
3413.uaword %r_disp32(foo)
3414.byte 0x32, 0x33, 0x34
3415.global foo
3416.hidden foo
3417foo:
3418.skip 4],
3419 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
3420 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
3421 && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
3422 | grep ' 31000000 07323334' > /dev/null 2>&1; then
3423 if $gcc_cv_objdump -R conftest 2> /dev/null \
3424 | grep 'DISP32' > /dev/null 2>&1; then
3425 :
22252625 3426 else
8ada417f 3427 gcc_cv_as_sparc_ua_pcrel_hidden=yes
5b68c389 3428 fi
8ada417f
ZW
3429 fi
3430 rm -f conftest],
3431 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
3432 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])])
3433 ]) # unaligned pcrel relocs
3434
3435 gcc_GAS_CHECK_FEATURE([offsetable %lo()],
3436 gcc_cv_as_sparc_offsetable_lo10,,
3437 [-xarch=v9],
3438[.text
3439 or %g1, %lo(ab) + 12, %g1
3440 or %g1, %lo(ab + 12), %g1],
3441 [if test x$gcc_cv_objdump != x \
ecb0ccbc 3442 && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \
8ada417f 3443 | grep ' 82106000 82106000' > /dev/null 2>&1; then
1b5c0152 3444 gcc_cv_as_sparc_offsetable_lo10=yes
8ada417f
ZW
3445 fi],
3446 [AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
3447 [Define if your assembler supports offsetable %lo().])])
1cb36a98
RH
3448 ;;
3449
3450changequote(,)dnl
c307e6dd 3451 i[34567]86-*-* | x86_64-*-*)
1cb36a98 3452changequote([,])dnl
f7e413e2
DK
3453 case $target_os in
3454 cygwin*)
3455 # Full C++ conformance when using a shared libstdc++-v3 requires some
3456 # support from the Cygwin DLL, which in more recent versions exports
3457 # wrappers to aid in interposing and redirecting operators new, delete,
3458 # etc., as per n2800 #17.6.4.6 [replacement.functions]. Check if we
3459 # are configuring for a version of Cygwin that exports the wrappers.
3460 if test x$host = x$target; then
3461 AC_CHECK_FUNC([__wrap__Znaj],[gcc_ac_cygwin_dll_wrappers=yes],[gcc_ac_cygwin_dll_wrappers=no])
3462 else
3463 # Can't check presence of libc functions during cross-compile, so
3464 # we just have to assume we're building for an up-to-date target.
3465 gcc_ac_cygwin_dll_wrappers=yes
3466 fi
3467 AC_DEFINE_UNQUOTED(USE_CYGWIN_LIBSTDCXX_WRAPPERS,
3468 [`if test $gcc_ac_cygwin_dll_wrappers = yes; then echo 1; else echo 0; fi`],
3469 [Define if you want to generate code by default that assumes that the
3470 Cygwin DLL exports wrappers to support libstdc++ function replacement.])
3471 esac
d38bc601
BF
3472 case $target_os in
3473 cygwin* | pe | mingw32*)
233215fe
DK
3474 # Recent binutils allows the three-operand form of ".comm" on PE. This
3475 # definition is used unconditionally to initialise the default state of
3476 # the target option variable that governs usage of the feature.
3477 gcc_GAS_CHECK_FEATURE([.comm with alignment], gcc_cv_as_comm_has_align,
3478 [2,19,52],,[.comm foo,1,32])
3479 AC_DEFINE_UNQUOTED(HAVE_GAS_ALIGNED_COMM,
3480 [`if test $gcc_cv_as_comm_has_align = yes; then echo 1; else echo 0; fi`],
3481 [Define if your assembler supports specifying the alignment
3482 of objects allocated using the GAS .comm command.])
d38bc601
BF
3483 # Used for DWARF 2 in PE
3484 gcc_GAS_CHECK_FEATURE([.secrel32 relocs],
3485 gcc_cv_as_ix86_pe_secrel32,
3486 [2,15,91],,
3487[.text
3488foo: nop
3489.data
3490 .secrel32 foo],
3491 [if test x$gcc_cv_ld != x \
3492 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1; then
3493 gcc_cv_as_ix86_pe_secrel32=yes
3494 fi
3495 rm -f conftest],
3496 [AC_DEFINE(HAVE_GAS_PE_SECREL32_RELOC, 1,
3497 [Define if your assembler and linker support 32-bit section relative relocs via '.secrel32 label'.])])
3bec79c5
DK
3498 # Test if the assembler supports the extended form of the .section
3499 # directive that specifies section alignment. LTO support uses this,
3500 # but normally only after installation, so we warn but don't fail the
3501 # configure if LTO is enabled but the assembler does not support it.
3502 gcc_GAS_CHECK_FEATURE([.section with alignment], gcc_cv_as_section_has_align,
3503 [2,20,1],-fatal-warnings,[.section lto_test,"dr0"])
3504 if test x$gcc_cv_as_section_has_align != xyes; then
3505 case ",$enable_languages," in
3506 *,lto,*)
3507 AC_MSG_WARN([LTO for $target requires binutils >= 2.20.1, but version found appears insufficient; LTO will not work until binutils is upgraded.])
3508 ;;
3509 esac
3510 fi
d38bc601
BF
3511 ;;
3512 esac
3513
8ada417f 3514 gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
a3a5e3d1
UB
3515 gcc_cv_as_ix86_filds,,,
3516 [filds mem; fists mem],,
3517 [AC_DEFINE(HAVE_AS_IX86_FILDS, 1,
3518 [Define if your assembler uses filds and fists mnemonics.])])
3519
3520 gcc_GAS_CHECK_FEATURE([fildq and fistpq mnemonics],
3521 gcc_cv_as_ix86_fildq,,,
3522 [fildq mem; fistpq mem],,
3523 [AC_DEFINE(HAVE_AS_IX86_FILDQ, 1,
3524 [Define if your assembler uses fildq and fistq mnemonics.])])
8ada417f 3525
f6f5dff2
RO
3526 gcc_GAS_CHECK_FEATURE([cmov syntax],
3527 gcc_cv_as_ix86_cmov_sun_syntax,,,
3528 [cmovl.l %edx, %eax],,
3529 [AC_DEFINE(HAVE_AS_IX86_CMOV_SUN_SYNTAX, 1,
3530 [Define if your assembler supports the Sun syntax for cmov.])])
3531
b6c03bcd
RS
3532 gcc_GAS_CHECK_FEATURE([ffreep mnemonic],
3533 gcc_cv_as_ix86_ffreep,,,
3534 [ffreep %st(1)],,
3535 [AC_DEFINE(HAVE_AS_IX86_FFREEP, 1,
3536 [Define if your assembler supports the ffreep mnemonic.])])
3537
ed104137
RO
3538 gcc_GAS_CHECK_FEATURE([.quad directive],
3539 gcc_cv_as_ix86_quad,,,
3540 [.quad 0],,
3541 [AC_DEFINE(HAVE_AS_IX86_QUAD, 1,
3542 [Define if your assembler supports the .quad directive.])])
3543
38ca3765
UB
3544 gcc_GAS_CHECK_FEATURE([sahf mnemonic],
3545 gcc_cv_as_ix86_sahf,,,
953c29f7
UB
3546 [.code64
3547 sahf],,
38ca3765 3548 [AC_DEFINE(HAVE_AS_IX86_SAHF, 1,
953c29f7 3549 [Define if your assembler supports the sahf mnemonic in 64bit mode.])])
38ca3765 3550
afd2c302
SD
3551 gcc_GAS_CHECK_FEATURE([swap suffix],
3552 gcc_cv_as_ix86_swap,,,
3553 [movl.s %esp, %ebp],,
3554 [AC_DEFINE(HAVE_AS_IX86_SWAP, 1,
3555 [Define if your assembler supports the swap suffix.])])
3556
68b92f78
RS
3557 gcc_GAS_CHECK_FEATURE([different section symbol subtraction],
3558 gcc_cv_as_ix86_diff_sect_delta,,,
3559 [.section .rodata
3560.L1:
3561 .long .L2-.L1
3562 .long .L3-.L1
3563 .text
3564.L3: nop
3565.L2: nop],,
3566 [AC_DEFINE(HAVE_AS_IX86_DIFF_SECT_DELTA, 1,
3567 [Define if your assembler supports the subtraction of symbols in different sections.])])
3568
2433310d 3569 # These two are used unconditionally by i386.[ch]; it is to be defined
6f3ca281 3570 # to 1 if the feature is present, 0 otherwise.
8ada417f
ZW
3571 gcc_GAS_CHECK_FEATURE([GOTOFF in data],
3572 gcc_cv_as_ix86_gotoff_in_data, [2,11,0],,
3573[ .text
f88c65f7
RH
3574.L0:
3575 nop
3576 .data
6f3ca281
ZW
3577 .long .L0@GOTOFF])
3578 AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
3579 [`if test $gcc_cv_as_ix86_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
3580 [Define true if the assembler supports '.long foo@GOTOFF'.])
2433310d
RO
3581
3582 gcc_GAS_CHECK_FEATURE([rep and lock prefix],
3583 gcc_cv_as_ix86_rep_lock_prefix,,,
3584 [rep movsl
4bade865 3585 lock addl %edi, (%eax,%esi)
7085bfb6
UB
3586 lock orl $0, (%esp)],,
3587 [AC_DEFINE(HAVE_AS_IX86_REP_LOCK_PREFIX, 1,
3588 [Define if the assembler supports 'rep <insn>, lock <insn>'.])])
2433310d 3589
8950516e
RO
3590 gcc_GAS_CHECK_FEATURE([R_386_TLS_GD_PLT reloc],
3591 gcc_cv_as_ix86_tlsgdplt,,,
3592 [call tls_gd@tlsgdplt],,
3593 [AC_DEFINE(HAVE_AS_IX86_TLSGDPLT, 1,
3594 [Define if your assembler supports @tlsgdplt.])])
3595
3596 gcc_GAS_CHECK_FEATURE([R_386_TLS_LDM_PLT reloc],
3597 gcc_cv_as_ix86_tlsldmplt,,,
3598 [call tls_ld@tlsldmplt],,
3599 [AC_DEFINE(HAVE_AS_IX86_TLSLDMPLT, 1,
3600 [Define if your assembler supports @tlsldmplt.])])
3601
1cb36a98 3602 ;;
ef1ecf87
RH
3603
3604 ia64*-*-*)
8ada417f
ZW
3605 gcc_GAS_CHECK_FEATURE([ltoffx and ldxmov relocs],
3606 gcc_cv_as_ia64_ltoffx_ldxmov_relocs, [2,14,0],,
cfa9ee99 3607[ .text
ef1ecf87
RH
3608 addl r15 = @ltoffx(x#), gp
3609 ;;
cfa9ee99 3610 ld8.mov r16 = [[r15]], x#],,
8ada417f
ZW
3611 [AC_DEFINE(HAVE_AS_LTOFFX_LDXMOV_RELOCS, 1,
3612 [Define if your assembler supports ltoffx and ldxmov relocations.])])
3613
ef1ecf87 3614 ;;
8ada417f 3615
2c4a9cff 3616 powerpc*-*-*)
8ada417f 3617 case $target in
432218ba
DE
3618 *-*-aix*) conftest_s=' .machine "pwr5"
3619 .csect .text[[PR]]
6b37db3c 3620 mfcr 3,128';;
8af4d362
PB
3621 *-*-darwin*)
3622 gcc_GAS_CHECK_FEATURE([.machine directive support],
3623 gcc_cv_as_machine_directive,,,
3624 [ .machine ppc7400])
3625 if test x$gcc_cv_as_machine_directive != xyes; then
3626 echo "*** This target requires an assembler supporting \".machine\"" >&2
3627 echo you can get it from: ftp://gcc.gnu.org/pub/gcc/infrastructure/cctools-528.5.dmg >&2
3628 test x$build = x$target && exit 1
3629 fi
3630 conftest_s=' .text
6b37db3c 3631 mfcr r3,128';;
4c67db14 3632 *) conftest_s=' .machine power4
d2ab3e37 3633 .text
6b37db3c 3634 mfcr 3,128';;
8ada417f 3635 esac
8ada417f
ZW
3636
3637 gcc_GAS_CHECK_FEATURE([mfcr field support],
3638 gcc_cv_as_powerpc_mfcrf, [2,14,0],,
3639 [$conftest_s],,
3640 [AC_DEFINE(HAVE_AS_MFCRF, 1,
3641 [Define if your assembler supports mfcr field.])])
432218ba
DE
3642
3643 case $target in
3644 *-*-aix*) conftest_s=' .machine "pwr5"
3645 .csect .text[[PR]]
3646 popcntb 3,3';;
3647 *) conftest_s=' .machine power5
3648 .text
3649 popcntb 3,3';;
3650 esac
3651
3652 gcc_GAS_CHECK_FEATURE([popcntb support],
3653 gcc_cv_as_powerpc_popcntb, [2,17,0],,
3654 [$conftest_s],,
3655 [AC_DEFINE(HAVE_AS_POPCNTB, 1,
3656 [Define if your assembler supports popcntb field.])])
3657
9719f3b7
DE
3658 case $target in
3659 *-*-aix*) conftest_s=' .machine "pwr5x"
3660 .csect .text[[PR]]
3661 frin 1,1';;
1e04bfdc 3662 *) conftest_s=' .machine power5
9719f3b7
DE
3663 .text
3664 frin 1,1';;
3665 esac
3666
3667 gcc_GAS_CHECK_FEATURE([fp round support],
3668 gcc_cv_as_powerpc_fprnd, [2,17,0],,
3669 [$conftest_s],,
3670 [AC_DEFINE(HAVE_AS_FPRND, 1,
3671 [Define if your assembler supports fprnd.])])
3672
44cd321e
PS
3673 case $target in
3674 *-*-aix*) conftest_s=' .machine "pwr6"
3675 .csect .text[[PR]]
3676 mffgpr 1,3';;
3677 *) conftest_s=' .machine power6
3678 .text
3679 mffgpr 1,3';;
3680 esac
3681
3682 gcc_GAS_CHECK_FEATURE([move fp gpr support],
cacf1ca8 3683 gcc_cv_as_powerpc_mfpgpr, [2,19,2],,
44cd321e
PS
3684 [$conftest_s],,
3685 [AC_DEFINE(HAVE_AS_MFPGPR, 1,
3686 [Define if your assembler supports mffgpr and mftgpr.])])
3687
7f970b70
AM
3688 case $target in
3689 *-*-aix*) conftest_s=' .csect .text[[PR]]
3690LCF..0:
3691 addis 11,30,_GLOBAL_OFFSET_TABLE_-LCF..0@ha';;
3692 *-*-darwin*)
3693 conftest_s=' .text
3694LCF0:
3695 addis r11,r30,_GLOBAL_OFFSET_TABLE_-LCF0@ha';;
3696 *) conftest_s=' .text
3697.LCF0:
3698 addis 11,30,_GLOBAL_OFFSET_TABLE_-.LCF0@ha';;
3699 esac
3700
695d8830
AS
3701 gcc_GAS_CHECK_FEATURE([rel16 relocs],
3702 gcc_cv_as_powerpc_rel16, [2,17,0], -a32,
3703 [$conftest_s],,
3704 [AC_DEFINE(HAVE_AS_REL16, 1,
3705 [Define if your assembler supports R_PPC_REL16 relocs.])])
3706
b639c3c2
JJ
3707 case $target in
3708 *-*-aix*) conftest_s=' .machine "pwr6"
3709 .csect .text[[PR]]
3710 cmpb 3,4,5';;
3711 *) conftest_s=' .machine power6
3712 .text
3713 cmpb 3,4,5';;
3714 esac
3715
3716 gcc_GAS_CHECK_FEATURE([compare bytes support],
cacf1ca8 3717 gcc_cv_as_powerpc_cmpb, [2,19,2], -a32,
b639c3c2
JJ
3718 [$conftest_s],,
3719 [AC_DEFINE(HAVE_AS_CMPB, 1,
3720 [Define if your assembler supports cmpb.])])
3721
3722 case $target in
3723 *-*-aix*) conftest_s=' .machine "pwr6"
3724 .csect .text[[PR]]
0d74c0ee 3725 dadd 1,2,3';;
b639c3c2
JJ
3726 *) conftest_s=' .machine power6
3727 .text
0d74c0ee 3728 dadd 1,2,3';;
b639c3c2
JJ
3729 esac
3730
3731 gcc_GAS_CHECK_FEATURE([decimal float support],
cacf1ca8 3732 gcc_cv_as_powerpc_dfp, [2,19,2], -a32,
b639c3c2
JJ
3733 [$conftest_s],,
3734 [AC_DEFINE(HAVE_AS_DFP, 1,
3735 [Define if your assembler supports DFP instructions.])])
e51917ae 3736
d40c9e33
PB
3737 case $target in
3738 *-*-aix*) conftest_s=' .machine "pwr7"
3739 .csect .text[[PR]]
3740 lxvd2x 1,2,3';;
3741 *) conftest_s=' .machine power7
3742 .text
3743 lxvd2x 1,2,3';;
3744 esac
3745
3746 gcc_GAS_CHECK_FEATURE([vector-scalar support],
cacf1ca8 3747 gcc_cv_as_powerpc_vsx, [2,19,2], -a32,
d40c9e33
PB
3748 [$conftest_s],,
3749 [AC_DEFINE(HAVE_AS_VSX, 1,
3750 [Define if your assembler supports VSX instructions.])])
3751
cacf1ca8
MM
3752 case $target in
3753 *-*-aix*) conftest_s=' .machine "pwr7"
3754 .csect .text[[PR]]
3755 popcntd 3,3';;
3756 *) conftest_s=' .machine power7
3757 .text
3758 popcntd 3,3';;
3759 esac
3760
3761 gcc_GAS_CHECK_FEATURE([popcntd support],
3762 gcc_cv_as_powerpc_popcntd, [2,19,2], -a32,
3763 [$conftest_s],,
3764 [AC_DEFINE(HAVE_AS_POPCNTD, 1,
3765 [Define if your assembler supports POPCNTD instructions.])])
3766
3767 case $target in
3768 *-*-aix*) conftest_s=' .csect .text[[PR]]
3769 lwsync';;
3770 *) conftest_s=' .text
3771 lwsync';;
3772 esac
3773
3774 gcc_GAS_CHECK_FEATURE([lwsync support],
3775 gcc_cv_as_powerpc_lwsync, [2,19,2], -a32,
3776 [$conftest_s],,
3777 [AC_DEFINE(HAVE_AS_LWSYNC, 1,
3778 [Define if your assembler supports LWSYNC instructions.])])
3779
47f67e51
PB
3780 case $target in
3781 *-*-aix*) conftest_s=' .machine "476"
3782 .csect .text[[PR]]
3783 dci 0';;
3784 *) conftest_s=' .machine "476"
3785 .text
3786 dci 0';;
3787 esac
3788
3789 gcc_GAS_CHECK_FEATURE([data cache invalidate support],
3790 gcc_cv_as_powerpc_dci, [9,99,0], -a32,
3791 [$conftest_s],,
3792 [AC_DEFINE(HAVE_AS_DCI, 1,
3793 [Define if your assembler supports the DCI/ICI instructions.])])
3794
e51917ae
JM
3795 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
3796 gcc_cv_as_powerpc_gnu_attribute, [2,18,0],,
3797 [.gnu_attribute 4,1],,
3798 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
3799 [Define if your assembler supports .gnu_attribute.])])
9752c4ad
AM
3800
3801 gcc_GAS_CHECK_FEATURE([tls marker support],
3802 gcc_cv_as_powerpc_tls_markers, [2,20,0],,
3803 [ bl __tls_get_addr(x@tlsgd)],,
3804 [AC_DEFINE(HAVE_AS_TLS_MARKERS, 1,
3805 [Define if your assembler supports arg info for __tls_get_addr.])])
636cf8b1
RS
3806
3807 case $target in
3808 *-*-aix*)
3809 gcc_GAS_CHECK_FEATURE([.ref support],
3810 gcc_cv_as_aix_ref, [2.21.0],,
3811 [ .csect stuff[[rw]]
3812 stuff:
3813 .long 1
3814 .extern sym
3815 .ref sym
3816 ],,
3817 [AC_DEFINE(HAVE_AS_REF, 1,
3818 [Define if your assembler supports .ref])])
3819 ;;
3820 esac
2c4a9cff 3821 ;;
53b5ce19 3822
8ada417f
ZW
3823 mips*-*-*)
3824 gcc_GAS_CHECK_FEATURE([explicit relocation support],
3825 gcc_cv_as_mips_explicit_relocs, [2,14,0],,
3826[ lw $4,%gp_rel(foo)($4)],,
3827 [if test x$target_cpu_default = x
3828 then target_cpu_default=MASK_EXPLICIT_RELOCS
3829 else target_cpu_default="($target_cpu_default)|MASK_EXPLICIT_RELOCS"
3830 fi])
4551169f
RS
3831 gcc_GAS_CHECK_FEATURE([-mno-shared support],
3832 gcc_cv_as_mips_no_shared, [2,16,0], [-mno-shared], [nop],,
3833 [AC_DEFINE(HAVE_AS_NO_SHARED, 1,
3834 [Define if the assembler understands -mno-shared.])])
dcb957d9
JM
3835
3836 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
3837 gcc_cv_as_mips_gnu_attribute, [2,18,0],,
3838 [.gnu_attribute 4,1],,
3839 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
3840 [Define if your assembler supports .gnu_attribute.])])
a44380d2
JM
3841
3842 gcc_GAS_CHECK_FEATURE([.dtprelword support],
3843 gcc_cv_as_mips_dtprelword, [2,18,0],,
3844 [.section .tdata,"awT",@progbits
3845x:
3846 .word 2
3847 .text
3848 .dtprelword x+0x8000],,
3849 [AC_DEFINE(HAVE_AS_DTPRELWORD, 1,
3850 [Define if your assembler supports .dtprelword.])])
b53da244 3851
293b77b0
CF
3852 gcc_GAS_CHECK_FEATURE([DSPR1 mult with four accumulators support],
3853 gcc_cv_as_mips_dspr1_mult,,,
3854[ .set mips32r2
3855 .set nodspr2
3856 .set dsp
3857 madd $ac3,$4,$5
3858 maddu $ac3,$4,$5
3859 msub $ac3,$4,$5
3860 msubu $ac3,$4,$5
3861 mult $ac3,$4,$5
3862 multu $ac3,$4,$5],,
3863 [AC_DEFINE(HAVE_AS_DSPR1_MULT, 1,
3864 [Define if your assembler supports DSPR1 mult.])])
3865
b53da244
AN
3866 AC_MSG_CHECKING(assembler and linker for explicit JALR relocation)
3867 gcc_cv_as_ld_jalr_reloc=no
3868 if test $gcc_cv_as_mips_explicit_relocs = yes; then
3869 if test $in_tree_ld = yes ; then
3870 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 \
3871 && test $in_tree_ld_is_elf = yes; then
3872 gcc_cv_as_ld_jalr_reloc=yes
3873 fi
3874 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x; then
3875 echo ' .ent x' > conftest.s
3876 echo 'x: ld $2,%got_disp(y)($3)' >> conftest.s
3877 echo ' ld $25,%call16(y)($28)' >> conftest.s
3878 echo ' .reloc 1f,R_MIPS_JALR,y' >> conftest.s
3879 echo '1: jalr $25' >> conftest.s
3880 echo ' .reloc 1f,R_MIPS_JALR,x' >> conftest.s
3881 echo '1: jalr $25' >> conftest.s
3882 echo ' .end x' >> conftest.s
3883 if $gcc_cv_as -o conftest.o conftest.s >/dev/null 2>&AS_MESSAGE_LOG_FD \
3884 && $gcc_cv_ld -shared -o conftest.so conftest.o >/dev/null 2>&AS_MESSAGE_LOG_FD; then
bc492e47
RO
3885 if $gcc_cv_objdump -d conftest.so | grep jalr >/dev/null 2>&1 \
3886 && $gcc_cv_objdump -d conftest.so | grep "bal.*<x>" >/dev/null 2>&1; then
b53da244
AN
3887 gcc_cv_as_ld_jalr_reloc=yes
3888 fi
3889 fi
3890 rm -f conftest.*
3891 fi
3892 fi
3893 if test $gcc_cv_as_ld_jalr_reloc = yes; then
3894 if test x$target_cpu_default = x; then
3895 target_cpu_default=MASK_RELAX_PIC_CALLS
3896 else
3897 target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
3898 fi
3899 fi
3900 AC_MSG_RESULT($gcc_cv_as_ld_jalr_reloc)
49576e25
RS
3901
3902 AC_CACHE_CHECK([linker for .eh_frame personality relaxation],
3903 [gcc_cv_ld_mips_personality_relaxation],
3904 [gcc_cv_ld_mips_personality_relaxation=no
3905 if test $in_tree_ld = yes ; then
3906 if test "$gcc_cv_gld_major_version" -eq 2 \
3907 -a "$gcc_cv_gld_minor_version" -ge 21 \
3908 -o "$gcc_cv_gld_major_version" -gt 2; then
3909 gcc_cv_ld_mips_personality_relaxation=yes
3910 fi
3911 elif test x$gcc_cv_as != x \
3912 -a x$gcc_cv_ld != x \
3913 -a x$gcc_cv_readelf != x ; then
3914 cat > conftest.s <<EOF
3915 .cfi_startproc
3916 .cfi_personality 0x80,indirect_ptr
3917 .ent test
3918test:
3919 nop
3920 .end test
3921 .cfi_endproc
3922
3923 .section .data,"aw",@progbits
3924indirect_ptr:
3925 .dc.a personality
3926EOF
3927 if $gcc_cv_as -KPIC -o conftest.o conftest.s > /dev/null 2>&1 \
3928 && $gcc_cv_ld -o conftest conftest.o -shared > /dev/null 2>&1; then
3929 if $gcc_cv_readelf -d conftest 2>&1 \
3930 | grep TEXTREL > /dev/null 2>&1; then
3931 :
3932 elif $gcc_cv_readelf --relocs conftest 2>&1 \
3933 | grep 'R_MIPS_REL32 *$' > /dev/null 2>&1; then
3934 :
3935 else
3936 gcc_cv_ld_mips_personality_relaxation=yes
3937 fi
3938 fi
3939 fi
3940 rm -f conftest.s conftest.o conftest])
3941 if test x$gcc_cv_ld_mips_personality_relaxation = xyes; then
3942 AC_DEFINE(HAVE_LD_PERSONALITY_RELAXATION, 1,
3943 [Define if your linker can relax absolute .eh_frame personality
3944pointers into PC-relative form.])
3945 fi
dbad5e72
SE
3946 ;;
3947esac
3948
3949# Mips and HP-UX need the GNU assembler.
3950# Linux on IA64 might be able to use the Intel assembler.
8ada417f 3951
dbad5e72
SE
3952case "$target" in
3953 mips*-*-* | *-*-hpux* )
82563d35
RS
3954 if test x$gas_flag = xyes \
3955 || test x"$host" != x"$build" \
3956 || test ! -x "$gcc_cv_as" \
3957 || "$gcc_cv_as" -v < /dev/null 2>&1 | grep GNU > /dev/null; then
3958 :
3959 else
3960 echo "*** This configuration requires the GNU assembler" >&2
3961 exit 1
3962 fi
8ada417f
ZW
3963 ;;
3964esac
dbad5e72 3965
9d147085
RH
3966# ??? Not all targets support dwarf2 debug_line, even within a version
3967# of gas. Moreover, we need to emit a valid instruction to trigger any
3968# info to the output file. So, as supported targets are added to gas 2.11,
3969# add some instruction here to (also) show we expect this might work.
3970# ??? Once 2.11 is released, probably need to add first known working
3971# version to the per-target configury.
7fa2619a
EB
3972case "$cpu_type" in
3973 alpha | arm | avr | bfin | cris | i386 | m32c | m68k | microblaze | mips \
3974 | pa | rs6000 | score | sparc | spu | xstormy16 | xtensa)
9d147085
RH
3975 insn="nop"
3976 ;;
7fa2619a 3977 ia64 | s390)
9d147085
RH
3978 insn="nop 0"
3979 ;;
7fa2619a 3980 mmix)
2853bc5a
HPN
3981 insn="swym 0"
3982 ;;
8ada417f
ZW
3983esac
3984if test x"$insn" != x; then
3985 conftest_s="\
3986 .file 1 \"conftest.s\"
3987 .loc 1 3 0
3988 $insn"
3989 gcc_GAS_CHECK_FEATURE([dwarf2 debug_line support],
3990 gcc_cv_as_dwarf2_debug_line,
3991 [elf,2,11,0],, [$conftest_s],
080a5bb0
EB
3992 [if test x$gcc_cv_objdump != x \
3993 && $gcc_cv_objdump -h conftest.o 2> /dev/null \
3994 | grep debug_line > /dev/null 2>&1; then
8ada417f
ZW
3995 gcc_cv_as_dwarf2_debug_line=yes
3996 fi])
3997
3998# The .debug_line file table must be in the exact order that
3999# we specified the files, since these indices are also used
4000# by DW_AT_decl_file. Approximate this test by testing if
4001# the assembler bitches if the same index is assigned twice.
4002 gcc_GAS_CHECK_FEATURE([buggy dwarf2 .file directive],
4003 gcc_cv_as_dwarf2_file_buggy,,,
4004[ .file 1 "foo.s"
4005 .file 1 "bar.s"])
4006
4007 if test $gcc_cv_as_dwarf2_debug_line = yes \
4008 && test $gcc_cv_as_dwarf2_file_buggy = no; then
9d147085 4009 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
8ada417f 4010 [Define if your assembler supports dwarf2 .file/.loc directives,
eaec9b3d 4011 and preserves file table indices exactly as given.])
8ada417f
ZW
4012 fi
4013
4014 gcc_GAS_CHECK_FEATURE([--gdwarf2 option],
4015 gcc_cv_as_gdwarf2_flag,
4016 [elf,2,11,0], [--gdwarf2], [$insn],,
4017 [AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
4018[Define if your assembler supports the --gdwarf2 option.])])
4019
4020 gcc_GAS_CHECK_FEATURE([--gstabs option],
4021 gcc_cv_as_gstabs_flag,
4022 [elf,2,11,0], [--gstabs], [$insn],
4023 [# The native Solaris 9/Intel assembler doesn't understand --gstabs
4024 # and warns about it, but still exits successfully. So check for
4025 # this.
4026 if AC_TRY_COMMAND([$gcc_cv_as --gstabs -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null])
4027 then :
4028 else gcc_cv_as_gstabs_flag=yes
4029 fi],
4030 [AC_DEFINE(HAVE_AS_GSTABS_DEBUG_FLAG, 1,
4031[Define if your assembler supports the --gstabs option.])])
c8aea42c
PB
4032
4033 gcc_GAS_CHECK_FEATURE([--debug-prefix-map option],
4034 gcc_cv_as_debug_prefix_map_flag,
303a4698 4035 [2,18,0], [--debug-prefix-map /a=/b], [$insn],,
c8aea42c
PB
4036 [AC_DEFINE(HAVE_AS_DEBUG_PREFIX_MAP, 1,
4037[Define if your assembler supports the --debug-prefix-map option.])])
9d147085 4038fi
5f0e9ea2 4039
28e6bb13
NC
4040gcc_GAS_CHECK_FEATURE([.lcomm with alignment], gcc_cv_as_lcomm_with_alignment,
4041 ,,
4042[.lcomm bar,4,16],,
4043[AC_DEFINE(HAVE_GAS_LCOMM_WITH_ALIGNMENT, 1,
4044 [Define if your assembler supports .lcomm with an alignment field.])])
4045
e31bcd1b 4046AC_ARG_ENABLE(gnu-unique-object,
87e6d9dc
TB
4047 [AS_HELP_STRING([--enable-gnu-unique-object],
4048 [enable the use of the @gnu_unique_object ELF extension on glibc systems])],
e31bcd1b
JM
4049 [case $enable_gnu_unique_object in
4050 yes | no) ;;
4051 *) AC_MSG_ERROR(['$enable_gnu_unique_object' is an invalid value for --enable-gnu-unique-object.
4052Valid choices are 'yes' and 'no'.]) ;;
4053 esac],
4054 [gcc_GAS_CHECK_FEATURE([gnu_unique_object], gcc_cv_as_gnu_unique_object,
4055 [elf,2,19,52],,
e00ded68 4056 [.type foo, @gnu_unique_object],,
e31bcd1b 4057# Also check for ld.so support, i.e. glibc 2.11 or higher.
e5dfb95f 4058 [[if test x$host = x$build -a x$host = x$target &&
a4da6485 4059 ldd --version 2>/dev/null &&
cdf6bfb7
MK
4060 glibcver=`ldd --version 2>/dev/null | sed 's/.* //;q'`; then
4061 glibcmajor=`expr "$glibcver" : "\([0-9]*\)"`
4062 glibcminor=`expr "$glibcver" : "[2-9]*\.\([0-9]*\)"`
e31bcd1b
JM
4063 glibcnum=`expr $glibcmajor \* 1000 + $glibcminor`
4064 if test "$glibcnum" -ge 2011 ; then
e00ded68 4065 enable_gnu_unique_object=yes
e31bcd1b 4066 fi
e5dfb95f 4067 fi]])])
e31bcd1b
JM
4068if test x$enable_gnu_unique_object = xyes; then
4069 AC_DEFINE(HAVE_GAS_GNU_UNIQUE_OBJECT, 1,
4070 [Define if your assembler supports @gnu_unique_object.])
4071fi
4072
03943c05
AO
4073AC_CACHE_CHECK([assembler for tolerance to line number 0],
4074 [gcc_cv_as_line_zero],
4075 [gcc_cv_as_line_zero=no
4076 if test $in_tree_gas = yes; then
cf0eb7a1 4077 gcc_GAS_VERSION_GTE_IFELSE(2, 16, 91, [gcc_cv_as_line_zero=yes])
03943c05
AO
4078 elif test "x$gcc_cv_as" != x; then
4079 { echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
4080 if AC_TRY_COMMAND([$gcc_cv_as -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD 2>conftest.out]) &&
4081 test "x`cat conftest.out`" = x
4082 then
4083 gcc_cv_as_line_zero=yes
4084 else
4085 echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
4086 cat conftest.s >&AS_MESSAGE_LOG_FD
4087 echo "configure: error output was" >&AS_MESSAGE_LOG_FD
4088 cat conftest.out >&AS_MESSAGE_LOG_FD
4089 fi
4090 rm -f conftest.o conftest.s conftest.out
4091 fi])
4092if test "x$gcc_cv_as_line_zero" = xyes; then
4093 AC_DEFINE([HAVE_AS_LINE_ZERO], 1,
4094[Define if the assembler won't complain about a line such as # 0 "" 2.])
4095fi
4096
275b60d6
JJ
4097AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
4098gcc_cv_ld_eh_frame_hdr=no
34a86c2b 4099if test $in_tree_ld = yes ; then
5408ac6c
HPN
4100 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 \
4101 && test $in_tree_ld_is_elf = yes; then
275b60d6
JJ
4102 gcc_cv_ld_eh_frame_hdr=yes
4103 fi
4104elif test x$gcc_cv_ld != x; then
6961669f
RO
4105 if echo "$ld_ver" | grep GNU > /dev/null; then
4106 # Check if linker supports --eh-frame-hdr option
4107 if $gcc_cv_ld --help 2>/dev/null | grep eh-frame-hdr > /dev/null; then
4108 gcc_cv_ld_eh_frame_hdr=yes
4109 fi
4110 else
4111 case "$target" in
4112 *-*-solaris2*)
e279edb0
RO
4113 # Sun ld has various bugs in .eh_frame_hdr support before version 1.2251.
4114 if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2251; then
6961669f
RO
4115 gcc_cv_ld_eh_frame_hdr=yes
4116 fi
4117 ;;
4118 esac
4119 fi
275b60d6 4120fi
232b67d9 4121GCC_TARGET_TEMPLATE([HAVE_LD_EH_FRAME_HDR])
275b60d6
JJ
4122if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
4123 AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
6961669f 4124[Define if your linker supports .eh_frame_hdr.])
275b60d6
JJ
4125fi
4126AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
4127
24a4dd31
JJ
4128AC_MSG_CHECKING(linker position independent executable support)
4129gcc_cv_ld_pie=no
4130if test $in_tree_ld = yes ; then
5408ac6c
HPN
4131 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 15 -o "$gcc_cv_gld_major_version" -gt 2 \
4132 && test $in_tree_ld_is_elf = yes; then
24a4dd31
JJ
4133 gcc_cv_ld_pie=yes
4134 fi
4135elif test x$gcc_cv_ld != x; then
4136 # Check if linker supports -pie option
4137 if $gcc_cv_ld --help 2>/dev/null | grep -- -pie > /dev/null; then
4138 gcc_cv_ld_pie=yes
4139 fi
4140fi
4141if test x"$gcc_cv_ld_pie" = xyes; then
4142 AC_DEFINE(HAVE_LD_PIE, 1,
4143[Define if your linker supports -pie option.])
4144fi
4145AC_MSG_RESULT($gcc_cv_ld_pie)
4146
22ba88ef
EB
4147AC_MSG_CHECKING(linker EH-compatible garbage collection of sections)
4148gcc_cv_ld_eh_gc_sections=no
4149if test $in_tree_ld = yes ; then
4150 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 \
4151 && test $in_tree_ld_is_elf = yes; then
4152 gcc_cv_ld_eh_gc_sections=yes
4153 fi
4154elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
4155 cat > conftest.s <<EOF
4156 .section .text
4157.globl _start
4158 .type _start, @function
4159_start:
4160 .long foo
4161 .size _start, .-_start
4162 .section .text.foo,"ax",@progbits
4163 .type foo, @function
4164foo:
4165 .long 0
4166 .size foo, .-foo
4167 .section .gcc_except_table.foo,"a",@progbits
4168.L0:
4169 .long 0
4170 .section .eh_frame,"a",@progbits
4171 .long .L0
4172EOF
4173 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4174 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
4175 | grep "gc-sections option ignored" > /dev/null; then
4176 gcc_cv_ld_eh_gc_sections=no
2e2b183b
RO
4177 elif $gcc_cv_objdump -h conftest 2> /dev/null \
4178 | grep gcc_except_table > /dev/null; then
22ba88ef 4179 gcc_cv_ld_eh_gc_sections=yes
e9d207d9
EB
4180 # If no COMDAT groups, the compiler will emit .gnu.linkonce.t. sections.
4181 if test x$gcc_cv_as_comdat_group != xyes; then
4182 gcc_cv_ld_eh_gc_sections=no
4183 cat > conftest.s <<EOF
4184 .section .text
4185.globl _start
4186 .type _start, @function
4187_start:
4188 .long foo
4189 .size _start, .-_start
4190 .section .gnu.linkonce.t.foo,"ax",@progbits
4191 .type foo, @function
4192foo:
4193 .long 0
4194 .size foo, .-foo
4195 .section .gcc_except_table.foo,"a",@progbits
4196.L0:
4197 .long 0
4198 .section .eh_frame,"a",@progbits
4199 .long .L0
4200EOF
4201 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4202 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
4203 | grep "gc-sections option ignored" > /dev/null; then
4204 gcc_cv_ld_eh_gc_sections=no
2e2b183b
RO
4205 elif $gcc_cv_objdump -h conftest 2> /dev/null \
4206 | grep gcc_except_table > /dev/null; then
e9d207d9
EB
4207 gcc_cv_ld_eh_gc_sections=yes
4208 fi
4209 fi
4210 fi
22ba88ef
EB
4211 fi
4212 fi
4213 rm -f conftest.s conftest.o conftest
4214fi
e9d207d9
EB
4215case "$target" in
4216 hppa*-*-linux*)
4217 # ??? This apparently exposes a binutils bug with PC-relative relocations.
4218 gcc_cv_ld_eh_gc_sections=no
4219 ;;
4220esac
22ba88ef
EB
4221if test x$gcc_cv_ld_eh_gc_sections = xyes; then
4222 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS, 1,
4223 [Define if your linker supports garbage collection of
4224 sections in presence of EH frames.])
4225fi
4226AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections)
4227
1b500976
JJ
4228AC_MSG_CHECKING(linker EH garbage collection of sections bug)
4229gcc_cv_ld_eh_gc_sections_bug=no
4230if test $in_tree_ld = yes ; then
4231 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 \
4232 && test $in_tree_ld_is_elf = yes; then
4233 gcc_cv_ld_eh_gc_sections_bug=yes
4234 fi
4235elif 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
4236 gcc_cv_ld_eh_gc_sections_bug=yes
4237 cat > conftest.s <<EOF
4238 .section .text
4239.globl _start
4240 .type _start, @function
4241_start:
4242 .long foo
4243 .size _start, .-_start
4244 .section .text.startup.foo,"ax",@progbits
4245 .type foo, @function
4246foo:
4247 .long 0
4248 .size foo, .-foo
4249 .section .gcc_except_table.foo,"a",@progbits
4250.L0:
4251 .long 0
4252 .section .eh_frame,"a",@progbits
4253 .long .L0
4254EOF
4255 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4256 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
4257 | grep "gc-sections option ignored" > /dev/null; then
4258 :
4259 elif $gcc_cv_objdump -h conftest 2> /dev/null \
4260 | grep gcc_except_table > /dev/null; then
4261 gcc_cv_ld_eh_gc_sections_bug=no
4262 fi
4263 fi
4264 rm -f conftest.s conftest.o conftest
4265fi
4266if test x$gcc_cv_ld_eh_gc_sections_bug = xyes; then
4267 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS_BUG, 1,
4268 [Define if your linker has buggy garbage collection of
4269 sections support when .text.startup.foo like sections are used.])
4270fi
4271AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections_bug)
4272
630327c3
NN
4273# --------
4274# UNSORTED
4275# --------
4276
82e923f6
RS
4277AC_CACHE_CHECK(linker --as-needed support,
4278gcc_cv_ld_as_needed,
4279[gcc_cv_ld_as_needed=no
765f1bf9
AM
4280if test $in_tree_ld = yes ; then
4281 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 \
4282 && test $in_tree_ld_is_elf = yes; then
4283 gcc_cv_ld_as_needed=yes
4284 fi
4285elif test x$gcc_cv_ld != x; then
4286 # Check if linker supports --as-needed and --no-as-needed options
4287 if $gcc_cv_ld --help 2>/dev/null | grep as-needed > /dev/null; then
4288 gcc_cv_ld_as_needed=yes
4289 fi
4290fi
82e923f6 4291])
765f1bf9
AM
4292if test x"$gcc_cv_ld_as_needed" = xyes; then
4293 AC_DEFINE(HAVE_LD_AS_NEEDED, 1,
4294[Define if your linker supports --as-needed and --no-as-needed options.])
4295fi
765f1bf9 4296
d82bf747
AM
4297case "$target:$tm_file" in
4298 powerpc64*-*-linux* | powerpc*-*-linux*rs6000/biarch64.h*)
85b776df
AM
4299 AC_CACHE_CHECK(linker support for omitting dot symbols,
4300 gcc_cv_ld_no_dot_syms,
4301 [gcc_cv_ld_no_dot_syms=no
4302 if test $in_tree_ld = yes ; then
4303 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
4304 gcc_cv_ld_no_dot_syms=yes
4305 fi
4306 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
4307 cat > conftest1.s <<EOF
4308 .text
4309 bl .foo
4310EOF
4311 cat > conftest2.s <<EOF
4312 .section ".opd","aw"
4313 .align 3
4314 .globl foo
4315 .type foo,@function
4316foo:
4317 .quad .LEfoo,.TOC.@tocbase,0
4318 .text
4319.LEfoo:
4320 blr
4321 .size foo,.-.LEfoo
4322EOF
4323 if $gcc_cv_as -a64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
4324 && $gcc_cv_as -a64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
4325 && $gcc_cv_ld -melf64ppc -o conftest conftest1.o conftest2.o > /dev/null 2>&1; then
4326 gcc_cv_ld_no_dot_syms=yes
4327 fi
4328 rm -f conftest conftest1.o conftest2.o conftest1.s conftest2.s
4329 fi
4330 ])
4331 if test x"$gcc_cv_ld_no_dot_syms" = xyes; then
4332 AC_DEFINE(HAVE_LD_NO_DOT_SYMS, 1,
4333 [Define if your PowerPC64 linker only needs function descriptor syms.])
4334 fi
070b27da
AM
4335
4336 AC_CACHE_CHECK(linker large toc support,
4337 gcc_cv_ld_large_toc,
4338 [gcc_cv_ld_large_toc=no
4339 if test $in_tree_ld = yes ; then
4340 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
4341 gcc_cv_ld_large_toc=yes
4342 fi
4343 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
4344 cat > conftest.s <<EOF
4345 .section ".tbss","awT",@nobits
4346 .align 3
4347ie0: .space 8
4348 .global _start
4349 .text
4350_start:
4351 addis 9,13,ie0@got@tprel@ha
4352 ld 9,ie0@got@tprel@l(9)
4353EOF
4354 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1 \
4355 && $gcc_cv_ld -melf64ppc --no-toc-sort -o conftest conftest.o > /dev/null 2>&1; then
4356 gcc_cv_ld_large_toc=yes
4357 fi
4358 rm -f conftest conftest.o conftest.s
4359 fi
4360 ])
4361 if test x"$gcc_cv_ld_large_toc" = xyes; then
4362 AC_DEFINE(HAVE_LD_LARGE_TOC, 1,
4363 [Define if your PowerPC64 linker supports a large TOC.])
4364 fi
85b776df
AM
4365 ;;
4366esac
4367
cd533689
PP
4368AC_CACHE_CHECK(linker --build-id support,
4369 gcc_cv_ld_buildid,
4370 [gcc_cv_ld_buildid=no
4371 if test $in_tree_ld = yes ; then
4372 if test "$gcc_cv_gld_major_version" -eq 2 -a \
4373 "$gcc_cv_gld_minor_version" -ge 18 -o \
4374 "$gcc_cv_gld_major_version" -gt 2 \
4375 && test $in_tree_ld_is_elf = yes; then
4376 gcc_cv_ld_buildid=yes
4377 fi
4378 elif test x$gcc_cv_ld != x; then
4379 if $gcc_cv_ld --help 2>/dev/null | grep build-id > /dev/null; then
4380 gcc_cv_ld_buildid=yes
4381 fi
4382 fi])
4383if test x"$gcc_cv_ld_buildid" = xyes; then
4384 AC_DEFINE(HAVE_LD_BUILDID, 1,
4385 [Define if your linker supports --build-id.])
4386fi
4387
4388AC_ARG_ENABLE(linker-build-id,
b88ecf55
AS
4389[AS_HELP_STRING([--enable-linker-build-id],
4390 [compiler will always pass --build-id to linker])],
cd533689
PP
4391[],
4392enable_linker_build_id=no)
4393
4394if test x"$enable_linker_build_id" = xyes; then
4395 if test x"$gcc_cv_ld_buildid" = xyes; then
4396 AC_DEFINE(ENABLE_LD_BUILDID, 1,
4397 [Define if gcc should always pass --build-id to linker.])
4398 else
4399 AC_MSG_WARN(--build-id is not supported by your linker; --enable-linker-build-id ignored)
4400 fi
4401fi
4402
a6198222
RO
4403# In binutils 2.21, GNU ld gained support for new emulations fully
4404# supporting the Solaris 2 ABI. Detect their presence in the linker used.
4405AC_CACHE_CHECK(linker *_sol2 emulation support,
4406 gcc_cv_ld_sol2_emulation,
4407 [gcc_cv_ld_sol2_emulation=no
4408 if test $in_tree_ld = yes ; then
4409 if test "$gcc_cv_gld_major_version" -eq 2 -a \
4410 "$gcc_cv_gld_minor_version" -ge 21 -o \
4411 "$gcc_cv_gld_major_version" -gt 2 \
4412 && test $in_tree_ld_is_elf = yes; then
4413 gcc_cv_ld_sol2_emulation=yes
4414 fi
4415 elif test x$gcc_cv_ld != x; then
4416 if $gcc_cv_ld -V 2>/dev/null | sed -e '1,/Supported emulations/d;q' | \
4417 grep _sol2 > /dev/null; then
4418 gcc_cv_ld_sol2_emulation=yes
4419 fi
4420 fi])
4421if test x"$gcc_cv_ld_sol2_emulation" = xyes; then
4422 AC_DEFINE(HAVE_LD_SOL2_EMULATION, 1,
4423 [Define if your linker supports the *_sol2 emulations.])
4424fi
4425
380e5ca4
MM
4426AC_CACHE_CHECK(linker --sysroot support,
4427 gcc_cv_ld_sysroot,
4428 [gcc_cv_ld_sysroot=no
4429 if test $in_tree_ld = yes ; then
4430 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 4431 gcc_cv_ld_sysroot=yes
380e5ca4
MM
4432 fi
4433 elif test x$gcc_cv_ld != x; then
4434 if $gcc_cv_ld --help 2>/dev/null | grep sysroot > /dev/null; then
4435 gcc_cv_ld_sysroot=yes
4436 fi
4437 fi])
4438if test x"$gcc_cv_ld_sysroot" = xyes; then
4439 AC_DEFINE(HAVE_LD_SYSROOT, 1,
4440 [Define if your linker supports --sysroot.])
4441fi
4442
9fb28a67 4443if test x$with_sysroot = x && test x$host = x$target \
c794c06f
CD
4444 && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" \
4445 && test "$prefix" != "NONE"; then
8ada417f
ZW
4446 AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include",
4447[Define to PREFIX/include if cpp should also search that directory.])
793e9558
PB
4448fi
4449
6961669f
RO
4450if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x; then
4451 if test "x$with_headers" != x; then
4452 target_header_dir=$with_headers
4453 elif test "x$with_sysroot" = x; then
4454 target_header_dir="${exec_prefix}/${target_noncanonical}/sys-include"
4455 elif test "x$with_build_sysroot" != "x"; then
4456 target_header_dir="${with_build_sysroot}/usr/include"
4457 elif test "x$with_sysroot" = xyes; then
4458 target_header_dir="${exec_prefix}/${target_noncanonical}/sys-root/usr/include"
4459 else
4460 target_header_dir="${with_sysroot}/usr/include"
4461 fi
4462else
4463 target_header_dir=/usr/include
4464fi
4465
77008252 4466# Test for stack protector support in target C library.
a6ccdbab 4467AC_CACHE_CHECK(__stack_chk_fail in target C library,
77008252
JJ
4468 gcc_cv_libc_provides_ssp,
4469 [gcc_cv_libc_provides_ssp=no
a6ccdbab 4470 case "$target" in
22f96a0f 4471 *-*-linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu)
e5dfb95f 4472 [# glibc 2.4 and later provides __stack_chk_fail and
77008252 4473 # either __stack_chk_guard, or TLS access to stack guard canary.
6961669f 4474 if test -f $target_header_dir/features.h \
1a242e3c 4475 && $EGREP '^[ ]*#[ ]*define[ ]+__GNU_LIBRARY__[ ]+([1-9][0-9]|[6-9])' \
6961669f 4476 $target_header_dir/features.h > /dev/null; then
1a242e3c 4477 if $EGREP '^[ ]*#[ ]*define[ ]+__GLIBC__[ ]+([1-9][0-9]|[3-9])' \
6961669f 4478 $target_header_dir/features.h > /dev/null; then
77008252 4479 gcc_cv_libc_provides_ssp=yes
1a242e3c 4480 elif $EGREP '^[ ]*#[ ]*define[ ]+__GLIBC__[ ]+2' \
6961669f 4481 $target_header_dir/features.h > /dev/null \
1a242e3c 4482 && $EGREP '^[ ]*#[ ]*define[ ]+__GLIBC_MINOR__[ ]+([1-9][0-9]|[4-9])' \
6961669f 4483 $target_header_dir/features.h > /dev/null; then
77008252 4484 gcc_cv_libc_provides_ssp=yes
1a242e3c 4485 elif $EGREP '^[ ]*#[ ]*define[ ]+__UCLIBC__[ ]+1' \
6961669f
RO
4486 $target_header_dir/features.h > /dev/null && \
4487 test -f $target_header_dir/bits/uClibc_config.h && \
1a242e3c 4488 $EGREP '^[ ]*#[ ]*define[ ]+__UCLIBC_HAS_SSP__[ ]+1' \
6961669f 4489 $target_header_dir/bits/uClibc_config.h > /dev/null; then
fed6d628 4490 gcc_cv_libc_provides_ssp=yes
77008252 4491 fi
e5dfb95f 4492 fi]
a6ccdbab 4493 ;;
4cc115a2
TS
4494 *-*-gnu*)
4495 # Avoid complicated tests (see
4496 # <http://gcc.gnu.org/ml/gcc/2008-10/msg00130.html>) and for now
4497 # simply assert that glibc does provide this, which is true for all
4498 # realistically usable GNU/Hurd configurations.
4499 gcc_cv_libc_provides_ssp=yes;;
61e1d511 4500 *-*-darwin* | *-*-freebsd*)
a6ccdbab
EC
4501 AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes],
4502 [echo "no __stack_chk_fail on this target"])
4503 ;;
77008252 4504 *) gcc_cv_libc_provides_ssp=no ;;
a6ccdbab
EC
4505 esac])
4506
77008252
JJ
4507if test x$gcc_cv_libc_provides_ssp = xyes; then
4508 AC_DEFINE(TARGET_LIBC_PROVIDES_SSP, 1,
4509 [Define if your target C library provides stack protector support])
4510fi
4511
f4e749b4
TT
4512# Test for <sys/sdt.h> on the target.
4513GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
4514AC_MSG_CHECKING(sys/sdt.h in the target C library)
4515have_sys_sdt_h=no
4516if test -f $target_header_dir/sys/sdt.h; then
4517 AC_DEFINE(HAVE_SYS_SDT_H, 1,
4518 [Define if your target C library provides sys/sdt.h])
4519fi
4520AC_MSG_RESULT($have_sys_sdt_h)
4521
ed965309
JJ
4522# Check if TFmode long double should be used by default or not.
4523# Some glibc targets used DFmode long double, but with glibc 2.4
4524# and later they can use TFmode.
4525case "$target" in
f7cc5390 4526 powerpc*-*-linux* | \
ed965309
JJ
4527 sparc*-*-linux* | \
4528 s390*-*-linux* | \
4529 alpha*-*-linux*)
4530 AC_ARG_WITH(long-double-128,
b88ecf55
AS
4531 [AS_HELP_STRING([--with-long-double-128],
4532 [use 128-bit long double by default])],
ed965309 4533 gcc_cv_target_ldbl128="$with_long_double_128",
e5dfb95f 4534 [[gcc_cv_target_ldbl128=no
ed965309 4535 grep '^[ ]*#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
6961669f 4536 $target_header_dir/bits/wordsize.h > /dev/null 2>&1 \
65280f6c 4537 && gcc_cv_target_ldbl128=yes
e5dfb95f 4538 ]])
ed965309
JJ
4539 ;;
4540esac
4541if test x$gcc_cv_target_ldbl128 = xyes; then
4542 AC_DEFINE(TARGET_DEFAULT_LONG_DOUBLE_128, 1,
4543 [Define if TFmode long double should be the default])
4544fi
4545
6961669f
RO
4546AC_MSG_CHECKING(dl_iterate_phdr in target C library)
4547gcc_cv_target_dl_iterate_phdr=unknown
4548case "$target" in
4549 *-*-solaris2*)
4550 # <link.h> needs both a dl_iterate_phdr declaration and support for
4551 # compilation with largefile support.
4552 if grep dl_iterate_phdr $target_header_dir/link.h > /dev/null 2>&1 \
4553 && grep 'large file capable' $target_header_dir/link.h > /dev/null 2>&1; then
4554 gcc_cv_target_dl_iterate_phdr=yes
4555 else
4556 gcc_cv_target_dl_iterate_phdr=no
4557 fi
4558 ;;
4559esac
4560GCC_TARGET_TEMPLATE([TARGET_DL_ITERATE_PHDR])
4561if test x$gcc_cv_target_dl_iterate_phdr = xyes; then
4562 AC_DEFINE(TARGET_DL_ITERATE_PHDR, 1,
4563[Define if your target C library provides the `dl_iterate_phdr' function.])
4564fi
4565AC_MSG_RESULT($gcc_cv_target_dl_iterate_phdr)
4566
81bf3d9e
RH
4567# Find out what GC implementation we want, or may, use.
4568AC_ARG_WITH(gc,
b88ecf55
AS
4569[AS_HELP_STRING([--with-gc={page,zone}],
4570 [choose the garbage collection mechanism to use
4571 with the compiler])],
81bf3d9e 4572[case "$withval" in
08cee789 4573 page)
81bf3d9e
RH
4574 GGC=ggc-$withval
4575 ;;
08cee789
DJ
4576 zone)
4577 GGC=ggc-$withval
4578 AC_DEFINE(GGC_ZONE, 1, [Define if the zone collector is in use])
4579 ;;
81bf3d9e
RH
4580 *)
4581 AC_MSG_ERROR([$withval is an invalid option to --with-gc])
4582 ;;
4583esac],
130fadbb 4584[GGC=ggc-page])
81bf3d9e
RH
4585AC_SUBST(GGC)
4586echo "Using $GGC for garbage collection."
4587
00020c16
ILT
4588# Libraries to use on the host. This will normally be set by the top
4589# level Makefile. Here we simply capture the value for our Makefile.
4590if test -z "${HOST_LIBS+set}"; then
4591 HOST_LIBS=
4592fi
4593AC_SUBST(HOST_LIBS)
4594
3c809ba4 4595# Use the system's zlib library.
b8dad04b
ZW
4596zlibdir=-L../zlib
4597zlibinc="-I\$(srcdir)/../zlib"
3c809ba4 4598AC_ARG_WITH(system-zlib,
b88ecf55 4599[AS_HELP_STRING([--with-system-zlib], [use installed libz])],
3c809ba4
AG
4600zlibdir=
4601zlibinc=
4602)
4603AC_SUBST(zlibdir)
4604AC_SUBST(zlibinc)
4605
dc6746e7
PT
4606dnl Very limited version of automake's enable-maintainer-mode
4607
4608AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
4609 dnl maintainer-mode is disabled by default
4610 AC_ARG_ENABLE(maintainer-mode,
b88ecf55
AS
4611[AS_HELP_STRING([--enable-maintainer-mode],
4612 [enable make rules and dependencies not useful
4613 (and sometimes confusing) to the casual installer])],
dc6746e7
PT
4614 maintainer_mode=$enableval,
4615 maintainer_mode=no)
4616
4617AC_MSG_RESULT($maintainer_mode)
4618
4619if test "$maintainer_mode" = "yes"; then
4620 MAINT=''
4621else
4622 MAINT='#'
4623fi
4624AC_SUBST(MAINT)dnl
4625
630327c3
NN
4626# --------------
4627# Language hooks
4628# --------------
4629
571a8de5
DE
4630# Make empty files to contain the specs and options for each language.
4631# Then add #include lines to for a compiler that has specs and/or options.
4632
cc11cc9b 4633subdirs=
d7b42618 4634lang_opt_files=
571a8de5 4635lang_specs_files=
3103b7db 4636lang_tree_files=
571a8de5
DE
4637# These (without "all_") are set in each config-lang.in.
4638# `language' must be a single word so is spelled singularly.
4639all_languages=
571a8de5 4640all_compilers=
fda9c731 4641all_outputs='Makefile'
571a8de5 4642# List of language makefile fragments.
2ed26f6b 4643all_lang_makefrags=
11a67599 4644# Additional files for gengtype
ef69da62 4645all_gtfiles="$target_gtfiles"
571a8de5 4646
cc11cc9b
PB
4647# These are the languages that are set in --enable-languages,
4648# and are available in the GCC tree.
4649all_selected_languages=
4650
571a8de5
DE
4651# Add the language fragments.
4652# Languages are added via two mechanisms. Some information must be
4653# recorded in makefile variables, these are defined in config-lang.in.
4654# We accumulate them and plug them into the main Makefile.
4655# The other mechanism is a set of hooks for each of the main targets
4656# like `clean', `install', etc.
4657
571a8de5
DE
4658language_hooks="Make-hooks"
4659
cc11cc9b 4660for lang in ${srcdir}/*/config-lang.in
571a8de5 4661do
cc11cc9b 4662changequote(,)dnl
1546bb64
PB
4663 test "$lang" = "${srcdir}/*/config-lang.in" && continue
4664
cc11cc9b
PB
4665 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
4666 if test "x$lang_alias" = x
4667 then
4668 echo "$lang doesn't set \$language." 1>&2
4669 exit 1
4670 fi
4671 subdir="`echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4672 subdirs="$subdirs $subdir"
349c3166
OH
4673
4674 # $gcc_subdir is where the gcc integration files are to be found
4675 # for a language, both for internal compiler purposes (compiler
4676 # sources implementing front-end to GCC tree converters), and for
4677 # build infrastructure purposes (Make-lang.in, etc.)
4678 #
4679 # This will be <subdir> (relative to $srcdir) if a line like
4680 # gcc_subdir="<subdir>" or gcc_subdir=<subdir>
4681 # is found in <langdir>/config-lang.in, and will remain <langdir>
4682 # otherwise.
4683 #
4684 # Except for the language alias (fetched above), the regular
4685 # "config-lang.in" contents are always retrieved from $gcc_subdir,
4686 # so a <langdir>/config-lang.in setting gcc_subdir typically sets
4687 # only this and the language alias.
4688
4689 gcc_subdir=`sed -n -e 's,^gcc_subdir=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^gcc_subdir=\([^ ]*\).*$,\1,p' $lang`
4690 if [ "$gcc_subdir" = "" ]; then
4691 gcc_subdir="$subdir"
4692 fi
4693
cc11cc9b
PB
4694 case ",$enable_languages," in
4695 *,$lang_alias,*)
4696 all_selected_languages="$all_selected_languages $lang_alias"
349c3166
OH
4697 if test -f $srcdir/$gcc_subdir/lang-specs.h; then
4698 lang_specs_files="$lang_specs_files $srcdir/$gcc_subdir/lang-specs.h"
cc11cc9b
PB
4699 fi
4700 ;;
4701 esac
4702changequote([,])dnl
4703
cc11cc9b
PB
4704 language=
4705 boot_language=
4706 compilers=
cc11cc9b
PB
4707 outputs=
4708 gtfiles=
1546bb64 4709 subdir_requires=
349c3166 4710 . ${srcdir}/$gcc_subdir/config-lang.in
cc11cc9b
PB
4711 if test "x$language" = x
4712 then
349c3166 4713 echo "${srcdir}/$gcc_subdir/config-lang.in doesn't set \$language." 1>&2
cc11cc9b
PB
4714 exit 1
4715 fi
1546bb64
PB
4716
4717 ok=:
4718 case ",$enable_languages," in
4719 *,$lang_alias,*) ;;
4720 *)
4721 for i in $subdir_requires; do
b6348cb3 4722 test -f "${srcdir}/$i/config-lang.in" && continue
1546bb64
PB
4723 ok=false
4724 break
4725 done
4726 ;;
4727 esac
4728 $ok || continue
4729
349c3166
OH
4730 all_lang_makefrags="$all_lang_makefrags \$(srcdir)/$gcc_subdir/Make-lang.in"
4731 if test -f $srcdir/$gcc_subdir/lang.opt; then
4732 lang_opt_files="$lang_opt_files $srcdir/$gcc_subdir/lang.opt"
fd438373 4733 all_opt_files="$all_opt_files $srcdir/$gcc_subdir/lang.opt"
1546bb64 4734 fi
349c3166
OH
4735 if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then
4736 lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def"
1546bb64 4737 fi
cc11cc9b 4738 all_languages="$all_languages $language"
cc11cc9b 4739 all_compilers="$all_compilers $compilers"
cc11cc9b 4740 all_outputs="$all_outputs $outputs"
11a67599 4741 all_gtfiles="$all_gtfiles [[$subdir]] $gtfiles"
d7f09764
DN
4742 case ",$enable_languages," in
4743 *,lto,*)
4744 AC_DEFINE(ENABLE_LTO, 1, [Define to enable LTO support.])
4745 enable_lto=yes
4746 AC_SUBST(enable_lto)
4747 ;;
4748 *) ;;
4749 esac
571a8de5
DE
4750done
4751
8ac9d31f
TJ
4752# Pick up gtfiles for c
4753gtfiles=
8ac9d31f 4754. ${srcdir}/c-config-lang.in
11a67599 4755all_gtfiles="$all_gtfiles [[c]] $gtfiles"
8ac9d31f 4756
cbc59f01 4757check_languages=
cc11cc9b 4758for language in $all_selected_languages
cbc59f01 4759do
cc11cc9b 4760 check_languages="$check_languages check-$language"
cbc59f01
DD
4761done
4762
62b81e45 4763# We link each language in with a set of hooks, reached indirectly via
cc11cc9b 4764# lang.${target}. Only do so for selected languages.
571a8de5
DE
4765
4766rm -f Make-hooks
4767touch Make-hooks
bd97af06 4768target_list="all.cross start.encap rest.encap tags \
55bcd32b
AJ
4769 install-common install-man install-info install-pdf install-html dvi \
4770 pdf html uninstall info man srcextra srcman srcinfo \
2a4c0366 4771 mostlyclean clean distclean maintainer-clean install-plugin"
cc11cc9b 4772
571a8de5
DE
4773for t in $target_list
4774do
4775 x=
cc11cc9b 4776 for lang in $all_selected_languages
571a8de5 4777 do
cc11cc9b 4778 x="$x $lang.$t"
571a8de5
DE
4779 done
4780 echo "lang.$t: $x" >> Make-hooks
4781done
4782
fd438373
MM
4783# --------
4784# Option include files
4785# --------
4786
4787${AWK} -f $srcdir/opt-include.awk $all_opt_files > option-includes.mk
4788option_includes="option-includes.mk"
4789AC_SUBST_FILE(option_includes)
4790
630327c3
NN
4791# --------
4792# UNSORTED
4793# --------
4794
cc06d68c 4795# Create .gdbinit.
296e46bd 4796
cc06d68c
GP
4797echo "dir ." > .gdbinit
4798echo "dir ${srcdir}" >> .gdbinit
4799if test x$gdb_needs_out_file_path = xyes
4800then
4801 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
4802fi
4803if test "x$subdirs" != x; then
4804 for s in $subdirs
4805 do
4806 echo "dir ${srcdir}/$s" >> .gdbinit
4807 done
296e46bd 4808fi
cc06d68c 4809echo "source ${srcdir}/gdbinit.in" >> .gdbinit
296e46bd 4810
15c723f3 4811gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)'
d062c304 4812AC_SUBST(gcc_tooldir)
4c112cda 4813AC_SUBST(dollar)
d062c304 4814
2bbea3a6
RH
4815# Find a directory in which to install a shared libgcc.
4816
4817AC_ARG_ENABLE(version-specific-runtime-libs,
b88ecf55
AS
4818[AS_HELP_STRING([--enable-version-specific-runtime-libs],
4819 [specify that runtime libraries should be
4820 installed in a compiler-specific directory])])
2bbea3a6 4821
5b15f277 4822AC_ARG_WITH(slibdir,
b88ecf55 4823[AS_HELP_STRING([--with-slibdir=DIR], [shared libraries in DIR @<:@LIBDIR@:>@])],
5b15f277
RH
4824slibdir="$with_slibdir",
4825if test "${enable_version_specific_runtime_libs+set}" = set; then
2bbea3a6 4826 slibdir='$(libsubdir)'
5b15f277 4827elif test "$host" != "$target"; then
2bbea3a6
RH
4828 slibdir='$(build_tooldir)/lib'
4829else
5b15f277
RH
4830 slibdir='$(libdir)'
4831fi)
2bbea3a6
RH
4832AC_SUBST(slibdir)
4833
46f18e7b
RK
4834# Substitute configuration variables
4835AC_SUBST(subdirs)
8ac9d31f 4836AC_SUBST(srcdir)
46f18e7b 4837AC_SUBST(all_compilers)
e2500fed 4838AC_SUBST(all_gtfiles)
2ed26f6b 4839AC_SUBST(all_lang_makefrags)
9f3d1bc2 4840AC_SUBST(all_languages)
cc11cc9b 4841AC_SUBST(all_selected_languages)
9f3d1bc2
BK
4842AC_SUBST(build_exeext)
4843AC_SUBST(build_install_headers_dir)
4844AC_SUBST(build_xm_file_list)
e22340b0 4845AC_SUBST(build_xm_include_list)
11642c3a 4846AC_SUBST(build_xm_defines)
a0e527e3 4847AC_SUBST(build_file_translate)
cbc59f01 4848AC_SUBST(check_languages)
9f3d1bc2 4849AC_SUBST(cpp_install_dir)
2ed26f6b
ZW
4850AC_SUBST(xmake_file)
4851AC_SUBST(tmake_file)
aca600aa
AS
4852AC_SUBST(TM_ENDIAN_CONFIG)
4853AC_SUBST(TM_MULTILIB_CONFIG)
4854AC_SUBST(TM_MULTILIB_EXCEPTIONS_CONFIG)
30500d84 4855AC_SUBST(extra_gcc_objs)
9b91e436
KT
4856AC_SUBST(user_headers_inc_next_pre)
4857AC_SUBST(user_headers_inc_next_post)
9f3d1bc2 4858AC_SUBST(extra_headers_list)
46f18e7b 4859AC_SUBST(extra_objs)
9f3d1bc2
BK
4860AC_SUBST(extra_parts)
4861AC_SUBST(extra_passes)
4862AC_SUBST(extra_programs)
9f3d1bc2 4863AC_SUBST(float_h_file)
cc1e60ea 4864AC_SUBST(gcc_config_arguments)
9f3d1bc2 4865AC_SUBST(gcc_gxx_include_dir)
9f3d1bc2 4866AC_SUBST(host_exeext)
46f18e7b 4867AC_SUBST(host_xm_file_list)
e22340b0 4868AC_SUBST(host_xm_include_list)
11642c3a 4869AC_SUBST(host_xm_defines)
476d9098 4870AC_SUBST(out_host_hook_obj)
9f3d1bc2 4871AC_SUBST(install)
d7b42618 4872AC_SUBST(lang_opt_files)
9f3d1bc2 4873AC_SUBST(lang_specs_files)
3103b7db 4874AC_SUBST(lang_tree_files)
46f18e7b 4875AC_SUBST(local_prefix)
9f3d1bc2
BK
4876AC_SUBST(md_file)
4877AC_SUBST(objc_boehm_gc)
4878AC_SUBST(out_file)
4879AC_SUBST(out_object_file)
9f3d1bc2
BK
4880AC_SUBST(thread_file)
4881AC_SUBST(tm_file_list)
e22340b0 4882AC_SUBST(tm_include_list)
d5355cb2 4883AC_SUBST(tm_defines)
80cf2e08
JM
4884AC_SUBST(libgcc_tm_file_list)
4885AC_SUBST(libgcc_tm_include_list)
11642c3a 4886AC_SUBST(tm_p_file_list)
e22340b0
ZW
4887AC_SUBST(tm_p_include_list)
4888AC_SUBST(xm_file_list)
4889AC_SUBST(xm_include_list)
3d9d2476 4890AC_SUBST(xm_defines)
207bf79d 4891AC_SUBST(use_gcc_stdint)
aac69a49
NC
4892AC_SUBST(c_target_objs)
4893AC_SUBST(cxx_target_objs)
c776a6d0 4894AC_SUBST(fortran_target_objs)
11642c3a 4895AC_SUBST(target_cpu_default)
46f18e7b 4896
46f18e7b
RK
4897AC_SUBST_FILE(language_hooks)
4898
7903cebc
NN
4899# Echo link setup.
4900if test x${build} = x${host} ; then
4901 if test x${host} = x${target} ; then
4902 echo "Links are now set up to build a native compiler for ${target}." 1>&2
4903 else
4904 echo "Links are now set up to build a cross-compiler" 1>&2
4905 echo " from ${host} to ${target}." 1>&2
4906 fi
46f18e7b 4907else
7903cebc
NN
4908 if test x${host} = x${target} ; then
4909 echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
4910 echo " for ${target}." 1>&2
4911 else
4912 echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
4913 echo " from ${host} to ${target}." 1>&2
4914 fi
46f18e7b
RK
4915fi
4916
6de9cd9a
DN
4917AC_ARG_VAR(GMPLIBS,[How to link GMP])
4918AC_ARG_VAR(GMPINC,[How to find GMP include files])
4919
f8bf9252
SP
4920AC_ARG_VAR(PPLLIBS,[How to link PPL])
4921AC_ARG_VAR(PPLINC,[How to find PPL include files])
4922
4923AC_ARG_VAR(CLOOGLIBS,[How to link CLOOG])
4924AC_ARG_VAR(CLOOGINC,[How to find CLOOG include files])
4925if test "x${CLOOGLIBS}" != "x" ; then
4926 AC_DEFINE(HAVE_cloog, 1, [Define if cloog is in use.])
4927fi
4928
68a607d8
DN
4929# Check for plugin support
4930AC_ARG_ENABLE(plugin,
b88ecf55 4931[AS_HELP_STRING([--enable-plugin], [enable plugin support])],
68a607d8
DN
4932enable_plugin=$enableval,
4933enable_plugin=yes; default_plugin=yes)
4934
4935pluginlibs=
601fc26e 4936
709e26f0
MK
4937case "${host}" in
4938 *-*-darwin*)
4939 if test x$build = x$host; then
4940 export_sym_check="nm${exeext} -g"
515871c7 4941 elif test x$host = x$target; then
9ec69d2e 4942 export_sym_check="$gcc_cv_nm -g"
709e26f0
MK
4943 else
4944 export_sym_check=
4945 fi
4946 ;;
4947 *)
4948 if test x$build = x$host; then
4949 export_sym_check="objdump${exeext} -T"
515871c7 4950 elif test x$host = x$target; then
9ec69d2e 4951 export_sym_check="$gcc_cv_objdump -T"
709e26f0
MK
4952 else
4953 export_sym_check=
4954 fi
4955 ;;
4956esac
4957
4958if test x"$enable_plugin" = x"yes"; then
4959
601fc26e 4960 AC_MSG_CHECKING([for exported symbols])
709e26f0
MK
4961 if test "x$export_sym_check" != x; then
4962 echo "int main() {return 0;} int foobar() {return 0;}" > conftest.c
4963 ${CC} ${CFLAGS} ${LDFLAGS} conftest.c -o conftest > /dev/null 2>&1
9ec69d2e 4964 if $export_sym_check conftest | grep foobar > /dev/null; then
709e26f0
MK
4965 : # No need to use a flag
4966 AC_MSG_RESULT([yes])
601fc26e 4967 else
709e26f0
MK
4968 AC_MSG_RESULT([yes])
4969 AC_MSG_CHECKING([for -rdynamic])
4970 ${CC} ${CFLAGS} ${LDFLAGS} -rdynamic conftest.c -o conftest > /dev/null 2>&1
4971 if $export_sym_check conftest | grep foobar > /dev/null; then
4972 plugin_rdynamic=yes
4973 pluginlibs="-rdynamic"
4974 else
4975 plugin_rdynamic=no
4976 enable_plugin=no
4977 fi
4978 AC_MSG_RESULT([$plugin_rdynamic])
601fc26e 4979 fi
709e26f0
MK
4980 else
4981 AC_MSG_RESULT([unable to check])
68a607d8
DN
4982 fi
4983
4984 # Check -ldl
30ce157e 4985 saved_LIBS="$LIBS"
0c2edd9f
ILT
4986 AC_SEARCH_LIBS([dlopen], [dl])
4987 if test x"$ac_cv_search_dlopen" = x"-ldl"; then
68a607d8
DN
4988 pluginlibs="$pluginlibs -ldl"
4989 fi
30ce157e 4990 LIBS="$saved_LIBS"
68a607d8
DN
4991
4992 # Check that we can build shared objects with -fPIC -shared
30ce157e 4993 saved_LDFLAGS="$LDFLAGS"
d8ed14ce 4994 saved_CFLAGS="$CFLAGS"
9ec69d2e
JH
4995 case "${host}" in
4996 *-*-darwin*)
d8ed14ce
IS
4997 CFLAGS=`echo $CFLAGS | sed s/-mdynamic-no-pic//g`
4998 CFLAGS="$CFLAGS -fPIC"
4999 LDFLAGS="$LDFLAGS -shared -undefined dynamic_lookup"
9ec69d2e
JH
5000 ;;
5001 *)
d8ed14ce 5002 CFLAGS="$CFLAGS -fPIC"
9ec69d2e
JH
5003 LDFLAGS="$LDFLAGS -fPIC -shared"
5004 ;;
5005 esac
68a607d8
DN
5006 AC_MSG_CHECKING([for -fPIC -shared])
5007 AC_TRY_LINK(
5008 [extern int X;],[return X == 0;],
5009 [AC_MSG_RESULT([yes]); have_pic_shared=yes],
5010 [AC_MSG_RESULT([no]); have_pic_shared=no])
0c2edd9f 5011 if test x"$have_pic_shared" != x"yes" -o x"$ac_cv_search_dlopen" = x"no"; then
68a607d8
DN
5012 pluginlibs=
5013 enable_plugin=no
5014 fi
30ce157e 5015 LDFLAGS="$saved_LDFLAGS"
d8ed14ce 5016 CFLAGS="$saved_CFLAGS"
68a607d8
DN
5017
5018 # If plugin support had been requested but not available, fail.
5019 if test x"$enable_plugin" = x"no" ; then
5020 if test x"$default_plugin" != x"yes"; then
5021 AC_MSG_ERROR([
5022Building GCC with plugin support requires a host that supports
5023-fPIC, -shared, -ldl and -rdynamic.])
5024 fi
5025 fi
68a607d8
DN
5026fi
5027
5028AC_SUBST(pluginlibs)
5029AC_SUBST(enable_plugin)
5030if test x"$enable_plugin" = x"yes"; then
5031 AC_DEFINE(ENABLE_PLUGIN, 1, [Define to enable plugin support.])
5032fi
5033
87e6d9dc
TB
5034
5035AC_ARG_ENABLE(libquadmath-support,
5036[AS_HELP_STRING([--disable-libquadmath-support],
5037 [disable libquadmath support for Fortran])],
5038ENABLE_LIBQUADMATH_SUPPORT=$enableval,
5039ENABLE_LIBQUADMATH_SUPPORT=yes)
5040if test "${ENABLE_LIBQUADMATH_SUPPORT}" != "no" ; then
5041 AC_DEFINE(ENABLE_LIBQUADMATH_SUPPORT, 1,
5042 [Define to 1 to enable libquadmath support])
5043fi
5044
5045
79bec923
ST
5046# Specify what hash style to use by default.
5047AC_ARG_WITH([linker-hash-style],
5048[AC_HELP_STRING([--with-linker-hash-style={sysv,gnu,both}],
5049 [specify the linker hash style])],
5050[case x"$withval" in
5051 xsysv)
5052 LINKER_HASH_STYLE=sysv
5053 ;;
5054 xgnu)
5055 LINKER_HASH_STYLE=gnu
5056 ;;
5057 xboth)
5058 LINKER_HASH_STYLE=both
5059 ;;
5060 *)
5061 AC_MSG_ERROR([$withval is an invalid option to --with-linker-hash-style])
5062 ;;
5063 esac],
5064[LINKER_HASH_STYLE=''])
5065if test x"${LINKER_HASH_STYLE}" != x; then
5066 AC_DEFINE_UNQUOTED(LINKER_HASH_STYLE, "$LINKER_HASH_STYLE",
5067 [The linker hash style])
5068fi
5069
46f18e7b
RK
5070# Configure the subdirectories
5071# AC_CONFIG_SUBDIRS($subdirs)
5072
5073# Create the Makefile
5891b37d 5074# and configure language subdirectories
914c5af7
NN
5075AC_CONFIG_FILES($all_outputs)
5076
5077AC_CONFIG_COMMANDS([default],
cdcc6a01 5078[
f1faaabd
NN
5079case ${CONFIG_HEADERS} in
5080 *auto-host.h:config.in*)
5081 echo > cstamp-h ;;
cdcc6a01 5082esac
2ed26f6b 5083# Make sure all the subdirs exist.
39dabefd 5084for d in $subdirs doc build c-family
2ed26f6b 5085do
2ed26f6b 5086 test -d $d || mkdir $d
2ed26f6b 5087done
0d24f4d1 5088],
35f06ae4 5089[subdirs='$subdirs'])
914c5af7 5090AC_OUTPUT
fd438373 5091