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