]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/configure.ac
nan_inf_fmt.f90: Revise test to include case of field width of zero.
[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
ca9bc441 4# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
eb70d86d 5# 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
11#Software Foundation; either version 2, or (at your option) any later
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
1322177d 20#along with GCC; see the file COPYING. If not, write to the Free
366ccddb
KC
21#Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22#02110-1301, USA.
46f18e7b 23
34a86c2b
NN
24# --------------------------------
25# Initialization and sanity checks
26# --------------------------------
27
8ab705be 28AC_PREREQ(2.59)
914c5af7
NN
29AC_INIT
30AC_CONFIG_SRCDIR(tree.c)
b7cb92ad 31AC_CONFIG_HEADER(auto-host.h:config.in)
cdcc6a01 32
9f18db39
PB
33gcc_version=`cat $srcdir/BASE-VER`
34
34a86c2b 35# Determine the host, build, and target systems
914c5af7
NN
36AC_CANONICAL_BUILD
37AC_CANONICAL_HOST
38AC_CANONICAL_TARGET
34a86c2b 39
caa55b1e 40# Determine the noncanonical target name, for directory use.
392765bf 41ACX_NONCANONICAL_TARGET
caa55b1e 42
4665e56c
NN
43# Determine the target- and build-specific subdirectories
44GCC_TOPLEV_SUBDIRS
45
34a86c2b
NN
46# Set program_transform_name
47AC_ARG_PROGRAM
46f18e7b 48
75a39864
JL
49# Check for bogus environment variables.
50# Test if LIBRARY_PATH contains the notation for the current directory
51# since this would lead to problems installing/building glibc.
52# LIBRARY_PATH contains the current directory if one of the following
53# is true:
54# - one of the terminals (":" and ";") is the first or last sign
55# - two terminals occur directly after each other
56# - the path contains an element with a dot in it
57AC_MSG_CHECKING(LIBRARY_PATH variable)
58changequote(,)dnl
59case ${LIBRARY_PATH} in
60 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
61 library_path_setting="contains current directory"
62 ;;
63 *)
64 library_path_setting="ok"
65 ;;
66esac
67changequote([,])dnl
68AC_MSG_RESULT($library_path_setting)
69if test "$library_path_setting" != "ok"; then
70AC_MSG_ERROR([
71*** LIBRARY_PATH shouldn't contain the current directory when
079bd08e 72*** building gcc. Please change the environment variable
75a39864
JL
73*** and run configure again.])
74fi
75
76# Test if GCC_EXEC_PREFIX contains the notation for the current directory
77# since this would lead to problems installing/building glibc.
78# GCC_EXEC_PREFIX contains the current directory if one of the following
79# is true:
80# - one of the terminals (":" and ";") is the first or last sign
81# - two terminals occur directly after each other
82# - the path contains an element with a dot in it
83AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
84changequote(,)dnl
85case ${GCC_EXEC_PREFIX} in
86 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
87 gcc_exec_prefix_setting="contains current directory"
88 ;;
89 *)
90 gcc_exec_prefix_setting="ok"
91 ;;
92esac
93changequote([,])dnl
94AC_MSG_RESULT($gcc_exec_prefix_setting)
95if test "$gcc_exec_prefix_setting" != "ok"; then
96AC_MSG_ERROR([
97*** GCC_EXEC_PREFIX shouldn't contain the current directory when
079bd08e 98*** building gcc. Please change the environment variable
75a39864
JL
99*** and run configure again.])
100fi
101
34a86c2b
NN
102# -----------
103# Directories
104# -----------
105
106# Specify the local prefix
107local_prefix=
108AC_ARG_WITH(local-prefix,
109[ --with-local-prefix=DIR specifies directory to put local include],
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,
127[ --with-gxx-include-dir=DIR
128 specifies directory to put g++ header files],
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
135if test x${gcc_gxx_include_dir} = x; then
136 if test x${enable_version_specific_runtime_libs} = xyes; then
137 gcc_gxx_include_dir='${libsubdir}/include/c++'
138 else
a1286ef5 139 libstdcxx_incdir='c++/$(version)'
34a86c2b
NN
140changequote(<<, >>)dnl
141 gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/"${libstdcxx_incdir}
142changequote([, ])dnl
143 fi
144fi
145
146AC_ARG_WITH(cpp_install_dir,
147[ --with-cpp-install-dir=DIR
148 install the user visible C preprocessor in DIR
149 (relative to PREFIX) as well as PREFIX/bin],
150[if test x$withval = xyes; then
151 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
152elif test x$withval != xno; then
153 cpp_install_dir=$withval
154fi])
155
51b9ff45
KC
156# We would like to our source tree to be readonly. However when releases or
157# pre-releases are generated, the flex/bison generated files as well as the
158# various formats of manuals need to be included along with the rest of the
159# sources. Therefore we have --enable-generated-files-in-srcdir to do
160# just that.
161
03787dfd
KC
162AC_MSG_CHECKING([whether to place generated files in the source directory])
163 dnl generated-files-in-srcdir is disabled by default
164 AC_ARG_ENABLE(generated-files-in-srcdir,
165[ --enable-generated-files-in-srcdir
166 put copies of generated files in source dir
167 intended for creating source tarballs for users
168 without texinfo bison or flex.],
169 generated_files_in_srcdir=$enableval,
170 generated_files_in_srcdir=no)
171
172AC_MSG_RESULT($generated_files_in_srcdir)
173
174if test "$generated_files_in_srcdir" = "yes"; then
175 GENINSRC=''
03787dfd
KC
176else
177 GENINSRC='#'
03787dfd
KC
178fi
179AC_SUBST(GENINSRC)
51b9ff45 180
34a86c2b
NN
181# -------------------
182# Find default linker
183# -------------------
46f18e7b
RK
184
185# With GNU ld
186AC_ARG_WITH(gnu-ld,
187[ --with-gnu-ld arrange to work with GNU ld.],
df6faf79
JW
188gnu_ld_flag="$with_gnu_ld",
189gnu_ld_flag=no)
46f18e7b 190
ab339d62
AO
191# With pre-defined ld
192AC_ARG_WITH(ld,
e8bec136 193[ --with-ld arrange to use the specified ld (full pathname)],
3ccc3a56
AO
194DEFAULT_LINKER="$with_ld")
195if test x"${DEFAULT_LINKER+set}" = x"set"; then
196 if test ! -x "$DEFAULT_LINKER"; then
99c012a8 197 AC_MSG_ERROR([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
e154a394 198 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
199 gnu_ld_flag=yes
200 fi
119d24d1
KG
201 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
202 [Define to enable the use of a default linker.])
ab339d62
AO
203fi
204
34a86c2b
NN
205AC_MSG_CHECKING([whether a default linker was specified])
206if test x"${DEFAULT_LINKER+set}" = x"set"; then
207 if test x"$gnu_ld_flag" = x"no"; then
208 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
209 else
210 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
211 fi
212else
213 AC_MSG_RESULT(no)
214fi
215
d594623a
L
216# With demangler in GNU ld
217AC_ARG_WITH(demangler-in-ld,
218[ --with-demangler-in-ld try to use demangler in GNU ld.],
219demangler_in_ld="$with_demangler_in_ld",
220demangler_in_ld=no)
221
34a86c2b
NN
222# ----------------------
223# Find default assembler
224# ----------------------
225
46f18e7b
RK
226# With GNU as
227AC_ARG_WITH(gnu-as,
e8bec136 228[ --with-gnu-as arrange to work with GNU as],
df6faf79
JW
229gas_flag="$with_gnu_as",
230gas_flag=no)
46f18e7b 231
ab339d62 232AC_ARG_WITH(as,
e8bec136 233[ --with-as arrange to use the specified as (full pathname)],
3ccc3a56
AO
234DEFAULT_ASSEMBLER="$with_as")
235if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
236 if test ! -x "$DEFAULT_ASSEMBLER"; then
99c012a8 237 AC_MSG_ERROR([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
e154a394 238 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
239 gas_flag=yes
240 fi
119d24d1
KG
241 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
242 [Define to enable the use of a default assembler.])
3ccc3a56 243fi
ab339d62 244
34a86c2b
NN
245AC_MSG_CHECKING([whether a default assembler was specified])
246if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
247 if test x"$gas_flag" = x"no"; then
248 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
4e88d51b 249 else
34a86c2b 250 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
4e88d51b 251 fi
34a86c2b
NN
252else
253 AC_MSG_RESULT(no)
4e88d51b 254fi
46f18e7b 255
34a86c2b
NN
256# ---------------
257# Find C compiler
258# ---------------
13c22933 259
426ca3ca
RO
260# If a non-executable a.out is present (e.g. created by GNU as above even if
261# invoked with -v only), the IRIX 6 native ld just overwrites the existing
262# file, even when creating an executable, so an execution test fails.
263# Remove possible default executable files to avoid this.
264#
265# FIXME: This really belongs into AC_PROG_CC and can be removed once
266# Autoconf includes it.
267rm -f a.out a.exe b.out
268
414d23ae
HPN
269# Find the native compiler
270AC_PROG_CC
3b620440 271AM_PROG_CC_C_O
414d23ae
HPN
272# autoconf is lame and doesn't give us any substitution variable for this.
273if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
274 NO_MINUS_C_MINUS_O=yes
275else
276 OUTPUT_OPTION='-o $@'
277fi
278AC_SUBST(NO_MINUS_C_MINUS_O)
279AC_SUBST(OUTPUT_OPTION)
280
73458fb7
NN
281# -------------------------
282# Check C compiler features
283# -------------------------
284
34a86c2b
NN
285AC_PROG_CPP
286AC_C_INLINE
34a86c2b 287
34a86c2b 288# sizeof(char) is 1 by definition.
bf3b7cd3
JD
289AC_CHECK_SIZEOF(void *)
290AC_CHECK_SIZEOF(short)
291AC_CHECK_SIZEOF(int)
292AC_CHECK_SIZEOF(long)
5ec1c5e6
KC
293AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
294AC_CHECK_TYPES([__int64], [AC_CHECK_SIZEOF(__int64)])
34a86c2b 295
34a86c2b
NN
296# ---------------------
297# Warnings and checking
298# ---------------------
299
b5472e1d
NN
300# Check $CC warning features (if it's GCC).
301# We want to use -pedantic, but we don't want warnings about
302# * 'long long'
303# * variadic macros
304# So, we only use -pedantic if we can disable those warnings.
305
306AC_CACHE_CHECK(
307 [whether ${CC} accepts -Wno-long-long],
308 [ac_cv_prog_cc_w_no_long_long],
309 [save_CFLAGS="$CFLAGS"
310 CFLAGS="-Wno-long-long"
311 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[]])],
312 [ac_cv_prog_cc_w_no_long_long=yes],
313 [ac_cv_prog_cc_w_no_long_long=no])
314 CFLAGS="$save_CFLAGS"
315 ])
316
317AC_CACHE_CHECK(
318 [whether ${CC} accepts -Wno-variadic-macros],
319 [ac_cv_prog_cc_w_no_variadic_macros],
320 [save_CFLAGS="$CFLAGS"
321 CFLAGS="-Wno-variadic-macros"
322 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[]])],
323 [ac_cv_prog_cc_w_no_variadic_macros=yes],
324 [ac_cv_prog_cc_w_no_variadic_macros=no])
325 CFLAGS="$save_CFLAGS"
326 ])
327
414d23ae 328strict1_warn=
b5472e1d
NN
329if test $ac_cv_prog_cc_w_no_long_long = yes \
330 && test $ac_cv_prog_cc_w_no_variadic_macros = yes ; then
331 strict1_warn="-pedantic -Wno-long-long -Wno-variadic-macros"
414d23ae
HPN
332fi
333AC_SUBST(strict1_warn)
334
643d3bd2
NN
335# Add -Wold-style-definition if it's accepted
336AC_CACHE_CHECK(
337 [whether ${CC} accepts -Wold-style-definition],
338 [ac_cv_prog_cc_w_old_style_definition],
339 [save_CFLAGS="$CFLAGS"
340 CFLAGS="-Wold-style-definition"
341 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[]])],
342 [ac_cv_prog_cc_w_old_style_definition=yes],
343 [ac_cv_prog_cc_w_old_style_definition=no])
344 CFLAGS="$save_CFLAGS"
345 ])
346if test $ac_cv_prog_cc_w_old_style_definition = yes ; then
347 strict1_warn="${strict1_warn} -Wold-style-definition"
348fi
349
09a9c095
NN
350# Enable -Werror, period.
351AC_ARG_ENABLE(werror_always,
352[ --enable-werror-always enable -Werror always], [],
353[enable_werror_always=no])
354if test x${enable_werror_always} = xyes ; then
355 strict1_warn="${strict1_warn} -Werror"
356 WERROR=-Werror
357fi
358
414d23ae
HPN
359# If the native compiler is GCC, we can enable warnings even in stage1.
360# That's useful for people building cross-compilers, or just running a
361# quick `make'.
362warn_cflags=
363if test "x$GCC" = "xyes"; then
364 warn_cflags='$(GCC_WARN_CFLAGS)'
365fi
366AC_SUBST(warn_cflags)
367
dd859b8a 368# Enable -Werror in bootstrap stage2 and later.
a1286ef5
ZW
369is_release=
370if test x"`cat $srcdir/DEV-PHASE`" != xexperimental; then
371 is_release=yes
372fi
dd859b8a
KG
373AC_ARG_ENABLE(werror,
374[ --enable-werror enable -Werror in bootstrap stage2 and later], [],
06c37c96
NS
375[if test x$is_release = x ; then
376 # Default to "yes" on development branches.
377 enable_werror=yes
378else
379 # Default to "no" on release branches.
380 enable_werror=no
381fi])
dd859b8a
KG
382if test x$enable_werror = xyes ; then
383 WERROR=-Werror
384fi
385AC_SUBST(WERROR)
386
a494747c
MM
387# Enable expensive internal checks
388AC_ARG_ENABLE(checking,
f4524c9e
ZW
389[ --enable-checking[=LIST]
390 enable expensive run-time checks. With LIST,
391 enable only specific categories of checks.
cdce5c16
NS
392 Categories are: yes,no,all,none,release.
393 Flags are: assert,fold,gc,gcac,misc,
394 rtlflag,rtl,runtime,tree,valgrind.],
e1bbfc5c
NS
395[ac_checking_flags="${enableval}"],[
396# Determine the default checks.
397if test x$is_release = x ; then
398 ac_checking_flags=yes
399else
400 ac_checking_flags=release
401fi])
402ac_assert_checking=1
403ac_checking=
cdce5c16
NS
404ac_fold_checking=
405ac_gc_checking=
406ac_gc_always_collect=
119d24d1 407ac_rtl_checking=
4c76f856 408ac_rtlflag_checking=
b53ef395 409ac_runtime_checking=1
cdce5c16
NS
410ac_tree_checking=
411ac_valgrind_checking=
e1bbfc5c
NS
412IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
413for check in $ac_checking_flags
414do
415 case $check in
cdce5c16 416 # these set all the flags to specific states
e1bbfc5c 417 yes) ac_assert_checking=1 ; ac_checking=1 ;
cdce5c16
NS
418 ac_fold_checking= ; ac_gc_checking=1 ;
419 ac_gc_always_collect= ; ac_rtl_checking= ;
232b67d9 420 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
cdce5c16
NS
421 ac_tree_checking=1 ; ac_valgrind_checking= ;;
422 no|none) ac_assert_checking= ; ac_checking= ;
423 ac_fold_checking= ; ac_gc_checking= ;
424 ac_gc_always_collect= ; ac_rtl_checking= ;
232b67d9 425 ac_rtlflag_checking= ; ac_runtime_checking= ;
cdce5c16 426 ac_tree_checking= ; ac_valgrind_checking= ;;
e1bbfc5c 427 all) ac_assert_checking=1 ; ac_checking=1 ;
cdce5c16
NS
428 ac_fold_checking=1 ; ac_gc_checking=1 ;
429 ac_gc_always_collect=1 ; ac_rtl_checking=1 ;
430 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
431 ac_tree_checking=1 ; ac_valgrind_checking= ;;
432 release) ac_assert_checking=1 ; ac_checking= ;
433 ac_fold_checking= ; ac_gc_checking= ;
434 ac_gc_always_collect= ; ac_rtl_checking= ;
435 ac_rtlflag_checking= ; ac_runtime_checking=1 ;
436 ac_tree_checking= ; ac_valgrind_checking= ;;
437 # these enable particular checks
e1bbfc5c
NS
438 assert) ac_assert_checking=1 ;;
439 fold) ac_fold_checking=1 ;;
440 gc) ac_gc_checking=1 ;;
441 gcac) ac_gc_always_collect=1 ;;
442 misc) ac_checking=1 ;;
e1bbfc5c 443 rtl) ac_rtl_checking=1 ;;
cdce5c16 444 rtlflag) ac_rtlflag_checking=1 ;;
b53ef395 445 runtime) ac_runtime_checking=1 ;;
e1bbfc5c 446 tree) ac_tree_checking=1 ;;
cdce5c16 447 valgrind) ac_valgrind_checking=1 ;;
e1bbfc5c
NS
448 *) AC_MSG_ERROR(unknown check category $check) ;;
449 esac
450done
451IFS="$ac_save_IFS"
452
204250d2 453nocommon_flag=""
119d24d1
KG
454if test x$ac_checking != x ; then
455 AC_DEFINE(ENABLE_CHECKING, 1,
456[Define if you want more run-time sanity checks. This one gets a grab
457 bag of miscellaneous but relatively cheap checks.])
204250d2 458 nocommon_flag=-fno-common
119d24d1 459fi
204250d2 460AC_SUBST(nocommon_flag)
06c37c96
NS
461if test x$ac_assert_checking != x ; then
462 AC_DEFINE(ENABLE_ASSERT_CHECKING, 1,
463[Define if you want assertions enabled. This is a cheap check.])
464fi
232b67d9 465GCC_TARGET_TEMPLATE(ENABLE_RUNTIME_CHECKING)
b53ef395
NS
466if test x$ac_runtime_checking != x ; then
467 AC_DEFINE(ENABLE_RUNTIME_CHECKING, 1,
468[Define if you want runtime assertions enabled. This is a cheap check.])
469fi
119d24d1
KG
470if test x$ac_tree_checking != x ; then
471 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
472[Define if you want all operations on trees (the basic data
473 structure of the front ends) to be checked for dynamic type safety
13f05fd0
BM
474 at runtime. This is moderately expensive. The tree browser debugging
475 routines will also be enabled by this option.
476 ])
477 TREEBROWSER=tree-browser.o
119d24d1 478fi
13f05fd0 479AC_SUBST(TREEBROWSER)
119d24d1
KG
480if test x$ac_rtl_checking != x ; then
481 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
482[Define if you want all operations on RTL (the basic data structure
483 of the optimizer and back end) to be checked for dynamic type safety
484 at runtime. This is quite expensive.])
485fi
4c76f856
JJ
486if test x$ac_rtlflag_checking != x ; then
487 AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
488[Define if you want RTL flag accesses to be checked against the RTL
489 codes that are supported for each access macro. This is relatively
490 cheap.])
491fi
119d24d1
KG
492if test x$ac_gc_checking != x ; then
493 AC_DEFINE(ENABLE_GC_CHECKING, 1,
494[Define if you want the garbage collector to do object poisoning and
495 other memory allocation checks. This is quite expensive.])
496fi
497if test x$ac_gc_always_collect != x ; then
498 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
499[Define if you want the garbage collector to operate in maximally
500 paranoid mode, validating the entire heap and collecting garbage at
501 every opportunity. This is extremely expensive.])
502fi
5dfa45d0
JJ
503if test x$ac_fold_checking != x ; then
504 AC_DEFINE(ENABLE_FOLD_CHECKING, 1,
505[Define if you want fold checked that it never destructs its argument.
506 This is quite expensive.])
507fi
414d23ae
HPN
508valgrind_path_defines=
509valgrind_command=
6938ec6c
NN
510
511dnl # This check AC_REQUIREs various stuff, so it *must not* be inside
512dnl # an if statement. This was the source of very frustrating bugs
513dnl # in converting to autoconf 2.5x!
514AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
515
cdce5c16 516if test x$ac_valgrind_checking != x ; then
414d23ae
HPN
517 # It is certainly possible that there's valgrind but no valgrind.h.
518 # GCC relies on making annotations so we must have both.
a207b594 519 AC_MSG_CHECKING(for VALGRIND_DISCARD in <valgrind/memcheck.h>)
f04f1d2c
KC
520 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
521 [[#include <valgrind/memcheck.h>
a207b594
HPN
522#ifndef VALGRIND_DISCARD
523#error VALGRIND_DISCARD not defined
f04f1d2c 524#endif]])],
a207b594
HPN
525 [gcc_cv_header_valgrind_memcheck_h=yes],
526 [gcc_cv_header_valgrind_memcheck_h=no])
527 AC_MSG_RESULT($gcc_cv_header_valgrind_memcheck_h)
14011ca4 528 AC_MSG_CHECKING(for VALGRIND_DISCARD in <memcheck.h>)
f04f1d2c
KC
529 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
530 [[#include <memcheck.h>
14011ca4
AJ
531#ifndef VALGRIND_DISCARD
532#error VALGRIND_DISCARD not defined
f04f1d2c
KC
533#endif]])],
534 [gcc_cv_header_memcheck_h=yes],
535 [gcc_cv_header_memcheck_h=no])
14011ca4 536 AC_MSG_RESULT($gcc_cv_header_memcheck_h)
414d23ae
HPN
537 AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
538 [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
a207b594
HPN
539 if test "x$valgrind_path" = "x" \
540 || (test $have_valgrind_h = no \
541 && test $gcc_cv_header_memcheck_h = no \
542 && test $gcc_cv_header_valgrind_memcheck_h = no); then
543 AC_MSG_ERROR([*** Can't find both valgrind and valgrind/memcheck.h, memcheck.h or valgrind.h])
414d23ae
HPN
544 fi
545 valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
546 valgrind_command="$valgrind_path -q"
547 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
548[Define if you want to run subprograms and generated programs
549 through valgrind (a memory checker). This is extremely expensive.])
a207b594
HPN
550 if test $gcc_cv_header_valgrind_memcheck_h = yes; then
551 AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1,
552 [Define if valgrind's valgrind/memcheck.h header is installed.])
553 fi
14011ca4
AJ
554 if test $gcc_cv_header_memcheck_h = yes; then
555 AC_DEFINE(HAVE_MEMCHECK_H, 1,
556 [Define if valgrind's memcheck.h header is installed.])
557 fi
414d23ae
HPN
558fi
559AC_SUBST(valgrind_path_defines)
560AC_SUBST(valgrind_command)
51d0e20c 561
74ee1642
PB
562AC_ARG_ENABLE(mapped-location,
563[ --enable-mapped-location location_t is fileline integer cookie],,
564enable_mapped_location=no)
565
566if test "$enable_mapped_location" = yes ; then
567 AC_DEFINE(USE_MAPPED_LOCATION, 1,
568[Define if location_t is fileline integer cookie.])
569fi
570
22aa533e
NS
571# Enable code coverage collection
572AC_ARG_ENABLE(coverage,
573[ --enable-coverage[=LEVEL]
fb38008e 574 enable compiler's code coverage collection.
22aa533e 575 Use to measure compiler performance and locate
8601608f 576 unused parts of the compiler. With LEVEL, specify
22aa533e
NS
577 optimization. Values are opt, noopt,
578 default is noopt],
579[case "${enableval}" in
6dd297da
NN
580 yes|noopt)
581 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O0"
582 ;;
583 opt)
584 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O2"
585 ;;
586 no)
587 # a.k.a. --disable-coverage
588 coverage_flags=""
589 ;;
590 *)
591 AC_MSG_ERROR(unknown coverage setting $enableval)
592 ;;
22aa533e 593esac],
2043c38e 594[coverage_flags=""])
22aa533e
NS
595AC_SUBST(coverage_flags)
596
439a7e54
DN
597AC_ARG_ENABLE(gather-detailed-mem-stats,
598[ --enable-gather-detailed-mem-stats enable detailed memory allocation stats gathering], [],
599[enable_gather_detailed_mem_stats=no])
600if test x$enable_gather_detailed_mem_stats = xyes ; then
601 AC_DEFINE(GATHER_STATISTICS, 1,
602 [Define to enable detailed memory allocation stats gathering.])
603fi
604
73458fb7
NN
605# -------------------------------
606# Miscenalleous configure options
607# -------------------------------
34a86c2b
NN
608
609# With stabs
610AC_ARG_WITH(stabs,
611[ --with-stabs arrange to use stabs instead of host debug format],
612stabs="$with_stabs",
613stabs=no)
614
34a86c2b
NN
615# Determine whether or not multilibs are enabled.
616AC_ARG_ENABLE(multilib,
617[ --enable-multilib enable library support for multiple ABIs],
618[], [enable_multilib=yes])
619AC_SUBST(enable_multilib)
3ecc3258 620
4bafaa6f
L
621# Enable __cxa_atexit for C++.
622AC_ARG_ENABLE(__cxa_atexit,
623[ --enable-__cxa_atexit enable __cxa_atexit for C++],
624[], [])
2121a768 625
0bbb1697
RK
626# Enable threads
627# Pass with no value to take the default
628# Pass with a value to specify a thread package
629AC_ARG_ENABLE(threads,
e8bec136
RO
630[ --enable-threads enable thread usage for target GCC
631 --enable-threads=LIB use LIB thread package for target GCC],,
615be2cf 632[enable_threads=''])
0bbb1697 633
d8bb17c8
OP
634AC_ARG_ENABLE(objc-gc,
635[ --enable-objc-gc enable the use of Boehm's garbage collector with
e8bec136 636 the GNU Objective-C runtime],
2618c083 637if test x$enable_objc_gc = xno; then
d8bb17c8
OP
638 objc_boehm_gc=''
639else
640 objc_boehm_gc=1
641fi,
642objc_boehm_gc='')
643
90e6a802 644AC_ARG_WITH(dwarf2,
e8bec136 645[ --with-dwarf2 force the default debug format to be DWARF 2],
90e6a802
RL
646dwarf2="$with_dwarf2",
647dwarf2=no)
648
50503ac8 649AC_ARG_ENABLE(shared,
e8bec136 650[ --disable-shared don't provide a shared libgcc],
c785e0fa
AO
651[
652 case $enable_shared in
653 yes | no) ;;
654 *)
655 enable_shared=no
656 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
657 for pkg in $enableval; do
658 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
659 enable_shared=yes
660 fi
661 done
662 IFS="$ac_save_ifs"
663 ;;
664 esac
665], [enable_shared=yes])
50503ac8
RH
666AC_SUBST(enable_shared)
667
4977bab6
ZW
668AC_ARG_WITH(sysroot,
669[ --with-sysroot[=DIR] Search for usr/lib, usr/include, et al, within DIR.],
670[
671 case ${with_sysroot} in
caa55b1e 672 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_noncanonical}/sys-root' ;;
4977bab6
ZW
673 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
674 esac
675
676 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
677 CROSS_SYSTEM_HEADER_DIR='$(TARGET_SYSTEM_ROOT)$(NATIVE_SYSTEM_HEADER_DIR)'
047d636f
DJ
678
679 if test "x$exec_prefix" = xNONE; then
680 if test "x$prefix" = xNONE; then
681 test_prefix=/usr/local
682 else
683 test_prefix=$prefix
684 fi
685 else
686 test_prefix=$exec_prefix
687 fi
688 case ${TARGET_SYSTEM_ROOT} in
91710e62
AO
689 "${test_prefix}"|"${test_prefix}/"*|\
690 '${exec_prefix}'|'${exec_prefix}/'*)
047d636f
DJ
691 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
692 TARGET_SYSTEM_ROOT_DEFINE="$t"
693 ;;
694 esac
4977bab6
ZW
695], [
696 TARGET_SYSTEM_ROOT=
db720d9a 697 TARGET_SYSTEM_ROOT_DEFINE=
4977bab6
ZW
698 CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include'
699])
700AC_SUBST(TARGET_SYSTEM_ROOT)
701AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
702AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
703
d1bd0ded 704# Build with intermodule optimisations
d1bd0ded
GK
705AC_ARG_ENABLE(intermodule,
706[ --enable-intermodule build the compiler in one step],
0c46c5c7
KC
707[case ${enable_intermodule} in
708 yes) onestep="-onestep";;
709 *) onestep="";;
710esac],
711[onestep=""])
d1bd0ded
GK
712AC_SUBST(onestep)
713
e4c9c075
PB
714# Sanity check enable_languages in case someone does not run the toplevel
715# configure # script.
716AC_ARG_ENABLE(languages,
717[ --enable-languages=LIST specify which front-ends to build],
718[case ,${enable_languages}, in
719 ,,|,yes,)
720 # go safe -- we cannot be much sure without the toplevel
721 # configure's
722 # analysis of which target libs are present and usable
723 enable_languages=c
724 ;;
725 *,all,*)
726 AC_MSG_ERROR([only the toplevel supports --enable-languages=all])
727 ;;
728 *,c,*)
729 ;;
730 *)
731 enable_languages=c,${enable_languages}
732 ;;
733esac],
734[enable_languages=c])
735
736subdirs=
737for lang in ${srcdir}/*/config-lang.in
738do
739 case $lang in
740 # The odd quoting in the next line works around
741 # an apparent bug in bash 1.12 on linux.
742changequote(,)dnl
743 ${srcdir}/[*]/config-lang.in) ;;
744 *)
745 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
746 if test "x$lang_alias" = x
747 then
748 echo "$lang doesn't set \$language." 1>&2
749 exit 1
750 fi
751 case ",$enable_languages," in
752 *,$lang_alias,*)
753 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`" ;;
754 esac
755 ;;
756changequote([,])dnl
757 esac
758done
759
760
73458fb7
NN
761# -------------------------
762# Checks for other programs
763# -------------------------
61842080 764
e9a25f70
JL
765AC_PROG_MAKE_SET
766
46f18e7b
RK
767# Find some useful tools
768AC_PROG_AWK
776dc15d 769# We need awk to create options.c and options.h.
2c4902b9
NN
770# Bail out if it's missing.
771case ${AWK} in
772 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
773esac
774
99e757d5 775gcc_AC_PROG_LN_S
ad6717df 776ACX_PROG_LN($LN_S)
46f18e7b 777AC_PROG_RANLIB
343a6100
MM
778case "${host}" in
779*-*-darwin*)
780 # By default, the Darwin ranlib will not treat common symbols as
781 # definitions when building the archive table of contents. Other
782 # ranlibs do that; pass an option to the Darwin ranlib that makes
783 # it behave similarly.
784 ranlib_flags="-c"
785 ;;
786*)
787 ranlib_flags=""
788esac
789AC_SUBST(ranlib_flags)
790
99e757d5 791gcc_AC_PROG_INSTALL
46f18e7b 792
3a000df0
KC
793# See if cmp has --ignore-initial.
794gcc_AC_PROG_CMP_IGNORE_INITIAL
795
955be633
JM
796# See if we have the mktemp command.
797AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
798
7c27e184
PB
799MISSING="${CONFIG_SHELL-/bin/sh} $srcdir/../missing"
800
801# See if makeinfo has been installed and is modern enough
802# that we can use it.
803gcc_AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
09fa0705 804 [GNU texinfo.* \([0-9][0-9.]*\)],
a38f87a9 805 [4.[2-9]*])
09fa0705 806if test $gcc_cv_prog_makeinfo_modern = no; then
7c27e184 807 MAKEINFO="$MISSING makeinfo"
09fa0705
ZW
808 AC_MSG_WARN([
809*** Makeinfo is missing or too old.
17db6582 810*** Info documentation will not be built.])
09fa0705 811 BUILD_INFO=
09fa0705 812else
7c27e184 813 BUILD_INFO=info
09fa0705 814fi
7c27e184 815AC_SUBST(BUILD_INFO)
09fa0705 816
3f896fc2
JM
817# Is pod2man recent enough to regenerate manpages?
818AC_MSG_CHECKING([for recent Pod::Man])
7be33370 819if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
fd939e46 820 AC_MSG_RESULT(yes)
7c27e184 821 GENERATED_MANPAGES=generated-manpages
fd939e46
JM
822else
823 AC_MSG_RESULT(no)
824 GENERATED_MANPAGES=
825fi
7c27e184 826AC_SUBST(GENERATED_MANPAGES)
fd939e46 827
1e608388
ZW
828# How about lex?
829dnl Don't use AC_PROG_LEX; we insist on flex.
830dnl LEXLIB is not useful in gcc.
7c27e184 831AC_CHECK_PROGS([FLEX], flex, [$MISSING flex])
1e608388
ZW
832
833# Bison?
7c27e184
PB
834AC_CHECK_PROGS([BISON], bison, [$MISSING bison])
835
836# Binutils are not build modules, unlike bison/flex/makeinfo. So we
837# check for build == host before using them.
1e608388 838
f6a874ac 839# NM
414adbdd
GK
840if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
841 && test -d ../binutils ; then
f6a874ac
JW
842 NM='$(objdir)/../binutils/nm-new'
843else
844 AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm)
845fi
846
847# AR
414adbdd
GK
848if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
849 && test -d ../binutils ; then
f6a874ac
JW
850 AR='$(objdir)/../binutils/ar'
851else
852 AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar)
853fi
854
855
73458fb7
NN
856# --------------------
857# Checks for C headers
858# --------------------
859
860AC_MSG_CHECKING(for GNU C library)
861AC_CACHE_VAL(gcc_cv_glibc,
f04f1d2c
KC
862[AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
863 [[#include <features.h>]], [[
73458fb7
NN
864#if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
865#error Not a GNU C library system
f04f1d2c
KC
866#endif]])],
867 [gcc_cv_glibc=yes],
868 [gcc_cv_glibc=no])])
73458fb7
NN
869AC_MSG_RESULT($gcc_cv_glibc)
870if test $gcc_cv_glibc = yes; then
871 AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
872fi
873
ca9bc441
NN
874# Need to reject headers which give warnings, so that the -Werror bootstrap
875# works later. *sigh* This needs to come before all header checks.
876AC_PROG_CPP_WERROR
877
73458fb7
NN
878AC_HEADER_STDC
879AC_HEADER_TIME
4f4e53dd 880ACX_HEADER_STRING
73458fb7 881AC_HEADER_SYS_WAIT
dfb77e37 882AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h iconv.h \
1072ec3f 883 fcntl.h unistd.h sys/file.h sys/time.h sys/mman.h \
73458fb7 884 sys/resource.h sys/param.h sys/times.h sys/stat.h \
56694dd9 885 direct.h malloc.h langinfo.h ldfcn.h locale.h wchar.h)
73458fb7
NN
886
887# Check for thread headers.
888AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
889AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
890
891# These tests can't be done till we know if we have limits.h.
892gcc_AC_C_CHAR_BIT
9791c75c 893AC_C_BIGENDIAN
73458fb7
NN
894
895# --------
896# UNSORTED
897# --------
898
899# Stage specific cflags for build.
900stage1_cflags=
901case $build in
902vax-*-*)
903 if test x$GCC = xyes
904 then
905 stage1_cflags="-Wa,-J"
906 else
907 stage1_cflags="-J"
908 fi
909 ;;
910powerpc-*-darwin*)
911 # The spiffy cpp-precomp chokes on some legitimate constructs in GCC
912 # sources; use -no-cpp-precomp to get to GNU cpp.
913 # Apple's GCC has bugs in designated initializer handling, so disable
914 # that too.
915 stage1_cflags="-no-cpp-precomp -DHAVE_DESIGNATED_INITIALIZERS=0"
916 ;;
917esac
918AC_SUBST(stage1_cflags)
919
4e70264f
ZW
920# These libraries may be used by collect2.
921# We may need a special search path to get them linked.
922AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
923[save_LIBS="$LIBS"
7f2749d4 924for libs in '' -lld -lmld \
4e70264f
ZW
925 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
926 '-L/usr/lib/cmplrs/cc3.11 -lmld'
927do
928 LIBS="$libs"
929 AC_TRY_LINK_FUNC(ldopen,
930 [gcc_cv_collect2_libs="$libs"; break])
931done
932LIBS="$save_LIBS"
933test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
934case $gcc_cv_collect2_libs in
935 "none required") ;;
936 *) COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
937esac
938AC_SUBST(COLLECT2_LIBS)
939
7f2749d4
RK
940# When building Ada code on Alpha, we need exc_resume which is usually in
941# -lexc. So test for it.
942save_LIBS="$LIBS"
943LIBS=
944AC_SEARCH_LIBS(exc_resume, exc)
945GNAT_LIBEXC="$LIBS"
946LIBS="$save_LIBS"
947AC_SUBST(GNAT_LIBEXC)
948
62c9aa5f
ZW
949# Some systems put ldexp and frexp in libm instead of libc; assume
950# they're both in the same place. jcf-dump needs them.
951save_LIBS="$LIBS"
952LIBS=
953AC_SEARCH_LIBS(ldexp, m)
954LDEXP_LIB="$LIBS"
955LIBS="$save_LIBS"
956AC_SUBST(LDEXP_LIB)
957
7636d567
JW
958# Use <inttypes.h> only if it exists,
959# doesn't clash with <sys/types.h>, and declares intmax_t.
960AC_MSG_CHECKING(for inttypes.h)
961AC_CACHE_VAL(gcc_cv_header_inttypes_h,
f04f1d2c
KC
962[AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
963[[#include <sys/types.h>
964#include <inttypes.h>]],
965 [[intmax_t i = -1;]])],
9da0e39b 966 [gcc_cv_header_inttypes_h=yes],
f04f1d2c 967 [gcc_cv_header_inttypes_h=no])])
7636d567 968AC_MSG_RESULT($gcc_cv_header_inttypes_h)
9da0e39b 969if test $gcc_cv_header_inttypes_h = yes; then
119d24d1
KG
970 AC_DEFINE(HAVE_INTTYPES_H, 1,
971 [Define if you have a working <inttypes.h> header file.])
9da0e39b 972fi
cdcc6a01 973
9612ab65
ZW
974dnl Disabled until we have a complete test for buggy enum bitfields.
975dnl gcc_AC_C_ENUM_BF_UNSIGNED
c149cc37 976
0d667716
KG
977define(gcc_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
978 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
979 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
980 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
981 putchar_unlocked putc_unlocked)
6af8c740 982AC_CHECK_FUNCS(times clock dup2 kill getrlimit setrlimit atoll atoq \
0d667716
KG
983 sysconf strsignal getrusage nl_langinfo scandir alphasort \
984 gettimeofday mbstowcs wcswidth mmap mincore setlocale \
985 gcc_UNLOCKED_FUNCS)
a81fb89e 986
39f6c4c8
KW
987if test x$ac_cv_func_mbstowcs = xyes; then
988 AC_CACHE_CHECK(whether mbstowcs works, gcc_cv_func_mbstowcs_works,
f04f1d2c 989[ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
39f6c4c8
KW
990int main()
991{
992 mbstowcs(0, "", 0);
993 return 0;
f04f1d2c
KC
994}]])],
995 [gcc_cv_func_mbstowcs_works=yes],
996 [gcc_cv_func_mbstowcs_works=no],
997 [gcc_cv_func_mbstowcs_works=yes])])
39f6c4c8
KW
998 if test x$gcc_cv_func_mbstowcs_works = xyes; then
999 AC_DEFINE(HAVE_WORKING_MBSTOWCS, 1,
1000 [Define this macro if mbstowcs does not crash when its
1001 first argument is NULL.])
1002 fi
1003fi
1004
78c9cb99 1005AC_CHECK_TYPE(ssize_t, int)
56f48ce9 1006
e256b8b6
DA
1007# Try to determine the array type of the second argument of getgroups
1008# for the target system (int or gid_t).
1009AC_TYPE_GETGROUPS
1010if test "${target}" = "${build}"; then
1011 TARGET_GETGROUPS_T=$ac_cv_type_getgroups
1012else
1013 case "${target}" in
1014 # This condition may need some tweaking. It should include all
1015 # targets where the array type of the second argument of getgroups
1016 # is int and the type of gid_t is not equivalent to int.
1017 *-*-sunos* | *-*-ultrix*)
1018 TARGET_GETGROUPS_T=int
1019 ;;
1020 *)
1021 TARGET_GETGROUPS_T=gid_t
1022 ;;
1023 esac
1024fi
1025AC_SUBST(TARGET_GETGROUPS_T)
1026
99e757d5 1027gcc_AC_FUNC_PRINTF_PTR
1072ec3f 1028gcc_AC_FUNC_MMAP_BLACKLIST
b27d2bd5
MK
1029
1030case "${host}" in
ee262b6f 1031*-*-*vms*)
2c55543b 1032 # Under VMS, vfork works very differently than on Unix. The standard test
ee262b6f
DR
1033 # won't work, and it isn't easily adaptable. It makes more sense to
1034 # just force it.
1035 ac_cv_func_vfork_works=yes
1036 ;;
b27d2bd5 1037esac
f04f1d2c 1038AC_FUNC_FORK
f1b54f9b 1039
f91abfce 1040AM_ICONV
56694dd9
ZW
1041# Until we have in-tree GNU iconv:
1042LIBICONV_DEP=
1043AC_SUBST(LIBICONV_DEP)
1044
1045AM_LC_MESSAGES
f91abfce 1046
a03ea89b
BM
1047AM_LANGINFO_CODESET
1048
86cf1cbd
KG
1049# We will need to find libiberty.h and ansidecl.h
1050saved_CFLAGS="$CFLAGS"
1051CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
ed5b9f96
GK
1052gcc_AC_CHECK_DECLS(getenv atol asprintf sbrk abort atof getcwd getwd \
1053 strsignal strstr strverscmp \
1054 errno snprintf vsnprintf vasprintf malloc realloc calloc \
367e8319 1055 free basename getopt clock getpagesize gcc_UNLOCKED_FUNCS, , ,[
d02af173 1056#include "ansidecl.h"
86cf1cbd 1057#include "system.h"])
c5c76735 1058
f31e826b 1059gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
d02af173 1060#include "ansidecl.h"
86cf1cbd 1061#include "system.h"
d2cabf16
KG
1062#ifdef HAVE_SYS_RESOURCE_H
1063#include <sys/resource.h>
1064#endif
1065])
1066
f04f1d2c 1067AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
b2522d2b
HPN
1068#include "ansidecl.h"
1069#include "system.h"
1070#ifdef HAVE_SYS_RESOURCE_H
1071#include <sys/resource.h>
1072#endif
f04f1d2c 1073]], [[rlim_t l = 0;]])],[],[AC_DEFINE([rlim_t],[long],
b2522d2b
HPN
1074[Define to \`long' if <sys/resource.h> doesn't define.])])
1075
2102b2fe
RS
1076# On AIX 5.2, <ldfcn.h> conflicts with <fcntl.h>, as both define incompatible
1077# FREAD and FWRITE macros. Fortunately, for GCC's single usage of ldgetname
1078# in collect2.c, <fcntl.h> isn't visible, but the configure test below needs
1079# to undef these macros to get the correct value for HAVE_DECL_LDGETNAME.
351df804
KG
1080gcc_AC_CHECK_DECLS(ldgetname, , ,[
1081#include "ansidecl.h"
1082#include "system.h"
1083#ifdef HAVE_LDFCN_H
2102b2fe
RS
1084#undef FREAD
1085#undef FWRITE
351df804
KG
1086#include <ldfcn.h>
1087#endif
1088])
1089
c1800ec8
ZW
1090gcc_AC_CHECK_DECLS(times, , ,[
1091#include "ansidecl.h"
1092#include "system.h"
1093#ifdef HAVE_SYS_TIMES_H
1094#include <sys/times.h>
1095#endif
1096])
1097
1098# More time-related stuff.
1099AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
f04f1d2c 1100AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
c1800ec8
ZW
1101#include "ansidecl.h"
1102#include "system.h"
1103#ifdef HAVE_SYS_TIMES_H
1104#include <sys/times.h>
1105#endif
f04f1d2c 1106]], [[struct tms tms;]])],[ac_cv_struct_tms=yes],[ac_cv_struct_tms=no])])
c1800ec8
ZW
1107if test $ac_cv_struct_tms = yes; then
1108 AC_DEFINE(HAVE_STRUCT_TMS, 1,
1109 [Define if <sys/times.h> defines struct tms.])
1110fi
1111
1112# use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
1113# revisit after autoconf 2.50.
1114AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
f04f1d2c 1115AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
c1800ec8
ZW
1116#include "ansidecl.h"
1117#include "system.h"
f04f1d2c 1118]], [[clock_t x;]])],[gcc_cv_type_clock_t=yes],[gcc_cv_type_clock_t=no])])
c1800ec8
ZW
1119if test $gcc_cv_type_clock_t = yes; then
1120 AC_DEFINE(HAVE_CLOCK_T, 1,
1121 [Define if <time.h> defines clock_t.])
1122fi
1123
86cf1cbd
KG
1124# Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
1125CFLAGS="$saved_CFLAGS"
1126
eb70d86d
AS
1127gcc_AC_INITFINI_ARRAY
1128
75923b2f 1129# mkdir takes a single argument on some systems.
99e757d5 1130gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
75923b2f 1131
46f18e7b
RK
1132# File extensions
1133manext='.1'
1134objext='.o'
46f18e7b
RK
1135AC_SUBST(manext)
1136AC_SUBST(objext)
46f18e7b 1137
4977bab6
ZW
1138# With Setjmp/Longjmp based exception handling.
1139AC_ARG_ENABLE(sjlj-exceptions,
1140[ --enable-sjlj-exceptions
1141 arrange to use setjmp/longjmp exception handling],
1142[sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
1143AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
1144 [Define 0/1 to force the choice for exception handling model.])])
1145
443728bb
L
1146# For platforms with the unwind ABI which includes an unwind library,
1147# libunwind, we can choose to use the system libunwind.
1148AC_ARG_WITH(system-libunwind,
1149[ --with-system-libunwind use installed libunwind])
4977bab6 1150
34a86c2b
NN
1151# --------------------------------------------------------
1152# Build, host, and target specific configuration fragments
1153# --------------------------------------------------------
1154
5b28c537
NN
1155# Collect build-machine-specific information.
1156. ${srcdir}/config.build
1157
a89ea0df
NN
1158# Collect host-machine-specific information.
1159. ${srcdir}/config.host
1160
ef69da62 1161target_gtfiles=
a89ea0df
NN
1162
1163# Collect target-machine-specific information.
b01bc573 1164. ${srcdir}/config.gcc
46f18e7b
RK
1165
1166extra_objs="${host_extra_objs} ${extra_objs}"
30500d84 1167extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
46f18e7b
RK
1168
1169# Default the target-machine variables that were not explicitly set.
75bffa71 1170if test x"$tm_file" = x
46f18e7b
RK
1171then tm_file=$cpu_type/$cpu_type.h; fi
1172
6b2adea9 1173if test x"$extra_headers" = x
46f18e7b
RK
1174then extra_headers=; fi
1175
75bffa71 1176if test x$md_file = x
e98e406f 1177then md_file=$cpu_type/$cpu_type.md; fi
46f18e7b 1178
75bffa71 1179if test x$out_file = x
46f18e7b
RK
1180then out_file=$cpu_type/$cpu_type.c; fi
1181
75bffa71 1182if test x"$tmake_file" = x
46f18e7b
RK
1183then tmake_file=$cpu_type/t-$cpu_type
1184fi
1185
90e6a802 1186if test x"$dwarf2" = xyes
756ee602 1187then tm_file="$tm_file tm-dwarf2.h"
90e6a802
RL
1188fi
1189
46f18e7b 1190# Say what files are being used for the output code and MD file.
11642c3a 1191echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
46f18e7b
RK
1192echo "Using \`$srcdir/config/$md_file' as machine description file."
1193
11642c3a 1194# If any of the xm_file variables contain nonexistent files, warn
4dc0535b
ZW
1195# about them and drop them.
1196
11642c3a
ZW
1197bx=
1198for x in $build_xm_file; do
1199 if test -f $srcdir/config/$x
1200 then bx="$bx $x"
11642c3a
ZW
1201 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1202 fi
1203done
1204build_xm_file="$bx"
1205
1206hx=
1207for x in $host_xm_file; do
1208 if test -f $srcdir/config/$x
1209 then hx="$hx $x"
11642c3a
ZW
1210 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1211 fi
1212done
1213host_xm_file="$hx"
1214
1215tx=
1216for x in $xm_file; do
1217 if test -f $srcdir/config/$x
1218 then tx="$tx $x"
11642c3a
ZW
1219 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1220 fi
1221done
1222xm_file="$tx"
1223
46f18e7b
RK
1224count=a
1225for f in $tm_file; do
1226 count=${count}x
1227done
75bffa71 1228if test $count = ax; then
46f18e7b
RK
1229 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
1230else
1231 echo "Using the following target machine macro files:"
1232 for f in $tm_file; do
1233 echo " $srcdir/config/$f"
1234 done
1235fi
1236
4977bab6
ZW
1237if test x$need_64bit_hwint = xyes; then
1238 AC_DEFINE(NEED_64BIT_HOST_WIDE_INT, 1,
1239[Define to 1 if HOST_WIDE_INT must be 64 bits wide (see hwint.h).])
1240fi
1241
99fa8911
AP
1242if test x$use_long_long_for_widest_fast_int = xyes; then
1243 AC_DEFINE(USE_LONG_LONG_FOR_WIDEST_FAST_INT, 1,
1244[Define to 1 if the 'long long' (or '__int64') is wider than 'long' but still
1245efficiently supported by the host hardware.])
1246fi
1247
46f18e7b
RK
1248count=a
1249for f in $host_xm_file; do
1250 count=${count}x
1251done
11642c3a
ZW
1252if test $count = a; then
1253 :
1254elif test $count = ax; then
46f18e7b
RK
1255 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
1256else
1257 echo "Using the following host machine macro files:"
1258 for f in $host_xm_file; do
1259 echo " $srcdir/config/$f"
1260 done
1261fi
476d9098 1262echo "Using ${out_host_hook_obj} for host machine hooks."
46f18e7b 1263
75bffa71 1264if test "$host_xm_file" != "$build_xm_file"; then
46f18e7b
RK
1265 count=a
1266 for f in $build_xm_file; do
1267 count=${count}x
1268 done
11642c3a
ZW
1269 if test $count = a; then
1270 :
1271 elif test $count = ax; then
46f18e7b
RK
1272 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
1273 else
1274 echo "Using the following build machine macro files:"
1275 for f in $build_xm_file; do
1276 echo " $srcdir/config/$f"
1277 done
1278 fi
1279fi
1280
8bb915b6
NN
1281# ---------
1282# Threading
1283# ---------
1284
c2e494a8 1285# Check if a valid thread package
615be2cf 1286case ${enable_threads} in
c2e494a8
NN
1287 "" | no)
1288 # No threads
1289 target_thread_file='single'
1290 ;;
1291 yes)
1292 # default
1293 target_thread_file='single'
1294 ;;
18167442 1295 aix | dce | gnat | irix | posix | posix95 | rtems | \
769e49eb 1296 single | solaris | vxworks | win32 )
615be2cf 1297 target_thread_file=${enable_threads}
c2e494a8
NN
1298 ;;
1299 *)
615be2cf 1300 echo "${enable_threads} is an unknown thread package" 1>&2
c2e494a8
NN
1301 exit 1
1302 ;;
1303esac
1304
1305if test x${thread_file} = x; then
1306 # No thread file set by target-specific clauses in config.gcc,
1307 # so use file chosen by default logic above
1308 thread_file=${target_thread_file}
46f18e7b 1309fi
46f18e7b 1310
8bb915b6
NN
1311# Make gthr-default.h if we have a thread file.
1312gthread_flags=
1313if test $thread_file != single; then
1314 rm -f gthr-default.h
1315 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
1316 gthread_flags=-DHAVE_GTHR_DEFAULT
1317fi
1318AC_SUBST(gthread_flags)
1319
1320# --------
1321# UNSORTED
1322# --------
1323
18fbf599 1324use_cxa_atexit=no
2121a768
JT
1325if test x$enable___cxa_atexit = xyes || \
1326 test x$enable___cxa_atexit = x -a x$default_use_cxa_atexit = xyes; then
18fbf599
PB
1327 if test x$host = x$target; then
1328 AC_CHECK_FUNC(__cxa_atexit,[use_cxa_atexit=yes],
1329 [echo "__cxa_atexit can't be enabled on this target"])
1330 else
1331 # We can't check for __cxa_atexit when building a cross, so assume
1332 # it is available
1333 use_cxa_atexit=yes
1334 fi
1335 if test x$use_cxa_atexit = xyes; then
1336 AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 1,
1337 [Define if you want to use __cxa_atexit, rather than atexit, to
1338 register C++ destructors for local statics and global objects.
1339 This is essential for fully standards-compliant handling of
1340 destructors, but requires __cxa_atexit in libc.])
1341 fi
2121a768
JT
1342fi
1343
a5381466 1344# Look for a file containing extra machine modes.
1c0ca89d
ZW
1345if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
1346 extra_modes_file='$(srcdir)'/config/${extra_modes}
a5381466 1347 AC_SUBST(extra_modes_file)
e22340b0 1348 AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "config/$extra_modes",
a5381466
ZW
1349 [Define to the name of a file containing a list of extra machine modes
1350 for this architecture.])
a5381466
ZW
1351fi
1352
75685792
RS
1353# Convert extra_options into a form suitable for Makefile use.
1354extra_opt_files=
1355for f in $extra_options; do
1356 extra_opt_files="$extra_opt_files \$(srcdir)/config/$f"
1357done
1358AC_SUBST(extra_opt_files)
1359
b7cb92ad 1360# auto-host.h is the file containing items generated by autoconf and is
e9a25f70 1361# the first file included by config.h.
4977bab6 1362# If host=build, it is correct to have bconfig include auto-host.h
db81d74a
RH
1363# as well. If host!=build, we are in error and need to do more
1364# work to find out the build config parameters.
75bffa71 1365if test x$host = x$build
db81d74a 1366then
eaf4e618 1367 build_auto=auto-host.h
b7cb92ad
JL
1368else
1369 # We create a subdir, then run autoconf in the subdir.
1370 # To prevent recursion we set host and build for the new
1371 # invocation of configure to the build for this invocation
1372 # of configure.
1373 tempdir=build.$$
1374 rm -rf $tempdir
1375 mkdir $tempdir
1376 cd $tempdir
1377 case ${srcdir} in
b86ecfa9 1378 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
b7cb92ad
JL
1379 *) realsrcdir=../${srcdir};;
1380 esac
d920e825
L
1381 saved_CFLAGS="${CFLAGS}"
1382 CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
1383 ${realsrcdir}/configure \
33e70558 1384 --enable-languages=${enable_languages-all} \
534d0cc0 1385 --target=$target_alias --host=$build_alias --build=$build_alias
d920e825 1386 CFLAGS="${saved_CFLAGS}"
b7cb92ad
JL
1387
1388 # We just finished tests for the build machine, so rename
1389 # the file auto-build.h in the gcc directory.
1390 mv auto-host.h ../auto-build.h
1391 cd ..
1392 rm -rf $tempdir
eaf4e618 1393 build_auto=auto-build.h
db81d74a 1394fi
71b5d516 1395AC_SUBST(build_subdir)
db81d74a 1396
eaf4e618 1397tm_file="${tm_file} defaults.h"
4977bab6
ZW
1398tm_p_file="${tm_p_file} tm-preds.h"
1399host_xm_file="auto-host.h ansidecl.h ${host_xm_file}"
1400build_xm_file="${build_auto} ansidecl.h ${build_xm_file}"
49691411 1401# We don't want ansidecl.h in target files, write code there in ISO/GNU C.
b4862477 1402# put this back in temporarily.
232b67d9 1403xm_file="auto-host.h ansidecl.h ${xm_file}"
0056a9b5 1404
34a86c2b
NN
1405# --------
1406# UNSORTED
1407# --------
1408
afabd8e6 1409changequote(,)dnl
cc1e60ea 1410# Compile in configure arguments.
8105825d 1411if test -f configargs.h ; then
cc1e60ea 1412 # Being re-configured.
022dae81 1413 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
cc1e60ea
JM
1414 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
1415else
1416 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
1417fi
eeae7b41
DJ
1418
1419# Double all backslashes and backslash all quotes to turn
1420# gcc_config_arguments into a C string.
1421sed -e 's/\\/\\\\/g; s/"/\\"/g' <<EOF >conftest.out
1422$gcc_config_arguments
1423EOF
1424gcc_config_arguments_str=`cat conftest.out`
1425rm -f conftest.out
1426
cc1e60ea
JM
1427cat > configargs.h <<EOF
1428/* Generated automatically. */
eeae7b41 1429static const char configuration_arguments[] = "$gcc_config_arguments_str";
a6687d2b 1430static const char thread_model[] = "$thread_file";
7816bea0
DJ
1431
1432static const struct {
1433 const char *name, *value;
1434} configure_default_options[] = $configure_default_options;
cc1e60ea 1435EOF
75bffa71 1436changequote([,])dnl
46f18e7b 1437
ab87f8c8 1438# Internationalization
56694dd9 1439ZW_GNU_GETTEXT_SISTER_DIR
dc6746e7 1440
56694dd9
ZW
1441# If LIBINTL contains LIBICONV, then clear LIBICONV so we don't get
1442# -liconv on the link line twice.
1443case "$LIBINTL" in *$LIBICONV*)
1444 LIBICONV= ;;
1445esac
ab87f8c8 1446
7f970b70
AM
1447AC_ARG_ENABLE(secureplt,
1448[ --enable-secureplt enable -msecure-plt by default for PowerPC],
1449[], [])
1450
f4ab28e3
MK
1451# Windows32 Registry support for specifying GCC installation paths.
1452AC_ARG_ENABLE(win32-registry,
1453[ --disable-win32-registry
e8bec136
RO
1454 disable lookup of installation paths in the
1455 Registry on Windows hosts
1456 --enable-win32-registry enable registry lookup (default)
f4ab28e3 1457 --enable-win32-registry=KEY
e8bec136
RO
1458 use KEY instead of GCC version as the last portion
1459 of the registry key],,)
a1286ef5 1460
4e70264f 1461case $host_os in
a1286ef5
ZW
1462 win32 | pe | cygwin* | mingw32* | uwin*)
1463 if test "x$enable_win32_registry" != xno; then
1464 AC_SEARCH_LIBS(RegOpenKeyExA, advapi32,, [enable_win32_registry=no])
1465 fi
f4ab28e3 1466
a1286ef5
ZW
1467 if test "x$enable_win32_registry" != xno; then
1468 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
1469 [Define to 1 if installation paths should be looked up in the Windows
1470 Registry. Ignored on non-Windows hosts.])
1471
1472 if test "x$enable_win32_registry" != xyes \
1473 && test "x$enable_win32_registry" != x; then
1474 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$enable_win32_registry",
1475 [Define to be the last component of the Windows registry key under which
1476 to look for installation paths. The full key used will be
1477 HKEY_LOCAL_MACHINE/SOFTWARE/Free Software Foundation/{WIN32_REGISTRY_KEY}.
1478 The default is the GCC version number.])
1479 fi
1480 fi
f4ab28e3
MK
1481 ;;
1482esac
1483
7fa10b25 1484# Get an absolute path to the GCC top-level source directory
1e6347d8 1485holddir=`${PWDCMD-pwd}`
7fa10b25 1486cd $srcdir
1e6347d8 1487topdir=`${PWDCMD-pwd}`
7fa10b25
RK
1488cd $holddir
1489
af5e4ada 1490# Conditionalize the makefile for this host machine.
2ed26f6b 1491xmake_file=
c406e779 1492for f in ${host_xmake_file}
94f42018 1493do
75bffa71 1494 if test -f ${srcdir}/config/$f
94f42018 1495 then
2ed26f6b 1496 xmake_file="${xmake_file} \$(srcdir)/config/$f"
94f42018
DE
1497 fi
1498done
46f18e7b 1499
af5e4ada 1500# Conditionalize the makefile for this target machine.
2ed26f6b 1501tmake_file_=
c406e779 1502for f in ${tmake_file}
94f42018 1503do
75bffa71 1504 if test -f ${srcdir}/config/$f
94f42018 1505 then
2ed26f6b 1506 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
94f42018
DE
1507 fi
1508done
2ed26f6b 1509tmake_file="${tmake_file_}"
5891b37d 1510
af5e4ada
DE
1511# If the host doesn't support symlinks, modify CC in
1512# FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
1513# Otherwise, we can use "CC=$(CC)".
1514rm -f symtest.tem
35f06ae4
PB
1515case "$LN_S" in
1516 *-s*)
1517 cc_set_by_configure="\$(CC)"
1518 quoted_cc_set_by_configure="\$(CC)"
1519 stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
1520 quoted_stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
1521 ;;
1522 *)
1523 cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
1524 quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
1525 stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
1526 quoted_stage_prefix_set_by_configure="\\\`case '\\\$(STAGE_PREFIX)' in stage*) echo '\\\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(STAGE_PREFIX)';; esac\\\`"
1527 ;;
1528esac
5891b37d 1529
5395b47b
NN
1530# This is a terrible hack which will go away some day.
1531host_cc_for_libada=${CC}
1532AC_SUBST(host_cc_for_libada)
1e3fad21 1533
af5e4ada 1534out_object_file=`basename $out_file .c`.o
5891b37d 1535
75685792
RS
1536tm_file_list="options.h"
1537tm_include_list="options.h"
af5e4ada 1538for f in $tm_file; do
64ccbc99 1539 case $f in
d02af173 1540 defaults.h )
e22340b0
ZW
1541 tm_file_list="${tm_file_list} \$(srcdir)/$f"
1542 tm_include_list="${tm_include_list} $f"
1543 ;;
1544 * )
1545 tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
1546 tm_include_list="${tm_include_list} config/$f"
1547 ;;
64ccbc99 1548 esac
af5e4ada 1549done
46f18e7b 1550
11642c3a 1551tm_p_file_list=
e22340b0 1552tm_p_include_list=
11642c3a 1553for f in $tm_p_file; do
4977bab6
ZW
1554 case $f in
1555 tm-preds.h )
e22340b0
ZW
1556 tm_p_file_list="${tm_p_file_list} $f"
1557 tm_p_include_list="${tm_p_include_list} $f"
1558 ;;
1559 * )
1560 tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
1561 tm_p_include_list="${tm_p_include_list} config/$f"
1562 esac
1563done
1564
1565xm_file_list=
1566xm_include_list=
1567for f in $xm_file; do
1568 case $f in
1569 ansidecl.h )
1570 xm_file_list="${xm_file_list} \$(srcdir)/../include/$f"
1571 xm_include_list="${xm_include_list} $f"
1572 ;;
1573 auto-host.h )
1574 xm_file_list="${xm_file_list} $f"
1575 xm_include_list="${xm_include_list} $f"
1576 ;;
1577 * )
1578 xm_file_list="${xm_file_list} \$(srcdir)/config/$f"
1579 xm_include_list="${xm_include_list} config/$f"
1580 ;;
4977bab6 1581 esac
11642c3a
ZW
1582done
1583
af5e4ada 1584host_xm_file_list=
e22340b0 1585host_xm_include_list=
af5e4ada 1586for f in $host_xm_file; do
64ccbc99 1587 case $f in
d02af173 1588 ansidecl.h )
e22340b0
ZW
1589 host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/$f"
1590 host_xm_include_list="${host_xm_include_list} $f"
1591 ;;
e2500fed 1592 auto-host.h )
e22340b0
ZW
1593 host_xm_file_list="${host_xm_file_list} $f"
1594 host_xm_include_list="${host_xm_include_list} $f"
1595 ;;
1596 * )
1597 host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f"
1598 host_xm_include_list="${host_xm_include_list} config/$f"
1599 ;;
64ccbc99 1600 esac
af5e4ada
DE
1601done
1602
1603build_xm_file_list=
1604for f in $build_xm_file; do
64ccbc99 1605 case $f in
d02af173 1606 ansidecl.h )
e22340b0
ZW
1607 build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/$f"
1608 build_xm_include_list="${build_xm_include_list} $f"
1609 ;;
e2500fed 1610 auto-build.h | auto-host.h )
e22340b0
ZW
1611 build_xm_file_list="${build_xm_file_list} $f"
1612 build_xm_include_list="${build_xm_include_list} $f"
1613 ;;
1614 * )
1615 build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f"
1616 build_xm_include_list="${build_xm_include_list} config/$f"
1617 ;;
64ccbc99 1618 esac
af5e4ada 1619done
46f18e7b 1620
a078a589
ZW
1621# Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
1622# Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
1623CROSS= AC_SUBST(CROSS)
1624ALL=all.internal AC_SUBST(ALL)
1625SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
75bffa71 1626if test x$host != x$target
af5e4ada 1627then
a078a589
ZW
1628 CROSS="-DCROSS_COMPILE"
1629 ALL=all.cross
1630 SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
343f59d9 1631 case "$host","$target" in
3a7e8b87
GK
1632 # Darwin crosses can use the host system's libraries and headers,
1633 # because of the fat library support. Of course, it must be the
1634 # same version of Darwin on both sides. Allow the user to
1635 # just say --target=foo-darwin without a version number to mean
1636 # "the version on this system".
1637 *-*-darwin*,*-*-darwin*)
1638 hostos=`echo $host | sed 's/.*-darwin/darwin/'`
1639 targetos=`echo $target | sed 's/.*-darwin/darwin/'`
1640 if test $hostos = $targetos -o $targetos = darwin ; then
1641 CROSS=
1642 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)'
1643 with_headers=yes
1644 fi
1645 ;;
1646
343f59d9
AM
1647 i?86-*-*,x86_64-*-* \
1648 | powerpc*-*-*,powerpc64*-*-*)
1649 CROSS="$CROSS -DNATIVE_CROSS" ;;
1650 esac
7a615b25
AO
1651elif test "x$TARGET_SYSTEM_ROOT" != x; then
1652 # This is just $(TARGET_SYSTEM_ROOT)$(NATIVE_SYSTEM_HEADER_DIR)
1653 SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
af5e4ada 1654fi
46f18e7b 1655
b39d221a
EC
1656# If this is a cross-compiler that does not
1657# have its own set of headers then define
1658# inhibit_libc
1659
dc06db20
R
1660# If this is using newlib, without having the headers available now,
1661# then define inhibit_libc in LIBGCC2_CFLAGS.
fecd6201
ZW
1662# This prevents libgcc2 from containing any code which requires libc
1663# support.
b39d221a 1664inhibit_libc=
dc06db20
R
1665if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
1666 test x$with_newlib = xyes ; } &&
e50084fa 1667 { test "x$with_headers" = x || test "x$with_headers" = xno ; } ; then
b39d221a 1668 inhibit_libc=-Dinhibit_libc
b39d221a
EC
1669fi
1670AC_SUBST(inhibit_libc)
1671
a078a589
ZW
1672# When building gcc with a cross-compiler, we need to adjust things so
1673# that the generator programs are still built with the native compiler.
1674# Also, we cannot run fixincludes or fix-header.
a078a589
ZW
1675
1676# These are the normal (build=host) settings:
eaf9f3b2 1677CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD)
4977bab6 1678BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS)
a078a589 1679STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
587dc9c6
NN
1680
1681# Possibly disable fixproto, on a per-target basis.
1682case ${use_fixproto} in
1683 no)
1684 STMP_FIXPROTO=
1685 ;;
1686 yes)
1687 STMP_FIXPROTO=stmp-fixproto
1688 ;;
1689esac
1690AC_SUBST(STMP_FIXPROTO)
a078a589 1691
83599948
NS
1692# And these apply if build != host, or we are generating coverage data
1693if test x$build != x$host || test "x$coverage_flags" != x
af5e4ada 1694then
b11e4747 1695 BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)'
a078a589 1696
7a615b25 1697 if test "x$TARGET_SYSTEM_ROOT" = x; then
d8e5117d 1698 if test "x$STMP_FIXPROTO" != x; then
de253ca4
GK
1699 STMP_FIXPROTO=stmp-install-fixproto
1700 fi
7a615b25 1701 fi
af5e4ada 1702fi
46f18e7b 1703
ae3a15bb
DE
1704# Expand extra_headers to include complete path.
1705# This substitutes for lots of t-* files.
1706extra_headers_list=
b1ef58c8
NN
1707# Prepend $(srcdir)/config/${cpu_type}/ to every entry in extra_headers.
1708for file in ${extra_headers} ; do
1709 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
1710done
ae3a15bb 1711
c38f02df
ILT
1712# Define collect2 in Makefile.
1713case $host_can_use_collect2 in
1714 no) collect2= ;;
1715 *) collect2='collect2$(exeext)' ;;
1716esac
1717AC_SUBST([collect2])
1718
af5e4ada 1719# Add a definition of USE_COLLECT2 if system wants one.
34a86c2b
NN
1720case $use_collect2 in
1721 no) use_collect2= ;;
1722 "") ;;
1723 *)
1724 host_xm_defines="${host_xm_defines} USE_COLLECT2"
1725 xm_defines="${xm_defines} USE_COLLECT2"
c38f02df
ILT
1726 case $host_can_use_collect2 in
1727 no)
1728 AC_MSG_ERROR([collect2 is required but cannot be built on this system])
1729 ;;
1730 esac
34a86c2b
NN
1731 ;;
1732esac
af5e4ada 1733
630327c3
NN
1734# ---------------------------
1735# Assembler & linker features
1736# ---------------------------
1737
d869a8c4
NN
1738# Identify the assembler which will work hand-in-glove with the newly
1739# built GCC, so that we can examine its features. This is the assembler
1740# which will be driven by the driver program.
1741#
1742# If build != host, and we aren't building gas in-tree, we identify a
1743# build->target assembler and hope that it will have the same features
1744# as the host->target assembler we'll be using.
34a86c2b 1745in_tree_gas=no
9e423e6d 1746gcc_cv_as=
981d4858
JM
1747gcc_cv_gas_major_version=
1748gcc_cv_gas_minor_version=
a2f319ea 1749gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
3ccc3a56
AO
1750if test -x "$DEFAULT_ASSEMBLER"; then
1751 gcc_cv_as="$DEFAULT_ASSEMBLER"
34a86c2b 1752elif test -f $gcc_cv_as_gas_srcdir/configure.in \
08d105fa
AO
1753 && test -f ../gas/Makefile \
1754 && test x$build = x$host; then
1755 # Single tree build which includes gas. We want to prefer it
1756 # over whatever linker top-level may have detected, since
1757 # we'll use what we're building after installation anyway.
ad9c4d9f
NN
1758 in_tree_gas=yes
1759 _gcc_COMPUTE_GAS_VERSION
9f18db39 1760 gcc_cv_as=../gas/as-new$build_exeext
5408ac6c
HPN
1761 in_tree_gas_is_elf=no
1762 if grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1763 || (grep 'obj_format = multi' ../gas/Makefile \
1764 && grep 'extra_objects =.* obj-elf' ../gas/Makefile) > /dev/null
1765 then
1766 in_tree_gas_is_elf=yes
1767 fi
08d105fa 1768m4_pattern_allow([AS_FOR_TARGET])dnl
9f18db39
PB
1769elif test -x as$build_exeext; then
1770 # Build using assembler in the current directory.
1771 gcc_cv_as=./as$build_exeext
08d105fa
AO
1772elif test -x "$AS_FOR_TARGET"; then
1773 gcc_cv_as="$AS_FOR_TARGET"
1774elif test -x "$AS" && test x$host = x$target; then
1775 gcc_cv_as="$AS"
981d4858
JM
1776fi
1777
9f18db39
PB
1778gcc_AC_CHECK_TOOL(gcc_cv_as, as, ORIGINAL_AS_FOR_TARGET)
1779AC_MSG_CHECKING(what assembler to use)
34a86c2b
NN
1780case $in_tree_gas in
1781 yes)
1782 AC_MSG_RESULT("newly built gas")
1783 ;;
1784 no)
1785 AC_MSG_RESULT($gcc_cv_as)
1786 ;;
1787esac
981d4858 1788
d869a8c4
NN
1789# Identify the linker which will work hand-in-glove with the newly
1790# built GCC, so that we can examine its features. This is the linker
1791# which will be driven by the driver program.
1792#
1793# If build != host, and we aren't building gas in-tree, we identify a
1794# build->target linker and hope that it will have the same features
1795# as the host->target linker we'll be using.
34a86c2b 1796in_tree_ld=no
275b60d6
JJ
1797gcc_cv_ld=
1798gcc_cv_gld_major_version=
1799gcc_cv_gld_minor_version=
1800gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
1801gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
1802if test -x "$DEFAULT_LINKER"; then
1803 gcc_cv_ld="$DEFAULT_LINKER"
34a86c2b 1804elif test -f $gcc_cv_ld_gld_srcdir/configure.in \
08d105fa
AO
1805 && test -f ../ld/Makefile \
1806 && test x$build = x$host; then
1807 # Single tree build which includes ld. We want to prefer it
1808 # over whatever linker top-level may have detected, since
1809 # we'll use what we're building after installation anyway.
34a86c2b 1810 in_tree_ld=yes
5408ac6c
HPN
1811 in_tree_ld_is_elf=no
1812 if (grep 'EMUL = .*elf' ../ld/Makefile \
8a45d680
AN
1813 || grep 'EMUL = .*linux' ../ld/Makefile \
1814 || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then
5408ac6c
HPN
1815 in_tree_ld_is_elf=yes
1816 fi
275b60d6
JJ
1817 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
1818 do
1819changequote(,)dnl
58ea87a9 1820 gcc_cv_gld_version=`sed -n -e 's/^[ ]*\(VERSION=[0-9]*\.[0-9]*.*\)/\1/p' < $f`
275b60d6
JJ
1821changequote([,])dnl
1822 if test x$gcc_cv_gld_version != x; then
1823 break
1824 fi
1825 done
1826changequote(,)dnl
1827 gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
1828 gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1829changequote([,])dnl
9f18db39
PB
1830 gcc_cv_ld=../ld/ld-new$build_exeext
1831elif test -x collect-ld$build_exeext; then
1832 # Build using linker in the current directory.
1833 gcc_cv_ld=./collect-ld$build_exeext
08d105fa
AO
1834elif test -x "$LD_FOR_TARGET"; then
1835 gcc_cv_ld="$LD_FOR_TARGET"
1836elif test -x "$LD" && test x$host = x$target; then
1837 gcc_cv_ld="$LD"
275b60d6
JJ
1838fi
1839
9f18db39
PB
1840gcc_AC_CHECK_TOOL(gcc_cv_ld, ld, ORIGINAL_LD_FOR_TARGET)
1841AC_MSG_CHECKING(what linker to use)
34a86c2b
NN
1842case $in_tree_ld in
1843 yes)
1844 AC_MSG_RESULT("newly built ld")
1845 ;;
1846 no)
1847 AC_MSG_RESULT($gcc_cv_ld)
1848 ;;
1849esac
275b60d6 1850
981d4858 1851# Figure out what nm we will be using.
f9c1196a 1852gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
f9c1196a 1853in_tree_nm=no
9f18db39
PB
1854gcc_cv_nm=
1855if test -f $gcc_cv_binutils_srcdir/configure.in \
f9c1196a
ZW
1856 && test -f ../binutils/Makefile; then
1857 # Single tree build which includes binutils.
1858 in_tree_nm=yes
9f18db39
PB
1859 gcc_cv_nm=../binutils/nm-new$build_exeext
1860elif test -x nm$build_exeext; then
57991eba 1861 gcc_cv_nm=./nm$build_exeext
981d4858 1862fi
9f18db39
PB
1863
1864gcc_AC_CHECK_TOOL(gcc_cv_nm, nm, ORIGINAL_NM_FOR_TARGET)
1865AC_MSG_CHECKING(what nm to use)
f9c1196a
ZW
1866case $in_tree_nm in
1867 yes) AC_MSG_RESULT("newly built nm") ;;
1868 no) AC_MSG_RESULT($gcc_cv_nm) ;;
1869esac
981d4858 1870
3cae5780
AS
1871# Figure out what objdump we will be using.
1872AC_MSG_CHECKING(what objdump to use)
f9c1196a 1873in_tree_objdump=no
57991eba
PB
1874if test -x objdump$build_exeext; then
1875 gcc_cv_objdump=./objdump$build_exeext
f9c1196a
ZW
1876elif test -f $gcc_cv_binutils_srcdir/configure.in \
1877 && test -f ../binutils/Makefile; then
1878 # Single tree build which includes binutils.
1879 in_tree_objdump=yes
9f18db39 1880 gcc_cv_objdump=../binutils/objdump$build_exeext
534d0cc0 1881elif test "x$program_prefix" != xNONE; then
57991eba 1882 gcc_cv_objdump=${program_prefix}objdump$build_exeext
b095fe2c
DJ
1883elif test x$build != x$host && test x$build != x$target; then
1884 gcc_cv_objdump=${target_noncanonical}-objdump$build_exeext
534d0cc0 1885else
f9c1196a 1886 gcc_cv_objdump=`echo objdump | \
57991eba 1887 sed "${program_transform_name}"`$build_exeext
3cae5780 1888fi
f9c1196a
ZW
1889case $in_tree_objdump in
1890 yes) AC_MSG_RESULT("newly built objdump") ;;
1891 no) AC_MSG_RESULT($gcc_cv_objdump) ;;
1892esac
3cae5780 1893
981d4858 1894# Figure out what assembler alignment features are present.
8ada417f
ZW
1895gcc_GAS_CHECK_FEATURE([.balign and .p2align], gcc_cv_as_balign_and_p2align,
1896 [2,6,0],,
1897[.balign 4
1898.p2align 2],,
1899[AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN, 1,
1900 [Define if your assembler supports .balign and .p2align.])])
1901
1902gcc_GAS_CHECK_FEATURE([.p2align with maximum skip], gcc_cv_as_max_skip_p2align,
1903 [2,8,0],,
1904 [.p2align 4,,7],,
1905[AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN, 1,
1906 [Define if your assembler supports specifying the maximum number
1907 of bytes to skip when using the GAS .p2align command.])])
1908
1909gcc_GAS_CHECK_FEATURE([working .subsection -1], gcc_cv_as_subsection_m1,
1910 [elf,2,9,0],,
1911 [conftest_label1: .word 0
d1accaa3
JJ
1912.subsection -1
1913conftest_label2: .word 0
8ada417f
ZW
1914.previous],
1915 [if test x$gcc_cv_nm != x; then
1916 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
1917 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1918 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1
1919 then :
1920 else gcc_cv_as_subsection_m1=yes
1921 fi
1922 rm -f conftest.nm1 conftest.nm2
1923 fi],
1924 [AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
1925 [Define if your assembler supports .subsection and .subsection -1 starts
1926 emitting at the beginning of your section.])])
1927
1928gcc_GAS_CHECK_FEATURE([.weak], gcc_cv_as_weak,
1929 [2,2,0],,
1930 [ .weak foobar],,
1931[AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])])
1932
e41f3691
JDA
1933gcc_GAS_CHECK_FEATURE([.nsubspa comdat], gcc_cv_as_nsubspa_comdat,
1934 [2,15,91],,
1935 [ .SPACE $TEXT$
1936 .NSUBSPA $CODE$,COMDAT],,
1937[AC_DEFINE(HAVE_GAS_NSUBSPA_COMDAT, 1, [Define if your assembler supports .nsubspa comdat option.])])
1938
8ada417f
ZW
1939# .hidden needs to be supported in both the assembler and the linker,
1940# because GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
1941# This is irritatingly difficult to feature test for; we have to check the
1942# date string after the version number. If we've got an in-tree
1943# ld, we don't know its patchlevel version, so we set the baseline at 2.13
1944# to be safe.
1945# The gcc_GAS_CHECK_FEATURE call just sets a cache variable.
1946gcc_GAS_CHECK_FEATURE([.hidden], gcc_cv_as_hidden,
1947 [elf,2,13,0],,
1948[ .hidden foobar
1949foobar:])
1950
1951AC_CACHE_CHECK(linker for .hidden support, gcc_cv_ld_hidden,
1952[if test $in_tree_ld = yes ; then
1953 gcc_cv_ld_hidden=no
1954 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 \
1955 && test $in_tree_ld_is_elf = yes; then
1956 gcc_cv_ld_hidden=yes
1957 fi
1958else
1959 gcc_cv_ld_hidden=yes
bace148a 1960 ld_ver=`$gcc_cv_ld --version 2>/dev/null | sed 1q`
8ada417f 1961 if echo "$ld_ver" | grep GNU > /dev/null; then
c72931a6 1962changequote(,)dnl
8ada417f
ZW
1963 ld_vers=`echo $ld_ver | sed -n \
1964 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
1965 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
1966 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
1967 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p' \
1968 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p' \
11176d2a
JB
1969 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p' \
1970 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p'`
8ada417f 1971 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'`
11176d2a
JB
1972 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
1973 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
1974 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
8ada417f
ZW
1975 if test 0"$ld_date" -lt 20020404; then
1976 if test -n "$ld_date"; then
1977 # If there was date string, but was earlier than 2002-04-04, fail
1978 gcc_cv_ld_hidden=no
1979 elif test -z "$ld_vers"; then
1980 # If there was no date string nor ld version number, something is wrong
1981 gcc_cv_ld_hidden=no
1982 else
8ada417f
ZW
1983 test -z "$ld_vers_patch" && ld_vers_patch=0
1984 if test "$ld_vers_major" -lt 2; then
1985 gcc_cv_ld_hidden=no
1986 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
1987 gcc_cv_ld_hidden="no"
1988 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 -a "$ld_vers_patch" -eq 0; then
1989 gcc_cv_ld_hidden=no
c72931a6 1990 fi
8ada417f
ZW
1991 fi
1992changequote([,])dnl
789b7de5 1993 fi
8ada417f 1994 else
28690784 1995 case "${target}" in
b0fd7d27 1996 hppa64*-*-hpux* | ia64*-*-hpux*)
28690784
JDA
1997 gcc_cv_ld_hidden=yes
1998 ;;
1999 *)
2000 gcc_cv_ld_hidden=no
2001 ;;
2002 esac
8ada417f
ZW
2003 fi
2004fi])
2005libgcc_visibility=no
9e944a16 2006AC_SUBST(libgcc_visibility)
232b67d9 2007GCC_TARGET_TEMPLATE([HAVE_GAS_HIDDEN])
0f31374d 2008if test $gcc_cv_as_hidden = yes && test $gcc_cv_ld_hidden = yes; then
8ada417f
ZW
2009 libgcc_visibility=yes
2010 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
2011 [Define if your assembler and linker support .hidden.])
2012fi
6a9c5260 2013
8ada417f
ZW
2014# Check if we have .[us]leb128, and support symbol arithmetic with it.
2015gcc_GAS_CHECK_FEATURE([.sleb128 and .uleb128], gcc_cv_as_leb128,
2016 [elf,2,11,0],,
2017[ .data
b7460f24
RH
2018 .uleb128 L2 - L1
2019L1:
2020 .uleb128 1280
2021 .sleb128 -1010
8ada417f
ZW
2022L2:],
2023 [# GAS versions before 2.11 do not support uleb128,
2024 # despite appearing to.
2025 # ??? There exists an elf-specific test that will crash
2026 # the assembler. Perhaps it's better to figure out whether
2027 # arbitrary sections are supported and try the test.
bace148a 2028 as_ver=`$gcc_cv_as --version 2>/dev/null | sed 1q`
8ada417f 2029 if echo "$as_ver" | grep GNU > /dev/null; then
78e766a0 2030changequote(,)dnl
8ada417f
ZW
2031 as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
2032 as_major=`echo $as_ver | sed 's/\..*//'`
2033 as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
78e766a0 2034changequote([,])dnl
8ada417f
ZW
2035 if test $as_major -eq 2 && test $as_minor -lt 11
2036 then :
2037 else gcc_cv_as_leb128=yes
2038 fi
2039 fi],
2040 [AC_DEFINE(HAVE_AS_LEB128, 1,
2041 [Define if your assembler supports .sleb128 and .uleb128.])])
2042
2043# GAS versions up to and including 2.11.0 may mis-optimize
2044# .eh_frame data.
2045gcc_GAS_CHECK_FEATURE(eh_frame optimization, gcc_cv_as_eh_frame,
2046 [elf,2,12,0],,
2047[ .text
c64688ae
RH
2048.LFB1:
2049 .4byte 0
2050.L1:
2051 .4byte 0
2052.LFE1:
2053 .section .eh_frame,"aw",@progbits
2054__FRAME_BEGIN__:
2055 .4byte .LECIE1-.LSCIE1
2056.LSCIE1:
2057 .4byte 0x0
2058 .byte 0x1
2059 .ascii "z\0"
2060 .byte 0x1
2061 .byte 0x78
2062 .byte 0x1a
2063 .byte 0x0
2064 .byte 0x4
2065 .4byte 1
2066 .p2align 1
2067.LECIE1:
2068.LSFDE1:
2069 .4byte .LEFDE1-.LASFDE1
2070.LASFDE1:
2071 .4byte .LASFDE1-__FRAME_BEGIN__
2072 .4byte .LFB1
2073 .4byte .LFE1-.LFB1
2074 .byte 0x4
2075 .4byte .LFE1-.LFB1
2076 .byte 0x4
2077 .4byte .L1-.LFB1
8ada417f 2078.LEFDE1:],
ba479fd2
NN
2079[ dnl # For autoconf 2.5x, must protect trailing spaces with @&t@.
2080cat > conftest.lit <<EOF
c64688ae
RH
2081 0000 10000000 00000000 017a0001 781a0004 .........z..x...
2082 0010 01000000 12000000 18000000 00000000 ................
ba479fd2 2083 0020 08000000 04080000 0044 .........D @&t@
01efb963 2084EOF
ba479fd2 2085cat > conftest.big <<EOF
01efb963
AS
2086 0000 00000010 00000000 017a0001 781a0004 .........z..x...
2087 0010 00000001 00000012 00000018 00000000 ................
ba479fd2 2088 0020 00000008 04000000 0844 .........D @&t@
c64688ae 2089EOF
8ada417f
ZW
2090 # If the assembler didn't choke, and we can objdump,
2091 # and we got the correct data, then succeed.
2092 if test x$gcc_cv_objdump != x \
2093 && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
2094 | tail -3 > conftest.got \
2095 && { cmp conftest.lit conftest.got > /dev/null 2>&1 \
2096 || cmp conftest.big conftest.got > /dev/null 2>&1; }
2097 then
2098 gcc_cv_as_eh_frame=yes
2099 elif AC_TRY_COMMAND($gcc_cv_as -o conftest.o --traditional-format /dev/null); then
2100 gcc_cv_as_eh_frame=buggy
2101 else
2102 # Uh oh, what do we do now?
2103 gcc_cv_as_eh_frame=no
2104 fi])
2105
2106if test $gcc_cv_as_eh_frame = buggy; then
2107 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
2108 [Define if your assembler mis-optimizes .eh_frame data.])
201556f0 2109fi
201556f0 2110
8ada417f
ZW
2111gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
2112 [elf,2,12,0], [--fatal-warnings],
5d4856a0 2113 [.section .rodata.str, "aMS", @progbits, 1])
c18a5b6c
MM
2114if test $gcc_cv_as_shf_merge = no; then
2115 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
2116 [elf,2,12,0], [--fatal-warnings],
2117 [.section .rodata.str, "aMS", %progbits, 1])
2118fi
5d4856a0
RO
2119AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_MERGE,
2120 [`if test $gcc_cv_as_shf_merge = yes; then echo 1; else echo 0; fi`],
2121[Define 0/1 if your assembler supports marking sections with SHF_MERGE flag.])
8ada417f 2122
c18a5b6c 2123gcc_GAS_CHECK_FEATURE(COMDAT group support, gcc_cv_as_comdat_group,
11176d2a 2124 [elf,2,16,0], [--fatal-warnings],
c18a5b6c
MM
2125 [.section .text,"axG",@progbits,.foo,comdat])
2126if test $gcc_cv_as_comdat_group = yes; then
2127 gcc_cv_as_comdat_group_percent=no
2128else
2129 gcc_GAS_CHECK_FEATURE(COMDAT group support, gcc_cv_as_comdat_group_percent,
11176d2a 2130 [elf,2,16,0], [--fatal-warnings],
c18a5b6c
MM
2131 [.section .text,"axG",%progbits,.foo,comdat])
2132fi
11176d2a
JB
2133if test $in_tree_ld != yes && test x"$ld_vers" != x; then
2134 comdat_group=yes
2135 if test 0"$ld_date" -lt 20050308; then
2136 if test -n "$ld_date"; then
2137 # If there was date string, but was earlier than 2005-03-08, fail
2138 comdat_group=no
2139 elif test "$ld_vers_major" -lt 2; then
2140 comdat_group=no
2141 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
2142 comdat_group=no
2143 fi
2144 fi
2145 if test $comdat_group = no; then
2146 gcc_cv_as_comdat_group=no
2147 gcc_cv_as_comdat_group_percent=no
2148 fi
2149fi
2150AC_DEFINE_UNQUOTED(HAVE_COMDAT_GROUP,
c18a5b6c 2151 [`if test $gcc_cv_as_comdat_group = yes || test $gcc_cv_as_comdat_group_percent = yes; then echo 1; else echo 0; fi`],
11176d2a 2152[Define 0/1 if your assembler and linker support COMDAT groups.])
c18a5b6c 2153
8ada417f 2154# Thread-local storage - the check is heavily parametrized.
f996902d
RH
2155conftest_s=
2156tls_first_major=
2157tls_first_minor=
9739c90c 2158tls_as_opt=
f996902d
RH
2159case "$target" in
2160changequote(,)dnl
6f9b006d
RH
2161 alpha*-*-*)
2162 conftest_s='
2163 .section ".tdata","awT",@progbits
2164foo: .long 25
2165 .text
2166 ldq $27,__tls_get_addr($29) !literal!1
2167 lda $16,foo($29) !tlsgd!1
2168 jsr $26,($27),__tls_get_addr !lituse_tlsgd!1
2169 ldq $27,__tls_get_addr($29) !literal!2
2170 lda $16,foo($29) !tlsldm!2
2171 jsr $26,($27),__tls_get_addr !lituse_tlsldm!2
2172 ldq $1,foo($29) !gotdtprel
2173 ldah $2,foo($29) !dtprelhi
2174 lda $3,foo($2) !dtprello
2175 lda $4,foo($29) !dtprel
2176 ldq $1,foo($29) !gottprel
2177 ldah $2,foo($29) !tprelhi
2178 lda $3,foo($2) !tprello
2179 lda $4,foo($29) !tprel'
2180 tls_first_major=2
2181 tls_first_minor=13
2f3321ca 2182 tls_as_opt=--fatal-warnings
6f9b006d 2183 ;;
e4dd71de
AH
2184 frv*-*-*)
2185 conftest_s='
2186 .section ".tdata","awT",@progbits
2187x: .long 25
2188 .text
2189 call #gettlsoff(x)'
2190 tls_first_major=2
2191 tls_first_minor=14
2192 ;;
51076f96
RC
2193 hppa*-*-linux*)
2194 conftest_s='
2195t1: .reg %r20
2196t2: .reg %r21
2197gp: .reg %r19
2198 .section ".tdata","awT",@progbits
2199foo: .long 25
2200 .text
2201 .align 4
2202 addil LT%foo-$tls_gdidx$,gp
2203 ldo RT%foo-$tls_gdidx$(%r1),%arg0
2204 b __tls_get_addr
2205 nop
2206 addil LT%foo-$tls_ldidx$,gp
2207 b __tls_get_addr
2208 ldo RT%foo-$tls_ldidx$(%r1),%arg0
2209 addil LR%foo-$tls_dtpoff$,%ret0
2210 ldo RR%foo-$tls_dtpoff$(%r1),%t1
2211 mfctl %cr27,%t1
2212 addil LT%foo-$tls_ieoff$,gp
2213 ldw RT%foo-$tls_ieoff$(%r1),%t2
2214 add %t1,%t2,%t3
2215 mfctl %cr27,%t1
2216 addil LR%foo-$tls_leoff$,%t1
2217 ldo RR%foo-$tls_leoff$(%r1),%t2'
2218 tls_first_major=2
2219 tls_first_minor=15
2220 tls_as_opt=--fatal-warnings
2221 ;;
f996902d 2222 i[34567]86-*-*)
f996902d
RH
2223 conftest_s='
2224 .section ".tdata","awT",@progbits
2225foo: .long 25
2226 .text
2227 movl %gs:0, %eax
2228 leal foo@TLSGD(,%ebx,1), %eax
2229 leal foo@TLSLDM(%ebx), %eax
2230 leal foo@DTPOFF(%eax), %edx
2231 movl foo@GOTTPOFF(%ebx), %eax
2232 subl foo@GOTTPOFF(%ebx), %eax
75d38379
JJ
2233 addl foo@GOTNTPOFF(%ebx), %eax
2234 movl foo@INDNTPOFF, %eax
f996902d
RH
2235 movl $foo@TPOFF, %eax
2236 subl $foo@TPOFF, %eax
2237 leal foo@NTPOFF(%ecx), %eax'
2238 tls_first_major=2
75d38379 2239 tls_first_minor=14
2f3321ca 2240 tls_as_opt=--fatal-warnings
75d38379
JJ
2241 ;;
2242 x86_64-*-*)
2243 conftest_s='
2244 .section ".tdata","awT",@progbits
2245foo: .long 25
2246 .text
2247 movq %fs:0, %rax
2248 leaq foo@TLSGD(%rip), %rdi
2249 leaq foo@TLSLD(%rip), %rdi
2250 leaq foo@DTPOFF(%rax), %rdx
2251 movq foo@GOTTPOFF(%rip), %rax
2252 movq $foo@TPOFF, %rax'
2253 tls_first_major=2
2254 tls_first_minor=14
2f3321ca 2255 tls_as_opt=--fatal-warnings
f996902d 2256 ;;
7b6e506e
RH
2257 ia64-*-*)
2258 conftest_s='
2259 .section ".tdata","awT",@progbits
2260foo: data8 25
2261 .text
2262 addl r16 = @ltoff(@dtpmod(foo#)), gp
2263 addl r17 = @ltoff(@dtprel(foo#)), gp
2264 addl r18 = @ltoff(@tprel(foo#)), gp
2265 addl r19 = @dtprel(foo#), gp
2266 adds r21 = @dtprel(foo#), r13
2267 movl r23 = @dtprel(foo#)
2268 addl r20 = @tprel(foo#), gp
2269 adds r22 = @tprel(foo#), r13
2270 movl r24 = @tprel(foo#)'
2271 tls_first_major=2
2272 tls_first_minor=13
2f3321ca 2273 tls_as_opt=--fatal-warnings
7b6e506e 2274 ;;
69229b81
DJ
2275 mips*-*-*)
2276 conftest_s='
2277 .section .tdata,"awT",@progbits
2278x:
2279 .word 2
2280 .text
2281 addiu $4, $28, %tlsgd(x)
2282 addiu $4, $28, %tlsldm(x)
2283 lui $4, %dtprel_hi(x)
2284 addiu $4, $4, %dtprel_lo(x)
2285 lw $4, %gottprel(x)($28)
2286 lui $4, %tprel_hi(x)
2287 addiu $4, $4, %tprel_lo(x)'
2288 tls_first_major=2
2289 tls_first_minor=16
2290 tls_as_opt='-32 --fatal-warnings'
2291 ;;
c4501e62
JJ
2292 powerpc-*-*)
2293 conftest_s='
2294 .section ".tdata","awT",@progbits
2295 .align 2
2296ld0: .space 4
2297ld1: .space 4
2298x1: .space 4
2299x2: .space 4
2300x3: .space 4
2301 .text
2302 addi 3,31,ld0@got@tlsgd
2303 bl __tls_get_addr
2304 addi 3,31,x1@got@tlsld
2305 bl __tls_get_addr
2306 addi 9,3,x1@dtprel
2307 addis 9,3,x2@dtprel@ha
2308 addi 9,9,x2@dtprel@l
2309 lwz 9,x3@got@tprel(31)
2310 add 9,9,x@tls
2311 addi 9,2,x1@tprel
2312 addis 9,2,x2@tprel@ha
2313 addi 9,9,x2@tprel@l'
2314 tls_first_major=2
2315 tls_first_minor=14
2f3321ca 2316 tls_as_opt="-a32 --fatal-warnings"
c4501e62
JJ
2317 ;;
2318 powerpc64-*-*)
2319 conftest_s='
2320 .section ".tdata","awT",@progbits
2321 .align 3
2322ld0: .space 8
2323ld1: .space 8
2324x1: .space 8
2325x2: .space 8
2326x3: .space 8
2327 .text
2328 addi 3,2,ld0@got@tlsgd
2329 bl .__tls_get_addr
2330 nop
2331 addi 3,2,ld1@toc
2332 bl .__tls_get_addr
2333 nop
2334 addi 3,2,x1@got@tlsld
2335 bl .__tls_get_addr
2336 nop
2337 addi 9,3,x1@dtprel
2338 bl .__tls_get_addr
2339 nop
2340 addis 9,3,x2@dtprel@ha
2341 addi 9,9,x2@dtprel@l
2342 bl .__tls_get_addr
2343 nop
2344 ld 9,x3@got@dtprel(2)
2345 add 9,9,3
2346 bl .__tls_get_addr
2347 nop'
2348 tls_first_major=2
2349 tls_first_minor=14
2f3321ca 2350 tls_as_opt="-a64 --fatal-warnings"
c4501e62 2351 ;;
fd3cd001
UW
2352 s390-*-*)
2353 conftest_s='
2354 .section ".tdata","awT",@progbits
2355foo: .long 25
2356 .text
2357 .long foo@TLSGD
2358 .long foo@TLSLDM
2359 .long foo@DTPOFF
2360 .long foo@NTPOFF
2361 .long foo@GOTNTPOFF
2362 .long foo@INDNTPOFF
2363 l %r1,foo@GOTNTPOFF(%r12)
2364 l %r1,0(%r1):tls_load:foo
2365 bas %r14,0(%r1,%r13):tls_gdcall:foo
2366 bas %r14,0(%r1,%r13):tls_ldcall:foo'
2367 tls_first_major=2
2368 tls_first_minor=14
2f3321ca 2369 tls_as_opt="-m31 --fatal-warnings"
fd3cd001
UW
2370 ;;
2371 s390x-*-*)
2372 conftest_s='
2373 .section ".tdata","awT",@progbits
2374foo: .long 25
2375 .text
2376 .quad foo@TLSGD
2377 .quad foo@TLSLDM
2378 .quad foo@DTPOFF
2379 .quad foo@NTPOFF
2380 .quad foo@GOTNTPOFF
2381 lg %r1,foo@GOTNTPOFF(%r12)
2382 larl %r1,foo@INDNTPOFF
2383 brasl %r14,__tls_get_offset@PLT:tls_gdcall:foo
2384 brasl %r14,__tls_get_offset@PLT:tls_ldcall:foo'
2385 tls_first_major=2
2386 tls_first_minor=14
2f3321ca 2387 tls_as_opt="-m64 -Aesame --fatal-warnings"
fd3cd001 2388 ;;
9ff13962
KK
2389 sh-*-* | sh[34]-*-*)
2390 conftest_s='
2391 .section ".tdata","awT",@progbits
2392foo: .long 25
2393 .text
2394 .long foo@TLSGD
2395 .long foo@TLSLDM
2396 .long foo@DTPOFF
2397 .long foo@GOTTPOFF
2398 .long foo@TPOFF'
2399 tls_first_major=2
2400 tls_first_minor=13
2f3321ca 2401 tls_as_opt=--fatal-warnings
9ff13962 2402 ;;
5751a10b 2403 sparc*-*-*)
2f3321ca
EB
2404 case "$target" in
2405 sparc*-sun-solaris2.*)
2406 on_solaris=yes
2407 ;;
2408 *)
2409 on_solaris=no
2410 ;;
2411 esac
2412 if test x$on_solaris = xyes && test x$gas_flag = xno; then
2413 conftest_s='
2414 .section ".tdata",#alloc,#write,#tls
2415foo: .long 25
2416 .text
2417 sethi %tgd_hi22(foo), %o0
2418 add %o0, %tgd_lo10(foo), %o1
2419 add %l7, %o1, %o0, %tgd_add(foo)
2420 call __tls_get_addr, %tgd_call(foo)
2421 sethi %tldm_hi22(foo), %l1
2422 add %l1, %tldm_lo10(foo), %l2
2423 add %l7, %l2, %o0, %tldm_add(foo)
2424 call __tls_get_addr, %tldm_call(foo)
2425 sethi %tldo_hix22(foo), %l3
2426 xor %l3, %tldo_lox10(foo), %l4
2427 add %o0, %l4, %l5, %tldo_add(foo)
2428 sethi %tie_hi22(foo), %o3
2429 add %o3, %tie_lo10(foo), %o3
2430 ld [%l7 + %o3], %o2, %tie_ld(foo)
2431 add %g7, %o2, %o4, %tie_add(foo)
2432 sethi %tle_hix22(foo), %l1
2433 xor %l1, %tle_lox10(foo), %o5
2434 ld [%g7 + %o5], %o1'
2435 tls_first_major=0
2436 tls_first_minor=0
2437 else
2438 conftest_s='
5751a10b
JJ
2439 .section ".tdata","awT",@progbits
2440foo: .long 25
2441 .text
2442 sethi %tgd_hi22(foo), %o0
2443 add %o0, %tgd_lo10(foo), %o1
2444 add %l7, %o1, %o0, %tgd_add(foo)
2445 call __tls_get_addr, %tgd_call(foo)
2446 sethi %tldm_hi22(foo), %l1
2447 add %l1, %tldm_lo10(foo), %l2
2448 add %l7, %l2, %o0, %tldm_add(foo)
2449 call __tls_get_addr, %tldm_call(foo)
2450 sethi %tldo_hix22(foo), %l3
2451 xor %l3, %tldo_lox10(foo), %l4
2452 add %o0, %l4, %l5, %tldo_add(foo)
2453 sethi %tie_hi22(foo), %o3
2454 add %o3, %tie_lo10(foo), %o3
2455 ld [%l7 + %o3], %o2, %tie_ld(foo)
2456 add %g7, %o2, %o4, %tie_add(foo)
2457 sethi %tle_hix22(foo), %l1
2458 xor %l1, %tle_lox10(foo), %o5
2459 ld [%g7 + %o5], %o1'
2460 tls_first_major=2
2461 tls_first_minor=14
2f3321ca
EB
2462 tls_as_opt="-32 --fatal-warnings"
2463 fi
5751a10b
JJ
2464 ;;
2465changequote([,])dnl
f996902d
RH
2466esac
2467if test -z "$tls_first_major"; then
8ada417f
ZW
2468 : # If we don't have a check, assume no support.
2469else
2470 gcc_GAS_CHECK_FEATURE(thread-local storage support, gcc_cv_as_tls,
2f3321ca 2471 [$tls_first_major,$tls_first_minor,0], [$tls_as_opt], [$conftest_s],,
8ada417f
ZW
2472 [AC_DEFINE(HAVE_AS_TLS, 1,
2473 [Define if your assembler supports thread-local storage.])])
f996902d 2474fi
8ada417f
ZW
2475
2476# Target-specific assembler checks.
f996902d 2477
7e9d8517
L
2478AC_MSG_CHECKING(linker -Bstatic/-Bdynamic option)
2479gcc_cv_ld_static_dynamic=no
2480if test $in_tree_ld = yes ; then
2481 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10; then
2482 gcc_cv_ld_static_dynamic=yes
2483 fi
2484elif test x$gcc_cv_ld != x; then
2485 # Check if linker supports -Bstatic/-Bdynamic option
2486 if $gcc_cv_ld --help 2>/dev/null | grep -- -Bstatic > /dev/null \
2487 && $gcc_cv_ld --help 2>/dev/null | grep -- -Bdynamic > /dev/null; then
2488 gcc_cv_ld_static_dynamic=yes
2489 fi
2490fi
2491if test x"$gcc_cv_ld_static_dynamic" = xyes; then
2492 AC_DEFINE(HAVE_LD_STATIC_DYNAMIC, 1,
2493[Define if your linker supports -Bstatic/-Bdynamic option.])
2494fi
2495AC_MSG_RESULT($gcc_cv_ld_static_dynamic)
2496
d594623a
L
2497if test x"$demangler_in_ld" = xyes; then
2498 AC_MSG_CHECKING(linker --demangle support)
2499 gcc_cv_ld_demangle=no
2500 if test $in_tree_ld = yes; then
2501 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 \
2502 gcc_cv_ld_demangle=yes
2503 fi
2504 elif test x$gcc_cv_ld != x -a x"$gnu_ld" = xyes; then
2505 # Check if the GNU linker supports --demangle option
2506 if $gcc_cv_ld --help 2>/dev/null | grep no-demangle > /dev/null; then
2507 gcc_cv_ld_demangle=yes
2508 fi
2509 fi
2510 if test x"$gcc_cv_ld_demangle" = xyes; then
2511 AC_DEFINE(HAVE_LD_DEMANGLE, 1,
2512[Define if your linker supports --demangle option.])
2513 fi
2514 AC_MSG_RESULT($gcc_cv_ld_demangle)
2515fi
2516
275b60d6 2517case "$target" in
3a37b08e
RH
2518 # All TARGET_ABI_OSF targets.
2519 alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
8ada417f
ZW
2520 gcc_GAS_CHECK_FEATURE([explicit relocation support],
2521 gcc_cv_as_alpha_explicit_relocs, [2,12,0],,
2522[ .set nomacro
3a37b08e
RH
2523 .text
2524 extbl $3, $2, $3 !lituse_bytoff!1
2525 ldq $2, a($29) !literal!1
2526 ldq $4, b($29) !literal!2
2527 ldq_u $3, 0($2) !lituse_base!1
2528 ldq $27, f($29) !literal!5
2529 jsr $26, ($27), f !lituse_jsr!5
2530 ldah $29, 0($26) !gpdisp!3
2531 lda $0, c($29) !gprel
2532 ldah $1, d($29) !gprelhigh
2533 lda $1, d($1) !gprellow
8ada417f
ZW
2534 lda $29, 0($29) !gpdisp!3],,
2535 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
2536 [Define if your assembler supports explicit relocations.])])
d006f5eb
RH
2537 gcc_GAS_CHECK_FEATURE([jsrdirect relocation support],
2538 gcc_cv_as_alpha_jsrdirect_relocs, [2,16,90],,
2539[ .set nomacro
2540 .text
2541 ldq $27, a($29) !literal!1
2542 jsr $26, ($27), a !lituse_jsrdirect!1],,
2543 [AC_DEFINE(HAVE_AS_JSRDIRECT_RELOCS, 1,
2544 [Define if your assembler supports the lituse_jsrdirect relocation.])])
3a37b08e 2545 ;;
e95b1e6a 2546
682a45fc
HPN
2547 cris-*-*)
2548 gcc_GAS_CHECK_FEATURE([-no-mul-bug-abort option],
2549 gcc_cv_as_cris_no_mul_bug,[2,15,91],
2550 [-no-mul-bug-abort], [.text],,
2551 [AC_DEFINE(HAVE_AS_NO_MUL_BUG_ABORT_OPTION, 1,
2552 [Define if your assembler supports the -no-mul-bug-abort option.])])
2553 ;;
2554
8ada417f
ZW
2555 sparc*-*-*)
2556 gcc_GAS_CHECK_FEATURE([.register], gcc_cv_as_sparc_register_op,,,
2557 [.register %g2, #scratch],,
2558 [AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
2559 [Define if your assembler supports .register.])])
2560
2561 gcc_GAS_CHECK_FEATURE([-relax option], gcc_cv_as_sparc_relax,,
2562 [-relax], [.text],,
2563 [AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
2564 [Define if your assembler supports -relax option.])])
2565
2566 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs],
2567 gcc_cv_as_sparc_ua_pcrel,,
2568 [-K PIC],
2569[.text
2570foo:
2571 nop
2572.data
2573.align 4
2574.byte 0
2575.uaword %r_disp32(foo)],
2576 [if test x$gcc_cv_ld != x \
2577 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
2578 gcc_cv_as_sparc_ua_pcrel=yes
2579 fi
2580 rm -f conftest],
2581 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
17e9e88c 2582 [Define if your assembler and linker support unaligned PC relative relocs.])
cf7b8b0d 2583
8ada417f
ZW
2584 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs against hidden symbols],
2585 gcc_cv_as_sparc_ua_pcrel_hidden,,
2586 [-K PIC],
2587[.data
2588.align 4
2589.byte 0x31
2590.uaword %r_disp32(foo)
2591.byte 0x32, 0x33, 0x34
2592.global foo
2593.hidden foo
2594foo:
2595.skip 4],
2596 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
2597 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
2598 && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
2599 | grep ' 31000000 07323334' > /dev/null 2>&1; then
2600 if $gcc_cv_objdump -R conftest 2> /dev/null \
2601 | grep 'DISP32' > /dev/null 2>&1; then
2602 :
22252625 2603 else
8ada417f 2604 gcc_cv_as_sparc_ua_pcrel_hidden=yes
5b68c389 2605 fi
8ada417f
ZW
2606 fi
2607 rm -f conftest],
2608 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
2609 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])])
2610 ]) # unaligned pcrel relocs
2611
2612 gcc_GAS_CHECK_FEATURE([offsetable %lo()],
2613 gcc_cv_as_sparc_offsetable_lo10,,
2614 [-xarch=v9],
2615[.text
2616 or %g1, %lo(ab) + 12, %g1
2617 or %g1, %lo(ab + 12), %g1],
2618 [if test x$gcc_cv_objdump != x \
ecb0ccbc 2619 && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \
8ada417f 2620 | grep ' 82106000 82106000' > /dev/null 2>&1; then
1b5c0152 2621 gcc_cv_as_sparc_offsetable_lo10=yes
8ada417f
ZW
2622 fi],
2623 [AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
2624 [Define if your assembler supports offsetable %lo().])])
1cb36a98
RH
2625 ;;
2626
2627changequote(,)dnl
c307e6dd 2628 i[34567]86-*-* | x86_64-*-*)
1cb36a98 2629changequote([,])dnl
d38bc601
BF
2630 case $target_os in
2631 cygwin* | pe | mingw32*)
2632 # Used for DWARF 2 in PE
2633 gcc_GAS_CHECK_FEATURE([.secrel32 relocs],
2634 gcc_cv_as_ix86_pe_secrel32,
2635 [2,15,91],,
2636[.text
2637foo: nop
2638.data
2639 .secrel32 foo],
2640 [if test x$gcc_cv_ld != x \
2641 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1; then
2642 gcc_cv_as_ix86_pe_secrel32=yes
2643 fi
2644 rm -f conftest],
2645 [AC_DEFINE(HAVE_GAS_PE_SECREL32_RELOC, 1,
2646 [Define if your assembler and linker support 32-bit section relative relocs via '.secrel32 label'.])])
2647 ;;
2648 esac
2649
8ada417f
ZW
2650 gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
2651 gcc_cv_as_ix86_filds_fists,
2652 [2,9,0],, [filds mem; fists mem],,
2653 [AC_DEFINE(HAVE_GAS_FILDS_FISTS, 1,
2654 [Define if your assembler uses the new HImode fild and fist notation.])])
2655
f6f5dff2
RO
2656 gcc_GAS_CHECK_FEATURE([cmov syntax],
2657 gcc_cv_as_ix86_cmov_sun_syntax,,,
2658 [cmovl.l %edx, %eax],,
2659 [AC_DEFINE(HAVE_AS_IX86_CMOV_SUN_SYNTAX, 1,
2660 [Define if your assembler supports the Sun syntax for cmov.])])
2661
6f3ca281
ZW
2662 # This one is used unconditionally by i386.[ch]; it is to be defined
2663 # to 1 if the feature is present, 0 otherwise.
8ada417f
ZW
2664 gcc_GAS_CHECK_FEATURE([GOTOFF in data],
2665 gcc_cv_as_ix86_gotoff_in_data, [2,11,0],,
2666[ .text
f88c65f7
RH
2667.L0:
2668 nop
2669 .data
6f3ca281
ZW
2670 .long .L0@GOTOFF])
2671 AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
2672 [`if test $gcc_cv_as_ix86_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
2673 [Define true if the assembler supports '.long foo@GOTOFF'.])
1cb36a98 2674 ;;
ef1ecf87
RH
2675
2676 ia64*-*-*)
8ada417f
ZW
2677 gcc_GAS_CHECK_FEATURE([ltoffx and ldxmov relocs],
2678 gcc_cv_as_ia64_ltoffx_ldxmov_relocs, [2,14,0],,
cfa9ee99 2679[ .text
ef1ecf87
RH
2680 addl r15 = @ltoffx(x#), gp
2681 ;;
cfa9ee99 2682 ld8.mov r16 = [[r15]], x#],,
8ada417f
ZW
2683 [AC_DEFINE(HAVE_AS_LTOFFX_LDXMOV_RELOCS, 1,
2684 [Define if your assembler supports ltoffx and ldxmov relocations.])])
2685
ef1ecf87 2686 ;;
8ada417f 2687
2c4a9cff 2688 powerpc*-*-*)
8ada417f 2689 case $target in
432218ba
DE
2690 *-*-aix*) conftest_s=' .machine "pwr5"
2691 .csect .text[[PR]]
6b37db3c 2692 mfcr 3,128';;
8af4d362
PB
2693 *-*-darwin*)
2694 gcc_GAS_CHECK_FEATURE([.machine directive support],
2695 gcc_cv_as_machine_directive,,,
2696 [ .machine ppc7400])
2697 if test x$gcc_cv_as_machine_directive != xyes; then
2698 echo "*** This target requires an assembler supporting \".machine\"" >&2
2699 echo you can get it from: ftp://gcc.gnu.org/pub/gcc/infrastructure/cctools-528.5.dmg >&2
2700 test x$build = x$target && exit 1
2701 fi
2702 conftest_s=' .text
6b37db3c 2703 mfcr r3,128';;
4c67db14 2704 *) conftest_s=' .machine power4
d2ab3e37 2705 .text
6b37db3c 2706 mfcr 3,128';;
8ada417f 2707 esac
8ada417f
ZW
2708
2709 gcc_GAS_CHECK_FEATURE([mfcr field support],
2710 gcc_cv_as_powerpc_mfcrf, [2,14,0],,
2711 [$conftest_s],,
2712 [AC_DEFINE(HAVE_AS_MFCRF, 1,
2713 [Define if your assembler supports mfcr field.])])
432218ba
DE
2714
2715 case $target in
2716 *-*-aix*) conftest_s=' .machine "pwr5"
2717 .csect .text[[PR]]
2718 popcntb 3,3';;
2719 *) conftest_s=' .machine power5
2720 .text
2721 popcntb 3,3';;
2722 esac
2723
2724 gcc_GAS_CHECK_FEATURE([popcntb support],
2725 gcc_cv_as_powerpc_popcntb, [2,17,0],,
2726 [$conftest_s],,
2727 [AC_DEFINE(HAVE_AS_POPCNTB, 1,
2728 [Define if your assembler supports popcntb field.])])
2729
7f970b70
AM
2730 case $target in
2731 *-*-aix*) conftest_s=' .csect .text[[PR]]
2732LCF..0:
2733 addis 11,30,_GLOBAL_OFFSET_TABLE_-LCF..0@ha';;
2734 *-*-darwin*)
2735 conftest_s=' .text
2736LCF0:
2737 addis r11,r30,_GLOBAL_OFFSET_TABLE_-LCF0@ha';;
2738 *) conftest_s=' .text
2739.LCF0:
2740 addis 11,30,_GLOBAL_OFFSET_TABLE_-.LCF0@ha';;
2741 esac
2742
2743 gcc_GAS_CHECK_FEATURE([rel16 relocs],
2744 gcc_cv_as_powerpc_rel16, [2,17,0], -a32,
2745 [$conftest_s],,
2746 [AC_DEFINE(HAVE_AS_REL16, 1,
2747 [Define if your assembler supports R_PPC_REL16 relocs.])])
2c4a9cff 2748 ;;
53b5ce19 2749
8ada417f
ZW
2750 mips*-*-*)
2751 gcc_GAS_CHECK_FEATURE([explicit relocation support],
2752 gcc_cv_as_mips_explicit_relocs, [2,14,0],,
2753[ lw $4,%gp_rel(foo)($4)],,
2754 [if test x$target_cpu_default = x
2755 then target_cpu_default=MASK_EXPLICIT_RELOCS
2756 else target_cpu_default="($target_cpu_default)|MASK_EXPLICIT_RELOCS"
2757 fi])
2758
82563d35
RS
2759 if test x$gas_flag = xyes \
2760 || test x"$host" != x"$build" \
2761 || test ! -x "$gcc_cv_as" \
2762 || "$gcc_cv_as" -v < /dev/null 2>&1 | grep GNU > /dev/null; then
2763 :
2764 else
2765 echo "*** This configuration requires the GNU assembler" >&2
2766 exit 1
2767 fi
8ada417f
ZW
2768 ;;
2769esac
9d147085
RH
2770# ??? Not all targets support dwarf2 debug_line, even within a version
2771# of gas. Moreover, we need to emit a valid instruction to trigger any
2772# info to the output file. So, as supported targets are added to gas 2.11,
2773# add some instruction here to (also) show we expect this might work.
2774# ??? Once 2.11 is released, probably need to add first known working
2775# version to the per-target configury.
2776case "$target" in
80486e06 2777 i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-* | m68*-*-* \
2853bc5a 2778 | x86_64*-*-* | hppa*-*-* | arm*-*-* | strongarm*-*-* | xscale*-*-* \
d116bdf8 2779 | xstormy16*-*-* | cris-*-* | xtensa-*-*)
9d147085
RH
2780 insn="nop"
2781 ;;
57116d8d 2782 ia64*-*-* | s390*-*-*)
9d147085
RH
2783 insn="nop 0"
2784 ;;
2853bc5a
HPN
2785 mmix-*-*)
2786 insn="swym 0"
2787 ;;
8ada417f
ZW
2788esac
2789if test x"$insn" != x; then
2790 conftest_s="\
2791 .file 1 \"conftest.s\"
2792 .loc 1 3 0
2793 $insn"
2794 gcc_GAS_CHECK_FEATURE([dwarf2 debug_line support],
2795 gcc_cv_as_dwarf2_debug_line,
2796 [elf,2,11,0],, [$conftest_s],
080a5bb0
EB
2797 [if test x$gcc_cv_objdump != x \
2798 && $gcc_cv_objdump -h conftest.o 2> /dev/null \
2799 | grep debug_line > /dev/null 2>&1; then
8ada417f
ZW
2800 gcc_cv_as_dwarf2_debug_line=yes
2801 fi])
2802
2803# The .debug_line file table must be in the exact order that
2804# we specified the files, since these indices are also used
2805# by DW_AT_decl_file. Approximate this test by testing if
2806# the assembler bitches if the same index is assigned twice.
2807 gcc_GAS_CHECK_FEATURE([buggy dwarf2 .file directive],
2808 gcc_cv_as_dwarf2_file_buggy,,,
2809[ .file 1 "foo.s"
2810 .file 1 "bar.s"])
2811
2812 if test $gcc_cv_as_dwarf2_debug_line = yes \
2813 && test $gcc_cv_as_dwarf2_file_buggy = no; then
9d147085 2814 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
8ada417f 2815 [Define if your assembler supports dwarf2 .file/.loc directives,
eaec9b3d 2816 and preserves file table indices exactly as given.])
8ada417f
ZW
2817 fi
2818
2819 gcc_GAS_CHECK_FEATURE([--gdwarf2 option],
2820 gcc_cv_as_gdwarf2_flag,
2821 [elf,2,11,0], [--gdwarf2], [$insn],,
2822 [AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
2823[Define if your assembler supports the --gdwarf2 option.])])
2824
2825 gcc_GAS_CHECK_FEATURE([--gstabs option],
2826 gcc_cv_as_gstabs_flag,
2827 [elf,2,11,0], [--gstabs], [$insn],
2828 [# The native Solaris 9/Intel assembler doesn't understand --gstabs
2829 # and warns about it, but still exits successfully. So check for
2830 # this.
2831 if AC_TRY_COMMAND([$gcc_cv_as --gstabs -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null])
2832 then :
2833 else gcc_cv_as_gstabs_flag=yes
2834 fi],
2835 [AC_DEFINE(HAVE_AS_GSTABS_DEBUG_FLAG, 1,
2836[Define if your assembler supports the --gstabs option.])])
9d147085 2837fi
5f0e9ea2 2838
96d0f4dc
JJ
2839AC_MSG_CHECKING(linker read-only and read-write section mixing)
2840gcc_cv_ld_ro_rw_mix=unknown
34a86c2b 2841if test $in_tree_ld = yes ; then
5408ac6c
HPN
2842 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 \
2843 && test $in_tree_ld_is_elf = yes; then
96d0f4dc
JJ
2844 gcc_cv_ld_ro_rw_mix=read-write
2845 fi
2846elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
90e145da
KC
2847 echo '.section myfoosect, "a"' > conftest1.s
2848 echo '.section myfoosect, "aw"' > conftest2.s
96d0f4dc 2849 echo '.byte 1' >> conftest2.s
90e145da 2850 echo '.section myfoosect, "a"' > conftest3.s
96d0f4dc 2851 echo '.byte 0' >> conftest3.s
6cd656d0
KC
2852 if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
2853 && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
2854 && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \
96d0f4dc 2855 && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
c6cc7e13 2856 conftest2.o conftest3.o > /dev/null 2>&1; then
96d0f4dc 2857 gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
c6cc7e13 2858 | sed -e '/myfoosect/!d' -e N`
96d0f4dc
JJ
2859 if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
2860 if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
2861 gcc_cv_ld_ro_rw_mix=read-only
2862 else
2863 gcc_cv_ld_ro_rw_mix=read-write
2864 fi
2865 fi
2866 fi
2867changequote(,)dnl
2868 rm -f conftest.* conftest[123].*
2869changequote([,])dnl
2870fi
2871if test x$gcc_cv_ld_ro_rw_mix = xread-write; then
2872 AC_DEFINE(HAVE_LD_RO_RW_SECTION_MIXING, 1,
2873 [Define if your linker links a mix of read-only
2874 and read-write sections into a read-write section.])
2875fi
2876AC_MSG_RESULT($gcc_cv_ld_ro_rw_mix)
2877
275b60d6
JJ
2878AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
2879gcc_cv_ld_eh_frame_hdr=no
34a86c2b 2880if test $in_tree_ld = yes ; then
5408ac6c
HPN
2881 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 \
2882 && test $in_tree_ld_is_elf = yes; then
275b60d6
JJ
2883 gcc_cv_ld_eh_frame_hdr=yes
2884 fi
2885elif test x$gcc_cv_ld != x; then
2886 # Check if linker supports --eh-frame-hdr option
2887 if $gcc_cv_ld --help 2>/dev/null | grep eh-frame-hdr > /dev/null; then
2888 gcc_cv_ld_eh_frame_hdr=yes
2889 fi
2890fi
232b67d9 2891GCC_TARGET_TEMPLATE([HAVE_LD_EH_FRAME_HDR])
275b60d6
JJ
2892if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
2893 AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
2894[Define if your linker supports --eh-frame-hdr option.])
2895fi
2896AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
2897
24a4dd31
JJ
2898AC_MSG_CHECKING(linker position independent executable support)
2899gcc_cv_ld_pie=no
2900if test $in_tree_ld = yes ; then
5408ac6c
HPN
2901 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 \
2902 && test $in_tree_ld_is_elf = yes; then
24a4dd31
JJ
2903 gcc_cv_ld_pie=yes
2904 fi
2905elif test x$gcc_cv_ld != x; then
2906 # Check if linker supports -pie option
2907 if $gcc_cv_ld --help 2>/dev/null | grep -- -pie > /dev/null; then
2908 gcc_cv_ld_pie=yes
2909 fi
2910fi
2911if test x"$gcc_cv_ld_pie" = xyes; then
2912 AC_DEFINE(HAVE_LD_PIE, 1,
2913[Define if your linker supports -pie option.])
2914fi
2915AC_MSG_RESULT($gcc_cv_ld_pie)
2916
630327c3
NN
2917# --------
2918# UNSORTED
2919# --------
2920
82e923f6
RS
2921AC_CACHE_CHECK(linker --as-needed support,
2922gcc_cv_ld_as_needed,
2923[gcc_cv_ld_as_needed=no
765f1bf9
AM
2924if test $in_tree_ld = yes ; then
2925 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 \
2926 && test $in_tree_ld_is_elf = yes; then
2927 gcc_cv_ld_as_needed=yes
2928 fi
2929elif test x$gcc_cv_ld != x; then
2930 # Check if linker supports --as-needed and --no-as-needed options
2931 if $gcc_cv_ld --help 2>/dev/null | grep as-needed > /dev/null; then
2932 gcc_cv_ld_as_needed=yes
2933 fi
2934fi
82e923f6 2935])
765f1bf9
AM
2936if test x"$gcc_cv_ld_as_needed" = xyes; then
2937 AC_DEFINE(HAVE_LD_AS_NEEDED, 1,
2938[Define if your linker supports --as-needed and --no-as-needed options.])
2939fi
765f1bf9 2940
85b776df
AM
2941case "$target" in
2942 powerpc64*-*-linux*)
2943 AC_CACHE_CHECK(linker support for omitting dot symbols,
2944 gcc_cv_ld_no_dot_syms,
2945 [gcc_cv_ld_no_dot_syms=no
2946 if test $in_tree_ld = yes ; then
2947 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
2948 gcc_cv_ld_no_dot_syms=yes
2949 fi
2950 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
2951 cat > conftest1.s <<EOF
2952 .text
2953 bl .foo
2954EOF
2955 cat > conftest2.s <<EOF
2956 .section ".opd","aw"
2957 .align 3
2958 .globl foo
2959 .type foo,@function
2960foo:
2961 .quad .LEfoo,.TOC.@tocbase,0
2962 .text
2963.LEfoo:
2964 blr
2965 .size foo,.-.LEfoo
2966EOF
2967 if $gcc_cv_as -a64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
2968 && $gcc_cv_as -a64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
2969 && $gcc_cv_ld -melf64ppc -o conftest conftest1.o conftest2.o > /dev/null 2>&1; then
2970 gcc_cv_ld_no_dot_syms=yes
2971 fi
2972 rm -f conftest conftest1.o conftest2.o conftest1.s conftest2.s
2973 fi
2974 ])
2975 if test x"$gcc_cv_ld_no_dot_syms" = xyes; then
2976 AC_DEFINE(HAVE_LD_NO_DOT_SYMS, 1,
2977 [Define if your PowerPC64 linker only needs function descriptor syms.])
2978 fi
2979 ;;
2980esac
2981
380e5ca4
MM
2982AC_CACHE_CHECK(linker --sysroot support,
2983 gcc_cv_ld_sysroot,
2984 [gcc_cv_ld_sysroot=no
2985 if test $in_tree_ld = yes ; then
2986 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 2987 gcc_cv_ld_sysroot=yes
380e5ca4
MM
2988 fi
2989 elif test x$gcc_cv_ld != x; then
2990 if $gcc_cv_ld --help 2>/dev/null | grep sysroot > /dev/null; then
2991 gcc_cv_ld_sysroot=yes
2992 fi
2993 fi])
2994if test x"$gcc_cv_ld_sysroot" = xyes; then
2995 AC_DEFINE(HAVE_LD_SYSROOT, 1,
2996 [Define if your linker supports --sysroot.])
2997fi
2998
9fb28a67 2999if test x$with_sysroot = x && test x$host = x$target \
047d636f 3000 && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
8ada417f
ZW
3001 AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include",
3002[Define to PREFIX/include if cpp should also search that directory.])
793e9558
PB
3003fi
3004
77008252
JJ
3005# Test for stack protector support in target C library.
3006case "$target" in
3007 *-*-linux*)
3008 AC_CACHE_CHECK(__stack_chk_fail in target GNU C library,
3009 gcc_cv_libc_provides_ssp,
3010 [gcc_cv_libc_provides_ssp=no
3011 if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x; then
3012 if test "x$with_sysroot" = x; then
3013 glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-include"
3014 elif test "x$with_sysroot" = xyes; then
3015 glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-root/usr/include"
3016 else
3017 glibc_header_dir="${with_sysroot}/usr/include"
3018 fi
3019 else
3020 glibc_header_dir=/usr/include
3021 fi
3022 # glibc 2.4 and later provides __stack_chk_fail and
3023 # either __stack_chk_guard, or TLS access to stack guard canary.
3024 if test -f $glibc_header_dir/features.h \
3025 && $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GNU_LIBRARY__[ ]+([1-9][0-9]|[6-9])' \
3026 $glibc_header_dir/features.h > /dev/null; then
3027 if $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GLIBC__[ ]+([1-9][0-9]|[3-9])' \
3028 $glibc_header_dir/features.h > /dev/null; then
3029 gcc_cv_libc_provides_ssp=yes
3030 elif $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GLIBC__[ ]+2' \
3031 $glibc_header_dir/features.h > /dev/null \
3032 && $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GLIBC_MINOR__[ ]+([1-9][0-9]|[4-9])' \
3033 $glibc_header_dir/features.h > /dev/null; then
3034 gcc_cv_libc_provides_ssp=yes
3035 fi
3036 fi]) ;;
3037 *) gcc_cv_libc_provides_ssp=no ;;
3038esac
3039if test x$gcc_cv_libc_provides_ssp = xyes; then
3040 AC_DEFINE(TARGET_LIBC_PROVIDES_SSP, 1,
3041 [Define if your target C library provides stack protector support])
3042fi
3043
81bf3d9e
RH
3044# Find out what GC implementation we want, or may, use.
3045AC_ARG_WITH(gc,
59415997 3046[ --with-gc={page,zone} choose the garbage collection mechanism to use
e8bec136 3047 with the compiler],
81bf3d9e 3048[case "$withval" in
08cee789 3049 page)
81bf3d9e
RH
3050 GGC=ggc-$withval
3051 ;;
08cee789
DJ
3052 zone)
3053 GGC=ggc-$withval
3054 AC_DEFINE(GGC_ZONE, 1, [Define if the zone collector is in use])
3055 ;;
81bf3d9e
RH
3056 *)
3057 AC_MSG_ERROR([$withval is an invalid option to --with-gc])
3058 ;;
3059esac],
130fadbb 3060[GGC=ggc-page])
81bf3d9e
RH
3061AC_SUBST(GGC)
3062echo "Using $GGC for garbage collection."
3063
3c809ba4 3064# Use the system's zlib library.
b8dad04b
ZW
3065zlibdir=-L../zlib
3066zlibinc="-I\$(srcdir)/../zlib"
3c809ba4
AG
3067AC_ARG_WITH(system-zlib,
3068[ --with-system-zlib use installed libz],
3069zlibdir=
3070zlibinc=
3071)
3072AC_SUBST(zlibdir)
3073AC_SUBST(zlibinc)
3074
dc6746e7
PT
3075dnl Very limited version of automake's enable-maintainer-mode
3076
3077AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
3078 dnl maintainer-mode is disabled by default
3079 AC_ARG_ENABLE(maintainer-mode,
e8bec136
RO
3080[ --enable-maintainer-mode
3081 enable make rules and dependencies not useful
dc6746e7
PT
3082 (and sometimes confusing) to the casual installer],
3083 maintainer_mode=$enableval,
3084 maintainer_mode=no)
3085
3086AC_MSG_RESULT($maintainer_mode)
3087
3088if test "$maintainer_mode" = "yes"; then
3089 MAINT=''
3090else
3091 MAINT='#'
3092fi
3093AC_SUBST(MAINT)dnl
3094
630327c3
NN
3095# --------------
3096# Language hooks
3097# --------------
3098
571a8de5
DE
3099# Make empty files to contain the specs and options for each language.
3100# Then add #include lines to for a compiler that has specs and/or options.
3101
d7b42618 3102lang_opt_files=
571a8de5 3103lang_specs_files=
3103b7db 3104lang_tree_files=
571a8de5
DE
3105for subdir in . $subdirs
3106do
d7b42618
NB
3107 if test -f $srcdir/$subdir/lang.opt; then
3108 lang_opt_files="$lang_opt_files $srcdir/$subdir/lang.opt"
3109 fi
75bffa71 3110 if test -f $srcdir/$subdir/lang-specs.h; then
0d24f4d1 3111 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
571a8de5 3112 fi
3103b7db 3113 if test -f $srcdir/$subdir/$subdir-tree.def; then
0d24f4d1 3114 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
3103b7db 3115 fi
571a8de5
DE
3116done
3117
3118# These (without "all_") are set in each config-lang.in.
3119# `language' must be a single word so is spelled singularly.
3120all_languages=
3121all_boot_languages=
3122all_compilers=
3123all_stagestuff=
53c7ffe7 3124all_outputs='Makefile gccbug mklibgcc libada-mk'
571a8de5 3125# List of language makefile fragments.
2ed26f6b
ZW
3126all_lang_makefrags=
3127# List of language subdirectory makefiles. Deprecated.
571a8de5 3128all_lang_makefiles=
e2500fed 3129# Files for gengtype
ef69da62 3130all_gtfiles="$target_gtfiles"
8ac9d31f
TJ
3131# Files for gengtype with language
3132all_gtfiles_files_langs=
3133all_gtfiles_files_files=
571a8de5
DE
3134
3135# Add the language fragments.
3136# Languages are added via two mechanisms. Some information must be
3137# recorded in makefile variables, these are defined in config-lang.in.
3138# We accumulate them and plug them into the main Makefile.
3139# The other mechanism is a set of hooks for each of the main targets
3140# like `clean', `install', etc.
3141
571a8de5
DE
3142language_hooks="Make-hooks"
3143
c406e779 3144for s in $subdirs
571a8de5 3145do
571a8de5
DE
3146 language=
3147 boot_language=
3148 compilers=
3149 stagestuff=
0280cf84 3150 outputs=
e2500fed 3151 gtfiles=
571a8de5 3152 . ${srcdir}/$s/config-lang.in
75bffa71 3153 if test "x$language" = x
571a8de5
DE
3154 then
3155 echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
3156 exit 1
3157 fi
2ed26f6b 3158 all_lang_makefrags="$all_lang_makefrags \$(srcdir)/$s/Make-lang.in"
72aaffbd 3159 if test -f ${srcdir}/$s/Makefile.in
2ed26f6b 3160 then all_lang_makefiles="$s/Makefile"
72aaffbd 3161 fi
571a8de5 3162 all_languages="$all_languages $language"
75bffa71 3163 if test "x$boot_language" = xyes
571a8de5
DE
3164 then
3165 all_boot_languages="$all_boot_languages $language"
3166 fi
3167 all_compilers="$all_compilers $compilers"
3168 all_stagestuff="$all_stagestuff $stagestuff"
0280cf84 3169 all_outputs="$all_outputs $outputs"
e2500fed 3170 all_gtfiles="$all_gtfiles $gtfiles"
c406e779 3171 for f in $gtfiles
8ac9d31f 3172 do
8ac9d31f
TJ
3173 all_gtfiles_files_langs="$all_gtfiles_files_langs ${s} "
3174 all_gtfiles_files_files="$all_gtfiles_files_files ${f} "
8ac9d31f 3175 done
571a8de5
DE
3176done
3177
8ac9d31f
TJ
3178# Pick up gtfiles for c
3179gtfiles=
3180s="c"
3181. ${srcdir}/c-config-lang.in
3182all_gtfiles="$all_gtfiles $gtfiles"
c406e779 3183for f in $gtfiles
8ac9d31f 3184do
8ac9d31f
TJ
3185 all_gtfiles_files_langs="$all_gtfiles_files_langs ${s} "
3186 all_gtfiles_files_files="$all_gtfiles_files_files ${f} "
8ac9d31f
TJ
3187done
3188
cbc59f01 3189check_languages=
c406e779 3190for language in $all_languages
cbc59f01 3191do
cbc59f01 3192 check_languages="$check_languages check-$language"
cbc59f01
DD
3193done
3194
62b81e45
MM
3195# We link each language in with a set of hooks, reached indirectly via
3196# lang.${target}.
571a8de5
DE
3197
3198rm -f Make-hooks
3199touch Make-hooks
65ebbf81 3200target_list="all.build all.cross start.encap rest.encap tags \
97ae108d 3201 install-normal install-common install-man \
a541f69d 3202 uninstall info man srcextra srcman srcinfo \
a03ad584 3203 mostlyclean clean distclean maintainer-clean \
8f231b5d 3204 stage1 stage2 stage3 stage4 stageprofile stagefeedback"
571a8de5
DE
3205for t in $target_list
3206do
3207 x=
c406e779 3208 for lang in $all_languages
571a8de5 3209 do
ab87f8c8 3210 x="$x $lang.$t"
571a8de5
DE
3211 done
3212 echo "lang.$t: $x" >> Make-hooks
3213done
3214
630327c3
NN
3215# --------
3216# UNSORTED
3217# --------
3218
cc06d68c 3219# Create .gdbinit.
296e46bd 3220
cc06d68c
GP
3221echo "dir ." > .gdbinit
3222echo "dir ${srcdir}" >> .gdbinit
3223if test x$gdb_needs_out_file_path = xyes
3224then
3225 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
3226fi
3227if test "x$subdirs" != x; then
3228 for s in $subdirs
3229 do
3230 echo "dir ${srcdir}/$s" >> .gdbinit
3231 done
296e46bd 3232fi
cc06d68c 3233echo "source ${srcdir}/gdbinit.in" >> .gdbinit
296e46bd 3234
8f8d3278
NC
3235# If $(exec_prefix) exists and is not the same as $(prefix), then compute an
3236# absolute path for gcc_tooldir based on inserting the number of up-directory
3237# movements required to get from $(exec_prefix) to $(prefix) into the basic
3238# $(libsubdir)/@(unlibsubdir) based path.
82cbf8f7
JL
3239# Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
3240# make and thus we'd get different behavior depending on where we built the
3241# sources.
5949a9fc 3242if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
caa55b1e 3243 gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_noncanonical)'
d062c304 3244else
8f8d3278
NC
3245changequote(<<, >>)dnl
3246# An explanation of the sed strings:
3247# -e 's|^\$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
3248# -e 's|/$||' match a trailing forward slash and eliminates it
3249# -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
ff7cc307 3250# -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../
8f8d3278
NC
3251#
3252# (*) Note this pattern overwrites the first character of the string
3253# with a forward slash if one is not already present. This is not a
3254# problem because the exact names of the sub-directories concerned is
3255# unimportant, just the number of them matters.
3256#
3257# The practical upshot of these patterns is like this:
3258#
3259# prefix exec_prefix result
3260# ------ ----------- ------
3261# /foo /foo/bar ../
3262# /foo/ /foo/bar ../
3263# /foo /foo/bar/ ../
3264# /foo/ /foo/bar/ ../
3265# /foo /foo/bar/ugg ../../
3266#
4c112cda 3267 dollar='$$'
caa55b1e 3268 gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_noncanonical)"
8f8d3278 3269changequote([, ])dnl
d062c304
JL
3270fi
3271AC_SUBST(gcc_tooldir)
4c112cda 3272AC_SUBST(dollar)
d062c304 3273
2bbea3a6
RH
3274# Find a directory in which to install a shared libgcc.
3275
3276AC_ARG_ENABLE(version-specific-runtime-libs,
e8bec136
RO
3277[ --enable-version-specific-runtime-libs
3278 specify that runtime libraries should be
3279 installed in a compiler-specific directory])
2bbea3a6 3280
5b15f277
RH
3281AC_ARG_WITH(slibdir,
3282[ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
3283slibdir="$with_slibdir",
3284if test "${enable_version_specific_runtime_libs+set}" = set; then
2bbea3a6 3285 slibdir='$(libsubdir)'
5b15f277 3286elif test "$host" != "$target"; then
2bbea3a6
RH
3287 slibdir='$(build_tooldir)/lib'
3288else
5b15f277
RH
3289 slibdir='$(libdir)'
3290fi)
2bbea3a6
RH
3291AC_SUBST(slibdir)
3292
1e6347d8 3293objdir=`${PWDCMD-pwd}`
7e717196
JL
3294AC_SUBST(objdir)
3295
46f18e7b
RK
3296# Substitute configuration variables
3297AC_SUBST(subdirs)
8ac9d31f 3298AC_SUBST(srcdir)
46f18e7b
RK
3299AC_SUBST(all_boot_languages)
3300AC_SUBST(all_compilers)
e2500fed 3301AC_SUBST(all_gtfiles)
8ac9d31f
TJ
3302AC_SUBST(all_gtfiles_files_langs)
3303AC_SUBST(all_gtfiles_files_files)
2ed26f6b 3304AC_SUBST(all_lang_makefrags)
9f3d1bc2
BK
3305AC_SUBST(all_lang_makefiles)
3306AC_SUBST(all_languages)
9f3d1bc2
BK
3307AC_SUBST(all_stagestuff)
3308AC_SUBST(build_exeext)
3309AC_SUBST(build_install_headers_dir)
3310AC_SUBST(build_xm_file_list)
e22340b0 3311AC_SUBST(build_xm_include_list)
11642c3a 3312AC_SUBST(build_xm_defines)
cbc59f01 3313AC_SUBST(check_languages)
9f3d1bc2 3314AC_SUBST(cc_set_by_configure)
5aa82ace 3315AC_SUBST(quoted_cc_set_by_configure)
9f3d1bc2 3316AC_SUBST(cpp_install_dir)
2ed26f6b
ZW
3317AC_SUBST(xmake_file)
3318AC_SUBST(tmake_file)
30500d84 3319AC_SUBST(extra_gcc_objs)
9f3d1bc2 3320AC_SUBST(extra_headers_list)
46f18e7b 3321AC_SUBST(extra_objs)
9f3d1bc2
BK
3322AC_SUBST(extra_parts)
3323AC_SUBST(extra_passes)
3324AC_SUBST(extra_programs)
9f3d1bc2 3325AC_SUBST(float_h_file)
cc1e60ea 3326AC_SUBST(gcc_config_arguments)
9f3d1bc2 3327AC_SUBST(gcc_gxx_include_dir)
e2187d3b 3328AC_SUBST(libstdcxx_incdir)
9f3d1bc2 3329AC_SUBST(host_exeext)
46f18e7b 3330AC_SUBST(host_xm_file_list)
e22340b0 3331AC_SUBST(host_xm_include_list)
11642c3a 3332AC_SUBST(host_xm_defines)
476d9098 3333AC_SUBST(out_host_hook_obj)
9f3d1bc2 3334AC_SUBST(install)
d7b42618 3335AC_SUBST(lang_opt_files)
9f3d1bc2 3336AC_SUBST(lang_specs_files)
3103b7db 3337AC_SUBST(lang_tree_files)
46f18e7b 3338AC_SUBST(local_prefix)
9f3d1bc2
BK
3339AC_SUBST(md_file)
3340AC_SUBST(objc_boehm_gc)
3341AC_SUBST(out_file)
3342AC_SUBST(out_object_file)
46f18e7b 3343AC_SUBST(stage_prefix_set_by_configure)
596151e1 3344AC_SUBST(quoted_stage_prefix_set_by_configure)
9f3d1bc2
BK
3345AC_SUBST(thread_file)
3346AC_SUBST(tm_file_list)
e22340b0 3347AC_SUBST(tm_include_list)
d5355cb2 3348AC_SUBST(tm_defines)
11642c3a 3349AC_SUBST(tm_p_file_list)
e22340b0
ZW
3350AC_SUBST(tm_p_include_list)
3351AC_SUBST(xm_file_list)
3352AC_SUBST(xm_include_list)
3d9d2476 3353AC_SUBST(xm_defines)
aac69a49
NC
3354AC_SUBST(c_target_objs)
3355AC_SUBST(cxx_target_objs)
11642c3a 3356AC_SUBST(target_cpu_default)
46f18e7b 3357
46f18e7b
RK
3358AC_SUBST_FILE(language_hooks)
3359
7903cebc
NN
3360# Echo link setup.
3361if test x${build} = x${host} ; then
3362 if test x${host} = x${target} ; then
3363 echo "Links are now set up to build a native compiler for ${target}." 1>&2
3364 else
3365 echo "Links are now set up to build a cross-compiler" 1>&2
3366 echo " from ${host} to ${target}." 1>&2
3367 fi
46f18e7b 3368else
7903cebc
NN
3369 if test x${host} = x${target} ; then
3370 echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
3371 echo " for ${target}." 1>&2
3372 else
3373 echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
3374 echo " from ${host} to ${target}." 1>&2
3375 fi
46f18e7b
RK
3376fi
3377
6de9cd9a
DN
3378AC_ARG_VAR(GMPLIBS,[How to link GMP])
3379AC_ARG_VAR(GMPINC,[How to find GMP include files])
3380
46f18e7b
RK
3381# Configure the subdirectories
3382# AC_CONFIG_SUBDIRS($subdirs)
3383
3384# Create the Makefile
5891b37d 3385# and configure language subdirectories
914c5af7
NN
3386AC_CONFIG_FILES($all_outputs)
3387
3388AC_CONFIG_COMMANDS([default],
cdcc6a01 3389[
f1faaabd
NN
3390case ${CONFIG_HEADERS} in
3391 *auto-host.h:config.in*)
3392 echo > cstamp-h ;;
cdcc6a01 3393esac
2ed26f6b 3394# Make sure all the subdirs exist.
3b620440 3395for d in $subdirs doc build
2ed26f6b 3396do
2ed26f6b 3397 test -d $d || mkdir $d
2ed26f6b 3398done
93cf819d
BK
3399# If the host supports symlinks, point stage[1234] at ../stage[1234] so
3400# bootstrapping and the installation procedure can still use
3401# CC="stage1/xgcc -Bstage1/". If the host doesn't support symlinks,
3402# FLAGS_TO_PASS has been modified to solve the problem there.
3403# This is virtually a duplicate of what happens in configure.lang; we do
3404# an extra check to make sure this only happens if ln -s can be used.
35f06ae4
PB
3405case "$LN_S" in
3406 *-s*)
3407 for d in ${subdirs} ; do
1e6347d8 3408 STARTDIR=`${PWDCMD-pwd}`
4e8a434e 3409 cd $d
8f231b5d 3410 for t in stage1 stage2 stage3 stage4 stageprofile stagefeedback include
4e8a434e
BK
3411 do
3412 rm -f $t
35f06ae4 3413 $LN_S ../$t $t 2>/dev/null
4e8a434e
BK
3414 done
3415 cd $STARTDIR
35f06ae4
PB
3416 done
3417 ;;
3418esac
0d24f4d1 3419],
35f06ae4 3420[subdirs='$subdirs'])
914c5af7 3421AC_OUTPUT