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