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