]> gcc.gnu.org Git - gcc.git/blame - gcc/configure.in
stdio-opt-2.c: Also test __builtin_puts and __builtin_putchar.
[gcc.git] / gcc / configure.in
CommitLineData
46f18e7b
RK
1# configure.in for GNU CC
2# Process this file with autoconf to generate a configuration script.
3
fd939e46 4# Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
46f18e7b
RK
5
6#This file is part of GNU CC.
7
8#GNU CC is free software; you can redistribute it and/or modify
9#it under the terms of the GNU General Public License as published by
10#the Free Software Foundation; either version 2, or (at your option)
11#any later version.
12
13#GNU CC is distributed in the hope that it will be useful,
14#but WITHOUT ANY WARRANTY; without even the implied warranty of
15#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16#GNU General Public License for more details.
17
18#You should have received a copy of the GNU General Public License
19#along with GNU CC; see the file COPYING. If not, write to
20#the Free Software Foundation, 59 Temple Place - Suite 330,
21#Boston, MA 02111-1307, USA.
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,
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,
4d8392b7 110[ --with-gnu-as arrange to work with GNU as.],
df6faf79
JW
111gas_flag="$with_gnu_as",
112gas_flag=no)
46f18e7b 113
ab339d62
AO
114AC_ARG_WITH(as,
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,
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,
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
RK
141AC_ARG_WITH(local-prefix,
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
5a7c1037
MM
154# Build a new-libstdc++ system (ie libstdc++-v3)
155AC_MSG_CHECKING([for libstdc++ to install])
156AC_ARG_ENABLE(libstdcxx-v3,
157[ --enable-libstdcxx-v3
158 enable libstdc++-v3 for building and installation],
159 [enable_libstdcxx_v3="$enableval"], [enable_libstdcxx_v3=yes])
160
161if test x$enable_libstdcxx_v3 = xyes; then
162 AC_MSG_RESULT(v3)
163 HAVE_LIBSTDCXX_V3=1
164 ac_esn=1
165else
166 AC_MSG_RESULT(v2)
167 HAVE_LIBSTDCXX_V3=0
168 ac_esn=0
169fi
170
8f8d3278
NC
171# Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
172# passed in by the toplevel make and thus we'd get different behavior
173# depending on where we built the sources.
174gcc_gxx_include_dir=
9514f0d1
RK
175# Specify the g++ header file directory
176AC_ARG_WITH(gxx-include-dir,
177[ --with-gxx-include-dir=DIR
178 specifies directory to put g++ header files.],
4e88d51b
JM
179[case "${withval}" in
180yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
181no) ;;
8f8d3278 182*) gcc_gxx_include_dir=$with_gxx_include_dir ;;
4e88d51b
JM
183esac])
184
8f8d3278 185if test x${gcc_gxx_include_dir} = x; then
4e88d51b 186 if test x${enable_version_specific_runtime_libs} = xyes; then
8f8d3278 187 gcc_gxx_include_dir='${libsubdir}/include/g++'
4e88d51b 188 else
a270b446 189 topsrcdir=${srcdir}/.. . ${srcdir}/../config.if
de82584d 190changequote(<<, >>)dnl
e2187d3b 191 gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/"${libstdcxx_incdir}
de82584d 192changequote([, ])dnl
4e88d51b
JM
193 fi
194fi
46f18e7b 195
a494747c
MM
196# Enable expensive internal checks
197AC_ARG_ENABLE(checking,
f4524c9e
ZW
198[ --enable-checking[=LIST]
199 enable expensive run-time checks. With LIST,
200 enable only specific categories of checks.
201 Categories are: misc,tree,rtl,gc,gcac; default
59f406b7 202 is misc,tree,gc],
119d24d1
KG
203[ac_checking=
204ac_tree_checking=
205ac_rtl_checking=
206ac_gc_checking=
207ac_gc_always_collect=
208case "${enableval}" in
51d0e20c 209yes) ac_checking=1 ; ac_tree_checking=1 ; ac_gc_checking=1 ;;
4e88d51b 210no) ;;
59f406b7 211*) IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
f4524c9e
ZW
212 set fnord $enableval; shift
213 IFS="$ac_save_IFS"
c62e45ad
KG
214 for check
215 do
f4524c9e 216 case $check in
119d24d1
KG
217 misc) ac_checking=1 ;;
218 tree) ac_tree_checking=1 ;;
219 rtl) ac_rtl_checking=1 ;;
220 gc) ac_gc_checking=1 ;;
221 gcac) ac_gc_always_collect=1 ;;
f4524c9e
ZW
222 *) AC_MSG_ERROR(unknown check category $check) ;;
223 esac
224 done
225 ;;
119d24d1 226esac
51d0e20c
AJ
227],
228# Enable some checks by default for development versions of GCC
229[ac_checking=1; ac_tree_checking=1; ac_gc_checking=1;])
119d24d1
KG
230if test x$ac_checking != x ; then
231 AC_DEFINE(ENABLE_CHECKING, 1,
232[Define if you want more run-time sanity checks. This one gets a grab
233 bag of miscellaneous but relatively cheap checks.])
234fi
235if test x$ac_tree_checking != x ; then
236 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
237[Define if you want all operations on trees (the basic data
238 structure of the front ends) to be checked for dynamic type safety
239 at runtime. This is moderately expensive.])
240fi
241if test x$ac_rtl_checking != x ; then
242 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
243[Define if you want all operations on RTL (the basic data structure
244 of the optimizer and back end) to be checked for dynamic type safety
245 at runtime. This is quite expensive.])
246fi
247if test x$ac_gc_checking != x ; then
248 AC_DEFINE(ENABLE_GC_CHECKING, 1,
249[Define if you want the garbage collector to do object poisoning and
250 other memory allocation checks. This is quite expensive.])
251fi
252if test x$ac_gc_always_collect != x ; then
253 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
254[Define if you want the garbage collector to operate in maximally
255 paranoid mode, validating the entire heap and collecting garbage at
256 every opportunity. This is extremely expensive.])
257fi
51d0e20c 258
a494747c 259
3ecc3258
ZW
260AC_ARG_ENABLE(cpp,
261[ --disable-cpp don't provide a user-visible C preprocessor.],
262[], [enable_cpp=yes])
263
264AC_ARG_WITH(cpp_install_dir,
265[ --with-cpp-install-dir=DIR
266 install the user visible C preprocessor in DIR
267 (relative to PREFIX) as well as PREFIX/bin.],
268[if test x$withval = xyes; then
269 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
270elif test x$withval != xno; then
271 cpp_install_dir=$withval
272fi])
273
c5c76735
JL
274# Enable Multibyte Characters for C/C++
275AC_ARG_ENABLE(c-mbchar,
276[ --enable-c-mbchar Enable multibyte characters for C and C++.],
2618c083 277if test x$enable_c_mbchar != xno; then
9ec7291f
ZW
278 AC_DEFINE(MULTIBYTE_CHARS, 1,
279 [Define if you want the C and C++ compilers to support multibyte
280 character sets for source code.])
c5c76735
JL
281fi)
282
0bbb1697
RK
283# Enable threads
284# Pass with no value to take the default
285# Pass with a value to specify a thread package
286AC_ARG_ENABLE(threads,
287[ --enable-threads enable thread usage for target GCC.
981d4858 288 --enable-threads=LIB use LIB thread package for target GCC.],,
0bbb1697
RK
289enable_threads='')
290
e445171e 291enable_threads_flag=$enable_threads
0bbb1697 292# Check if a valid thread package
e445171e 293case x${enable_threads_flag} in
0bbb1697
RK
294 x | xno)
295 # No threads
a851212a 296 target_thread_file='single'
0bbb1697
RK
297 ;;
298 xyes)
299 # default
a851212a 300 target_thread_file=''
0bbb1697
RK
301 ;;
302 xdecosf1 | xirix | xmach | xos2 | xposix | xpthreads | xsingle | \
a473fe45 303 xsolaris | xwin32 | xdce | xvxworks | xaix)
e445171e 304 target_thread_file=$enable_threads_flag
0bbb1697
RK
305 ;;
306 *)
307 echo "$enable_threads is an unknown thread package" 1>&2
308 exit 1
309 ;;
310esac
311
d8bb17c8
OP
312AC_ARG_ENABLE(objc-gc,
313[ --enable-objc-gc enable the use of Boehm's garbage collector with
314 the GNU Objective-C runtime.],
2618c083 315if test x$enable_objc_gc = xno; then
d8bb17c8
OP
316 objc_boehm_gc=''
317else
318 objc_boehm_gc=1
319fi,
320objc_boehm_gc='')
321
90e6a802 322AC_ARG_WITH(dwarf2,
756ee602 323[ --with-dwarf2 force the default debug format to be DWARF2.],
90e6a802
RL
324dwarf2="$with_dwarf2",
325dwarf2=no)
326
50503ac8
RH
327AC_ARG_ENABLE(shared,
328[ --disable-shared don't provide a shared libgcc.],
329[], [enable_shared=yes])
330AC_SUBST(enable_shared)
331
46f18e7b
RK
332# Determine the host, build, and target systems
333AC_CANONICAL_SYSTEM
334
e9a25f70
JL
335# Find the native compiler
336AC_PROG_CC
3ec83fc2 337AC_PROG_CC_C_O
b8dad04b 338# autoconf is lame and doesn't give us any substitution variable for this.
e38df833 339if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
b4c7e567 340 NO_MINUS_C_MINUS_O=yes
b8dad04b
ZW
341else
342 OUTPUT_OPTION='-o $@'
b4c7e567 343fi
3ec83fc2 344AC_SUBST(NO_MINUS_C_MINUS_O)
b8dad04b 345AC_SUBST(OUTPUT_OPTION)
3ec83fc2 346
99e757d5 347gcc_AC_C_LONG_DOUBLE
61842080 348
97d81d66
JM
349AC_CACHE_CHECK(whether ${CC-cc} accepts -Wno-long-long,
350ac_cv_prog_cc_no_long_long,
351[save_CFLAGS="$CFLAGS"
352CFLAGS="-Wno-long-long"
353AC_TRY_COMPILE(,,ac_cv_prog_cc_no_long_long=yes,
354 ac_cv_prog_cc_no_long_long=no)
355CFLAGS="$save_CFLAGS"])
b8dad04b
ZW
356strict1_warn=
357if test $ac_cv_prog_cc_no_long_long = yes; then
358 strict1_warn="-pedantic -Wno-long-long"
359fi
360AC_SUBST(strict1_warn)
ff5def20 361
61842080
MM
362# If the native compiler is GCC, we can enable warnings even in stage1.
363# That's useful for people building cross-compilers, or just running a
364# quick `make'.
b8dad04b
ZW
365warn_cflags=
366if test "x$GCC" = "xyes"; then
367 warn_cflags='$(GCC_WARN_CFLAGS)'
61842080 368fi
b8dad04b 369AC_SUBST(warn_cflags)
5b67ad6f
DA
370
371# Stage specific cflags for build.
b8dad04b 372stage1_cflags=
5b67ad6f
DA
373case $build in
374vax-*-*)
375 if test x$GCC = xyes
376 then
b8dad04b 377 stage1_cflags="-Wa,-J"
5b67ad6f 378 else
b8dad04b 379 stage1_cflags="-J"
5b67ad6f
DA
380 fi
381 ;;
382esac
b8dad04b 383AC_SUBST(stage1_cflags)
61842080 384
e9a25f70
JL
385AC_PROG_MAKE_SET
386
ab339d62 387AC_MSG_CHECKING([whether a default assembler was specified])
3ccc3a56 388if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
e154a394 389 if test x"$gas_flag" = x"no"; then
3ccc3a56 390 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
ab339d62 391 else
3ccc3a56 392 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
ab339d62
AO
393 fi
394else
395 AC_MSG_RESULT(no)
396fi
397
398AC_MSG_CHECKING([whether a default linker was specified])
3ccc3a56 399if test x"${DEFAULT_LINKER+set}" = x"set"; then
e154a394 400 if test x"$gnu_ld_flag" = x"no"; then
3ccc3a56 401 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
ab339d62 402 else
3ccc3a56 403 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
ab339d62
AO
404 fi
405else
406 AC_MSG_RESULT(no)
407fi
408
4070d885
AJ
409AC_MSG_CHECKING(for GNU C library)
410AC_CACHE_VAL(gcc_cv_glibc,
411[AC_TRY_COMPILE(
412 [#include <features.h>],[
413#if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
414#error Not a GNU C library system
415#endif],
416 [gcc_cv_glibc=yes],
417 gcc_cv_glibc=no)])
418AC_MSG_RESULT($gcc_cv_glibc)
c2f7d403 419if test $gcc_cv_glibc = yes; then
4070d885
AJ
420 AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
421fi
4797e955 422
603832a0
PT
423AC_C_INLINE
424
46f18e7b
RK
425# Find some useful tools
426AC_PROG_AWK
99e757d5
KG
427gcc_AC_PROG_LN
428gcc_AC_PROG_LN_S
429gcc_AC_C_VOLATILE
46f18e7b 430AC_PROG_RANLIB
99e757d5 431gcc_AC_PROG_INSTALL
46f18e7b 432
956d6950
JL
433AC_HEADER_STDC
434AC_HEADER_TIME
99e757d5 435gcc_AC_HEADER_STRING
e9831ca0 436AC_HEADER_SYS_WAIT
03c41c05
ZW
437AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h \
438 fcntl.h unistd.h stab.h sys/file.h sys/time.h \
439 sys/resource.h sys/param.h sys/times.h sys/stat.h \
16abe34a 440 direct.h malloc.h langinfo.h iconv.h)
7636d567 441
f24af81b
TT
442# Check for thread headers.
443AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
444AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
445
bcf12124
JL
446# See if GNAT has been installed
447AC_CHECK_PROG(gnat, gnatbind, yes, no)
448
955be633
JM
449# See if we have the mktemp command.
450AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
451
09fa0705
ZW
452# Do we have a single-tree copy of texinfo?
453if test -f $srcdir/../texinfo/Makefile.in; then
454 MAKEINFO='$(objdir)/../texinfo/makeinfo/makeinfo'
455 gcc_cv_prog_makeinfo_modern=yes
456 AC_MSG_RESULT([Using makeinfo from the unified source tree.])
457else
458 # See if makeinfo has been installed and is modern enough
459 # that we can use it.
460 gcc_AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
461 [GNU texinfo.* \([0-9][0-9.]*\)],
fd939e46 462 [4.*])
09fa0705
ZW
463fi
464
465if test $gcc_cv_prog_makeinfo_modern = no; then
466 AC_MSG_WARN([
467*** Makeinfo is missing or too old.
17db6582 468*** Info documentation will not be built.])
09fa0705 469 BUILD_INFO=
09fa0705
ZW
470else
471 BUILD_INFO=info AC_SUBST(BUILD_INFO)
09fa0705
ZW
472fi
473
3f896fc2
JM
474# Is pod2man recent enough to regenerate manpages?
475AC_MSG_CHECKING([for recent Pod::Man])
476if perl -e 'use 1.10 Pod::Man' >/dev/null 2>&1; then
fd939e46
JM
477 AC_MSG_RESULT(yes)
478 GENERATED_MANPAGES=generated-manpages AC_SUBST(GENERATED_MANPAGES)
479else
480 AC_MSG_RESULT(no)
481 GENERATED_MANPAGES=
482fi
483
1e608388
ZW
484# How about lex?
485dnl Don't use AC_PROG_LEX; we insist on flex.
486dnl LEXLIB is not useful in gcc.
487if test -f $srcdir/../flex/skel.c; then
488 FLEX='$(objdir)/../flex/flex'
489else
490 AC_CHECK_PROG(FLEX, flex, flex, false)
491fi
492
493# Bison?
494# The -L switch is so bison can find its skeleton file.
495if test -f $srcdir/../bison/bison.simple; then
496 BISON='$(objdir)/../bison/bison -L $(srcdir)/../bison/'
497else
498 AC_CHECK_PROG(BISON, bison, bison, false)
499fi
500
890ad3ea
KG
501# See if the stage1 system preprocessor understands the ANSI C
502# preprocessor stringification operator.
503AC_C_STRINGIZE
76844337 504
7636d567
JW
505# Use <inttypes.h> only if it exists,
506# doesn't clash with <sys/types.h>, and declares intmax_t.
507AC_MSG_CHECKING(for inttypes.h)
508AC_CACHE_VAL(gcc_cv_header_inttypes_h,
509[AC_TRY_COMPILE(
510 [#include <sys/types.h>
511#include <inttypes.h>],
512 [intmax_t i = -1;],
9da0e39b 513 [gcc_cv_header_inttypes_h=yes],
7636d567
JW
514 gcc_cv_header_inttypes_h=no)])
515AC_MSG_RESULT($gcc_cv_header_inttypes_h)
9da0e39b 516if test $gcc_cv_header_inttypes_h = yes; then
119d24d1
KG
517 AC_DEFINE(HAVE_INTTYPES_H, 1,
518 [Define if you have a working <inttypes.h> header file.])
9da0e39b 519fi
cdcc6a01 520
c149cc37
RL
521#
522# Determine if enumerated bitfields are unsigned. ISO C says they can
523# be either signed or unsigned.
524#
525AC_CACHE_CHECK(for unsigned enumerated bitfields, gcc_cv_enum_bf_unsigned,
526[AC_TRY_RUN(#include <stdlib.h>
527enum t { BLAH = 128 } ;
528struct s_t { enum t member : 8; } s ;
529int main(void)
530{
531 s.member = BLAH;
532 if (s.member < 0) exit(1);
533 exit(0);
534
535}, gcc_cv_enum_bf_unsigned=yes, gcc_cv_enum_bf_unsigned=no, gcc_cv_enum_bf_unsigned=yes)])
c149cc37
RL
536if test $gcc_cv_enum_bf_unsigned = yes; then
537 AC_DEFINE(ENUM_BITFIELDS_ARE_UNSIGNED, 1,
538 [Define if enumerated bitfields are treated as unsigned values.])
539fi
540
2e09e75a
JM
541AC_CHECK_FUNCS(strtoul bsearch putenv popen bcopy \
542 strchr strrchr kill getrlimit setrlimit atoll atoq \
54953b66 543 sysconf isascii gettimeofday strsignal putc_unlocked fputc_unlocked \
130fadbb 544 fputs_unlocked getrusage iconv nl_langinfo)
a81fb89e 545
f12bc141 546AC_CHECK_TYPE(ssize_t, int)
56f48ce9 547
e256b8b6
DA
548# Try to determine the array type of the second argument of getgroups
549# for the target system (int or gid_t).
550AC_TYPE_GETGROUPS
551if test "${target}" = "${build}"; then
552 TARGET_GETGROUPS_T=$ac_cv_type_getgroups
553else
554 case "${target}" in
555 # This condition may need some tweaking. It should include all
556 # targets where the array type of the second argument of getgroups
557 # is int and the type of gid_t is not equivalent to int.
558 *-*-sunos* | *-*-ultrix*)
559 TARGET_GETGROUPS_T=int
560 ;;
561 *)
562 TARGET_GETGROUPS_T=gid_t
563 ;;
564 esac
565fi
566AC_SUBST(TARGET_GETGROUPS_T)
567
99e757d5 568gcc_AC_FUNC_VFPRINTF_DOPRNT
b3e1e64f 569gcc_AC_FUNC_STRSTR
99e757d5 570gcc_AC_FUNC_PRINTF_PTR
b27d2bd5
MK
571
572case "${host}" in
573*-*-uwin*)
34fa3e7d
MM
574 AC_MSG_ERROR([
575*** UWIN may not be used as a host platform because
576*** linking with posix.dll is not allowed by the GNU GPL])
b27d2bd5
MK
577 ;;
578esac
c375c43b 579AC_FUNC_VFORK
4acab94b 580AC_FUNC_MMAP_ANYWHERE
56f02b88 581AC_FUNC_MMAP_FILE
f1b54f9b 582
86cf1cbd
KG
583# We will need to find libiberty.h and ansidecl.h
584saved_CFLAGS="$CFLAGS"
585CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
2e09e75a
JM
586gcc_AC_CHECK_DECLS(bcopy \
587 getenv atol sbrk abort atof getcwd getwd \
86cf1cbd 588 strsignal putc_unlocked fputs_unlocked strstr environ \
f31e826b 589 malloc realloc calloc free basename getopt, , ,[
86cf1cbd
KG
590#include "gansidecl.h"
591#include "system.h"])
c5c76735 592
f31e826b 593gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
86cf1cbd
KG
594#include "gansidecl.h"
595#include "system.h"
d2cabf16
KG
596#ifdef HAVE_SYS_RESOURCE_H
597#include <sys/resource.h>
598#endif
599])
600
86cf1cbd
KG
601# Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
602CFLAGS="$saved_CFLAGS"
603
75923b2f 604# mkdir takes a single argument on some systems.
99e757d5 605gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
75923b2f 606
46f18e7b
RK
607# File extensions
608manext='.1'
609objext='.o'
46f18e7b
RK
610AC_SUBST(manext)
611AC_SUBST(objext)
46f18e7b
RK
612
613build_xm_file=
61536478 614build_xm_defines=
46f18e7b
RK
615build_install_headers_dir=install-headers-tar
616build_exeext=
617host_xm_file=
61536478 618host_xm_defines=
46f18e7b
RK
619host_xmake_file=
620host_truncate_target=
6e26218f 621host_exeext=
46f18e7b
RK
622
623# Decode the host machine, then the target machine.
624# For the host machine, we save the xm_file variable as host_xm_file;
625# then we decode the target machine and forget everything else
626# that came from the host machine.
627for machine in $build $host $target; do
61ed06c3 628 . ${srcdir}/config.gcc
46f18e7b
RK
629done
630
631extra_objs="${host_extra_objs} ${extra_objs}"
632
633# Default the target-machine variables that were not explicitly set.
75bffa71 634if test x"$tm_file" = x
46f18e7b
RK
635then tm_file=$cpu_type/$cpu_type.h; fi
636
6b2adea9 637if test x"$extra_headers" = x
46f18e7b
RK
638then extra_headers=; fi
639
75bffa71 640if test x"$xm_file" = x
46f18e7b
RK
641then xm_file=$cpu_type/xm-$cpu_type.h; fi
642
75bffa71 643if test x$md_file = x
e98e406f 644then md_file=$cpu_type/$cpu_type.md; fi
46f18e7b 645
75bffa71 646if test x$out_file = x
46f18e7b
RK
647then out_file=$cpu_type/$cpu_type.c; fi
648
75bffa71 649if test x"$tmake_file" = x
46f18e7b
RK
650then tmake_file=$cpu_type/t-$cpu_type
651fi
652
90e6a802 653if test x"$dwarf2" = xyes
756ee602 654then tm_file="$tm_file tm-dwarf2.h"
90e6a802
RL
655fi
656
75bffa71 657if test x$float_format = x
46f18e7b
RK
658then float_format=i64
659fi
660
027ea2a7
JW
661if test $float_format = none
662then float_h_file=Makefile.in
663else float_h_file=float-$float_format.h
664fi
665
9fc9b82a 666# Handle cpp installation.
3ecc3258 667if test x$enable_cpp != xno
9fc9b82a
L
668then
669 tmake_file="$tmake_file t-install-cpp"
670fi
671
46f18e7b
RK
672# Say what files are being used for the output code and MD file.
673echo "Using \`$srcdir/config/$out_file' to output insns."
674echo "Using \`$srcdir/config/$md_file' as machine description file."
675
676count=a
677for f in $tm_file; do
678 count=${count}x
679done
75bffa71 680if test $count = ax; then
46f18e7b
RK
681 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
682else
683 echo "Using the following target machine macro files:"
684 for f in $tm_file; do
685 echo " $srcdir/config/$f"
686 done
687fi
688
689count=a
690for f in $host_xm_file; do
691 count=${count}x
692done
75bffa71 693if test $count = ax; then
46f18e7b
RK
694 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
695else
696 echo "Using the following host machine macro files:"
697 for f in $host_xm_file; do
698 echo " $srcdir/config/$f"
699 done
700fi
701
75bffa71 702if test "$host_xm_file" != "$build_xm_file"; then
46f18e7b
RK
703 count=a
704 for f in $build_xm_file; do
705 count=${count}x
706 done
75bffa71 707 if test $count = ax; then
46f18e7b
RK
708 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
709 else
710 echo "Using the following build machine macro files:"
711 for f in $build_xm_file; do
712 echo " $srcdir/config/$f"
713 done
714 fi
715fi
716
75bffa71
ILT
717if test x$thread_file = x; then
718 if test x$target_thread_file != x; then
a851212a
JW
719 thread_file=$target_thread_file
720 else
721 thread_file='single'
722 fi
46f18e7b 723fi
46f18e7b
RK
724
725# Set up the header files.
726# $links is the list of header files to create.
727# $vars is the list of shell variables with file names to include.
b7cb92ad 728# auto-host.h is the file containing items generated by autoconf and is
e9a25f70 729# the first file included by config.h.
61536478 730null_defines=
64ccbc99 731host_xm_file="auto-host.h gansidecl.h ${host_xm_file} hwint.h"
db81d74a 732
b7cb92ad 733# If host=build, it is correct to have hconfig include auto-host.h
db81d74a
RH
734# as well. If host!=build, we are in error and need to do more
735# work to find out the build config parameters.
75bffa71 736if test x$host = x$build
db81d74a 737then
64ccbc99 738 build_xm_file="auto-host.h gansidecl.h ${build_xm_file} hwint.h"
b7cb92ad
JL
739else
740 # We create a subdir, then run autoconf in the subdir.
741 # To prevent recursion we set host and build for the new
742 # invocation of configure to the build for this invocation
743 # of configure.
744 tempdir=build.$$
745 rm -rf $tempdir
746 mkdir $tempdir
747 cd $tempdir
748 case ${srcdir} in
b86ecfa9 749 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
b7cb92ad
JL
750 *) realsrcdir=../${srcdir};;
751 esac
fe81dd69 752 CC=${CC_FOR_BUILD} ${realsrcdir}/configure \
b7cb92ad
JL
753 --target=$target --host=$build --build=$build
754
755 # We just finished tests for the build machine, so rename
756 # the file auto-build.h in the gcc directory.
757 mv auto-host.h ../auto-build.h
758 cd ..
759 rm -rf $tempdir
64ccbc99 760 build_xm_file="auto-build.h gansidecl.h ${build_xm_file} hwint.h"
db81d74a
RH
761fi
762
0056a9b5
KG
763xm_file="gansidecl.h ${xm_file}"
764tm_file="gansidecl.h ${tm_file}"
765
6baf1cc8
BS
766vars="host_xm_file tm_file tm_p_file xm_file build_xm_file"
767links="config.h tm.h tm_p.h tconfig.h hconfig.h"
768defines="host_xm_defines null_defines null_defines xm_defines build_xm_defines"
46f18e7b
RK
769
770rm -f config.bak
75bffa71 771if test -f config.status; then mv -f config.status config.bak; fi
46f18e7b
RK
772
773# Make the links.
75bffa71 774while test -n "$vars"
46f18e7b 775do
46f18e7b
RK
776 set $vars; var=$1; shift; vars=$*
777 set $links; link=$1; shift; links=$*
61536478 778 set $defines; define=$1; shift; defines=$*
46f18e7b
RK
779
780 rm -f $link
6baf1cc8
BS
781 # Make sure the file is created, even if it is empty.
782 echo >$link
46f18e7b
RK
783
784 # Define TARGET_CPU_DEFAULT if the system wants one.
785 # This substitutes for lots of *.h files.
75bffa71 786 if test "$target_cpu_default" != "" -a $link = tm.h
46f18e7b 787 then
8fbf199e 788 echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
46f18e7b
RK
789 fi
790
791 for file in `eval echo '$'$var`; do
ab87f8c8 792 case $file in
6efa1582 793 auto-host.h | auto-build.h )
ab87f8c8
JL
794 ;;
795 *)
796 echo '#ifdef IN_GCC' >>$link
797 ;;
798 esac
46f18e7b 799 echo "#include \"$file\"" >>$link
ab87f8c8 800 case $file in
6efa1582 801 auto-host.h | auto-build.h )
ab87f8c8
JL
802 ;;
803 *)
804 echo '#endif' >>$link
805 ;;
806 esac
46f18e7b 807 done
61536478
JL
808
809 for def in `eval echo '$'$define`; do
810 echo "#ifndef $def" >>$link
811 echo "#define $def" >>$link
812 echo "#endif" >>$link
813 done
04d430b8
AO
814
815 if test $link = tm.h
816 then
817 # Include insn-codes.h last, because it includes machmode.h,
818 # and we want EXTRA_CC_MODES to be taken into account.
819 echo "#ifndef GENERATOR_FILE" >>$link
820 echo "#include \"insn-codes.h\"" >>$link
821 echo "#endif" >>$link
822 fi
46f18e7b
RK
823done
824
825# Truncate the target if necessary
75bffa71 826if test x$host_truncate_target != x; then
46f18e7b
RK
827 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
828fi
829
f1943b77 830# Get the version trigger filename from the toplevel
75bffa71 831if test "${with_gcc_version_trigger+set}" = set; then
f1943b77
MH
832 gcc_version_trigger=$with_gcc_version_trigger
833else
834 gcc_version_trigger=${srcdir}/version.c
835fi
75bffa71 836changequote(,)dnl
8763704d
JM
837gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
838gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
cc1e60ea
JM
839
840# Compile in configure arguments.
8105825d 841if test -f configargs.h ; then
cc1e60ea
JM
842 # Being re-configured.
843 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
844 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
845else
846 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
847fi
848cat > configargs.h <<EOF
849/* Generated automatically. */
850static const char configuration_arguments[] = "$gcc_config_arguments";
851EOF
75bffa71 852changequote([,])dnl
46f18e7b 853
ab87f8c8
JL
854# Internationalization
855PACKAGE=gcc
856VERSION="$gcc_version"
119d24d1
KG
857AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE",
858 [Define to the name of the distribution.])
859AC_DEFINE_UNQUOTED(VERSION, "$VERSION",
860 [Define to the version of the distribution.])
ab87f8c8
JL
861AC_SUBST(PACKAGE)
862AC_SUBST(VERSION)
863
2be36552 864ALL_LINGUAS="sv"
ab87f8c8 865
dc6746e7 866# Enable NLS support by default
ab87f8c8 867AC_ARG_ENABLE(nls,
dc6746e7
PT
868 [ --enable-nls use Native Language Support (default)],
869 , enable_nls=yes)
870
871# if cross compiling, disable NLS support.
872# It's not worth the trouble, at least for now.
873
063a4b85 874if test "${build}" != "${host}" && test "x$enable_nls" = "xyes"; then
dc6746e7
PT
875 AC_MSG_WARN(Disabling NLS support for canadian cross compiler.)
876 enable_nls=no
877fi
ab87f8c8 878
4adee315
PT
879# if NLS is enabled, also enable check in po subdir
880if test $enable_nls = yes; then
881 CHECK_PO=check-po
882else
883 CHECK_PO=""
884fi
885
886AC_SUBST(CHECK_PO)
887
ab87f8c8
JL
888AM_GNU_GETTEXT
889XGETTEXT="AWK='$AWK' \$(SHELL) \$(top_srcdir)/exgettext $XGETTEXT"
890
f4ab28e3
MK
891# Windows32 Registry support for specifying GCC installation paths.
892AC_ARG_ENABLE(win32-registry,
893[ --disable-win32-registry
894 Disable lookup of installation paths in the
895 Registry on Windows hosts.
896 --enable-win32-registry Enable registry lookup (default).
897 --enable-win32-registry=KEY
898 Use KEY instead of GCC version as the last portion
899 of the registry key.],,)
900
901AC_MSG_CHECKING(whether windows registry support is requested)
902if test x$enable_win32_registry != xno; then
119d24d1
KG
903 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
904[Define to 1 if installation paths should be looked up in Windows32
91029a29 905 Registry. Ignored on non windows32 hosts.])
f4ab28e3
MK
906 AC_MSG_RESULT(yes)
907else
908 AC_MSG_RESULT(no)
909fi
910
911# Check if user specified a different registry key.
912case x${enable_win32_registry} in
913x | xyes)
914 # default.
915 gcc_cv_win32_registry_key="$VERSION"
916 ;;
917xno)
918 # no registry lookup.
919 gcc_cv_win32_registry_key=''
920 ;;
921*)
922 # user-specified key.
923 gcc_cv_win32_registry_key="$enable_win32_registry"
924 ;;
925esac
926
927if test x$enable_win32_registry != xno; then
928 AC_MSG_CHECKING(registry key on windows hosts)
119d24d1
KG
929 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key",
930 [Define to be the last portion of registry key on windows hosts.])
f4ab28e3
MK
931 AC_MSG_RESULT($gcc_cv_win32_registry_key)
932fi
933
7fa10b25
RK
934# Get an absolute path to the GCC top-level source directory
935holddir=`pwd`
936cd $srcdir
937topdir=`pwd`
938cd $holddir
939
af5e4ada 940# Conditionalize the makefile for this host machine.
94f42018
DE
941# Make-host contains the concatenation of all host makefile fragments
942# [there can be more than one]. This file is built by configure.frag.
943host_overrides=Make-host
af5e4ada 944dep_host_xmake_file=
94f42018
DE
945for f in .. ${host_xmake_file}
946do
75bffa71 947 if test -f ${srcdir}/config/$f
94f42018
DE
948 then
949 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
950 fi
951done
46f18e7b 952
af5e4ada 953# Conditionalize the makefile for this target machine.
94f42018
DE
954# Make-target contains the concatenation of all host makefile fragments
955# [there can be more than one]. This file is built by configure.frag.
956target_overrides=Make-target
af5e4ada 957dep_tmake_file=
94f42018
DE
958for f in .. ${tmake_file}
959do
75bffa71 960 if test -f ${srcdir}/config/$f
94f42018
DE
961 then
962 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
963 fi
964done
5891b37d 965
af5e4ada
DE
966# If the host doesn't support symlinks, modify CC in
967# FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
968# Otherwise, we can use "CC=$(CC)".
969rm -f symtest.tem
61536478 970if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
af5e4ada
DE
971then
972 cc_set_by_configure="\$(CC)"
5aa82ace 973 quoted_cc_set_by_configure="\$(CC)"
af5e4ada
DE
974 stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
975else
61536478
JL
976 rm -f symtest.tem
977 if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
978 then
979 symbolic_link="cp -p"
980 else
981 symbolic_link="cp"
982 fi
af5e4ada 983 cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
5aa82ace 984 quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
af5e4ada
DE
985 stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
986fi
987rm -f symtest.tem
5891b37d 988
af5e4ada 989out_object_file=`basename $out_file .c`.o
5891b37d 990
af5e4ada
DE
991tm_file_list=
992for f in $tm_file; do
64ccbc99
KG
993 case $f in
994 gansidecl.h )
995 tm_file_list="${tm_file_list} $f" ;;
996 *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
997 esac
af5e4ada 998done
46f18e7b 999
af5e4ada
DE
1000host_xm_file_list=
1001for f in $host_xm_file; do
64ccbc99
KG
1002 case $f in
1003 auto-host.h | gansidecl.h | hwint.h )
1004 host_xm_file_list="${host_xm_file_list} $f" ;;
1005 *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
1006 esac
af5e4ada
DE
1007done
1008
1009build_xm_file_list=
1010for f in $build_xm_file; do
64ccbc99
KG
1011 case $f in
1012 auto-build.h | auto-host.h | gansidecl.h | hwint.h )
1013 build_xm_file_list="${build_xm_file_list} $f" ;;
1014 *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
1015 esac
af5e4ada 1016done
46f18e7b 1017
af5e4ada
DE
1018# Define macro CROSS_COMPILE in compilation
1019# if this is a cross-compiler.
1020# Also use all.cross instead of all.internal
1021# and add cross-make to Makefile.
571a8de5 1022cross_overrides="/dev/null"
75bffa71 1023if test x$host != x$target
af5e4ada
DE
1024then
1025 cross_defines="CROSS=-DCROSS_COMPILE"
1026 cross_overrides="${topdir}/cross-make"
1027fi
46f18e7b 1028
b39d221a
EC
1029# If this is a cross-compiler that does not
1030# have its own set of headers then define
1031# inhibit_libc
1032
1033# If this is using newlib, then define inhibit_libc in
1034# LIBGCC2_CFLAGS. This will cause __eprintf to be left out of
1035# libgcc.a, but that's OK because newlib should have its own version of
1036# assert.h.
1037inhibit_libc=
1038if [test x$host != x$target] && [test x$with_headers = x]; then
1039 inhibit_libc=-Dinhibit_libc
1040else
1041 if [test x$with_newlib = xyes]; then
1042 inhibit_libc=-Dinhibit_libc
1043 fi
1044fi
1045AC_SUBST(inhibit_libc)
1046
af5e4ada
DE
1047# When building gcc with a cross-compiler, we need to fix a few things.
1048# This must come after cross-make as we want all.build to override
1049# all.cross.
571a8de5 1050build_overrides="/dev/null"
75bffa71 1051if test x$build != x$host
af5e4ada
DE
1052then
1053 build_overrides="${topdir}/build-make"
1054fi
46f18e7b 1055
ae3a15bb
DE
1056# Expand extra_headers to include complete path.
1057# This substitutes for lots of t-* files.
1058extra_headers_list=
75bffa71 1059if test "x$extra_headers" = x
ae3a15bb
DE
1060then true
1061else
1062 # Prepend ${srcdir}/ginclude/ to every entry in extra_headers.
1063 for file in $extra_headers;
1064 do
1065 extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/${file}"
1066 done
1067fi
1068
75bffa71 1069if test x$use_collect2 = xno; then
2ce3c6c6
JM
1070 use_collect2=
1071fi
1072
af5e4ada
DE
1073# Add a definition of USE_COLLECT2 if system wants one.
1074# Also tell toplev.c what to do.
1075# This substitutes for lots of t-* files.
75bffa71 1076if test x$use_collect2 = x
af5e4ada
DE
1077then
1078 will_use_collect2=
1079 maybe_use_collect2=
1080else
10da1131 1081 will_use_collect2="collect2"
af5e4ada
DE
1082 maybe_use_collect2="-DUSE_COLLECT2"
1083fi
1084
af5e4ada 1085# If we have gas in the build tree, make a link to it.
75bffa71 1086if test -f ../gas/Makefile; then
6e26218f 1087 rm -f as; $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
af5e4ada
DE
1088fi
1089
4b95eb49 1090# If we have nm in the build tree, make a link to it.
75bffa71 1091if test -f ../binutils/Makefile; then
4b95eb49
JL
1092 rm -f nm; $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
1093fi
1094
af5e4ada 1095# If we have ld in the build tree, make a link to it.
75bffa71
ILT
1096if test -f ../ld/Makefile; then
1097# if test x$use_collect2 = x; then
6e26218f 1098# rm -f ld; $symbolic_link ../ld/ld-new$host_exeext ld$host_exeext 2>/dev/null
aa32d841 1099# else
6e26218f 1100 rm -f collect-ld; $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext 2>/dev/null
aa32d841 1101# fi
af5e4ada
DE
1102fi
1103
981d4858
JM
1104# Figure out what assembler we will be using.
1105AC_MSG_CHECKING(what assembler to use)
9e423e6d 1106gcc_cv_as=
981d4858
JM
1107gcc_cv_gas_major_version=
1108gcc_cv_gas_minor_version=
a2f319ea 1109gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
3ccc3a56
AO
1110if test -x "$DEFAULT_ASSEMBLER"; then
1111 gcc_cv_as="$DEFAULT_ASSEMBLER"
1112elif test -x "$AS"; then
1113 gcc_cv_as="$AS"
ab339d62 1114elif test -x as$host_exeext; then
9e423e6d
JW
1115 # Build using assembler in the current directory.
1116 gcc_cv_as=./as$host_exeext
5585c1bc 1117elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
9e423e6d 1118 # Single tree build which includes gas.
a2c9d57c 1119 for f in $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
9e423e6d 1120 do
75bffa71
ILT
1121changequote(,)dnl
1122 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
1123changequote([,])dnl
1124 if test x$gcc_cv_gas_version != x; then
9e423e6d
JW
1125 break
1126 fi
1127 done
75bffa71
ILT
1128changequote(,)dnl
1129 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
1130 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1131changequote([,])dnl
981d4858
JM
1132fi
1133
1134if test "x$gcc_cv_as" = x -a x$host = x$target; then
9e423e6d 1135 # Native build.
779243f7
JL
1136 # Search the same directories that the installed compiler will
1137 # search. Else we may find the wrong assembler and lose. If we
1138 # do not find a suitable assembler binary, then try the user's
1139 # path.
1140 #
1141 # Also note we have to check MD_EXEC_PREFIX before checking the
1142 # user's path. Unfortunately, there is no good way to get at the
1143 # value of MD_EXEC_PREFIX here. So we do a brute force search
1144 # through all the known MD_EXEC_PREFIX values. Ugh. This needs
1145 # to be fixed as part of the make/configure rewrite too.
1146
1147 if test "x$exec_prefix" = xNONE; then
1148 if test "x$prefix" = xNONE; then
1149 test_prefix=/usr/local
1150 else
1151 test_prefix=$prefix
1152 fi
1153 else
1154 test_prefix=$exec_prefix
1155 fi
1156
1157 # If the loop below does not find an assembler, then use whatever
1158 # one we can find in the users's path.
1159 # user's path.
1160 as=as$host_exeext
1161
1162 test_dirs="$test_prefix/lib/gcc-lib/$target/$gcc_version \
1163 $test_prefix/lib/gcc-lib/$target \
1164 /usr/lib/gcc/$target/$gcc_version \
1165 /usr/lib/gcc/$target \
1166 $test_prefix/$target/bin/$target/$gcc_version \
1167 $test_prefix/$target/bin \
1168 /usr/libexec \
1169 /usr/ccs/gcc \
1170 /usr/ccs/bin \
1171 /udk/usr/ccs/bin \
1172 /bsd43/usr/lib/cmplrs/cc \
1173 /usr/cross64/usr/bin \
1174 /usr/lib/cmplrs/cc \
1175 /sysv/usr/lib/cmplrs/cc \
1176 /svr4/usr/lib/cmplrs/cc \
1177 /usr/bin"
1178
1179 for dir in $test_dirs; do
1180 if test -f $dir/as$host_exeext; then
1181 gcc_cv_as=$dir/as$host_exeext
1182 break;
1183 fi
1184 done
9e423e6d 1185fi
981d4858
JM
1186if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1187 AC_MSG_RESULT("newly built gas")
1188else
1189 AC_MSG_RESULT($gcc_cv_as)
1190fi
1191
1192# Figure out what nm we will be using.
1193AC_MSG_CHECKING(what nm to use)
1194if test -x nm$host_exeext; then
1195 gcc_cv_nm=./nm$host_exeext
1196elif test x$host = x$target; then
1197 # Native build.
1198 gcc_cv_nm=nm$host_exeext
1199fi
1200AC_MSG_RESULT($gcc_cv_nm)
1201
1202# Figure out what assembler alignment features are present.
1203AC_MSG_CHECKING(assembler alignment features)
9d147085 1204gcc_cv_as_alignment_features=none
981d4858
JM
1205if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1206 # Gas version 2.6 and later support for .balign and .p2align.
1207 # bytes to skip when using .p2align.
1208 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
1209 gcc_cv_as_alignment_features=".balign and .p2align"
1210 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1211 fi
1212 # Gas version 2.8 and later support specifying the maximum
1213 # bytes to skip when using .p2align.
1214 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
1215 gcc_cv_as_alignment_features=".p2align including maximum skip"
1216 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1217 fi
1218elif test x$gcc_cv_as != x; then
00ccc16d
JL
1219 # Check if we have .balign and .p2align
1220 echo ".balign 4" > conftest.s
1221 echo ".p2align 2" >> conftest.s
1222 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1223 gcc_cv_as_alignment_features=".balign and .p2align"
1224 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1225 fi
1226 rm -f conftest.s conftest.o
9e423e6d
JW
1227 # Check if specifying the maximum bytes to skip when
1228 # using .p2align is supported.
1229 echo ".p2align 4,,7" > conftest.s
1230 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1231 gcc_cv_as_alignment_features=".p2align including maximum skip"
1232 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1233 fi
1234 rm -f conftest.s conftest.o
1235fi
1236AC_MSG_RESULT($gcc_cv_as_alignment_features)
1237
d1accaa3 1238AC_MSG_CHECKING(assembler subsection support)
9d147085 1239gcc_cv_as_subsections=no
981d4858
JM
1240if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1241 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
1242 gcc_cv_as_subsections="working .subsection -1"
1243 fi
1244elif test x$gcc_cv_as != x; then
d1accaa3
JJ
1245 # Check if we have .subsection
1246 echo ".subsection 1" > conftest.s
1247 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1248 gcc_cv_as_subsections=".subsection"
d1accaa3
JJ
1249 if test x$gcc_cv_nm != x; then
1250 cat > conftest.s <<EOF
1251conftest_label1: .word 0
1252.subsection -1
1253conftest_label2: .word 0
1254.previous
1255EOF
1256 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1257 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
1258 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1b015bec
AO
1259 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
1260 :
1261 else
d1accaa3 1262 gcc_cv_as_subsections="working .subsection -1"
d1accaa3
JJ
1263 fi
1264 fi
1265 fi
1266 fi
1267 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1268fi
981d4858
JM
1269if test x"$gcc_cv_as_subsections" = x"working .subsection -1"; then
1270 AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
1271[Define if your assembler supports .subsection and .subsection -1 starts
1272 emitting at the beginning of your section.])
1273fi
d1accaa3
JJ
1274AC_MSG_RESULT($gcc_cv_as_subsections)
1275
12822146 1276AC_MSG_CHECKING(assembler weak support)
9d147085 1277gcc_cv_as_weak=no
981d4858
JM
1278if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1279 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
1280 gcc_cv_as_weak="yes"
1281 fi
1282elif test x$gcc_cv_as != x; then
12822146
JL
1283 # Check if we have .weak
1284 echo " .weak foobar" > conftest.s
1285 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
12822146
JL
1286 gcc_cv_as_weak="yes"
1287 fi
1288 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1289fi
981d4858
JM
1290if test x"$gcc_cv_as_weak" = xyes; then
1291 AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])
1292fi
12822146
JL
1293AC_MSG_RESULT($gcc_cv_as_weak)
1294
6a9c5260 1295AC_MSG_CHECKING(assembler hidden support)
9d147085 1296gcc_cv_as_hidden=no
981d4858
JM
1297if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1298 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
1299 gcc_cv_as_hidden="yes"
1300 fi
1301elif test x$gcc_cv_as != x; then
6a9c5260
UD
1302 # Check if we have .hidden
1303 echo " .hidden foobar" > conftest.s
1304 echo "foobar:" >> conftest.s
1305 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6a9c5260
UD
1306 gcc_cv_as_hidden="yes"
1307 fi
1308 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1309fi
981d4858
JM
1310if test x"$gcc_cv_as_hidden" = xyes; then
1311 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
1312 [Define if your assembler supports .hidden.])
1313fi
6a9c5260
UD
1314AC_MSG_RESULT($gcc_cv_as_hidden)
1315
1cb36a98
RH
1316case "$target" in
1317 sparc*-*-*)
5b68c389
AO
1318 AC_CACHE_CHECK([assembler .register pseudo-op support],
1319 gcc_cv_as_register_pseudo_op, [
1320 gcc_cv_as_register_pseudo_op=unknown
1321 if test x$gcc_cv_as != x; then
1322 # Check if we have .register
1323 echo ".register %g2, #scratch" > conftest.s
1324 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1cb36a98 1325 gcc_cv_as_register_pseudo_op=yes
5b68c389
AO
1326 else
1327 gcc_cv_as_register_pseudo_op=no
1328 fi
1329 rm -f conftest.s conftest.o
1cb36a98 1330 fi
5b68c389
AO
1331 ])
1332 if test "x$gcc_cv_as_register_pseudo_op" = xyes; then
119d24d1
KG
1333 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
1334 [Define if your assembler supports .register.])
1cb36a98 1335 fi
1cb36a98 1336
e95b1e6a
JJ
1337 AC_CACHE_CHECK([assembler supports -relax],
1338 gcc_cv_as_relax_opt, [
1339 gcc_cv_as_relax_opt=unknown
1340 if test x$gcc_cv_as != x; then
1341 # Check if gas supports -relax
1342 echo ".text" > conftest.s
1343 if $gcc_cv_as -relax -o conftest.o conftest.s > /dev/null 2>&1; then
1344 gcc_cv_as_relax_opt=yes
1345 else
1346 gcc_cv_as_relax_opt=no
1347 fi
1348 rm -f conftest.s conftest.o
1349 fi
1350 ])
1351 if test "x$gcc_cv_as_relax_opt" = xyes; then
1352 AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
1353 [Define if your assembler supports -relax option.])
1354 fi
1355
5b68c389
AO
1356 case "$tm_file" in
1357 *64*)
1358 AC_CACHE_CHECK([for 64 bit support in assembler ($gcc_cv_as)],
1359 gcc_cv_as_flags64, [
1360 if test -n "$gcc_cv_as"; then
1361 echo ".xword foo" > conftest.s
1362 gcc_cv_as_flags64=no
8a90b95d 1363 for flag in "-xarch=v9" "-64 -Av9"; do
5b68c389
AO
1364 if $gcc_cv_as $flag -o conftest.o conftest.s \
1365 > /dev/null 2>&1; then
1366 gcc_cv_as_flags64=$flag
1367 break
1368 fi
1369 done
1370 rm -f conftest.s conftest.o
1371 else
1372 if test "$gas" = yes; then
1373 gcc_cv_as_flags64="-64 -Av9"
1374 else
1375 gcc_cv_as_flags64="-xarch=v9"
1376 fi
1cb36a98 1377 fi
5b68c389
AO
1378 ])
1379 if test "x$gcc_cv_as_flags64" = xno; then
1380changequote(, )
1381 tmake_file=`echo " $tmake_file " | sed -e 's, sparc/t-sol2-64 , ,' -e 's,^ ,,' -e 's, $,,'`
1382 dep_tmake_file=`echo " $dep_tmake_file " | sed -e 's, [^ ]*/config/sparc/t-sol2-64 , ,' -e 's,^ ,,' -e 's, $,,'`
1383changequote([, ])
1384 else
119d24d1
KG
1385 AC_DEFINE_UNQUOTED(AS_SPARC64_FLAG, "$gcc_cv_as_flags64",
1386 [Define if the assembler supports 64bit sparc.])
1cb36a98 1387 fi
5b68c389
AO
1388 ;;
1389 *) gcc_cv_as_flags64=${gcc_cv_as_flags64-no}
1390 ;;
1391 esac
1392
1393 if test "x$gcc_cv_as_flags64" != xno; then
1394 AC_CACHE_CHECK([for assembler offsetable %lo() support],
1395 gcc_cv_as_offsetable_lo10, [
1396 gcc_cv_as_offsetable_lo10=unknown
1397 if test "x$gcc_cv_as" != x; then
1398 # Check if assembler has offsetable %lo()
1399 echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
1400 echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
1401 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s \
1402 > /dev/null 2>&1 &&
1403 $gcc_cv_as $gcc_cv_as_flags64 -o conftest1.o conftest1.s \
1404 > /dev/null 2>&1; then
1405 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
1406 gcc_cv_as_offsetable_lo10=no
1407 else
1408 gcc_cv_as_offsetable_lo10=yes
1409 fi
1410 else
1411 gcc_cv_as_offsetable_lo10=no
1cb36a98 1412 fi
5b68c389
AO
1413 rm -f conftest.s conftest.o conftest1.s conftest1.o
1414 fi
1415 ])
1416 if test "x$gcc_cv_as_offsetable_lo10" = xyes; then
119d24d1
KG
1417 AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
1418 [Define if your assembler supports offsetable %lo().])
1cb36a98 1419 fi
1cb36a98 1420 fi
1cb36a98
RH
1421 ;;
1422
1423changequote(,)dnl
1424 i[34567]86-*-*)
1425changequote([,])dnl
1426 AC_MSG_CHECKING(assembler instructions)
1427 gcc_cv_as_instructions=
981d4858
JM
1428 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1429 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
1430 gcc_cv_as_instructions="filds fists"
1431 fi
1432 elif test x$gcc_cv_as != x; then
53b5ce19
JW
1433 set "filds fists" "filds mem; fists mem"
1434 while test $# -gt 0
1435 do
1436 echo "$2" > conftest.s
1437 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1438 gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
53b5ce19
JW
1439 fi
1440 shift 2
1441 done
1442 rm -f conftest.s conftest.o
1cb36a98 1443 fi
981d4858 1444 if test x"$gcc_cv_as_instructions" != x; then
ee7692d2 1445 AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | sed -e 's/ $//' | tr '[a-z ]' '[A-Z_]'`)
981d4858 1446 fi
1cb36a98
RH
1447 AC_MSG_RESULT($gcc_cv_as_instructions)
1448 ;;
1449esac
53b5ce19 1450
9d147085
RH
1451AC_MSG_CHECKING(assembler dwarf2 debug_line support)
1452gcc_cv_as_dwarf2_debug_line=no
1453# ??? Not all targets support dwarf2 debug_line, even within a version
1454# of gas. Moreover, we need to emit a valid instruction to trigger any
1455# info to the output file. So, as supported targets are added to gas 2.11,
1456# add some instruction here to (also) show we expect this might work.
1457# ??? Once 2.11 is released, probably need to add first known working
1458# version to the per-target configury.
1459case "$target" in
e6978109 1460 i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-*)
9d147085
RH
1461 insn="nop"
1462 ;;
1463 ia64*-*-*)
1464 insn="nop 0"
1465 ;;
1466 esac
1467if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
1468then
1469 if test "$gcc_cv_gas_major_version" -eq 2 \
1470 -a "$gcc_cv_gas_minor_version" -ge 11 \
1471 -o "$gcc_cv_gas_major_version" -gt 2 \
1472 && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1473 && test x"$insn" != x ; then
1474 gcc_cv_as_dwarf2_debug_line="yes"
1475 fi
1476elif test x$gcc_cv_as != x -a x"$insn" != x ; then
1477 echo ' .file 0 "conftest.s"' > conftest.s
1478 echo ' .loc 0 3 0' >> conftest.s
1479 echo " $insn" >> conftest.s
1480 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
1481 && grep debug_line conftest.o > /dev/null 2>&1 ; then
1482 gcc_cv_as_dwarf2_debug_line="yes"
1483 fi
1484 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1485fi
1486if test x"$gcc_cv_as_dwarf2_debug_line" = xyes; then
1487 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
1488 [Define if your assembler supports dwarf2 .file/.loc directives.])
1489fi
1490AC_MSG_RESULT($gcc_cv_as_dwarf2_debug_line)
1491
571a8de5 1492# Figure out what language subdirectories are present.
71205e0b
MH
1493# Look if the user specified --enable-languages="..."; if not, use
1494# the environment variable $LANGUAGES if defined. $LANGUAGES might
1495# go away some day.
1496if test x"${enable_languages+set}" != xset; then
1497 if test x"${LANGUAGES+set}" = xset; then
1498 enable_languages="`echo ${LANGUAGES} | tr ' ' ','`"
1499 else
1500 enable_languages=all
1501 fi
d6c6b553
PE
1502else
1503 if test x"${enable_languages}" = x; then
1504 AC_MSG_ERROR([--enable-languages needs at least one argument])
1505 fi
71205e0b 1506fi
571a8de5
DE
1507subdirs=
1508for lang in ${srcdir}/*/config-lang.in ..
1509do
1510 case $lang in
1511 ..) ;;
1512 # The odd quoting in the next line works around
1513 # an apparent bug in bash 1.12 on linux.
75bffa71
ILT
1514changequote(,)dnl
1515 ${srcdir}/[*]/config-lang.in) ;;
71205e0b
MH
1516 *)
1517 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
2b60b2cb
AO
1518 this_lang_libs=`sed -n -e 's,^target_libs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^target_libs=\([^ ]*\).*$,\1,p' $lang`
1519 build_by_default=`sed -n -e 's,^build_by_default=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^build_by_default=\([^ ]*\).*$,\1,p' $lang`
71205e0b
MH
1520 if test "x$lang_alias" = x
1521 then
1522 echo "$lang doesn't set \$language." 1>&2
1523 exit 1
1524 fi
2b60b2cb
AO
1525 case ${build_by_default},${enable_languages}, in
1526 *,$lang_alias,*) add_this_lang=yes ;;
1527 no,*) add_this_lang=no ;;
1528 *,all,*) add_this_lang=yes ;;
1529 *) add_this_lang=no ;;
1530 esac
71205e0b
MH
1531 if test x"${add_this_lang}" = xyes; then
1532 case $lang in
1533 ${srcdir}/ada/config-lang.in)
1534 if test x$gnat = xyes ; then
1535 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
1536 fi
1537 ;;
1538 *)
1539 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
1540 ;;
1541 esac
1542 fi
1543 ;;
75bffa71 1544changequote([,])dnl
571a8de5
DE
1545 esac
1546done
1547
f24af81b
TT
1548# Make gthr-default.h if we have a thread file.
1549gthread_flags=
75bffa71 1550if test $thread_file != single; then
f24af81b 1551 rm -f gthr-default.h
db0d1ed9 1552 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
f24af81b
TT
1553 gthread_flags=-DHAVE_GTHR_DEFAULT
1554fi
1555AC_SUBST(gthread_flags)
1556
81bf3d9e
RH
1557# Find out what GC implementation we want, or may, use.
1558AC_ARG_WITH(gc,
1559[ --with-gc={simple,page} Choose the garbage collection mechanism to use
1560 with the compiler.],
1561[case "$withval" in
1562 simple | page)
1563 GGC=ggc-$withval
1564 ;;
1565 *)
1566 AC_MSG_ERROR([$withval is an invalid option to --with-gc])
1567 ;;
1568esac],
130fadbb 1569[GGC=ggc-page])
81bf3d9e
RH
1570AC_SUBST(GGC)
1571echo "Using $GGC for garbage collection."
1572
3c809ba4 1573# Use the system's zlib library.
b8dad04b
ZW
1574zlibdir=-L../zlib
1575zlibinc="-I\$(srcdir)/../zlib"
3c809ba4
AG
1576AC_ARG_WITH(system-zlib,
1577[ --with-system-zlib use installed libz],
1578zlibdir=
1579zlibinc=
1580)
1581AC_SUBST(zlibdir)
1582AC_SUBST(zlibinc)
1583
7441a352
NS
1584# Build a new-abi (c++) system
1585AC_ARG_ENABLE(new-gxx-abi,
1586[ --enable-new-gxx-abi
1587 select the new abi for g++. You must select an ABI
1588 at configuration time, so that the correct runtime
1589 support is built. You cannot mix ABIs.],
67c72a63
MM
1590 ,
1591 enable_new_gxx_abi=yes)
1592
1593if test x$enable_new_gxx_abi = xyes; then
1594 AC_DEFINE(ENABLE_NEW_GXX_ABI, 1,
1595 [Define if you want to always select the new-abi for g++.])
1596 GXX_ABI_FLAG='-fnew-abi'
1597else
1598 GXX_ABI_FLAG=
1599fi
7441a352
NS
1600AC_SUBST(GXX_ABI_FLAG)
1601
119d24d1
KG
1602AC_DEFINE_UNQUOTED(ENABLE_STD_NAMESPACE, $ac_esn,
1603 [Define to 1 if you want to enable namespaces (-fhonor-std) by default.])
be5aeb60 1604AC_SUBST(HAVE_LIBSTDCXX_V3)
7822500a 1605
dc6746e7
PT
1606dnl Very limited version of automake's enable-maintainer-mode
1607
1608AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
1609 dnl maintainer-mode is disabled by default
1610 AC_ARG_ENABLE(maintainer-mode,
1611[ --enable-maintainer-mode enable make rules and dependencies not useful
1612 (and sometimes confusing) to the casual installer],
1613 maintainer_mode=$enableval,
1614 maintainer_mode=no)
1615
1616AC_MSG_RESULT($maintainer_mode)
1617
1618if test "$maintainer_mode" = "yes"; then
1619 MAINT=''
1620else
1621 MAINT='#'
1622fi
1623AC_SUBST(MAINT)dnl
1624
571a8de5
DE
1625# Make empty files to contain the specs and options for each language.
1626# Then add #include lines to for a compiler that has specs and/or options.
1627
1628lang_specs_files=
1629lang_options_files=
3103b7db
ML
1630lang_tree_files=
1631rm -f specs.h options.h gencheck.h
1632touch specs.h options.h gencheck.h
571a8de5
DE
1633for subdir in . $subdirs
1634do
75bffa71 1635 if test -f $srcdir/$subdir/lang-specs.h; then
571a8de5
DE
1636 echo "#include \"$subdir/lang-specs.h\"" >>specs.h
1637 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
1638 fi
75bffa71 1639 if test -f $srcdir/$subdir/lang-options.h; then
571a8de5
DE
1640 echo "#include \"$subdir/lang-options.h\"" >>options.h
1641 lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
1642 fi
3103b7db
ML
1643 if test -f $srcdir/$subdir/$subdir-tree.def; then
1644 echo "#include \"$subdir/$subdir-tree.def\"" >>gencheck.h
1645 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
1646 fi
571a8de5
DE
1647done
1648
1649# These (without "all_") are set in each config-lang.in.
1650# `language' must be a single word so is spelled singularly.
1651all_languages=
1652all_boot_languages=
1653all_compilers=
1654all_stagestuff=
1655all_diff_excludes=
3ec83fc2 1656all_outputs='Makefile intl/Makefile po/Makefile.in fixinc/Makefile gccbug mklibgcc'
571a8de5
DE
1657# List of language makefile fragments.
1658all_lang_makefiles=
1659all_headers=
1660all_lib2funcs=
1661
1662# Add the language fragments.
1663# Languages are added via two mechanisms. Some information must be
1664# recorded in makefile variables, these are defined in config-lang.in.
1665# We accumulate them and plug them into the main Makefile.
1666# The other mechanism is a set of hooks for each of the main targets
1667# like `clean', `install', etc.
1668
1669language_fragments="Make-lang"
1670language_hooks="Make-hooks"
1671
1672for s in .. $subdirs
1673do
75bffa71 1674 if test $s != ".."
571a8de5
DE
1675 then
1676 language=
1677 boot_language=
1678 compilers=
1679 stagestuff=
1680 diff_excludes=
1681 headers=
0280cf84 1682 outputs=
571a8de5
DE
1683 lib2funcs=
1684 . ${srcdir}/$s/config-lang.in
75bffa71 1685 if test "x$language" = x
571a8de5
DE
1686 then
1687 echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
1688 exit 1
1689 fi
72aaffbd
ZW
1690 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in"
1691 if test -f ${srcdir}/$s/Makefile.in
1692 then all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Makefile.in"
1693 fi
571a8de5 1694 all_languages="$all_languages $language"
75bffa71 1695 if test "x$boot_language" = xyes
571a8de5
DE
1696 then
1697 all_boot_languages="$all_boot_languages $language"
1698 fi
1699 all_compilers="$all_compilers $compilers"
1700 all_stagestuff="$all_stagestuff $stagestuff"
1701 all_diff_excludes="$all_diff_excludes $diff_excludes"
1702 all_headers="$all_headers $headers"
0280cf84 1703 all_outputs="$all_outputs $outputs"
571a8de5
DE
1704 all_lib2funcs="$all_lib2funcs $lib2funcs"
1705 fi
1706done
1707
1708# Since we can't use `::' targets, we link each language in
1709# with a set of hooks, reached indirectly via lang.${target}.
1710
1711rm -f Make-hooks
1712touch Make-hooks
1713target_list="all.build all.cross start.encap rest.encap \
1714 info dvi \
1715 install-normal install-common install-info install-man \
436a88a6 1716 uninstall \
571a8de5
DE
1717 mostlyclean clean distclean extraclean maintainer-clean \
1718 stage1 stage2 stage3 stage4"
1719for t in $target_list
1720do
1721 x=
ab87f8c8 1722 for lang in .. $all_languages
571a8de5 1723 do
ab87f8c8
JL
1724 if test $lang != ".."; then
1725 x="$x $lang.$t"
571a8de5
DE
1726 fi
1727 done
1728 echo "lang.$t: $x" >> Make-hooks
1729done
1730
296e46bd
DE
1731# If we're not building in srcdir, create .gdbinit.
1732
75bffa71 1733if test ! -f Makefile.in; then
296e46bd
DE
1734 echo "dir ." > .gdbinit
1735 echo "dir ${srcdir}" >> .gdbinit
75bffa71 1736 if test x$gdb_needs_out_file_path = xyes
296e46bd
DE
1737 then
1738 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
1739 fi
75bffa71 1740 if test "x$subdirs" != x; then
296e46bd
DE
1741 for s in $subdirs
1742 do
1743 echo "dir ${srcdir}/$s" >> .gdbinit
1744 done
1745 fi
1746 echo "source ${srcdir}/.gdbinit" >> .gdbinit
1747fi
1748
88111b26
JL
1749# Define variables host_canonical and build_canonical
1750# because some Cygnus local changes in the Makefile depend on them.
1751build_canonical=${build}
1752host_canonical=${host}
1753target_subdir=
75bffa71 1754if test "${host}" != "${target}" ; then
88111b26
JL
1755 target_subdir=${target}/
1756fi
1757AC_SUBST(build_canonical)
1758AC_SUBST(host_canonical)
1759AC_SUBST(target_subdir)
1760
8f8d3278
NC
1761# If $(exec_prefix) exists and is not the same as $(prefix), then compute an
1762# absolute path for gcc_tooldir based on inserting the number of up-directory
1763# movements required to get from $(exec_prefix) to $(prefix) into the basic
1764# $(libsubdir)/@(unlibsubdir) based path.
82cbf8f7
JL
1765# Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
1766# make and thus we'd get different behavior depending on where we built the
1767# sources.
5949a9fc 1768if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
d062c304
JL
1769 gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
1770else
8f8d3278
NC
1771changequote(<<, >>)dnl
1772# An explanation of the sed strings:
1773# -e 's|^\$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
1774# -e 's|/$||' match a trailing forward slash and eliminates it
1775# -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
1776# -e 's|/[^/]*|../|g' replaces each occurance of /<directory> with ../
1777#
1778# (*) Note this pattern overwrites the first character of the string
1779# with a forward slash if one is not already present. This is not a
1780# problem because the exact names of the sub-directories concerned is
1781# unimportant, just the number of them matters.
1782#
1783# The practical upshot of these patterns is like this:
1784#
1785# prefix exec_prefix result
1786# ------ ----------- ------
1787# /foo /foo/bar ../
1788# /foo/ /foo/bar ../
1789# /foo /foo/bar/ ../
1790# /foo/ /foo/bar/ ../
1791# /foo /foo/bar/ugg ../../
1792#
4c112cda
NC
1793 dollar='$$'
1794 gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
8f8d3278 1795changequote([, ])dnl
d062c304
JL
1796fi
1797AC_SUBST(gcc_tooldir)
4c112cda 1798AC_SUBST(dollar)
d062c304 1799
2bbea3a6
RH
1800# Find a directory in which to install a shared libgcc.
1801
1802AC_ARG_ENABLE(version-specific-runtime-libs,
1803[ --enable-version-specific-runtime-libs Specify that runtime libraries shou
1804ld be installed in a compiler-specific directory ])
1805
5b15f277
RH
1806AC_ARG_WITH(slibdir,
1807[ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
1808slibdir="$with_slibdir",
1809if test "${enable_version_specific_runtime_libs+set}" = set; then
2bbea3a6 1810 slibdir='$(libsubdir)'
5b15f277 1811elif test "$host" != "$target"; then
2bbea3a6
RH
1812 slibdir='$(build_tooldir)/lib'
1813else
5b15f277
RH
1814 slibdir='$(libdir)'
1815fi)
2bbea3a6
RH
1816AC_SUBST(slibdir)
1817
7e717196
JL
1818# Nothing to do for FLOAT_H, float_format already handled.
1819objdir=`pwd`
1820AC_SUBST(objdir)
1821
94f42018
DE
1822# Process the language and host/target makefile fragments.
1823${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
47866ac0 1824
46f18e7b
RK
1825# Substitute configuration variables
1826AC_SUBST(subdirs)
46f18e7b
RK
1827AC_SUBST(all_boot_languages)
1828AC_SUBST(all_compilers)
46f18e7b 1829AC_SUBST(all_diff_excludes)
46f18e7b 1830AC_SUBST(all_headers)
9f3d1bc2
BK
1831AC_SUBST(all_lang_makefiles)
1832AC_SUBST(all_languages)
1833AC_SUBST(all_lib2funcs)
1834AC_SUBST(all_stagestuff)
1835AC_SUBST(build_exeext)
1836AC_SUBST(build_install_headers_dir)
1837AC_SUBST(build_xm_file_list)
1838AC_SUBST(cc_set_by_configure)
5aa82ace 1839AC_SUBST(quoted_cc_set_by_configure)
9f3d1bc2 1840AC_SUBST(cpp_install_dir)
9f3d1bc2
BK
1841AC_SUBST(dep_host_xmake_file)
1842AC_SUBST(dep_tmake_file)
1843AC_SUBST(extra_c_flags)
9f3d1bc2 1844AC_SUBST(extra_headers_list)
46f18e7b 1845AC_SUBST(extra_objs)
9f3d1bc2
BK
1846AC_SUBST(extra_parts)
1847AC_SUBST(extra_passes)
1848AC_SUBST(extra_programs)
9f3d1bc2 1849AC_SUBST(float_h_file)
cc1e60ea 1850AC_SUBST(gcc_config_arguments)
9f3d1bc2 1851AC_SUBST(gcc_gxx_include_dir)
e2187d3b 1852AC_SUBST(libstdcxx_incdir)
9f3d1bc2 1853AC_SUBST(gcc_version)
8763704d 1854AC_SUBST(gcc_version_full)
9f3d1bc2
BK
1855AC_SUBST(gcc_version_trigger)
1856AC_SUBST(host_exeext)
46f18e7b 1857AC_SUBST(host_extra_gcc_objs)
46f18e7b 1858AC_SUBST(host_xm_file_list)
9f3d1bc2 1859AC_SUBST(install)
46f18e7b 1860AC_SUBST(lang_options_files)
9f3d1bc2 1861AC_SUBST(lang_specs_files)
3103b7db 1862AC_SUBST(lang_tree_files)
46f18e7b 1863AC_SUBST(local_prefix)
46f18e7b 1864AC_SUBST(maybe_use_collect2)
9f3d1bc2
BK
1865AC_SUBST(md_file)
1866AC_SUBST(objc_boehm_gc)
1867AC_SUBST(out_file)
1868AC_SUBST(out_object_file)
46f18e7b 1869AC_SUBST(stage_prefix_set_by_configure)
e9a25f70 1870AC_SUBST(symbolic_link)
9f3d1bc2
BK
1871AC_SUBST(thread_file)
1872AC_SUBST(tm_file_list)
1873AC_SUBST(will_use_collect2)
aac69a49
NC
1874AC_SUBST(c_target_objs)
1875AC_SUBST(cxx_target_objs)
9fc9b82a 1876
46f18e7b
RK
1877
1878AC_SUBST_FILE(target_overrides)
1879AC_SUBST_FILE(host_overrides)
1880AC_SUBST(cross_defines)
1881AC_SUBST_FILE(cross_overrides)
1882AC_SUBST_FILE(build_overrides)
1883AC_SUBST_FILE(language_fragments)
1884AC_SUBST_FILE(language_hooks)
1885
1886# Echo that links are built
75bffa71 1887if test x$host = x$target
46f18e7b
RK
1888then
1889 str1="native "
1890else
1891 str1="cross-"
1892 str2=" from $host"
1893fi
1894
75bffa71 1895if test x$host != x$build
46f18e7b
RK
1896then
1897 str3=" on a $build system"
1898fi
1899
75bffa71 1900if test "x$str2" != x || test "x$str3" != x
46f18e7b
RK
1901then
1902 str4=
1903fi
1904
1905echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
1906
75bffa71 1907if test "x$str2" != x || test "x$str3" != x
46f18e7b
RK
1908then
1909 echo " ${str2}${str3}." 1>&2
1910fi
1911
61536478 1912# Truncate the target if necessary
75bffa71 1913if test x$host_truncate_target != x; then
61536478
JL
1914 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
1915fi
1916
46f18e7b
RK
1917# Configure the subdirectories
1918# AC_CONFIG_SUBDIRS($subdirs)
1919
1920# Create the Makefile
5891b37d 1921# and configure language subdirectories
0280cf84 1922AC_OUTPUT($all_outputs,
cdcc6a01 1923[
cdcc6a01 1924case x$CONFIG_HEADERS in
b7cb92ad 1925xauto-host.h:config.in)
818b66cc 1926echo > cstamp-h ;;
cdcc6a01 1927esac
93cf819d
BK
1928# If the host supports symlinks, point stage[1234] at ../stage[1234] so
1929# bootstrapping and the installation procedure can still use
1930# CC="stage1/xgcc -Bstage1/". If the host doesn't support symlinks,
1931# FLAGS_TO_PASS has been modified to solve the problem there.
1932# This is virtually a duplicate of what happens in configure.lang; we do
1933# an extra check to make sure this only happens if ln -s can be used.
75bffa71 1934if test "$symbolic_link" = "ln -s"; then
93cf819d 1935 for d in .. ${subdirs} ; do
75bffa71 1936 if test $d != ..; then
4e8a434e
BK
1937 STARTDIR=`pwd`
1938 cd $d
1939 for t in stage1 stage2 stage3 stage4 include
1940 do
1941 rm -f $t
1942 $symbolic_link ../$t $t 2>/dev/null
1943 done
1944 cd $STARTDIR
93cf819d
BK
1945 fi
1946 done
1947else true ; fi
ab87f8c8
JL
1948# Avoid having to add intl to our include paths.
1949if test -f intl/libintl.h; then
1950 echo creating libintl.h
1951 echo '#include "intl/libintl.h"' >libintl.h
1952fi
cdcc6a01
DE
1953],
1954[
5891b37d
RK
1955host='${host}'
1956build='${build}'
1957target='${target}'
52060267 1958target_alias='${target_alias}'
5891b37d
RK
1959srcdir='${srcdir}'
1960subdirs='${subdirs}'
1961symbolic_link='${symbolic_link}'
1962program_transform_set='${program_transform_set}'
1963program_transform_name='${program_transform_name}'
5891b37d
RK
1964dep_host_xmake_file='${dep_host_xmake_file}'
1965host_xmake_file='${host_xmake_file}'
1966dep_tmake_file='${dep_tmake_file}'
1967tmake_file='${tmake_file}'
0bbb1697 1968thread_file='${thread_file}'
cc1e60ea 1969gcc_config_arguments='${gcc_config_arguments}'
f1943b77 1970gcc_version='${gcc_version}'
8763704d 1971gcc_version_full='${gcc_version_full}'
f1943b77 1972gcc_version_trigger='${gcc_version_trigger}'
5891b37d 1973local_prefix='${local_prefix}'
5891b37d 1974build_install_headers_dir='${build_install_headers_dir}'
a204adc6 1975build_exeext='${build_exeext}'
6e26218f 1976host_exeext='${host_exeext}'
7ed46111 1977out_file='${out_file}'
5891b37d
RK
1978gdb_needs_out_file_path='${gdb_needs_out_file_path}'
1979SET_MAKE='${SET_MAKE}'
5891b37d 1980target_list='${target_list}'
5891b37d
RK
1981target_overrides='${target_overrides}'
1982host_overrides='${host_overrides}'
1983cross_defines='${cross_defines}'
1984cross_overrides='${cross_overrides}'
1985build_overrides='${build_overrides}'
9fc9b82a 1986cpp_install_dir='${cpp_install_dir}'
cdcc6a01 1987])
This page took 1.00376 seconds and 5 git commands to generate.