]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/configure.in
configure.in: Set insn=nop for DWARF-2 tests on ARM.
[thirdparty/gcc.git] / gcc / configure.in
CommitLineData
1322177d 1# configure.in for GCC
46f18e7b
RK
2# Process this file with autoconf to generate a configuration script.
3
29f7a208 4# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
46f18e7b 5
1322177d 6#This file is part of GCC.
46f18e7b 7
1322177d
LB
8#GCC is free software; you can redistribute it and/or modify it under
9#the terms of the GNU General Public License as published by the Free
10#Software Foundation; either version 2, or (at your option) any later
11#version.
46f18e7b 12
1322177d
LB
13#GCC is distributed in the hope that it will be useful, but WITHOUT
14#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16#for more details.
46f18e7b
RK
17
18#You should have received a copy of the GNU General Public License
1322177d
LB
19#along with GCC; see the file COPYING. If not, write to the Free
20#Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21#02111-1307, USA.
46f18e7b
RK
22
23# Initialization and defaults
890ad3ea 24AC_PREREQ(2.13)
46f18e7b 25AC_INIT(tree.c)
b7cb92ad 26AC_CONFIG_HEADER(auto-host.h:config.in)
cdcc6a01 27
46f18e7b
RK
28remove=rm
29hard_link=ln
30symbolic_link='ln -s'
31copy=cp
32
75a39864
JL
33# Check for bogus environment variables.
34# Test if LIBRARY_PATH contains the notation for the current directory
35# since this would lead to problems installing/building glibc.
36# LIBRARY_PATH contains the current directory if one of the following
37# is true:
38# - one of the terminals (":" and ";") is the first or last sign
39# - two terminals occur directly after each other
40# - the path contains an element with a dot in it
41AC_MSG_CHECKING(LIBRARY_PATH variable)
42changequote(,)dnl
43case ${LIBRARY_PATH} in
44 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
45 library_path_setting="contains current directory"
46 ;;
47 *)
48 library_path_setting="ok"
49 ;;
50esac
51changequote([,])dnl
52AC_MSG_RESULT($library_path_setting)
53if test "$library_path_setting" != "ok"; then
54AC_MSG_ERROR([
55*** LIBRARY_PATH shouldn't contain the current directory when
079bd08e 56*** building gcc. Please change the environment variable
75a39864
JL
57*** and run configure again.])
58fi
59
60# Test if GCC_EXEC_PREFIX contains the notation for the current directory
61# since this would lead to problems installing/building glibc.
62# GCC_EXEC_PREFIX contains the current directory if one of the following
63# is true:
64# - one of the terminals (":" and ";") is the first or last sign
65# - two terminals occur directly after each other
66# - the path contains an element with a dot in it
67AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
68changequote(,)dnl
69case ${GCC_EXEC_PREFIX} in
70 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
71 gcc_exec_prefix_setting="contains current directory"
72 ;;
73 *)
74 gcc_exec_prefix_setting="ok"
75 ;;
76esac
77changequote([,])dnl
78AC_MSG_RESULT($gcc_exec_prefix_setting)
79if test "$gcc_exec_prefix_setting" != "ok"; then
80AC_MSG_ERROR([
81*** GCC_EXEC_PREFIX shouldn't contain the current directory when
079bd08e 82*** building gcc. Please change the environment variable
75a39864
JL
83*** and run configure again.])
84fi
85
46f18e7b
RK
86# Check for additional parameters
87
88# With GNU ld
89AC_ARG_WITH(gnu-ld,
90[ --with-gnu-ld arrange to work with GNU ld.],
df6faf79
JW
91gnu_ld_flag="$with_gnu_ld",
92gnu_ld_flag=no)
46f18e7b 93
ab339d62
AO
94# With pre-defined ld
95AC_ARG_WITH(ld,
e8bec136 96[ --with-ld arrange to use the specified ld (full pathname)],
3ccc3a56
AO
97DEFAULT_LINKER="$with_ld")
98if test x"${DEFAULT_LINKER+set}" = x"set"; then
99 if test ! -x "$DEFAULT_LINKER"; then
100 AC_MSG_WARN([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
e154a394 101 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
102 gnu_ld_flag=yes
103 fi
119d24d1
KG
104 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
105 [Define to enable the use of a default linker.])
ab339d62
AO
106fi
107
46f18e7b
RK
108# With GNU as
109AC_ARG_WITH(gnu-as,
e8bec136 110[ --with-gnu-as arrange to work with GNU as],
df6faf79
JW
111gas_flag="$with_gnu_as",
112gas_flag=no)
46f18e7b 113
ab339d62 114AC_ARG_WITH(as,
e8bec136 115[ --with-as arrange to use the specified as (full pathname)],
3ccc3a56
AO
116DEFAULT_ASSEMBLER="$with_as")
117if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
118 if test ! -x "$DEFAULT_ASSEMBLER"; then
119 AC_MSG_WARN([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
e154a394 120 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
121 gas_flag=yes
122 fi
119d24d1
KG
123 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
124 [Define to enable the use of a default assembler.])
3ccc3a56 125fi
ab339d62 126
46f18e7b
RK
127# With stabs
128AC_ARG_WITH(stabs,
e8bec136 129[ --with-stabs arrange to use stabs instead of host debug format],
535b86ce 130stabs="$with_stabs",
46f18e7b
RK
131stabs=no)
132
133# With ELF
134AC_ARG_WITH(elf,
e8bec136 135[ --with-elf arrange to use ELF instead of host debug format],
535b86ce 136elf="$with_elf",
46f18e7b
RK
137elf=no)
138
4d8392b7 139# Specify the local prefix
4e88d51b 140local_prefix=
4d8392b7 141AC_ARG_WITH(local-prefix,
e8bec136 142[ --with-local-prefix=DIR specifies directory to put local include],
4e88d51b
JM
143[case "${withval}" in
144yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
145no) ;;
146*) local_prefix=$with_local_prefix ;;
147esac])
4d8392b7
RK
148
149# Default local prefix if it is empty
75bffa71 150if test x$local_prefix = x; then
4d8392b7
RK
151 local_prefix=/usr/local
152fi
153
8f8d3278
NC
154# Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
155# passed in by the toplevel make and thus we'd get different behavior
156# depending on where we built the sources.
157gcc_gxx_include_dir=
9514f0d1
RK
158# Specify the g++ header file directory
159AC_ARG_WITH(gxx-include-dir,
160[ --with-gxx-include-dir=DIR
e8bec136 161 specifies directory to put g++ header files],
4e88d51b
JM
162[case "${withval}" in
163yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
164no) ;;
8f8d3278 165*) gcc_gxx_include_dir=$with_gxx_include_dir ;;
4e88d51b
JM
166esac])
167
8f8d3278 168if test x${gcc_gxx_include_dir} = x; then
4e88d51b 169 if test x${enable_version_specific_runtime_libs} = xyes; then
9137b119 170 gcc_gxx_include_dir='${libsubdir}/include/c++'
4e88d51b 171 else
a270b446 172 topsrcdir=${srcdir}/.. . ${srcdir}/../config.if
de82584d 173changequote(<<, >>)dnl
e2187d3b 174 gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/"${libstdcxx_incdir}
de82584d 175changequote([, ])dnl
4e88d51b
JM
176 fi
177fi
46f18e7b 178
414d23ae
HPN
179# Find the native compiler
180AC_PROG_CC
181AC_PROG_CC_C_O
182# autoconf is lame and doesn't give us any substitution variable for this.
183if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
184 NO_MINUS_C_MINUS_O=yes
185else
186 OUTPUT_OPTION='-o $@'
187fi
188AC_SUBST(NO_MINUS_C_MINUS_O)
189AC_SUBST(OUTPUT_OPTION)
190
191# See if GNAT has been installed
192gcc_AC_PROG_GNAT
193
194AC_CACHE_CHECK(whether ${CC-cc} accepts -Wno-long-long,
195ac_cv_prog_cc_no_long_long,
196[save_CFLAGS="$CFLAGS"
197CFLAGS="-Wno-long-long"
198AC_TRY_COMPILE(,,ac_cv_prog_cc_no_long_long=yes,
199 ac_cv_prog_cc_no_long_long=no)
200CFLAGS="$save_CFLAGS"])
201
202if test x$have_gnat != xno ; then
203AC_CACHE_CHECK(whether ${ADAC} accepts -Wno-long-long,
204ac_cv_prog_adac_no_long_long,
205[cat >conftest.adb <<EOF
206procedure conftest is begin null; end conftest;
207EOF
208if $ADAC -Wno-long-long -c conftest.adb 1>&5 2>&5 ; then
209 ac_cv_prog_adac_no_long_long=yes
210else
211 ac_cv_prog_adac_no_long_long=no
212fi
213rm -f conftest*])
214else
215 ac_cv_prog_adac_no_long_long=yes
216fi
217
218strict1_warn=
219if test $ac_cv_prog_cc_no_long_long = yes && \
220 test $ac_cv_prog_adac_no_long_long = yes ; then
221 strict1_warn="-pedantic -Wno-long-long"
222fi
223AC_SUBST(strict1_warn)
224
225AC_PROG_CPP
226AC_C_INLINE
227gcc_AC_C_VOLATILE
228
229gcc_AC_C_LONG_DOUBLE
230gcc_AC_C_LONG_LONG
231gcc_AC_C__BOOL
232
233# sizeof(char) is 1 by definition.
234gcc_AC_COMPILE_CHECK_SIZEOF(short)
235gcc_AC_COMPILE_CHECK_SIZEOF(int)
236gcc_AC_COMPILE_CHECK_SIZEOF(long)
237if test $ac_cv_c_long_long = yes; then
238 gcc_AC_COMPILE_CHECK_SIZEOF(long long)
239fi
240if test $ac_cv_c___int64 = yes; then
241 gcc_AC_COMPILE_CHECK_SIZEOF(__int64)
242fi
243
244gcc_AC_C_CHARSET
245
246# If the native compiler is GCC, we can enable warnings even in stage1.
247# That's useful for people building cross-compilers, or just running a
248# quick `make'.
249warn_cflags=
250if test "x$GCC" = "xyes"; then
251 warn_cflags='$(GCC_WARN_CFLAGS)'
252fi
253AC_SUBST(warn_cflags)
254
39d6f2e8
MM
255# Determine whether or not multilibs are enabled.
256AC_ARG_ENABLE(multilib,
e8bec136 257[ --enable-multilib enable library support for multiple ABIs],
39d6f2e8
MM
258[], [enable_multilib=yes])
259AC_SUBST(enable_multilib)
260
a494747c
MM
261# Enable expensive internal checks
262AC_ARG_ENABLE(checking,
f4524c9e
ZW
263[ --enable-checking[=LIST]
264 enable expensive run-time checks. With LIST,
265 enable only specific categories of checks.
4c76f856
JJ
266 Categories are: misc,tree,rtl,rtlflag,gc,gcac;
267 default is misc,tree,gc,rtlflag],
119d24d1
KG
268[ac_checking=
269ac_tree_checking=
270ac_rtl_checking=
4c76f856 271ac_rtlflag_checking=
119d24d1
KG
272ac_gc_checking=
273ac_gc_always_collect=
274case "${enableval}" in
4c76f856
JJ
275yes) ac_checking=1 ; ac_tree_checking=1 ; ac_gc_checking=1 ;
276 ac_rtlflag_checking=1 ;;
4e88d51b 277no) ;;
59f406b7 278*) IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
f4524c9e
ZW
279 set fnord $enableval; shift
280 IFS="$ac_save_IFS"
c62e45ad
KG
281 for check
282 do
f4524c9e 283 case $check in
119d24d1
KG
284 misc) ac_checking=1 ;;
285 tree) ac_tree_checking=1 ;;
4c76f856 286 rtlflag) ac_rtlflag_checking=1 ;;
119d24d1
KG
287 rtl) ac_rtl_checking=1 ;;
288 gc) ac_gc_checking=1 ;;
289 gcac) ac_gc_always_collect=1 ;;
414d23ae 290 valgrind) ac_checking_valgrind=1 ;;
f4524c9e
ZW
291 *) AC_MSG_ERROR(unknown check category $check) ;;
292 esac
293 done
294 ;;
119d24d1 295esac
51d0e20c
AJ
296],
297# Enable some checks by default for development versions of GCC
4c76f856 298[ac_checking=1; ac_tree_checking=1; ac_gc_checking=1; ac_rtlflag_checking=1;])
204250d2 299nocommon_flag=""
119d24d1
KG
300if test x$ac_checking != x ; then
301 AC_DEFINE(ENABLE_CHECKING, 1,
302[Define if you want more run-time sanity checks. This one gets a grab
303 bag of miscellaneous but relatively cheap checks.])
204250d2 304 nocommon_flag=-fno-common
119d24d1 305fi
204250d2 306AC_SUBST(nocommon_flag)
119d24d1
KG
307if test x$ac_tree_checking != x ; then
308 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
309[Define if you want all operations on trees (the basic data
310 structure of the front ends) to be checked for dynamic type safety
311 at runtime. This is moderately expensive.])
312fi
313if test x$ac_rtl_checking != x ; then
314 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
315[Define if you want all operations on RTL (the basic data structure
316 of the optimizer and back end) to be checked for dynamic type safety
317 at runtime. This is quite expensive.])
318fi
4c76f856
JJ
319if test x$ac_rtlflag_checking != x ; then
320 AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
321[Define if you want RTL flag accesses to be checked against the RTL
322 codes that are supported for each access macro. This is relatively
323 cheap.])
324fi
119d24d1
KG
325if test x$ac_gc_checking != x ; then
326 AC_DEFINE(ENABLE_GC_CHECKING, 1,
327[Define if you want the garbage collector to do object poisoning and
328 other memory allocation checks. This is quite expensive.])
329fi
330if test x$ac_gc_always_collect != x ; then
331 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
332[Define if you want the garbage collector to operate in maximally
333 paranoid mode, validating the entire heap and collecting garbage at
334 every opportunity. This is extremely expensive.])
335fi
414d23ae
HPN
336valgrind_path_defines=
337valgrind_command=
338if test x$ac_checking_valgrind != x ; then
339 # It is certainly possible that there's valgrind but no valgrind.h.
340 # GCC relies on making annotations so we must have both.
341 AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
342 AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
343 [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
344 if test "x$valgrind_path" = "x" || test $have_valgrind_h = no; then
345 AC_MSG_ERROR([*** Can't find both valgrind and valgrind.h])
346 fi
347 valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
348 valgrind_command="$valgrind_path -q"
349 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
350[Define if you want to run subprograms and generated programs
351 through valgrind (a memory checker). This is extremely expensive.])
352fi
353AC_SUBST(valgrind_path_defines)
354AC_SUBST(valgrind_command)
51d0e20c 355
22aa533e
NS
356# Enable code coverage collection
357AC_ARG_ENABLE(coverage,
358[ --enable-coverage[=LEVEL]
359 enable compiler\'s code coverage collection.
360 Use to measure compiler performance and locate
361 unused parts of the compiler. With LEVEL, specificy
362 optimization. Values are opt, noopt,
363 default is noopt],
364[case "${enableval}" in
365yes|noopt)
366 coverage_flags="-fprofile-arcs -ftest-coverage -O0"
367 ;;
368opt)
369 coverage_flags="-fprofile-arcs -ftest-coverage -O2"
370 ;;
371*)
372 AC_MSG_ERROR(unknown coverage setting $enableval)
373 ;;
374esac],
2043c38e 375[coverage_flags=""])
22aa533e
NS
376AC_SUBST(coverage_flags)
377
3ecc3258
ZW
378AC_ARG_WITH(cpp_install_dir,
379[ --with-cpp-install-dir=DIR
380 install the user visible C preprocessor in DIR
e8bec136 381 (relative to PREFIX) as well as PREFIX/bin],
3ecc3258
ZW
382[if test x$withval = xyes; then
383 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
384elif test x$withval != xno; then
385 cpp_install_dir=$withval
386fi])
387
4bafaa6f
L
388# Enable __cxa_atexit for C++.
389AC_ARG_ENABLE(__cxa_atexit,
390[ --enable-__cxa_atexit enable __cxa_atexit for C++],
391[], [])
392if test x$enable___cxa_atexit = xyes; then
393 AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 1,
394 [Define if you want to use __cxa_atexit, rather than atexit, to
395 register C++ destructors for local statics and global objects.
396 This is essential for fully standards-compliant handling of
397 destructors, but requires __cxa_atexit in libc.])
398fi
399
c5c76735
JL
400# Enable Multibyte Characters for C/C++
401AC_ARG_ENABLE(c-mbchar,
e8bec136 402[ --enable-c-mbchar enable multibyte characters for C and C++],
2618c083 403if test x$enable_c_mbchar != xno; then
9ec7291f
ZW
404 AC_DEFINE(MULTIBYTE_CHARS, 1,
405 [Define if you want the C and C++ compilers to support multibyte
406 character sets for source code.])
c5c76735
JL
407fi)
408
0bbb1697
RK
409# Enable threads
410# Pass with no value to take the default
411# Pass with a value to specify a thread package
412AC_ARG_ENABLE(threads,
e8bec136
RO
413[ --enable-threads enable thread usage for target GCC
414 --enable-threads=LIB use LIB thread package for target GCC],,
0bbb1697
RK
415enable_threads='')
416
e445171e 417enable_threads_flag=$enable_threads
0bbb1697 418# Check if a valid thread package
e445171e 419case x${enable_threads_flag} in
0bbb1697
RK
420 x | xno)
421 # No threads
a851212a 422 target_thread_file='single'
0bbb1697
RK
423 ;;
424 xyes)
425 # default
a851212a 426 target_thread_file=''
0bbb1697
RK
427 ;;
428 xdecosf1 | xirix | xmach | xos2 | xposix | xpthreads | xsingle | \
e08f13ee 429 xsolaris | xwin32 | xdce | xrtems| xvxworks | xaix)
e445171e 430 target_thread_file=$enable_threads_flag
0bbb1697
RK
431 ;;
432 *)
433 echo "$enable_threads is an unknown thread package" 1>&2
434 exit 1
435 ;;
436esac
437
d8bb17c8
OP
438AC_ARG_ENABLE(objc-gc,
439[ --enable-objc-gc enable the use of Boehm's garbage collector with
e8bec136 440 the GNU Objective-C runtime],
2618c083 441if test x$enable_objc_gc = xno; then
d8bb17c8
OP
442 objc_boehm_gc=''
443else
444 objc_boehm_gc=1
445fi,
446objc_boehm_gc='')
447
90e6a802 448AC_ARG_WITH(dwarf2,
e8bec136 449[ --with-dwarf2 force the default debug format to be DWARF 2],
90e6a802
RL
450dwarf2="$with_dwarf2",
451dwarf2=no)
452
50503ac8 453AC_ARG_ENABLE(shared,
e8bec136 454[ --disable-shared don't provide a shared libgcc],
c785e0fa
AO
455[
456 case $enable_shared in
457 yes | no) ;;
458 *)
459 enable_shared=no
460 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
461 for pkg in $enableval; do
462 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
463 enable_shared=yes
464 fi
465 done
466 IFS="$ac_save_ifs"
467 ;;
468 esac
469], [enable_shared=yes])
50503ac8
RH
470AC_SUBST(enable_shared)
471
46f18e7b
RK
472# Determine the host, build, and target systems
473AC_CANONICAL_SYSTEM
474
b21d216c
AF
475# Set program_transform_name
476AC_ARG_PROGRAM
477
5b67ad6f 478# Stage specific cflags for build.
b8dad04b 479stage1_cflags=
5b67ad6f
DA
480case $build in
481vax-*-*)
482 if test x$GCC = xyes
483 then
b8dad04b 484 stage1_cflags="-Wa,-J"
5b67ad6f 485 else
b8dad04b 486 stage1_cflags="-J"
5b67ad6f
DA
487 fi
488 ;;
5dd8a9b1
ZW
489powerpc-*-darwin*)
490 # The spiffy cpp-precomp chokes on some legitimate constructs in GCC
491 # sources; use -no-cpp-precomp to get to GNU cpp.
492 # Apple's GCC has bugs in designated initializer handling, so disable
493 # that too.
494 stage1_cflags="-no-cpp-precomp -DHAVE_DESIGNATED_INITIALIZERS=0"
495 ;;
5b67ad6f 496esac
b8dad04b 497AC_SUBST(stage1_cflags)
61842080 498
e9a25f70
JL
499AC_PROG_MAKE_SET
500
ab339d62 501AC_MSG_CHECKING([whether a default assembler was specified])
3ccc3a56 502if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
e154a394 503 if test x"$gas_flag" = x"no"; then
3ccc3a56 504 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
ab339d62 505 else
3ccc3a56 506 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
ab339d62
AO
507 fi
508else
509 AC_MSG_RESULT(no)
510fi
511
512AC_MSG_CHECKING([whether a default linker was specified])
3ccc3a56 513if test x"${DEFAULT_LINKER+set}" = x"set"; then
e154a394 514 if test x"$gnu_ld_flag" = x"no"; then
3ccc3a56 515 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
ab339d62 516 else
3ccc3a56 517 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
ab339d62
AO
518 fi
519else
520 AC_MSG_RESULT(no)
521fi
522
4070d885
AJ
523AC_MSG_CHECKING(for GNU C library)
524AC_CACHE_VAL(gcc_cv_glibc,
525[AC_TRY_COMPILE(
526 [#include <features.h>],[
527#if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
528#error Not a GNU C library system
529#endif],
530 [gcc_cv_glibc=yes],
531 gcc_cv_glibc=no)])
532AC_MSG_RESULT($gcc_cv_glibc)
c2f7d403 533if test $gcc_cv_glibc = yes; then
4070d885
AJ
534 AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
535fi
4797e955 536
46f18e7b
RK
537# Find some useful tools
538AC_PROG_AWK
99e757d5
KG
539gcc_AC_PROG_LN
540gcc_AC_PROG_LN_S
46f18e7b 541AC_PROG_RANLIB
99e757d5 542gcc_AC_PROG_INSTALL
46f18e7b 543
956d6950
JL
544AC_HEADER_STDC
545AC_HEADER_TIME
827ae6cf 546gcc_AC_HEADER_STDBOOL
99e757d5 547gcc_AC_HEADER_STRING
e9831ca0 548AC_HEADER_SYS_WAIT
03c41c05 549AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h \
7719ffbf 550 fcntl.h unistd.h sys/file.h sys/time.h \
03c41c05 551 sys/resource.h sys/param.h sys/times.h sys/stat.h \
f91abfce 552 direct.h malloc.h langinfo.h)
7636d567 553
f24af81b
TT
554# Check for thread headers.
555AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
556AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
557
84c041a1 558# These tests can't be done till we know if we have limits.h.
75e93faa 559gcc_AC_C_CHAR_BIT
2d6eb5bf
ZW
560gcc_AC_C_COMPILE_ENDIAN
561gcc_AC_C_FLOAT_FORMAT
75e93faa 562
955be633
JM
563# See if we have the mktemp command.
564AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
565
09fa0705
ZW
566# Do we have a single-tree copy of texinfo?
567if test -f $srcdir/../texinfo/Makefile.in; then
568 MAKEINFO='$(objdir)/../texinfo/makeinfo/makeinfo'
569 gcc_cv_prog_makeinfo_modern=yes
570 AC_MSG_RESULT([Using makeinfo from the unified source tree.])
571else
572 # See if makeinfo has been installed and is modern enough
573 # that we can use it.
574 gcc_AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
575 [GNU texinfo.* \([0-9][0-9.]*\)],
8e97db8f 576 [4.[1-9]*])
09fa0705
ZW
577fi
578
579if test $gcc_cv_prog_makeinfo_modern = no; then
580 AC_MSG_WARN([
581*** Makeinfo is missing or too old.
17db6582 582*** Info documentation will not be built.])
09fa0705 583 BUILD_INFO=
09fa0705
ZW
584else
585 BUILD_INFO=info AC_SUBST(BUILD_INFO)
09fa0705
ZW
586fi
587
3f896fc2
JM
588# Is pod2man recent enough to regenerate manpages?
589AC_MSG_CHECKING([for recent Pod::Man])
7be33370 590if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
fd939e46
JM
591 AC_MSG_RESULT(yes)
592 GENERATED_MANPAGES=generated-manpages AC_SUBST(GENERATED_MANPAGES)
593else
594 AC_MSG_RESULT(no)
595 GENERATED_MANPAGES=
596fi
597
1e608388
ZW
598# How about lex?
599dnl Don't use AC_PROG_LEX; we insist on flex.
600dnl LEXLIB is not useful in gcc.
601if test -f $srcdir/../flex/skel.c; then
602 FLEX='$(objdir)/../flex/flex'
603else
604 AC_CHECK_PROG(FLEX, flex, flex, false)
605fi
606
607# Bison?
608# The -L switch is so bison can find its skeleton file.
609if test -f $srcdir/../bison/bison.simple; then
610 BISON='$(objdir)/../bison/bison -L $(srcdir)/../bison/'
611else
612 AC_CHECK_PROG(BISON, bison, bison, false)
613fi
614
4e70264f
ZW
615# These libraries may be used by collect2.
616# We may need a special search path to get them linked.
617AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
618[save_LIBS="$LIBS"
7f2749d4 619for libs in '' -lld -lmld \
4e70264f
ZW
620 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
621 '-L/usr/lib/cmplrs/cc3.11 -lmld'
622do
623 LIBS="$libs"
624 AC_TRY_LINK_FUNC(ldopen,
625 [gcc_cv_collect2_libs="$libs"; break])
626done
627LIBS="$save_LIBS"
628test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
629case $gcc_cv_collect2_libs in
630 "none required") ;;
631 *) COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
632esac
633AC_SUBST(COLLECT2_LIBS)
634
7f2749d4
RK
635# When building Ada code on Alpha, we need exc_resume which is usually in
636# -lexc. So test for it.
637save_LIBS="$LIBS"
638LIBS=
639AC_SEARCH_LIBS(exc_resume, exc)
640GNAT_LIBEXC="$LIBS"
641LIBS="$save_LIBS"
642AC_SUBST(GNAT_LIBEXC)
643
890ad3ea 644# See if the stage1 system preprocessor understands the ANSI C
4bc5fbd4 645# preprocessor stringification operator. (Used by symcat.h.)
890ad3ea 646AC_C_STRINGIZE
76844337 647
7636d567
JW
648# Use <inttypes.h> only if it exists,
649# doesn't clash with <sys/types.h>, and declares intmax_t.
650AC_MSG_CHECKING(for inttypes.h)
651AC_CACHE_VAL(gcc_cv_header_inttypes_h,
652[AC_TRY_COMPILE(
653 [#include <sys/types.h>
654#include <inttypes.h>],
655 [intmax_t i = -1;],
9da0e39b 656 [gcc_cv_header_inttypes_h=yes],
7636d567
JW
657 gcc_cv_header_inttypes_h=no)])
658AC_MSG_RESULT($gcc_cv_header_inttypes_h)
9da0e39b 659if test $gcc_cv_header_inttypes_h = yes; then
119d24d1
KG
660 AC_DEFINE(HAVE_INTTYPES_H, 1,
661 [Define if you have a working <inttypes.h> header file.])
9da0e39b 662fi
cdcc6a01 663
9612ab65
ZW
664dnl Disabled until we have a complete test for buggy enum bitfields.
665dnl gcc_AC_C_ENUM_BF_UNSIGNED
c149cc37 666
6af8c740
KG
667AC_CHECK_FUNCS(times clock dup2 kill getrlimit setrlimit atoll atoq \
668 sysconf strsignal putc_unlocked fputc_unlocked fputs_unlocked \
a15135c9
MM
669 fwrite_unlocked fprintf_unlocked getrusage nl_langinfo lstat \
670 scandir alphasort)
a81fb89e 671
f12bc141 672AC_CHECK_TYPE(ssize_t, int)
56f48ce9 673
e256b8b6
DA
674# Try to determine the array type of the second argument of getgroups
675# for the target system (int or gid_t).
676AC_TYPE_GETGROUPS
677if test "${target}" = "${build}"; then
678 TARGET_GETGROUPS_T=$ac_cv_type_getgroups
679else
680 case "${target}" in
681 # This condition may need some tweaking. It should include all
682 # targets where the array type of the second argument of getgroups
683 # is int and the type of gid_t is not equivalent to int.
684 *-*-sunos* | *-*-ultrix*)
685 TARGET_GETGROUPS_T=int
686 ;;
687 *)
688 TARGET_GETGROUPS_T=gid_t
689 ;;
690 esac
691fi
692AC_SUBST(TARGET_GETGROUPS_T)
693
99e757d5 694gcc_AC_FUNC_PRINTF_PTR
b27d2bd5
MK
695
696case "${host}" in
697*-*-uwin*)
34fa3e7d
MM
698 AC_MSG_ERROR([
699*** UWIN may not be used as a host platform because
700*** linking with posix.dll is not allowed by the GNU GPL])
b27d2bd5 701 ;;
ee262b6f
DR
702*-*-*vms*)
703 # Under VMS, vfork works very different than on Unix. The standard test
704 # won't work, and it isn't easily adaptable. It makes more sense to
705 # just force it.
706 ac_cv_func_vfork_works=yes
707 ;;
b27d2bd5 708esac
c375c43b 709AC_FUNC_VFORK
4acab94b 710AC_FUNC_MMAP_ANYWHERE
56f02b88 711AC_FUNC_MMAP_FILE
f1b54f9b 712
f91abfce
TT
713AM_ICONV
714
86cf1cbd
KG
715# We will need to find libiberty.h and ansidecl.h
716saved_CFLAGS="$CFLAGS"
717CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
8e944909 718gcc_AC_CHECK_DECLS(getenv atol sbrk abort atof getcwd getwd \
3b681e9d 719 strsignal putc_unlocked fputs_unlocked fwrite_unlocked \
a7475ab1 720 fprintf_unlocked strstr errno vasprintf \
c1800ec8 721 malloc realloc calloc free basename getopt clock, , ,[
d02af173 722#include "ansidecl.h"
86cf1cbd 723#include "system.h"])
c5c76735 724
f31e826b 725gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
d02af173 726#include "ansidecl.h"
86cf1cbd 727#include "system.h"
d2cabf16
KG
728#ifdef HAVE_SYS_RESOURCE_H
729#include <sys/resource.h>
730#endif
731])
732
c1800ec8
ZW
733gcc_AC_CHECK_DECLS(times, , ,[
734#include "ansidecl.h"
735#include "system.h"
736#ifdef HAVE_SYS_TIMES_H
737#include <sys/times.h>
738#endif
739])
740
741# More time-related stuff.
742AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
743AC_TRY_COMPILE([
744#include "ansidecl.h"
745#include "system.h"
746#ifdef HAVE_SYS_TIMES_H
747#include <sys/times.h>
748#endif
749], [struct tms tms;], ac_cv_struct_tms=yes, ac_cv_struct_tms=no)])
750if test $ac_cv_struct_tms = yes; then
751 AC_DEFINE(HAVE_STRUCT_TMS, 1,
752 [Define if <sys/times.h> defines struct tms.])
753fi
754
755# use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
756# revisit after autoconf 2.50.
757AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
758AC_TRY_COMPILE([
759#include "ansidecl.h"
760#include "system.h"
761], [clock_t x;], gcc_cv_type_clock_t=yes, gcc_cv_type_clock_t=no)])
762if test $gcc_cv_type_clock_t = yes; then
763 AC_DEFINE(HAVE_CLOCK_T, 1,
764 [Define if <time.h> defines clock_t.])
765fi
766
07cf4226
DM
767AC_ARG_ENABLE(initfini-array,
768 [ --enable-initfini-array use .init_array/.fini_array sections],
769 gcc_cv_initfinit_array=$enableval, [gcc_AC_INITFINI_ARRAY])
770
86cf1cbd
KG
771# Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
772CFLAGS="$saved_CFLAGS"
773
75923b2f 774# mkdir takes a single argument on some systems.
99e757d5 775gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
75923b2f 776
46f18e7b
RK
777# File extensions
778manext='.1'
779objext='.o'
46f18e7b
RK
780AC_SUBST(manext)
781AC_SUBST(objext)
46f18e7b 782
ef69da62 783target_gtfiles=
46f18e7b 784build_xm_file=
61536478 785build_xm_defines=
46f18e7b
RK
786build_install_headers_dir=install-headers-tar
787build_exeext=
788host_xm_file=
61536478 789host_xm_defines=
46f18e7b
RK
790host_xmake_file=
791host_truncate_target=
6e26218f 792host_exeext=
46f18e7b
RK
793
794# Decode the host machine, then the target machine.
795# For the host machine, we save the xm_file variable as host_xm_file;
796# then we decode the target machine and forget everything else
797# that came from the host machine.
798for machine in $build $host $target; do
61ed06c3 799 . ${srcdir}/config.gcc
46f18e7b
RK
800done
801
802extra_objs="${host_extra_objs} ${extra_objs}"
803
804# Default the target-machine variables that were not explicitly set.
75bffa71 805if test x"$tm_file" = x
46f18e7b
RK
806then tm_file=$cpu_type/$cpu_type.h; fi
807
6b2adea9 808if test x"$extra_headers" = x
46f18e7b
RK
809then extra_headers=; fi
810
75bffa71 811if test x$md_file = x
e98e406f 812then md_file=$cpu_type/$cpu_type.md; fi
46f18e7b 813
75bffa71 814if test x$out_file = x
46f18e7b
RK
815then out_file=$cpu_type/$cpu_type.c; fi
816
75bffa71 817if test x"$tmake_file" = x
46f18e7b
RK
818then tmake_file=$cpu_type/t-$cpu_type
819fi
820
90e6a802 821if test x"$dwarf2" = xyes
756ee602 822then tm_file="$tm_file tm-dwarf2.h"
90e6a802
RL
823fi
824
46f18e7b 825# Say what files are being used for the output code and MD file.
11642c3a 826echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
46f18e7b
RK
827echo "Using \`$srcdir/config/$md_file' as machine description file."
828
11642c3a 829# If any of the xm_file variables contain nonexistent files, warn
4dc0535b
ZW
830# about them and drop them.
831
11642c3a
ZW
832bx=
833for x in $build_xm_file; do
834 if test -f $srcdir/config/$x
835 then bx="$bx $x"
11642c3a
ZW
836 else AC_MSG_WARN($srcdir/config/$x does not exist.)
837 fi
838done
839build_xm_file="$bx"
840
841hx=
842for x in $host_xm_file; do
843 if test -f $srcdir/config/$x
844 then hx="$hx $x"
11642c3a
ZW
845 else AC_MSG_WARN($srcdir/config/$x does not exist.)
846 fi
847done
848host_xm_file="$hx"
849
850tx=
851for x in $xm_file; do
852 if test -f $srcdir/config/$x
853 then tx="$tx $x"
11642c3a
ZW
854 else AC_MSG_WARN($srcdir/config/$x does not exist.)
855 fi
856done
857xm_file="$tx"
858
46f18e7b
RK
859count=a
860for f in $tm_file; do
861 count=${count}x
862done
75bffa71 863if test $count = ax; then
46f18e7b
RK
864 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
865else
866 echo "Using the following target machine macro files:"
867 for f in $tm_file; do
868 echo " $srcdir/config/$f"
869 done
870fi
871
872count=a
873for f in $host_xm_file; do
874 count=${count}x
875done
11642c3a
ZW
876if test $count = a; then
877 :
878elif test $count = ax; then
46f18e7b
RK
879 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
880else
881 echo "Using the following host machine macro files:"
882 for f in $host_xm_file; do
883 echo " $srcdir/config/$f"
884 done
885fi
886
75bffa71 887if test "$host_xm_file" != "$build_xm_file"; then
46f18e7b
RK
888 count=a
889 for f in $build_xm_file; do
890 count=${count}x
891 done
11642c3a
ZW
892 if test $count = a; then
893 :
894 elif test $count = ax; then
46f18e7b
RK
895 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
896 else
897 echo "Using the following build machine macro files:"
898 for f in $build_xm_file; do
899 echo " $srcdir/config/$f"
900 done
901 fi
902fi
903
75bffa71
ILT
904if test x$thread_file = x; then
905 if test x$target_thread_file != x; then
a851212a
JW
906 thread_file=$target_thread_file
907 else
908 thread_file='single'
909 fi
46f18e7b 910fi
46f18e7b 911
a5381466 912# Look for a file containing extra machine modes.
1c0ca89d
ZW
913if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
914 extra_modes_file='$(srcdir)'/config/${extra_modes}
a5381466 915 AC_SUBST(extra_modes_file)
1c0ca89d 916 AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "$extra_modes",
a5381466
ZW
917 [Define to the name of a file containing a list of extra machine modes
918 for this architecture.])
919 AC_DEFINE(EXTRA_CC_MODES, 1,
920 [Define if the target architecture needs extra machine modes to represent
921 the results of comparisons.])
922fi
923
b7cb92ad 924# auto-host.h is the file containing items generated by autoconf and is
e9a25f70 925# the first file included by config.h.
b7cb92ad 926# If host=build, it is correct to have hconfig include auto-host.h
db81d74a
RH
927# as well. If host!=build, we are in error and need to do more
928# work to find out the build config parameters.
75bffa71 929if test x$host = x$build
db81d74a 930then
eaf4e618 931 build_auto=auto-host.h
06f0b04c 932 FORBUILD=..
b7cb92ad
JL
933else
934 # We create a subdir, then run autoconf in the subdir.
935 # To prevent recursion we set host and build for the new
936 # invocation of configure to the build for this invocation
937 # of configure.
938 tempdir=build.$$
939 rm -rf $tempdir
940 mkdir $tempdir
941 cd $tempdir
942 case ${srcdir} in
b86ecfa9 943 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
b7cb92ad
JL
944 *) realsrcdir=../${srcdir};;
945 esac
d920e825
L
946 saved_CFLAGS="${CFLAGS}"
947 CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
948 ${realsrcdir}/configure \
534d0cc0 949 --target=$target_alias --host=$build_alias --build=$build_alias
d920e825 950 CFLAGS="${saved_CFLAGS}"
b7cb92ad
JL
951
952 # We just finished tests for the build machine, so rename
953 # the file auto-build.h in the gcc directory.
954 mv auto-host.h ../auto-build.h
955 cd ..
956 rm -rf $tempdir
eaf4e618 957 build_auto=auto-build.h
771a2a66 958 FORBUILD=../$build_alias
db81d74a 959fi
06f0b04c 960AC_SUBST(FORBUILD)
db81d74a 961
eaf4e618 962tm_file="${tm_file} defaults.h"
d02af173
ZW
963host_xm_file="auto-host.h ansidecl.h ${host_xm_file} ${tm_file}"
964build_xm_file="${build_auto} ansidecl.h ${build_xm_file} ${tm_file}"
965xm_file="ansidecl.h ${xm_file} ${tm_file}"
0056a9b5 966
46f18e7b 967# Truncate the target if necessary
75bffa71 968if test x$host_truncate_target != x; then
46f18e7b
RK
969 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
970fi
971
f1943b77 972# Get the version trigger filename from the toplevel
75bffa71 973if test "${with_gcc_version_trigger+set}" = set; then
f1943b77
MH
974 gcc_version_trigger=$with_gcc_version_trigger
975else
976 gcc_version_trigger=${srcdir}/version.c
977fi
75bffa71 978changequote(,)dnl
022dae81 979gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*"\([^"]*\)".*/\1/'`
8763704d 980gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
cc1e60ea
JM
981
982# Compile in configure arguments.
8105825d 983if test -f configargs.h ; then
cc1e60ea 984 # Being re-configured.
022dae81 985 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
cc1e60ea
JM
986 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
987else
988 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
989fi
990cat > configargs.h <<EOF
991/* Generated automatically. */
992static const char configuration_arguments[] = "$gcc_config_arguments";
a6687d2b 993static const char thread_model[] = "$thread_file";
cc1e60ea 994EOF
75bffa71 995changequote([,])dnl
46f18e7b 996
ab87f8c8
JL
997# Internationalization
998PACKAGE=gcc
999VERSION="$gcc_version"
ab87f8c8
JL
1000AC_SUBST(PACKAGE)
1001AC_SUBST(VERSION)
1002
dc6746e7 1003# Enable NLS support by default
ab87f8c8 1004AC_ARG_ENABLE(nls,
dc6746e7
PT
1005 [ --enable-nls use Native Language Support (default)],
1006 , enable_nls=yes)
1007
1008# if cross compiling, disable NLS support.
1009# It's not worth the trouble, at least for now.
1010
063a4b85 1011if test "${build}" != "${host}" && test "x$enable_nls" = "xyes"; then
dc6746e7
PT
1012 AC_MSG_WARN(Disabling NLS support for canadian cross compiler.)
1013 enable_nls=no
1014fi
ab87f8c8
JL
1015
1016AM_GNU_GETTEXT
ab87f8c8 1017
f4ab28e3
MK
1018# Windows32 Registry support for specifying GCC installation paths.
1019AC_ARG_ENABLE(win32-registry,
1020[ --disable-win32-registry
e8bec136
RO
1021 disable lookup of installation paths in the
1022 Registry on Windows hosts
1023 --enable-win32-registry enable registry lookup (default)
f4ab28e3 1024 --enable-win32-registry=KEY
e8bec136
RO
1025 use KEY instead of GCC version as the last portion
1026 of the registry key],,)
4e70264f
ZW
1027case $host_os in
1028 win32 | pe | cygwin* | mingw32* | uwin*)
f4ab28e3 1029AC_MSG_CHECKING(whether windows registry support is requested)
9dd53f2c 1030if test "x$enable_win32_registry" != xno; then
119d24d1
KG
1031 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
1032[Define to 1 if installation paths should be looked up in Windows32
91029a29 1033 Registry. Ignored on non windows32 hosts.])
f4ab28e3 1034 AC_MSG_RESULT(yes)
4e70264f 1035 AC_SEARCH_LIBS(RegOpenKeyExA, advapi32)
f4ab28e3
MK
1036else
1037 AC_MSG_RESULT(no)
1038fi
1039
1040# Check if user specified a different registry key.
9dd53f2c 1041case "x${enable_win32_registry}" in
f4ab28e3
MK
1042x | xyes)
1043 # default.
1044 gcc_cv_win32_registry_key="$VERSION"
1045 ;;
1046xno)
1047 # no registry lookup.
1048 gcc_cv_win32_registry_key=''
1049 ;;
1050*)
1051 # user-specified key.
1052 gcc_cv_win32_registry_key="$enable_win32_registry"
1053 ;;
1054esac
1055
9dd53f2c 1056if test "x$enable_win32_registry" != xno; then
f4ab28e3 1057 AC_MSG_CHECKING(registry key on windows hosts)
119d24d1
KG
1058 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key",
1059 [Define to be the last portion of registry key on windows hosts.])
f4ab28e3
MK
1060 AC_MSG_RESULT($gcc_cv_win32_registry_key)
1061fi
4e70264f
ZW
1062;;
1063esac
f4ab28e3 1064
7fa10b25 1065# Get an absolute path to the GCC top-level source directory
1e6347d8 1066holddir=`${PWDCMD-pwd}`
7fa10b25 1067cd $srcdir
1e6347d8 1068topdir=`${PWDCMD-pwd}`
7fa10b25
RK
1069cd $holddir
1070
af5e4ada 1071# Conditionalize the makefile for this host machine.
94f42018
DE
1072# Make-host contains the concatenation of all host makefile fragments
1073# [there can be more than one]. This file is built by configure.frag.
1074host_overrides=Make-host
af5e4ada 1075dep_host_xmake_file=
94f42018
DE
1076for f in .. ${host_xmake_file}
1077do
75bffa71 1078 if test -f ${srcdir}/config/$f
94f42018
DE
1079 then
1080 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
1081 fi
1082done
46f18e7b 1083
af5e4ada 1084# Conditionalize the makefile for this target machine.
94f42018
DE
1085# Make-target contains the concatenation of all host makefile fragments
1086# [there can be more than one]. This file is built by configure.frag.
1087target_overrides=Make-target
af5e4ada 1088dep_tmake_file=
94f42018
DE
1089for f in .. ${tmake_file}
1090do
75bffa71 1091 if test -f ${srcdir}/config/$f
94f42018
DE
1092 then
1093 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
1094 fi
1095done
5891b37d 1096
af5e4ada
DE
1097# If the host doesn't support symlinks, modify CC in
1098# FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
1099# Otherwise, we can use "CC=$(CC)".
1100rm -f symtest.tem
61536478 1101if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
af5e4ada
DE
1102then
1103 cc_set_by_configure="\$(CC)"
5aa82ace 1104 quoted_cc_set_by_configure="\$(CC)"
af5e4ada 1105 stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
596151e1 1106 quoted_stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
af5e4ada 1107else
61536478
JL
1108 rm -f symtest.tem
1109 if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
1110 then
1111 symbolic_link="cp -p"
1112 else
1113 symbolic_link="cp"
1114 fi
af5e4ada 1115 cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
5aa82ace 1116 quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
af5e4ada 1117 stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
596151e1 1118 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
1119fi
1120rm -f symtest.tem
5891b37d 1121
af5e4ada 1122out_object_file=`basename $out_file .c`.o
5891b37d 1123
af5e4ada
DE
1124tm_file_list=
1125for f in $tm_file; do
64ccbc99 1126 case $f in
d02af173
ZW
1127 ansidecl.h )
1128 tm_file_list="${tm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1129 defaults.h )
e2500fed 1130 tm_file_list="${tm_file_list} \$(srcdir)/$f" ;;
64ccbc99
KG
1131 *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
1132 esac
af5e4ada 1133done
46f18e7b 1134
11642c3a
ZW
1135tm_p_file_list=
1136for f in $tm_p_file; do
1137 tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
1138done
1139
af5e4ada
DE
1140host_xm_file_list=
1141for f in $host_xm_file; do
64ccbc99 1142 case $f in
d02af173
ZW
1143 ansidecl.h )
1144 host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
e2500fed 1145 auto-host.h )
64ccbc99 1146 host_xm_file_list="${host_xm_file_list} $f" ;;
e2500fed
GK
1147 defaults.h )
1148 host_xm_file_list="${host_xm_file_list} \$(srcdir)/$f" ;;
64ccbc99
KG
1149 *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
1150 esac
af5e4ada
DE
1151done
1152
1153build_xm_file_list=
1154for f in $build_xm_file; do
64ccbc99 1155 case $f in
d02af173
ZW
1156 ansidecl.h )
1157 build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
e2500fed 1158 auto-build.h | auto-host.h )
64ccbc99 1159 build_xm_file_list="${build_xm_file_list} $f" ;;
e2500fed
GK
1160 defaults.h )
1161 host_xm_file_list="${host_xm_file_list} \$(srcdir)/$f" ;;
64ccbc99
KG
1162 *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
1163 esac
af5e4ada 1164done
46f18e7b 1165
a078a589
ZW
1166# Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
1167# Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
1168CROSS= AC_SUBST(CROSS)
1169ALL=all.internal AC_SUBST(ALL)
1170SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
75bffa71 1171if test x$host != x$target
af5e4ada 1172then
a078a589
ZW
1173 CROSS="-DCROSS_COMPILE"
1174 ALL=all.cross
1175 SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
343f59d9
AM
1176 case "$host","$target" in
1177 i?86-*-*,x86_64-*-* \
1178 | powerpc*-*-*,powerpc64*-*-*)
1179 CROSS="$CROSS -DNATIVE_CROSS" ;;
1180 esac
af5e4ada 1181fi
46f18e7b 1182
b39d221a
EC
1183# If this is a cross-compiler that does not
1184# have its own set of headers then define
1185# inhibit_libc
1186
fecd6201
ZW
1187# If this is using newlib, then define inhibit_libc in LIBGCC2_CFLAGS.
1188# This prevents libgcc2 from containing any code which requires libc
1189# support.
b39d221a
EC
1190inhibit_libc=
1191if [test x$host != x$target] && [test x$with_headers = x]; then
1192 inhibit_libc=-Dinhibit_libc
1193else
1194 if [test x$with_newlib = xyes]; then
1195 inhibit_libc=-Dinhibit_libc
1196 fi
1197fi
1198AC_SUBST(inhibit_libc)
1199
a078a589
ZW
1200# When building gcc with a cross-compiler, we need to adjust things so
1201# that the generator programs are still built with the native compiler.
1202# Also, we cannot run fixincludes or fix-header.
1203# Note that the terminology here is wrong; it should be BUILD_* throughout.
1204# FIXME.
1205
1206# These are the normal (build=host) settings:
5c35940c
NN
1207BUILD_PREFIX= AC_SUBST(BUILD_PREFIX)
1208BUILD_PREFIX_1=ignore- AC_SUBST(BUILD_PREFIX_1)
a078a589
ZW
1209HOST_CC='$(CC)' AC_SUBST(HOST_CC)
1210HOST_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(HOST_CFLAGS)
1211
1212STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
1213STMP_FIXPROTO=stmp-fixproto AC_SUBST(STMP_FIXPROTO)
1214
1215# And these apply if build != host.
75bffa71 1216if test x$build != x$host
af5e4ada 1217then
5c35940c
NN
1218 BUILD_PREFIX=build-
1219 BUILD_PREFIX_1=build-
a078a589
ZW
1220 HOST_CC='$(CC_FOR_BUILD)'
1221 HOST_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)'
1222
1223 STMP_FIXINC=
1224 STMP_FIXPROTO=
af5e4ada 1225fi
46f18e7b 1226
ae3a15bb
DE
1227# Expand extra_headers to include complete path.
1228# This substitutes for lots of t-* files.
1229extra_headers_list=
75bffa71 1230if test "x$extra_headers" = x
ae3a15bb
DE
1231then true
1232else
29f7a208 1233 # Prepend ${srcdir}/config/${cpu_type}/ to every entry in extra_headers.
ae3a15bb
DE
1234 for file in $extra_headers;
1235 do
29f7a208 1236 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
ae3a15bb
DE
1237 done
1238fi
1239
75bffa71 1240if test x$use_collect2 = xno; then
2ce3c6c6
JM
1241 use_collect2=
1242fi
1243
af5e4ada 1244# Add a definition of USE_COLLECT2 if system wants one.
2cc07db4 1245if test x$use_collect2 != x
af5e4ada 1246then
2cc07db4
RH
1247 host_xm_defines="${host_xm_defines} USE_COLLECT2"
1248 xm_defines="${xm_defines} USE_COLLECT2"
af5e4ada
DE
1249fi
1250
af5e4ada 1251# If we have gas in the build tree, make a link to it.
75bffa71 1252if test -f ../gas/Makefile; then
6e26218f 1253 rm -f as; $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
af5e4ada
DE
1254fi
1255
3cae5780 1256# If we have nm and objdump in the build tree, make a link to them.
75bffa71 1257if test -f ../binutils/Makefile; then
4b95eb49 1258 rm -f nm; $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
3cae5780 1259 rm -f objdump; $symbolic_link ../binutils/objdump$host_exeext objdump$host_exeext 2>/dev/null
4b95eb49
JL
1260fi
1261
af5e4ada 1262# If we have ld in the build tree, make a link to it.
75bffa71 1263if test -f ../ld/Makefile; then
2cc07db4 1264 rm -f collect-ld; $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext 2>/dev/null
af5e4ada
DE
1265fi
1266
981d4858
JM
1267# Figure out what assembler we will be using.
1268AC_MSG_CHECKING(what assembler to use)
9e423e6d 1269gcc_cv_as=
981d4858
JM
1270gcc_cv_gas_major_version=
1271gcc_cv_gas_minor_version=
a2f319ea 1272gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
0936a455 1273gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
3ccc3a56
AO
1274if test -x "$DEFAULT_ASSEMBLER"; then
1275 gcc_cv_as="$DEFAULT_ASSEMBLER"
1276elif test -x "$AS"; then
1277 gcc_cv_as="$AS"
ab339d62 1278elif test -x as$host_exeext; then
9e423e6d
JW
1279 # Build using assembler in the current directory.
1280 gcc_cv_as=./as$host_exeext
5585c1bc 1281elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
9e423e6d 1282 # Single tree build which includes gas.
0936a455 1283 for f in $gcc_cv_as_bfd_srcdir/configure $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
9e423e6d 1284 do
75bffa71
ILT
1285changequote(,)dnl
1286 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
1287changequote([,])dnl
1288 if test x$gcc_cv_gas_version != x; then
9e423e6d
JW
1289 break
1290 fi
1291 done
75bffa71
ILT
1292changequote(,)dnl
1293 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
1294 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
c72931a6 1295 gcc_cv_gas_patch_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.[0-9]*\.\([0-9]*\)"`
75bffa71 1296changequote([,])dnl
981d4858
JM
1297fi
1298
534d0cc0 1299if test "x$gcc_cv_as" = x; then
779243f7
JL
1300 # Search the same directories that the installed compiler will
1301 # search. Else we may find the wrong assembler and lose. If we
1302 # do not find a suitable assembler binary, then try the user's
1303 # path.
1304 #
1305 # Also note we have to check MD_EXEC_PREFIX before checking the
1306 # user's path. Unfortunately, there is no good way to get at the
1307 # value of MD_EXEC_PREFIX here. So we do a brute force search
1308 # through all the known MD_EXEC_PREFIX values. Ugh. This needs
1309 # to be fixed as part of the make/configure rewrite too.
1310
1311 if test "x$exec_prefix" = xNONE; then
1312 if test "x$prefix" = xNONE; then
1313 test_prefix=/usr/local
1314 else
1315 test_prefix=$prefix
1316 fi
1317 else
1318 test_prefix=$exec_prefix
1319 fi
1320
1321 # If the loop below does not find an assembler, then use whatever
1322 # one we can find in the users's path.
1323 # user's path.
55a2ea2a
AM
1324 if test "x$program_prefix" != xNONE; then
1325 gcc_cv_as=${program_prefix}as$host_exeext
1326 else
1327 gcc_cv_as=`echo as | sed ${program_transform_name}`$host_exeext
1328 fi
1329
1330 test_dirs="$test_prefix/lib/gcc-lib/$target_alias/$gcc_version \
1331 $test_prefix/lib/gcc-lib/$target_alias \
1332 /usr/lib/gcc/$target_alias/$gcc_version \
1333 /usr/lib/gcc/$target_alias \
1334 $test_prefix/$target_alias/bin/$target_alias/$gcc_version \
1335 $test_prefix/$target_alias/bin"
1336
1337 if test x$host = x$target; then
1338 test_dirs="$test_dirs \
779243f7
JL
1339 /usr/libexec \
1340 /usr/ccs/gcc \
1341 /usr/ccs/bin \
1342 /udk/usr/ccs/bin \
1343 /bsd43/usr/lib/cmplrs/cc \
1344 /usr/cross64/usr/bin \
1345 /usr/lib/cmplrs/cc \
1346 /sysv/usr/lib/cmplrs/cc \
1347 /svr4/usr/lib/cmplrs/cc \
1348 /usr/bin"
55a2ea2a 1349 fi
779243f7
JL
1350
1351 for dir in $test_dirs; do
55a2ea2a 1352 if test -x $dir/as$host_exeext; then
779243f7
JL
1353 gcc_cv_as=$dir/as$host_exeext
1354 break;
1355 fi
1356 done
9e423e6d 1357fi
981d4858
JM
1358if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1359 AC_MSG_RESULT("newly built gas")
1360else
1361 AC_MSG_RESULT($gcc_cv_as)
1362fi
1363
275b60d6
JJ
1364# Figure out what linker we will be using.
1365AC_MSG_CHECKING(what linker to use)
1366gcc_cv_ld=
1367gcc_cv_gld_major_version=
1368gcc_cv_gld_minor_version=
1369gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
1370gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
1371if test -x "$DEFAULT_LINKER"; then
1372 gcc_cv_ld="$DEFAULT_LINKER"
1373elif test -x "$LD"; then
1374 gcc_cv_ld="$LD"
1375elif test -x ld$host_exeext; then
1376 # Build using linker in the current directory.
1377 gcc_cv_ld=./ld$host_exeext
1378elif test -f $gcc_cv_ld_gld_srcdir/configure.in -a -f ../ld/Makefile; then
1379 # Single tree build which includes ld.
1380 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
1381 do
1382changequote(,)dnl
1383 gcc_cv_gld_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
1384changequote([,])dnl
1385 if test x$gcc_cv_gld_version != x; then
1386 break
1387 fi
1388 done
1389changequote(,)dnl
1390 gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
1391 gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1392changequote([,])dnl
1393fi
1394
534d0cc0 1395if test "x$gcc_cv_ld" = x; then
275b60d6
JJ
1396 # Search the same directories that the installed compiler will
1397 # search. Else we may find the wrong linker and lose. If we
1398 # do not find a suitable linker binary, then try the user's
1399 # path.
1400 #
1401 # Also note we have to check MD_EXEC_PREFIX before checking the
1402 # user's path. Unfortunately, there is no good way to get at the
1403 # value of MD_EXEC_PREFIX here. So we do a brute force search
1404 # through all the known MD_EXEC_PREFIX values. Ugh. This needs
1405 # to be fixed as part of the make/configure rewrite too.
1406
1407 if test "x$exec_prefix" = xNONE; then
1408 if test "x$prefix" = xNONE; then
1409 test_prefix=/usr/local
1410 else
1411 test_prefix=$prefix
1412 fi
1413 else
1414 test_prefix=$exec_prefix
1415 fi
1416
1417 # If the loop below does not find an linker, then use whatever
1418 # one we can find in the users's path.
1419 # user's path.
55a2ea2a
AM
1420 if test "x$program_prefix" != xNONE; then
1421 gcc_cv_ld=${program_prefix}ld$host_exeext
1422 else
1423 gcc_cv_ld=`echo ld | sed ${program_transform_name}`$host_exeext
1424 fi
1425
1426 test_dirs="$test_prefix/lib/gcc-lib/$target_alias/$gcc_version \
1427 $test_prefix/lib/gcc-lib/$target_alias \
1428 /usr/lib/gcc/$target_alias/$gcc_version \
1429 /usr/lib/gcc/$target_alias \
1430 $test_prefix/$target_alias/bin/$target_alias/$gcc_version \
1431 $test_prefix/$target_alias/bin"
1432
1433 if test x$host = x$target; then
1434 test_dirs="$test_dirs \
275b60d6
JJ
1435 /usr/libexec \
1436 /usr/ccs/gcc \
1437 /usr/ccs/bin \
1438 /udk/usr/ccs/bin \
1439 /bsd43/usr/lib/cmplrs/cc \
1440 /usr/cross64/usr/bin \
1441 /usr/lib/cmplrs/cc \
1442 /sysv/usr/lib/cmplrs/cc \
1443 /svr4/usr/lib/cmplrs/cc \
1444 /usr/bin"
55a2ea2a 1445 fi
275b60d6
JJ
1446
1447 for dir in $test_dirs; do
55a2ea2a 1448 if test -x $dir/ld$host_exeext; then
275b60d6
JJ
1449 gcc_cv_ld=$dir/ld$host_exeext
1450 break;
1451 fi
1452 done
1453fi
1454if test x$gcc_cv_gld_major_version != x -a x$gcc_cv_gld_minor_version != x; then
1455 AC_MSG_RESULT("newly built ld")
1456else
1457 AC_MSG_RESULT($gcc_cv_ld)
1458fi
1459
981d4858
JM
1460# Figure out what nm we will be using.
1461AC_MSG_CHECKING(what nm to use)
1462if test -x nm$host_exeext; then
1463 gcc_cv_nm=./nm$host_exeext
534d0cc0
AM
1464elif test "x$program_prefix" != xNONE; then
1465 gcc_cv_nm=${program_prefix}nm$host_exeext
1466else
1467 gcc_cv_nm=`echo nm | sed ${program_transform_name}`$host_exeext
981d4858
JM
1468fi
1469AC_MSG_RESULT($gcc_cv_nm)
1470
3cae5780
AS
1471# Figure out what objdump we will be using.
1472AC_MSG_CHECKING(what objdump to use)
1473if test -x objdump$host_exeext; then
1474 gcc_cv_objdump=./objdump$host_exeext
534d0cc0
AM
1475elif test "x$program_prefix" != xNONE; then
1476 gcc_cv_objdump=${program_prefix}objdump$host_exeext
1477else
1478 gcc_cv_objdump=`echo objdump | sed ${program_transform_name}`$host_exeext
3cae5780
AS
1479fi
1480AC_MSG_RESULT($gcc_cv_objdump)
1481
981d4858
JM
1482# Figure out what assembler alignment features are present.
1483AC_MSG_CHECKING(assembler alignment features)
9d147085 1484gcc_cv_as_alignment_features=none
981d4858
JM
1485if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1486 # Gas version 2.6 and later support for .balign and .p2align.
1487 # bytes to skip when using .p2align.
1488 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 6 -o "$gcc_cv_gas_major_version" -gt 2; then
1489 gcc_cv_as_alignment_features=".balign and .p2align"
1490 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1491 fi
1492 # Gas version 2.8 and later support specifying the maximum
1493 # bytes to skip when using .p2align.
1494 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 8 -o "$gcc_cv_gas_major_version" -gt 2; then
1495 gcc_cv_as_alignment_features=".p2align including maximum skip"
1496 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1497 fi
1498elif test x$gcc_cv_as != x; then
00ccc16d
JL
1499 # Check if we have .balign and .p2align
1500 echo ".balign 4" > conftest.s
1501 echo ".p2align 2" >> conftest.s
1502 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1503 gcc_cv_as_alignment_features=".balign and .p2align"
1504 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1505 fi
1506 rm -f conftest.s conftest.o
9e423e6d
JW
1507 # Check if specifying the maximum bytes to skip when
1508 # using .p2align is supported.
1509 echo ".p2align 4,,7" > conftest.s
1510 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1511 gcc_cv_as_alignment_features=".p2align including maximum skip"
1512 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1513 fi
1514 rm -f conftest.s conftest.o
1515fi
1516AC_MSG_RESULT($gcc_cv_as_alignment_features)
1517
d1accaa3 1518AC_MSG_CHECKING(assembler subsection support)
9d147085 1519gcc_cv_as_subsections=no
981d4858
JM
1520if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1521 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1522 gcc_cv_as_subsections="working .subsection -1"
1523 fi
1524elif test x$gcc_cv_as != x; then
d1accaa3
JJ
1525 # Check if we have .subsection
1526 echo ".subsection 1" > conftest.s
1527 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1528 gcc_cv_as_subsections=".subsection"
d1accaa3
JJ
1529 if test x$gcc_cv_nm != x; then
1530 cat > conftest.s <<EOF
1531conftest_label1: .word 0
1532.subsection -1
1533conftest_label2: .word 0
1534.previous
1535EOF
1536 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1537 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
1538 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1b015bec
AO
1539 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
1540 :
1541 else
d1accaa3 1542 gcc_cv_as_subsections="working .subsection -1"
d1accaa3
JJ
1543 fi
1544 fi
1545 fi
1546 fi
1547 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1548fi
981d4858
JM
1549if test x"$gcc_cv_as_subsections" = x"working .subsection -1"; then
1550 AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
1551[Define if your assembler supports .subsection and .subsection -1 starts
1552 emitting at the beginning of your section.])
1553fi
d1accaa3
JJ
1554AC_MSG_RESULT($gcc_cv_as_subsections)
1555
12822146 1556AC_MSG_CHECKING(assembler weak support)
9d147085 1557gcc_cv_as_weak=no
981d4858
JM
1558if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1559 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 2 -o "$gcc_cv_gas_major_version" -gt 2; then
1560 gcc_cv_as_weak="yes"
1561 fi
1562elif test x$gcc_cv_as != x; then
12822146
JL
1563 # Check if we have .weak
1564 echo " .weak foobar" > conftest.s
1565 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
12822146
JL
1566 gcc_cv_as_weak="yes"
1567 fi
1568 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1569fi
981d4858
JM
1570if test x"$gcc_cv_as_weak" = xyes; then
1571 AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])
1572fi
12822146
JL
1573AC_MSG_RESULT($gcc_cv_as_weak)
1574
6a9c5260 1575AC_MSG_CHECKING(assembler hidden support)
9d147085 1576gcc_cv_as_hidden=no
981d4858 1577if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
c72931a6
RH
1578 if test "$gcc_cv_gas_major_version" -eq 2 \
1579 -a "$gcc_cv_gas_minor_version" -eq 12 \
1580 -a "$gcc_cv_gas_patch_version" -ge 1 \
1581 -o "$gcc_cv_gas_major_version" -eq 2 \
1582 -a "$gcc_cv_gas_minor_version" -gt 12 \
1583 -o "$gcc_cv_gas_major_version" -gt 2 \
1584 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
981d4858
JM
1585 gcc_cv_as_hidden="yes"
1586 fi
1587elif test x$gcc_cv_as != x; then
6a9c5260
UD
1588 # Check if we have .hidden
1589 echo " .hidden foobar" > conftest.s
1590 echo "foobar:" >> conftest.s
1591 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6a9c5260
UD
1592 gcc_cv_as_hidden="yes"
1593 fi
1594 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
c72931a6
RH
1595
1596 # GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
1597 # This is irritatingly difficult to feature test for. Look for
1598 # the date string after the version number.
1599 ld_ver=`$gcc_cv_ld --version 2>/dev/null | head -1`
1600 if echo "$ld_ver" | grep GNU > /dev/null; then
1601changequote(,)dnl
4832c9e1
JJ
1602 ld_vers=`echo $ld_ver | sed -n 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\(\|\.[0-9][0-9]*\)\)\([ ].*\|\)$,\1,p'`
1603 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'`
c72931a6 1604 if test 0"$ld_date" -lt 20020404; then
4832c9e1
JJ
1605 if test -n "$ld_date"; then
1606 # If there was date string, but was earlier than 2002-04-04, fail
1607 gcc_cv_as_hidden="no"
1608 elif test -z "$ld_vers"; then
1609 # If there was no date string nor ld version number, something is wrong
1610 gcc_cv_as_hidden="no"
1611 else
1612 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
1613 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
1614 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
1615 test -z "$ld_vers_patch" && ld_vers_patch=0
1616 if test "$ld_vers_major" -lt 2; then
1617 gcc_cv_as_hidden="no"
1618 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
1619 gcc_cv_as_hidden="no"
1620 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 \
1621 -a "$ld_vers_patch" -eq 0; then
1622 gcc_cv_as_hidden="no"
1623 fi
1624 fi
c72931a6 1625 fi
4832c9e1 1626changequote([,])dnl
c72931a6 1627 fi
6a9c5260 1628fi
981d4858
JM
1629if test x"$gcc_cv_as_hidden" = xyes; then
1630 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
1631 [Define if your assembler supports .hidden.])
1632fi
6a9c5260 1633AC_MSG_RESULT($gcc_cv_as_hidden)
9e944a16 1634libgcc_visibility=$gcc_cv_as_hidden
789b7de5
RO
1635case "$target" in
1636 mips-sgi-irix6*o32)
1637 if test x"$gnu_ld_flag" = x"no"; then
1638 # Even if using gas with .hidden support, the resulting object files
1639 # cannot be linked with the IRIX 6 O32 linker.
1640 libgcc_visibility=no
1641 fi
1642 ;;
1643esac
9e944a16 1644AC_SUBST(libgcc_visibility)
6a9c5260 1645
b7460f24 1646AC_MSG_CHECKING(assembler leb128 support)
fbe42b1b 1647gcc_cv_as_leb128=no
b7460f24 1648if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
fbe42b1b 1649 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 11 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
b7460f24
RH
1650 gcc_cv_as_leb128="yes"
1651 fi
1652elif test x$gcc_cv_as != x; then
1653 # Check if we have .[us]leb128, and support symbol arithmetic with it.
1654 cat > conftest.s <<EOF
1655 .data
1656 .uleb128 L2 - L1
1657L1:
1658 .uleb128 1280
1659 .sleb128 -1010
1660L2:
1661EOF
1662 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
78e766a0
RH
1663 gcc_cv_as_leb128="yes"
1664
1665 # GAS versions before 2.11 do not support uleb128,
1666 # despite appearing to.
1667 # ??? There exists an elf-specific test that will crash
1668 # the assembler. Perhaps it's better to figure out whether
1669 # arbitrary sections are supported and try the test.
1670 as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
1671 if echo "$as_ver" | grep GNU > /dev/null; then
78e766a0 1672changequote(,)dnl
5fed851d 1673 as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
0461a052 1674 as_major=`echo $as_ver | sed 's/\..*//'`
3d399d67 1675 as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
78e766a0
RH
1676changequote([,])dnl
1677 if test $as_major -eq 2 -a $as_minor -lt 11; then
1678 gcc_cv_as_leb128="no"
1679 fi
fbe42b1b 1680 fi
b7460f24
RH
1681 fi
1682 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1683fi
1684if test x"$gcc_cv_as_leb128" = xyes; then
1685 AC_DEFINE(HAVE_AS_LEB128, 1,
1686 [Define if your assembler supports .uleb128.])
1687fi
1688AC_MSG_RESULT($gcc_cv_as_leb128)
1689
c64688ae
RH
1690AC_MSG_CHECKING(assembler eh_frame optimization)
1691gcc_cv_as_eh_frame=no
1692if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1693 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1694 gcc_cv_as_eh_frame="yes"
1695 fi
1696elif test x$gcc_cv_as != x; then
1697 # Check if this is GAS.
41948db5
SS
1698 as_ver=`$gcc_cv_as --version < /dev/null 2> /dev/null | head -1`
1699 rm -f a.out 2> /dev/null
c64688ae
RH
1700 if echo "$as_ver" | grep GNU > /dev/null; then
1701 # Versions up to and including 2.11.0 may mis-optimize
1702 # .eh_frame data. Try something.
1703 cat > conftest.s <<EOF
1704 .text
1705.LFB1:
1706 .4byte 0
1707.L1:
1708 .4byte 0
1709.LFE1:
1710 .section .eh_frame,"aw",@progbits
1711__FRAME_BEGIN__:
1712 .4byte .LECIE1-.LSCIE1
1713.LSCIE1:
1714 .4byte 0x0
1715 .byte 0x1
1716 .ascii "z\0"
1717 .byte 0x1
1718 .byte 0x78
1719 .byte 0x1a
1720 .byte 0x0
1721 .byte 0x4
1722 .4byte 1
1723 .p2align 1
1724.LECIE1:
1725.LSFDE1:
1726 .4byte .LEFDE1-.LASFDE1
1727.LASFDE1:
1728 .4byte .LASFDE1-__FRAME_BEGIN__
1729 .4byte .LFB1
1730 .4byte .LFE1-.LFB1
1731 .byte 0x4
1732 .4byte .LFE1-.LFB1
1733 .byte 0x4
1734 .4byte .L1-.LFB1
1735.LEFDE1:
1736EOF
01efb963 1737 cat > conftest.lit <<EOF
c64688ae
RH
1738 0000 10000000 00000000 017a0001 781a0004 .........z..x...
1739 0010 01000000 12000000 18000000 00000000 ................
1740 0020 08000000 04080000 0044 .........D
01efb963
AS
1741EOF
1742 cat > conftest.big <<EOF
1743 0000 00000010 00000000 017a0001 781a0004 .........z..x...
1744 0010 00000001 00000012 00000018 00000000 ................
1745 0020 00000008 04000000 0844 .........D
c64688ae
RH
1746EOF
1747 # If the assembler didn't choke, and we can objdump,
1748 # and we got the correct data, then succeed.
1749 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
3cae5780 1750 && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
c64688ae 1751 | tail -3 > conftest.got \
01efb963
AS
1752 && { cmp conftest.lit conftest.got > /dev/null 2>&1 \
1753 || cmp conftest.big conftest.got > /dev/null 2>&1; }
c64688ae
RH
1754 then
1755 gcc_cv_as_eh_frame="yes"
1756 else
1757 gcc_cv_as_eh_frame="bad"
1758 if $gcc_cv_as -o conftest.o --traditional-format /dev/null; then
1759 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
1760 [Define if your assembler mis-optimizes .eh_frame data.])
1761 fi
1762 fi
1763 fi
1764 rm -f conftest.*
1765fi
1766AC_MSG_RESULT($gcc_cv_as_eh_frame)
1767
201556f0
JJ
1768AC_MSG_CHECKING(assembler section merging support)
1769gcc_cv_as_shf_merge=no
1770if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1771 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
a8b7afb9 1772 gcc_cv_as_shf_merge=yes
201556f0
JJ
1773 fi
1774elif test x$gcc_cv_as != x; then
1775 # Check if we support SHF_MERGE sections
1776 echo '.section .rodata.str, "aMS", @progbits, 1' > conftest.s
a8b7afb9 1777 if $gcc_cv_as --fatal-warnings -o conftest.o conftest.s > /dev/null 2>&1; then
201556f0
JJ
1778 gcc_cv_as_shf_merge=yes
1779 fi
1780 rm -f conftest.s conftest.o
1781fi
1782if test x"$gcc_cv_as_shf_merge" = xyes; then
1783 AC_DEFINE(HAVE_GAS_SHF_MERGE, 1,
1784[Define if your assembler supports marking sections with SHF_MERGE flag.])
1785fi
1786AC_MSG_RESULT($gcc_cv_as_shf_merge)
1787
f996902d
RH
1788AC_MSG_CHECKING(assembler thread-local storage support)
1789gcc_cv_as_tls=no
1790conftest_s=
1791tls_first_major=
1792tls_first_minor=
1793case "$target" in
1794changequote(,)dnl
6f9b006d
RH
1795 alpha*-*-*)
1796 conftest_s='
1797 .section ".tdata","awT",@progbits
1798foo: .long 25
1799 .text
1800 ldq $27,__tls_get_addr($29) !literal!1
1801 lda $16,foo($29) !tlsgd!1
1802 jsr $26,($27),__tls_get_addr !lituse_tlsgd!1
1803 ldq $27,__tls_get_addr($29) !literal!2
1804 lda $16,foo($29) !tlsldm!2
1805 jsr $26,($27),__tls_get_addr !lituse_tlsldm!2
1806 ldq $1,foo($29) !gotdtprel
1807 ldah $2,foo($29) !dtprelhi
1808 lda $3,foo($2) !dtprello
1809 lda $4,foo($29) !dtprel
1810 ldq $1,foo($29) !gottprel
1811 ldah $2,foo($29) !tprelhi
1812 lda $3,foo($2) !tprello
1813 lda $4,foo($29) !tprel'
1814 tls_first_major=2
1815 tls_first_minor=13
1816 ;;
f996902d
RH
1817 i[34567]86-*-*)
1818changequote([,])dnl
1819 conftest_s='
1820 .section ".tdata","awT",@progbits
1821foo: .long 25
1822 .text
1823 movl %gs:0, %eax
1824 leal foo@TLSGD(,%ebx,1), %eax
1825 leal foo@TLSLDM(%ebx), %eax
1826 leal foo@DTPOFF(%eax), %edx
1827 movl foo@GOTTPOFF(%ebx), %eax
1828 subl foo@GOTTPOFF(%ebx), %eax
75d38379
JJ
1829 addl foo@GOTNTPOFF(%ebx), %eax
1830 movl foo@INDNTPOFF, %eax
f996902d
RH
1831 movl $foo@TPOFF, %eax
1832 subl $foo@TPOFF, %eax
1833 leal foo@NTPOFF(%ecx), %eax'
1834 tls_first_major=2
75d38379
JJ
1835 tls_first_minor=14
1836 ;;
1837 x86_64-*-*)
1838 conftest_s='
1839 .section ".tdata","awT",@progbits
1840foo: .long 25
1841 .text
1842 movq %fs:0, %rax
1843 leaq foo@TLSGD(%rip), %rdi
1844 leaq foo@TLSLD(%rip), %rdi
1845 leaq foo@DTPOFF(%rax), %rdx
1846 movq foo@GOTTPOFF(%rip), %rax
1847 movq $foo@TPOFF, %rax'
1848 tls_first_major=2
1849 tls_first_minor=14
f996902d 1850 ;;
7b6e506e
RH
1851 ia64-*-*)
1852 conftest_s='
1853 .section ".tdata","awT",@progbits
1854foo: data8 25
1855 .text
1856 addl r16 = @ltoff(@dtpmod(foo#)), gp
1857 addl r17 = @ltoff(@dtprel(foo#)), gp
1858 addl r18 = @ltoff(@tprel(foo#)), gp
1859 addl r19 = @dtprel(foo#), gp
1860 adds r21 = @dtprel(foo#), r13
1861 movl r23 = @dtprel(foo#)
1862 addl r20 = @tprel(foo#), gp
1863 adds r22 = @tprel(foo#), r13
1864 movl r24 = @tprel(foo#)'
1865 tls_first_major=2
1866 tls_first_minor=13
1867 ;;
f996902d
RH
1868esac
1869if test -z "$tls_first_major"; then
1870 :
1871elif test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x
1872then
1873 if test "$gcc_cv_gas_major_version" -eq "$tls_first_major" \
1874 -a "$gcc_cv_gas_minor_version" -ge "$tls_first_minor" \
1875 -o "$gcc_cv_gas_major_version" -gt "$tls_first_major"; then
1876 gcc_cv_as_tls=yes
1877 fi
1878elif test x$gcc_cv_as != x; then
1879 echo "$conftest_s" > conftest.s
1880 if $gcc_cv_as --fatal-warnings -o conftest.o conftest.s > /dev/null 2>&1
1881 then
1882 gcc_cv_as_tls=yes
1883 fi
1884 rm -f conftest.s conftest.o
1885fi
1886if test "$gcc_cv_as_tls" = yes; then
1887 AC_DEFINE(HAVE_AS_TLS, 1,
1888 [Define if your assembler supports thread-local storage.])
1889fi
1890AC_MSG_RESULT($gcc_cv_as_tls)
1891
275b60d6 1892case "$target" in
3a37b08e
RH
1893 # All TARGET_ABI_OSF targets.
1894 alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
1895 AC_CACHE_CHECK([assembler supports explicit relocations],
1896 gcc_cv_as_explicit_relocs, [
1897 gcc_cv_as_explicit_relocs=unknown
1898 if test x$gcc_cv_gas_major_version != x \
1899 -a x$gcc_cv_gas_minor_version != x
1900 then
1901 if test "$gcc_cv_gas_major_version" -eq 2 \
1902 -a "$gcc_cv_gas_minor_version" -ge 12 \
1903 -o "$gcc_cv_gas_major_version" -gt 2; then
1904 gcc_cv_as_explicit_relocs=yes
1905 fi
1906 elif test x$gcc_cv_as != x; then
1907 cat > conftest.s << 'EOF'
1908 .set nomacro
1909 .text
1910 extbl $3, $2, $3 !lituse_bytoff!1
1911 ldq $2, a($29) !literal!1
1912 ldq $4, b($29) !literal!2
1913 ldq_u $3, 0($2) !lituse_base!1
1914 ldq $27, f($29) !literal!5
1915 jsr $26, ($27), f !lituse_jsr!5
1916 ldah $29, 0($26) !gpdisp!3
1917 lda $0, c($29) !gprel
1918 ldah $1, d($29) !gprelhigh
1919 lda $1, d($1) !gprellow
1920 lda $29, 0($29) !gpdisp!3
1921EOF
1922 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1923 gcc_cv_as_explicit_relocs=yes
1924 else
1925 gcc_cv_as_explicit_relocs=no
1926 fi
1927 rm -f conftest.s conftest.o
1928 fi
1929 ])
1930 if test "x$gcc_cv_as_explicit_relocs" = xyes; then
1931 AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
1932 [Define if your assembler supports explicit relocations.])
1933 fi
1934 ;;
1cb36a98 1935 sparc*-*-*)
5b68c389
AO
1936 AC_CACHE_CHECK([assembler .register pseudo-op support],
1937 gcc_cv_as_register_pseudo_op, [
1938 gcc_cv_as_register_pseudo_op=unknown
1939 if test x$gcc_cv_as != x; then
1940 # Check if we have .register
1941 echo ".register %g2, #scratch" > conftest.s
1942 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1cb36a98 1943 gcc_cv_as_register_pseudo_op=yes
5b68c389
AO
1944 else
1945 gcc_cv_as_register_pseudo_op=no
1946 fi
1947 rm -f conftest.s conftest.o
1cb36a98 1948 fi
5b68c389
AO
1949 ])
1950 if test "x$gcc_cv_as_register_pseudo_op" = xyes; then
119d24d1
KG
1951 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
1952 [Define if your assembler supports .register.])
1cb36a98 1953 fi
1cb36a98 1954
e95b1e6a
JJ
1955 AC_CACHE_CHECK([assembler supports -relax],
1956 gcc_cv_as_relax_opt, [
1957 gcc_cv_as_relax_opt=unknown
1958 if test x$gcc_cv_as != x; then
1959 # Check if gas supports -relax
1960 echo ".text" > conftest.s
1961 if $gcc_cv_as -relax -o conftest.o conftest.s > /dev/null 2>&1; then
1962 gcc_cv_as_relax_opt=yes
1963 else
1964 gcc_cv_as_relax_opt=no
1965 fi
1966 rm -f conftest.s conftest.o
1967 fi
1968 ])
1969 if test "x$gcc_cv_as_relax_opt" = xyes; then
1970 AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
1971 [Define if your assembler supports -relax option.])
1972 fi
1973
17e9e88c
JJ
1974 AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs],
1975 gcc_cv_as_sparc_ua_pcrel, [
1976 gcc_cv_as_sparc_ua_pcrel=unknown
1977 if test x$gcc_cv_as != x -a x$gcc_cv_ld != x; then
1978 gcc_cv_as_sparc_ua_pcrel=no
1979 echo ".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo)" > conftest.s
cf7b8b0d
JJ
1980 if $gcc_cv_as -K PIC -o conftest.o conftest.s > /dev/null 2>&1 \
1981 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
1982 gcc_cv_as_sparc_ua_pcrel=yes
17e9e88c
JJ
1983 fi
1984 rm -f conftest.s conftest.o conftest
1985 fi
1986 ])
1987 if test "x$gcc_cv_as_sparc_ua_pcrel" = xyes; then
1988 AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
1989 [Define if your assembler and linker support unaligned PC relative relocs.])
1990 fi
1991
cf7b8b0d
JJ
1992 AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs against hidden symbols],
1993 gcc_cv_as_sparc_ua_pcrel_hidden, [
1994 if test "x$gcc_cv_as_sparc_ua_pcrel" = xyes; then
1995 gcc_cv_as_sparc_ua_pcrel_hidden=unknown
1996 if test x$gcc_cv_objdump != x; then
1997 gcc_cv_as_sparc_ua_pcrel_hidden=no
1998 echo ".data; .align 4; .byte 0x31; .uaword %r_disp32(foo)" > conftest.s
1999 echo ".byte 0x32, 0x33, 0x34; .global foo; .hidden foo" >> conftest.s
2000 echo "foo: .skip 4" >> conftest.s
2001 if $gcc_cv_as -K PIC -o conftest.o conftest.s > /dev/null 2>&1 \
2002 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
2003 && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
2004 | grep ' 31000000 07323334' > /dev/null 2>&1; then
2005 if $gcc_cv_objdump -R conftest 2> /dev/null \
2006 | grep 'DISP32' > /dev/null 2>&1; then
2007 :
2008 else
2009 gcc_cv_as_sparc_ua_pcrel_hidden=yes
2010 fi
2011 fi
2012 fi
2013 rm -f conftest.s conftest.o conftest
2014 else
2015 gcc_cv_as_sparc_ua_pcrel_hidden="$gcc_cv_as_sparc_ua_pcrel"
2016 fi
2017 ])
2018 if test "x$gcc_cv_as_sparc_ua_pcrel_hidden" = xyes; then
2019 AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
2020 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])
2021 fi
2022
22252625
JJ
2023 AC_CACHE_CHECK([for assembler offsetable %lo() support],
2024 gcc_cv_as_offsetable_lo10, [
2025 gcc_cv_as_offsetable_lo10=unknown
2026 if test "x$gcc_cv_as" != x; then
2027 # Check if assembler has offsetable %lo()
2028 echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
2029 echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
2030 if $gcc_cv_as -xarch=v9 -o conftest.o conftest.s \
2031 > /dev/null 2>&1 &&
2032 $gcc_cv_as -xarch=v9 -o conftest1.o conftest1.s \
2033 > /dev/null 2>&1; then
2034 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
5b68c389 2035 gcc_cv_as_offsetable_lo10=no
22252625
JJ
2036 else
2037 gcc_cv_as_offsetable_lo10=yes
1cb36a98 2038 fi
22252625
JJ
2039 else
2040 gcc_cv_as_offsetable_lo10=no
5b68c389 2041 fi
22252625 2042 rm -f conftest.s conftest.o conftest1.s conftest1.o
1cb36a98 2043 fi
22252625
JJ
2044 ])
2045 if test "x$gcc_cv_as_offsetable_lo10" = xyes; then
2046 AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
2047 [Define if your assembler supports offsetable %lo().])
1cb36a98 2048 fi
cb65112a 2049
1cb36a98
RH
2050 ;;
2051
2052changequote(,)dnl
c307e6dd 2053 i[34567]86-*-* | x86_64-*-*)
1cb36a98
RH
2054changequote([,])dnl
2055 AC_MSG_CHECKING(assembler instructions)
2056 gcc_cv_as_instructions=
981d4858
JM
2057 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
2058 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o "$gcc_cv_gas_major_version" -gt 2; then
2059 gcc_cv_as_instructions="filds fists"
2060 fi
2061 elif test x$gcc_cv_as != x; then
53b5ce19
JW
2062 set "filds fists" "filds mem; fists mem"
2063 while test $# -gt 0
2064 do
2065 echo "$2" > conftest.s
2066 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2067 gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
53b5ce19
JW
2068 fi
2069 shift 2
2070 done
2071 rm -f conftest.s conftest.o
1cb36a98 2072 fi
981d4858 2073 if test x"$gcc_cv_as_instructions" != x; then
ee7692d2 2074 AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | sed -e 's/ $//' | tr '[a-z ]' '[A-Z_]'`)
981d4858 2075 fi
1cb36a98 2076 AC_MSG_RESULT($gcc_cv_as_instructions)
f88c65f7
RH
2077
2078 AC_MSG_CHECKING(assembler GOTOFF in data directives)
2079 gcc_cv_as_gotoff_in_data=no
2080 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x
2081 then
2082 if test "$gcc_cv_gas_major_version" -eq 2 \
2083 -a "$gcc_cv_gas_minor_version" -ge 11 \
2084 -o "$gcc_cv_gas_major_version" -gt 2; then
2085 gcc_cv_as_gotoff_in_data=yes
2086 fi
2087 elif test x$gcc_cv_as != x; then
2088 cat > conftest.s <<EOF
2089 .text
2090.L0:
2091 nop
2092 .data
2093 .long .L0@GOTOFF
2094EOF
2095 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2096 gcc_cv_as_gotoff_in_data=yes
2097 fi
2098 fi
2099 AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
2100 [`if test $gcc_cv_as_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
2101 [Define true if the assembler supports '.long foo@GOTOFF'.])
2102 AC_MSG_RESULT($gcc_cv_as_gotoff_in_data)
1cb36a98
RH
2103 ;;
2104esac
53b5ce19 2105
9d147085
RH
2106AC_MSG_CHECKING(assembler dwarf2 debug_line support)
2107gcc_cv_as_dwarf2_debug_line=no
2108# ??? Not all targets support dwarf2 debug_line, even within a version
2109# of gas. Moreover, we need to emit a valid instruction to trigger any
2110# info to the output file. So, as supported targets are added to gas 2.11,
2111# add some instruction here to (also) show we expect this might work.
2112# ??? Once 2.11 is released, probably need to add first known working
2113# version to the per-target configury.
2114case "$target" in
80486e06
DJ
2115 i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-* | m68*-*-* \
2116 | x86_64*-*-* | hppa*-*-* | arm*-*-* | strongarm*-*-* | xscale*-*-*)
9d147085
RH
2117 insn="nop"
2118 ;;
2119 ia64*-*-*)
2120 insn="nop 0"
2121 ;;
2122 esac
2123if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
2124then
2125 if test "$gcc_cv_gas_major_version" -eq 2 \
2126 -a "$gcc_cv_gas_minor_version" -ge 11 \
2127 -o "$gcc_cv_gas_major_version" -gt 2 \
2128 && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
2129 && test x"$insn" != x ; then
2130 gcc_cv_as_dwarf2_debug_line="yes"
2131 fi
2132elif test x$gcc_cv_as != x -a x"$insn" != x ; then
acc187f5
RH
2133 echo ' .file 1 "conftest.s"' > conftest.s
2134 echo ' .loc 1 3 0' >> conftest.s
9d147085 2135 echo " $insn" >> conftest.s
981975b6 2136 # ??? This fails with non-gnu grep.
9d147085
RH
2137 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
2138 && grep debug_line conftest.o > /dev/null 2>&1 ; then
981975b6 2139 # The .debug_line file table must be in the exact order that
eaec9b3d 2140 # we specified the files, since these indices are also used
981975b6
RH
2141 # by DW_AT_decl_file. Approximate this test by testing if
2142 # the assembler bitches if the same index is assigned twice.
2143 echo ' .file 1 "foo.s"' > conftest.s
2144 echo ' .file 1 "bar.s"' >> conftest.s
2145 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1
2146 then
2147 gcc_cv_as_dwarf2_debug_line="no"
2148 else
2149 gcc_cv_as_dwarf2_debug_line="yes"
2150 fi
9d147085
RH
2151 fi
2152 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
2153fi
2154if test x"$gcc_cv_as_dwarf2_debug_line" = xyes; then
2155 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
981975b6 2156[Define if your assembler supports dwarf2 .file/.loc directives,
eaec9b3d 2157 and preserves file table indices exactly as given.])
9d147085
RH
2158fi
2159AC_MSG_RESULT($gcc_cv_as_dwarf2_debug_line)
2160
5f0e9ea2
GK
2161AC_MSG_CHECKING(assembler --gdwarf2 support)
2162gcc_cv_as_gdwarf2_flag=no
2163if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
2164then
2165 if test "$gcc_cv_gas_major_version" -eq 2 \
2166 -a "$gcc_cv_gas_minor_version" -ge 11 \
2167 -o "$gcc_cv_gas_major_version" -gt 2 \
2168 && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
2169 && test x"$insn" != x ; then
da77408f 2170 gcc_cv_as_gdwarf2_flag="yes"
5f0e9ea2
GK
2171 fi
2172elif test x$gcc_cv_as != x -a x"$insn" != x ; then
2173 echo '' > conftest.s
2174 # ??? This fails with non-gnu grep.
2175 if $gcc_cv_as --gdwarf2 -o conftest.o conftest.s > /dev/null 2>&1
2176 then
2177 gcc_cv_as_gdwarf2_flag="yes"
2178 fi
2179 rm -f conftest.s conftest.o
2180fi
2181if test x"$gcc_cv_as_gdwarf2_flag" = xyes; then
2182 AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
2183[Define if your assembler supports the --gdwarf2 option.])
2184fi
2185AC_MSG_RESULT($gcc_cv_as_gdwarf2_flag)
2186
2187AC_MSG_CHECKING(assembler --gstabs support)
2188gcc_cv_as_gstabs_flag=no
2189if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
2190then
2191 if test "$gcc_cv_gas_major_version" -eq 2 \
2192 -a "$gcc_cv_gas_minor_version" -ge 11 \
2193 -o "$gcc_cv_gas_major_version" -gt 2 \
2194 && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
2195 && test x"$insn" != x ; then
da77408f 2196 gcc_cv_as_gstabs_flag="yes"
5f0e9ea2
GK
2197 fi
2198elif test x$gcc_cv_as != x -a x"$insn" != x ; then
2199 echo '' > conftest.s
2200 # ??? This fails with non-gnu grep.
2201 if $gcc_cv_as --gstabs -o conftest.o conftest.s > /dev/null 2>&1 ; then
2202 gcc_cv_as_gstabs_flag="yes"
2203 fi
2204 rm -f conftest.s conftest.o
2205fi
2206if test x"$gcc_cv_as_gstabs_flag" = xyes; then
2207 AC_DEFINE(HAVE_AS_GSTABS_DEBUG_FLAG, 1,
2208[Define if your assembler supports the --gstabs option.])
2209fi
2210AC_MSG_RESULT($gcc_cv_as_gstabs_flag)
2211
275b60d6
JJ
2212AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
2213gcc_cv_ld_eh_frame_hdr=no
2214if test x$gcc_cv_gld_major_version != x -a x$gcc_cv_gld_minor_version != x; then
2215 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 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; then
2216 gcc_cv_ld_eh_frame_hdr=yes
2217 fi
2218elif test x$gcc_cv_ld != x; then
2219 # Check if linker supports --eh-frame-hdr option
2220 if $gcc_cv_ld --help 2>/dev/null | grep eh-frame-hdr > /dev/null; then
2221 gcc_cv_ld_eh_frame_hdr=yes
2222 fi
2223fi
2224if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
2225 AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
2226[Define if your linker supports --eh-frame-hdr option.])
2227fi
2228AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
2229
4357a6c3
CD
2230# Miscellaneous target-specific checks.
2231case "$target" in
2232 mips*-*-*)
2233 AC_MSG_CHECKING(whether libgloss uses STARTUP directives consistently)
2234 gcc_cv_mips_libgloss_startup=no
2235 gcc_cv_libgloss_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/libgloss
2236 if test "x$exec_prefix" = xNONE; then
2237 if test "x$prefix" = xNONE; then
2238 test_prefix=/usr/local
2239 else
2240 test_prefix=$prefix
2241 fi
2242 else
2243 test_prefix=$exec_prefix
2244 fi
2245 for f in $gcc_cv_libgloss_srcdir/mips/idt.ld $test_prefix/$target_alias/lib/idt.ld
2246 do
2247 if grep '^STARTUP' $f > /dev/null 2>&1; then
2248 gcc_cv_mips_libgloss_startup=yes
2249 break
2250 fi
2251 done
2252 if test x"$gcc_cv_mips_libgloss_startup" = xyes; then
2253 AC_DEFINE(HAVE_MIPS_LIBGLOSS_STARTUP_DIRECTIVES, 1,
2254 [Define if your MIPS libgloss linker scripts consistently include STARTUP directives.])
2255 fi
2256 AC_MSG_RESULT($gcc_cv_mips_libgloss_startup)
2257 ;;
2258esac
2259
3ec5d64d 2260if test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
793e9558
PB
2261 AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include")
2262fi
2263
571a8de5 2264# Figure out what language subdirectories are present.
71205e0b
MH
2265# Look if the user specified --enable-languages="..."; if not, use
2266# the environment variable $LANGUAGES if defined. $LANGUAGES might
2267# go away some day.
cc9a08e0 2268# NB: embedded tabs in this IF block -- do not untabify
71205e0b
MH
2269if test x"${enable_languages+set}" != xset; then
2270 if test x"${LANGUAGES+set}" = xset; then
cc9a08e0
PE
2271 enable_languages="${LANGUAGES}"
2272 AC_MSG_WARN([setting LANGUAGES is deprecated, use --enable-languages instead])
2273
71205e0b
MH
2274 else
2275 enable_languages=all
2276 fi
d6c6b553 2277else
015089dd
TJ
2278 if test x"${enable_languages}" = x \
2279 || test x"${enable_languages}" = xyes;
cc9a08e0
PE
2280 then
2281 AC_MSG_ERROR([--enable-languages needs at least one language argument])
d6c6b553 2282 fi
71205e0b 2283fi
cc9a08e0 2284enable_languages=`echo "${enable_languages}" | sed -e 's/[[ ,]][[ ,]]*/,/g' -e 's/,$//'`
75382c6d
TT
2285
2286# First scan to see if an enabled language requires some other language.
2287# We assume that a given config-lang.in will list all the language
2288# front ends it requires, even if some are required indirectly.
2289for lang in ${srcdir}/*/config-lang.in ..
2290do
2291 case $lang in
2292 ..)
2293 ;;
2294 # The odd quoting in the next line works around
2295 # an apparent bug in bash 1.12 on linux.
2296changequote(,)dnl
2297 ${srcdir}/[*]/config-lang.in)
2298 ;;
2299 *)
2300 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
2301 this_lang_requires=`sed -n -e 's,^lang_requires=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_requires=\([^ ]*\).*$,\1,p' $lang`
2302 for other in $this_lang_requires
2303 do
2304 case ,${enable_languages}, in
2305 *,$other,*)
2306 ;;
2307 *,all,*)
2308 ;;
1bf17cc4 2309 *,$lang_alias,*)
75382c6d
TT
2310 enable_languages="$enable_languages,$other"
2311 ;;
2312 esac
2313 done
2314 ;;
2315changequote([,])dnl
2316 esac
2317done
2318
015089dd
TJ
2319expected_languages=`echo ,${enable_languages}, | sed -e 's:,: :g' -e 's: *: :g' -e 's: *: :g' -e 's:^ ::' -e 's: $::'`
2320found_languages=
571a8de5
DE
2321subdirs=
2322for lang in ${srcdir}/*/config-lang.in ..
2323do
2324 case $lang in
2325 ..) ;;
2326 # The odd quoting in the next line works around
2327 # an apparent bug in bash 1.12 on linux.
75bffa71
ILT
2328changequote(,)dnl
2329 ${srcdir}/[*]/config-lang.in) ;;
71205e0b
MH
2330 *)
2331 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
2b60b2cb
AO
2332 this_lang_libs=`sed -n -e 's,^target_libs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^target_libs=\([^ ]*\).*$,\1,p' $lang`
2333 build_by_default=`sed -n -e 's,^build_by_default=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^build_by_default=\([^ ]*\).*$,\1,p' $lang`
71205e0b
MH
2334 if test "x$lang_alias" = x
2335 then
2336 echo "$lang doesn't set \$language." 1>&2
2337 exit 1
2338 fi
2b60b2cb
AO
2339 case ${build_by_default},${enable_languages}, in
2340 *,$lang_alias,*) add_this_lang=yes ;;
2341 no,*) add_this_lang=no ;;
2342 *,all,*) add_this_lang=yes ;;
2343 *) add_this_lang=no ;;
2344 esac
015089dd 2345 found_languages="${found_languages} ${lang_alias}"
71205e0b
MH
2346 if test x"${add_this_lang}" = xyes; then
2347 case $lang in
2348 ${srcdir}/ada/config-lang.in)
1ffc5c6e 2349 if test x$have_gnat = xyes ; then
71205e0b
MH
2350 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
2351 fi
2352 ;;
2353 *)
2354 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
2355 ;;
2356 esac
2357 fi
2358 ;;
75bffa71 2359changequote([,])dnl
571a8de5
DE
2360 esac
2361done
2362
015089dd
TJ
2363missing_languages=
2364for expected_language in ${expected_languages} ..
2365do
2366 if test "${expected_language}" != ..; then
2367 missing_language="${expected_language}"
2368 if test "${expected_language}" = "c" \
2369 || test "${expected_language}" = "all"; then
2370 missing_language=
2371 fi
2372 for found_language in ${found_languages} ..
2373 do
2374 if test "${found_language}" != ..; then
2375 if test "${expected_language}" = "${found_language}"; then
2376 missing_language=
2377 fi
2378 fi
2379 done
2380 if test "x${missing_language}" != x; then
2381 missing_languages="${missing_languages} ${missing_language}"
2382 fi
2383 fi
2384done
2385
2386if test "x$missing_languages" != x; then
2387 AC_MSG_ERROR([
2388The following requested languages were not found:${missing_languages}
2389The following languages were available: c${found_languages}])
02ef40d9
TJ
2390fi
2391
f24af81b
TT
2392# Make gthr-default.h if we have a thread file.
2393gthread_flags=
75bffa71 2394if test $thread_file != single; then
f24af81b 2395 rm -f gthr-default.h
db0d1ed9 2396 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
f24af81b
TT
2397 gthread_flags=-DHAVE_GTHR_DEFAULT
2398fi
2399AC_SUBST(gthread_flags)
2400
81bf3d9e
RH
2401# Find out what GC implementation we want, or may, use.
2402AC_ARG_WITH(gc,
e8bec136
RO
2403[ --with-gc={simple,page} choose the garbage collection mechanism to use
2404 with the compiler],
81bf3d9e
RH
2405[case "$withval" in
2406 simple | page)
2407 GGC=ggc-$withval
2408 ;;
2409 *)
2410 AC_MSG_ERROR([$withval is an invalid option to --with-gc])
2411 ;;
2412esac],
130fadbb 2413[GGC=ggc-page])
81bf3d9e
RH
2414AC_SUBST(GGC)
2415echo "Using $GGC for garbage collection."
2416
3c809ba4 2417# Use the system's zlib library.
b8dad04b
ZW
2418zlibdir=-L../zlib
2419zlibinc="-I\$(srcdir)/../zlib"
3c809ba4
AG
2420AC_ARG_WITH(system-zlib,
2421[ --with-system-zlib use installed libz],
2422zlibdir=
2423zlibinc=
2424)
2425AC_SUBST(zlibdir)
2426AC_SUBST(zlibinc)
2427
dc6746e7
PT
2428dnl Very limited version of automake's enable-maintainer-mode
2429
2430AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
2431 dnl maintainer-mode is disabled by default
2432 AC_ARG_ENABLE(maintainer-mode,
e8bec136
RO
2433[ --enable-maintainer-mode
2434 enable make rules and dependencies not useful
dc6746e7
PT
2435 (and sometimes confusing) to the casual installer],
2436 maintainer_mode=$enableval,
2437 maintainer_mode=no)
2438
2439AC_MSG_RESULT($maintainer_mode)
2440
2441if test "$maintainer_mode" = "yes"; then
2442 MAINT=''
2443else
2444 MAINT='#'
2445fi
2446AC_SUBST(MAINT)dnl
2447
531073e7
RH
2448# With Setjmp/Longjmp based exception handling.
2449AC_ARG_ENABLE(sjlj-exceptions,
e8bec136
RO
2450[ --enable-sjlj-exceptions
2451 arrange to use setjmp/longjmp exception handling],
531073e7
RH
2452[sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
2453AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
2454 [Define 0/1 to force the choice for exception handling model.])])
2455
893a047c
SE
2456# Use libunwind based exception handling.
2457AC_ARG_ENABLE(libunwind-exceptions,
2458[ --enable-libunwind-exceptions force use libunwind for exceptions],
2459use_libunwind_exceptions=$enableval,
2460use_libunwind_exceptions=no)
2461if test x"$use_libunwind_exceptions" = xyes; then
2462 AC_DEFINE(USE_LIBUNWIND_EXCEPTIONS, 1,
2463 [Define if gcc should use -lunwind.])
2464fi
2465
571a8de5
DE
2466# Make empty files to contain the specs and options for each language.
2467# Then add #include lines to for a compiler that has specs and/or options.
2468
2469lang_specs_files=
2470lang_options_files=
3103b7db 2471lang_tree_files=
571a8de5
DE
2472for subdir in . $subdirs
2473do
75bffa71 2474 if test -f $srcdir/$subdir/lang-specs.h; then
0d24f4d1 2475 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
571a8de5 2476 fi
75bffa71 2477 if test -f $srcdir/$subdir/lang-options.h; then
0d24f4d1 2478 lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
571a8de5 2479 fi
3103b7db 2480 if test -f $srcdir/$subdir/$subdir-tree.def; then
0d24f4d1 2481 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
3103b7db 2482 fi
571a8de5
DE
2483done
2484
2485# These (without "all_") are set in each config-lang.in.
2486# `language' must be a single word so is spelled singularly.
2487all_languages=
2488all_boot_languages=
2489all_compilers=
2490all_stagestuff=
e34a3d31 2491all_outputs='Makefile intl/Makefile fixinc/Makefile gccbug mklibgcc mkheaders'
571a8de5
DE
2492# List of language makefile fragments.
2493all_lang_makefiles=
e2500fed 2494# Files for gengtype
ef69da62 2495all_gtfiles="$target_gtfiles"
8ac9d31f
TJ
2496# Files for gengtype with language
2497all_gtfiles_files_langs=
2498all_gtfiles_files_files=
571a8de5
DE
2499
2500# Add the language fragments.
2501# Languages are added via two mechanisms. Some information must be
2502# recorded in makefile variables, these are defined in config-lang.in.
2503# We accumulate them and plug them into the main Makefile.
2504# The other mechanism is a set of hooks for each of the main targets
2505# like `clean', `install', etc.
2506
2507language_fragments="Make-lang"
2508language_hooks="Make-hooks"
2509
2510for s in .. $subdirs
2511do
75bffa71 2512 if test $s != ".."
571a8de5
DE
2513 then
2514 language=
2515 boot_language=
2516 compilers=
2517 stagestuff=
0280cf84 2518 outputs=
e2500fed 2519 gtfiles=
571a8de5 2520 . ${srcdir}/$s/config-lang.in
75bffa71 2521 if test "x$language" = x
571a8de5
DE
2522 then
2523 echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
2524 exit 1
2525 fi
72aaffbd
ZW
2526 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in"
2527 if test -f ${srcdir}/$s/Makefile.in
2528 then all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Makefile.in"
2529 fi
571a8de5 2530 all_languages="$all_languages $language"
75bffa71 2531 if test "x$boot_language" = xyes
571a8de5
DE
2532 then
2533 all_boot_languages="$all_boot_languages $language"
2534 fi
2535 all_compilers="$all_compilers $compilers"
2536 all_stagestuff="$all_stagestuff $stagestuff"
0280cf84 2537 all_outputs="$all_outputs $outputs"
e2500fed 2538 all_gtfiles="$all_gtfiles $gtfiles"
8ac9d31f
TJ
2539 for f in .. $gtfiles
2540 do
2541 if test $f != ".."
2542 then
2543 all_gtfiles_files_langs="$all_gtfiles_files_langs ${s} "
2544 all_gtfiles_files_files="$all_gtfiles_files_files ${f} "
2545 fi
2546 done
571a8de5
DE
2547 fi
2548done
2549
8ac9d31f
TJ
2550# Pick up gtfiles for c
2551gtfiles=
2552s="c"
2553. ${srcdir}/c-config-lang.in
2554all_gtfiles="$all_gtfiles $gtfiles"
2555for f in .. $gtfiles
2556do
2557 if test $f != ".."
2558 then
2559 all_gtfiles_files_langs="$all_gtfiles_files_langs ${s} "
2560 all_gtfiles_files_files="$all_gtfiles_files_files ${f} "
2561 fi
2562done
2563
cbc59f01
DD
2564check_languages=
2565for language in .. $all_languages
2566do
2567 if test $language != ".."
2568 then
2569 check_languages="$check_languages check-$language"
2570 fi
2571done
2572
571a8de5
DE
2573# Since we can't use `::' targets, we link each language in
2574# with a set of hooks, reached indirectly via lang.${target}.
2575
2576rm -f Make-hooks
2577touch Make-hooks
2578target_list="all.build all.cross start.encap rest.encap \
d3945f0a 2579 info dvi generated-manpages \
571a8de5 2580 install-normal install-common install-info install-man \
436a88a6 2581 uninstall \
571a8de5
DE
2582 mostlyclean clean distclean extraclean maintainer-clean \
2583 stage1 stage2 stage3 stage4"
2584for t in $target_list
2585do
2586 x=
ab87f8c8 2587 for lang in .. $all_languages
571a8de5 2588 do
ab87f8c8
JL
2589 if test $lang != ".."; then
2590 x="$x $lang.$t"
571a8de5
DE
2591 fi
2592 done
2593 echo "lang.$t: $x" >> Make-hooks
2594done
2595
cc06d68c 2596# Create .gdbinit.
296e46bd 2597
cc06d68c
GP
2598echo "dir ." > .gdbinit
2599echo "dir ${srcdir}" >> .gdbinit
2600if test x$gdb_needs_out_file_path = xyes
2601then
2602 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
2603fi
2604if test "x$subdirs" != x; then
2605 for s in $subdirs
2606 do
2607 echo "dir ${srcdir}/$s" >> .gdbinit
2608 done
296e46bd 2609fi
cc06d68c 2610echo "source ${srcdir}/gdbinit.in" >> .gdbinit
296e46bd 2611
88111b26
JL
2612# Define variables host_canonical and build_canonical
2613# because some Cygnus local changes in the Makefile depend on them.
2614build_canonical=${build}
2615host_canonical=${host}
2616target_subdir=
75bffa71 2617if test "${host}" != "${target}" ; then
924c96eb 2618 target_subdir=${target_alias}/
88111b26
JL
2619fi
2620AC_SUBST(build_canonical)
2621AC_SUBST(host_canonical)
2622AC_SUBST(target_subdir)
2623
8f8d3278
NC
2624# If $(exec_prefix) exists and is not the same as $(prefix), then compute an
2625# absolute path for gcc_tooldir based on inserting the number of up-directory
2626# movements required to get from $(exec_prefix) to $(prefix) into the basic
2627# $(libsubdir)/@(unlibsubdir) based path.
82cbf8f7
JL
2628# Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
2629# make and thus we'd get different behavior depending on where we built the
2630# sources.
5949a9fc 2631if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
d062c304
JL
2632 gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
2633else
8f8d3278
NC
2634changequote(<<, >>)dnl
2635# An explanation of the sed strings:
2636# -e 's|^\$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
2637# -e 's|/$||' match a trailing forward slash and eliminates it
2638# -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
ff7cc307 2639# -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../
8f8d3278
NC
2640#
2641# (*) Note this pattern overwrites the first character of the string
2642# with a forward slash if one is not already present. This is not a
2643# problem because the exact names of the sub-directories concerned is
2644# unimportant, just the number of them matters.
2645#
2646# The practical upshot of these patterns is like this:
2647#
2648# prefix exec_prefix result
2649# ------ ----------- ------
2650# /foo /foo/bar ../
2651# /foo/ /foo/bar ../
2652# /foo /foo/bar/ ../
2653# /foo/ /foo/bar/ ../
2654# /foo /foo/bar/ugg ../../
2655#
4c112cda
NC
2656 dollar='$$'
2657 gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
8f8d3278 2658changequote([, ])dnl
d062c304
JL
2659fi
2660AC_SUBST(gcc_tooldir)
4c112cda 2661AC_SUBST(dollar)
d062c304 2662
2bbea3a6
RH
2663# Find a directory in which to install a shared libgcc.
2664
2665AC_ARG_ENABLE(version-specific-runtime-libs,
e8bec136
RO
2666[ --enable-version-specific-runtime-libs
2667 specify that runtime libraries should be
2668 installed in a compiler-specific directory])
2bbea3a6 2669
5b15f277
RH
2670AC_ARG_WITH(slibdir,
2671[ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
2672slibdir="$with_slibdir",
2673if test "${enable_version_specific_runtime_libs+set}" = set; then
2bbea3a6 2674 slibdir='$(libsubdir)'
5b15f277 2675elif test "$host" != "$target"; then
2bbea3a6
RH
2676 slibdir='$(build_tooldir)/lib'
2677else
5b15f277
RH
2678 slibdir='$(libdir)'
2679fi)
2bbea3a6
RH
2680AC_SUBST(slibdir)
2681
1e6347d8 2682objdir=`${PWDCMD-pwd}`
7e717196
JL
2683AC_SUBST(objdir)
2684
94f42018
DE
2685# Process the language and host/target makefile fragments.
2686${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
47866ac0 2687
46f18e7b
RK
2688# Substitute configuration variables
2689AC_SUBST(subdirs)
8ac9d31f 2690AC_SUBST(srcdir)
46f18e7b
RK
2691AC_SUBST(all_boot_languages)
2692AC_SUBST(all_compilers)
e2500fed 2693AC_SUBST(all_gtfiles)
8ac9d31f
TJ
2694AC_SUBST(all_gtfiles_files_langs)
2695AC_SUBST(all_gtfiles_files_files)
9f3d1bc2
BK
2696AC_SUBST(all_lang_makefiles)
2697AC_SUBST(all_languages)
9f3d1bc2
BK
2698AC_SUBST(all_stagestuff)
2699AC_SUBST(build_exeext)
2700AC_SUBST(build_install_headers_dir)
2701AC_SUBST(build_xm_file_list)
11642c3a
ZW
2702AC_SUBST(build_xm_file)
2703AC_SUBST(build_xm_defines)
cbc59f01 2704AC_SUBST(check_languages)
9f3d1bc2 2705AC_SUBST(cc_set_by_configure)
5aa82ace 2706AC_SUBST(quoted_cc_set_by_configure)
9f3d1bc2 2707AC_SUBST(cpp_install_dir)
9f3d1bc2
BK
2708AC_SUBST(dep_host_xmake_file)
2709AC_SUBST(dep_tmake_file)
9f3d1bc2 2710AC_SUBST(extra_headers_list)
46f18e7b 2711AC_SUBST(extra_objs)
9f3d1bc2
BK
2712AC_SUBST(extra_parts)
2713AC_SUBST(extra_passes)
2714AC_SUBST(extra_programs)
9f3d1bc2 2715AC_SUBST(float_h_file)
cc1e60ea 2716AC_SUBST(gcc_config_arguments)
9f3d1bc2 2717AC_SUBST(gcc_gxx_include_dir)
e2187d3b 2718AC_SUBST(libstdcxx_incdir)
9f3d1bc2 2719AC_SUBST(gcc_version)
8763704d 2720AC_SUBST(gcc_version_full)
9f3d1bc2
BK
2721AC_SUBST(gcc_version_trigger)
2722AC_SUBST(host_exeext)
46f18e7b 2723AC_SUBST(host_extra_gcc_objs)
46f18e7b 2724AC_SUBST(host_xm_file_list)
11642c3a
ZW
2725AC_SUBST(host_xm_file)
2726AC_SUBST(host_xm_defines)
9f3d1bc2 2727AC_SUBST(install)
46f18e7b 2728AC_SUBST(lang_options_files)
9f3d1bc2 2729AC_SUBST(lang_specs_files)
3103b7db 2730AC_SUBST(lang_tree_files)
46f18e7b 2731AC_SUBST(local_prefix)
9f3d1bc2
BK
2732AC_SUBST(md_file)
2733AC_SUBST(objc_boehm_gc)
2734AC_SUBST(out_file)
2735AC_SUBST(out_object_file)
46f18e7b 2736AC_SUBST(stage_prefix_set_by_configure)
596151e1 2737AC_SUBST(quoted_stage_prefix_set_by_configure)
e9a25f70 2738AC_SUBST(symbolic_link)
9f3d1bc2
BK
2739AC_SUBST(thread_file)
2740AC_SUBST(tm_file_list)
11642c3a 2741AC_SUBST(tm_file)
d5355cb2 2742AC_SUBST(tm_defines)
11642c3a
ZW
2743AC_SUBST(tm_p_file_list)
2744AC_SUBST(tm_p_file)
2745AC_SUBST(xm_file)
3d9d2476 2746AC_SUBST(xm_defines)
66fe41af 2747AC_SUBST(target_alias)
aac69a49
NC
2748AC_SUBST(c_target_objs)
2749AC_SUBST(cxx_target_objs)
11642c3a 2750AC_SUBST(target_cpu_default)
46f18e7b
RK
2751
2752AC_SUBST_FILE(target_overrides)
2753AC_SUBST_FILE(host_overrides)
46f18e7b
RK
2754AC_SUBST_FILE(language_fragments)
2755AC_SUBST_FILE(language_hooks)
2756
2757# Echo that links are built
75bffa71 2758if test x$host = x$target
46f18e7b
RK
2759then
2760 str1="native "
2761else
2762 str1="cross-"
2763 str2=" from $host"
2764fi
2765
75bffa71 2766if test x$host != x$build
46f18e7b
RK
2767then
2768 str3=" on a $build system"
2769fi
2770
75bffa71 2771if test "x$str2" != x || test "x$str3" != x
46f18e7b
RK
2772then
2773 str4=
2774fi
2775
2776echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
2777
75bffa71 2778if test "x$str2" != x || test "x$str3" != x
46f18e7b
RK
2779then
2780 echo " ${str2}${str3}." 1>&2
2781fi
2782
61536478 2783# Truncate the target if necessary
75bffa71 2784if test x$host_truncate_target != x; then
61536478
JL
2785 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
2786fi
2787
46f18e7b
RK
2788# Configure the subdirectories
2789# AC_CONFIG_SUBDIRS($subdirs)
2790
2791# Create the Makefile
5891b37d 2792# and configure language subdirectories
0280cf84 2793AC_OUTPUT($all_outputs,
cdcc6a01 2794[
cdcc6a01 2795case x$CONFIG_HEADERS in
b7cb92ad 2796xauto-host.h:config.in)
818b66cc 2797echo > cstamp-h ;;
cdcc6a01 2798esac
93cf819d
BK
2799# If the host supports symlinks, point stage[1234] at ../stage[1234] so
2800# bootstrapping and the installation procedure can still use
2801# CC="stage1/xgcc -Bstage1/". If the host doesn't support symlinks,
2802# FLAGS_TO_PASS has been modified to solve the problem there.
2803# This is virtually a duplicate of what happens in configure.lang; we do
2804# an extra check to make sure this only happens if ln -s can be used.
75bffa71 2805if test "$symbolic_link" = "ln -s"; then
d8140df6 2806 for d in .. ${subdirs} fixinc ; do
75bffa71 2807 if test $d != ..; then
1e6347d8 2808 STARTDIR=`${PWDCMD-pwd}`
4e8a434e
BK
2809 cd $d
2810 for t in stage1 stage2 stage3 stage4 include
2811 do
2812 rm -f $t
2813 $symbolic_link ../$t $t 2>/dev/null
2814 done
2815 cd $STARTDIR
93cf819d
BK
2816 fi
2817 done
2818else true ; fi
ab87f8c8
JL
2819# Avoid having to add intl to our include paths.
2820if test -f intl/libintl.h; then
2821 echo creating libintl.h
2822 echo '#include "intl/libintl.h"' >libintl.h
2823fi
0d24f4d1
ZW
2824],
2825[subdirs='$subdirs'
2826symbolic_link='$symbolic_link'
cdcc6a01 2827])