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