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