* infrun.c (fetch_inferior_event): Only call normal_stop if not
[deliverable/binutils-gdb.git] / configure.ac
CommitLineData
92f01d61 1# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
5b553f7e
RW
2# 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation,
3# Inc.
252b5132
RH
4#
5# This file is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
6e4d0bcb 17# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
252b5132
RH
18
19##############################################################################
a0da8069
NN
20### WARNING: this file contains embedded tabs. Do not run untabify on this file.
21
266df637
PB
22m4_include(config/acx.m4)
23m4_include(config/override.m4)
58c85be7 24m4_include(config/proginstall.m4)
656fdd47 25
a0da8069 26AC_INIT(move-if-change)
c6b750e1
DJ
27AC_PREREQ(2.59)
28
5b553f7e
RW
29progname=$0
30# if PWD already has a value, it is probably wrong.
31if test -n "$PWD" ; then PWD=`${PWDCMD-pwd}`; fi
32
33# Export original configure arguments for use by sub-configures.
34# Quote arguments with shell meta charatcers.
35TOPLEVEL_CONFIGURE_ARGUMENTS=
36set -- "$progname" "$@"
37for ac_arg
38do
39 case "$ac_arg" in
40 *" "*|*" "*|*[[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\']]*)
41 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"`
42 # if the argument is of the form -foo=baz, quote the baz part only
43 ac_arg=`echo "'$ac_arg'" | sed "s/^'\([[-a-zA-Z0-9]]*=\)/\\1'/"` ;;
44 *) ;;
45 esac
46 # Add the quoted argument to the list.
47 TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS $ac_arg"
48done
49if test "$silent" = yes; then
50 TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS --silent"
51fi
52# Remove the initial space we just introduced and, as these will be
53# expanded by make, quote '$'.
54TOPLEVEL_CONFIGURE_ARGUMENTS=`echo "x$TOPLEVEL_CONFIGURE_ARGUMENTS" | sed -e 's/^x *//' -e 's,\\$,$$,g'`
55AC_SUBST(TOPLEVEL_CONFIGURE_ARGUMENTS)
56
c6b750e1
DJ
57# Find the build, host, and target systems.
58ACX_NONCANONICAL_BUILD
59ACX_NONCANONICAL_HOST
60ACX_NONCANONICAL_TARGET
61
62dnl Autoconf 2.5x and later will set a default program prefix if
63dnl --target was used, even if it was the same as --host. Disable
64dnl that behavior. This must be done before AC_CANONICAL_SYSTEM
65dnl to take effect.
66test "$host_noncanonical" = "$target_noncanonical" &&
67 test "$program_prefix$program_suffix$program_transform_name" = \
68 NONENONEs,x,x, &&
69 program_transform_name=s,y,y,
70
a0da8069
NN
71AC_CANONICAL_SYSTEM
72AC_ARG_PROGRAM
73
c6b750e1 74m4_pattern_allow([^AS_FOR_TARGET$])dnl
b5714970 75m4_pattern_allow([^AS_FOR_BUILD$])dnl
c6b750e1 76
e5c3f801
NN
77# Get 'install' or 'install-sh' and its variants.
78AC_PROG_INSTALL
656fdd47 79ACX_PROG_LN
dfdffa2c 80AC_PROG_LN_S
e5c3f801 81
a0da8069
NN
82### we might need to use some other shell than /bin/sh for running subshells
83### If we are on Windows, search for the shell. This will permit people
84### to not have /bin/sh, but to be able to see /SOME/PATH/sh configure
85### without also having to set CONFIG_SHELL. This code will work when
86### using bash, which sets OSTYPE.
87case "${OSTYPE}" in
88*win32*)
89 if test x${CONFIG_SHELL} = x ; then
90 if test ! -f /bin/sh ; then
91 if test x${SHELL} != x && test -f ${SHELL} ; then
92 CONFIG_SHELL=${SHELL}
93 export CONFIG_SHELL
94 else
95 for prog in sh sh.exe bash bash.exe; do
96 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
97 for dir in $PATH; do
98 test -z "$dir" && dir=.
99 if test -f $dir/$prog; then
100 CONFIG_SHELL=$dir/$prog
101 export CONFIG_SHELL
102 break
103 fi
104 done
105 IFS="$save_ifs"
106 test -n "${CONFIG_SHELL}" && break
107 done
108 fi
109 fi
110 fi
111 ;;
112esac
113
114config_shell=${CONFIG_SHELL-/bin/sh}
115
a0da8069
NN
116moveifchange=${srcdir}/move-if-change
117
0fdbe983
DJ
118srcpwd=`cd ${srcdir} ; ${PWDCMD-pwd}`
119
120# We pass INSTALL explicitly to sub-makes. Make sure that it is not
121# a relative path.
122if test "$INSTALL" = "${srcdir}/install-sh -c"; then
123 INSTALL="${srcpwd}/install-sh -c"
124fi
125
a0da8069
NN
126# Set srcdir to "." if that's what it is.
127# This is important for multilib support.
128pwd=`${PWDCMD-pwd}`
a0da8069
NN
129if test "${pwd}" = "${srcpwd}" ; then
130 srcdir=.
131fi
132
133topsrcdir=$srcpwd
252b5132 134
ae831be5 135extra_host_args=
afefada0 136
252b5132
RH
137### To add a new directory to the tree, first choose whether it is a target
138### or a host dependent tool. Then put it into the appropriate list
a2cc058a 139### (library or tools, host or target), doing a dependency sort.
252b5132 140
a2cc058a
NN
141# Subdirs will be configured in the order listed in build_configdirs,
142# configdirs, or target_configdirs; see the serialization section below.
143
144# Dependency sorting is only needed when *configuration* must be done in
145# a particular order. In all cases a dependency should be specified in
146# the Makefile, whether or not it's implicitly specified here.
147
148# Double entries in build_configdirs, configdirs, or target_configdirs may
149# cause circular dependencies and break everything horribly.
252b5132 150
6a9cf61e
PB
151# these library is used by various programs built for the build
152# environment
153#
154build_libs="build-libiberty"
155
156# these tools are built for the build environment
ee025550 157build_tools="build-texinfo build-byacc build-flex build-bison build-m4 build-fixincludes"
6a9cf61e 158
252b5132
RH
159# these libraries are used by various programs built for the host environment
160#
4b900473 161host_libs="intl mmalloc libiberty opcodes bfd readline tcl tk itcl libgui zlib libcpp libdecnumber gmp mpfr"
252b5132 162
252b5132
RH
163# these tools are built for the host environment
164# Note, the powerpc-eabi build depends on sim occurring before gdb in order to
165# know that we are building the simulator.
2af579c4
NN
166# binutils, gas and ld appear in that order because it makes sense to run
167# "make check" in that particular order.
93f9b408 168# If --enable-gold is used, "gold" will replace "ld".
b00612cc 169host_tools="texinfo byacc flex bison binutils gas ld fixincludes gcc sid sim gdb make patch prms send-pr gprof etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool diff rcs fileutils shellutils time textutils wdiff find uudecode hello tar gzip indent recode release sed utils guile perl gawk findutils gettext zip fastjar gnattools"
75205f78
DD
170
171# libgcj represents the runtime libraries only used by gcj.
172libgcj="target-libffi \
75205f78
DD
173 target-zlib \
174 target-qthreads \
175 target-libjava"
252b5132
RH
176
177# these libraries are built for the target environment, and are built after
178# the host libraries and the host tools (which may be a cross compiler)
179#
b1299c4e
DJ
180target_libraries="target-libgcc \
181 target-libiberty \
252b5132
RH
182 target-libgloss \
183 target-newlib \
cff87f51 184 target-libgomp \
b9459e83 185 target-libstdc++-v3 \
4b1cb4fe 186 target-libmudflap \
bb780410 187 target-libssp \
4b1cb4fe 188 target-libgfortran \
4f0ef2d8 189 target-boehm-gc \
83326456 190 ${libgcj} \
a2592b1b 191 target-libobjc \
cff87f51 192 target-libada"
252b5132 193
9c14acb8
NN
194# these tools are built using the target libraries, and are intended to
195# run only in the target environment
252b5132 196#
9c14acb8 197# note: any program that *uses* libraries that are in the "target_libraries"
252b5132
RH
198# list belongs in this list. those programs are also very likely
199# candidates for the "native_only" list which follows
200#
a3dd767d 201target_tools="target-examples target-groff target-gperf target-rda"
252b5132
RH
202
203################################################################################
204
252b5132
RH
205## All tools belong in one of the four categories, and are assigned above
206## We assign ${configdirs} this way to remove all embedded newlines. This
207## is important because configure will choke if they ever get through.
208## ${configdirs} is directories we build using the host tools.
209## ${target_configdirs} is directories we build using the target tools.
252b5132 210configdirs=`echo ${host_libs} ${host_tools}`
9c14acb8 211target_configdirs=`echo ${target_libraries} ${target_tools}`
ee025550 212build_configdirs=`echo ${build_libs} ${build_tools}`
dd12c3a8 213
9cc8ae67
PB
214m4_divert_text([PARSE_ARGS],
215[ac_subdirs_all=`cd $srcdir && echo */configure | sed 's,/configure,,g'`
216])
217
252b5132
RH
218################################################################################
219
252b5132
RH
220srcname="gnu development package"
221
222# This gets set non-empty for some net releases of packages.
223appdirs=""
224
c712250a
DD
225# Define is_cross_compiler to save on calls to 'test'.
226is_cross_compiler=
227if test x"${host}" = x"${target}" ; then
228 is_cross_compiler=no
229else
230 is_cross_compiler=yes
231fi
232
9175bfc0 233# Find the build and target subdir names.
dd12c3a8 234GCC_TOPLEV_SUBDIRS
252b5132 235
f48556b1
DD
236# Skipdirs are removed silently.
237skipdirs=
238# Noconfigdirs are removed loudly.
239noconfigdirs=""
252b5132 240
f48556b1
DD
241use_gnu_ld=
242# Make sure we don't let GNU ld be added if we didn't want it.
243if test x$with_gnu_ld = xno ; then
244 use_gnu_ld=no
93f9b408 245 noconfigdirs="$noconfigdirs ld gold"
252b5132
RH
246fi
247
f48556b1
DD
248use_gnu_as=
249# Make sure we don't let GNU as be added if we didn't want it.
250if test x$with_gnu_as = xno ; then
251 use_gnu_as=no
252 noconfigdirs="$noconfigdirs gas"
252b5132
RH
253fi
254
f48556b1
DD
255# some tools are so dependent upon X11 that if we're not building with X,
256# it's not even worth trying to configure, much less build, that tool.
252b5132 257
f48556b1
DD
258case ${with_x} in
259 yes | "") ;; # the default value for this tree is that X11 is available
ff0a3bf8 260 no)
675c6968 261 skipdirs="${skipdirs} tk itcl libgui"
ff0a3bf8
DD
262 # We won't be able to build gdbtk without X.
263 enable_gdbtk=no
264 ;;
f48556b1
DD
265 *) echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2 ;;
266esac
252b5132 267
f48556b1 268# Some tools are only suitable for building in a "native" situation.
405ea7a0 269# Remove these if host!=target.
701628f5 270native_only="autoconf automake libtool fileutils find gawk gettext gzip hello indent m4 rcs recode sed shellutils tar textutils uudecode wdiff target-groff guile perl time ash bash bzip2 prms gnuserv target-gperf"
405ea7a0
NN
271
272# Similarly, some are only suitable for cross toolchains.
273# Remove these if host=target.
274cross_only="target-libgloss target-newlib target-opcodes"
252b5132 275
f48556b1
DD
276case $is_cross_compiler in
277 no) skipdirs="${skipdirs} ${cross_only}" ;;
278 yes) skipdirs="${skipdirs} ${native_only}" ;;
279esac
252b5132 280
a32d391c
DD
281# If both --with-headers and --with-libs are specified, default to
282# --without-newlib.
32be62b5
RS
283if test x"${with_headers}" != x && test x"${with_headers}" != xno \
284 && test x"${with_libs}" != x && test x"${with_libs}" != xno ; then
a32d391c
DD
285 if test x"${with_newlib}" = x ; then
286 with_newlib=no
287 fi
288fi
289
290# Recognize --with-newlib/--without-newlib.
291case ${with_newlib} in
292 no) skipdirs="${skipdirs} target-newlib" ;;
293 yes) skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` ;;
294esac
295
93f9b408
ILT
296# Handle --enable-gold.
297
298AC_ARG_ENABLE(gold,
299[ --enable-gold use gold instead of ld],
300ENABLE_GOLD=$enableval,
301ENABLE_GOLD=no)
302if test "${ENABLE_GOLD}" = "yes"; then
303 # Check for ELF target.
304 is_elf=no
305 case "${target}" in
306 *-*-elf* | *-*-sysv4* | *-*-unixware* | *-*-eabi* | hppa*64*-*-hpux* \
307 | *-*-linux* | frv-*-uclinux* | *-*-irix5* | *-*-irix6* \
308 | *-*-netbsd* | *-*-openbsd* | *-*-freebsd* | *-*-solaris2*)
309 case "${target}" in
310 *-*-linux*aout* | *-*-linux*oldld*)
311 ;;
312 *)
313 is_elf=yes
314 ;;
315 esac
316 esac
317
318 if test "$is_elf" = "yes"; then
319 # Check for target supported by gold.
320 case "${target}" in
310213e8 321 i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-*)
93f9b408
ILT
322 configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`"
323 ;;
324 esac
325 fi
326fi
327
252b5132
RH
328# Configure extra directories which are host specific
329
330case "${host}" in
f48556b1 331 *-cygwin*)
3866be5d 332 configdirs="$configdirs libtermcap" ;;
252b5132
RH
333esac
334
59f7ec45
HPN
335# A target can indicate whether a language isn't supported for some reason.
336# Only spaces may be used in this macro; not newlines or tabs.
337unsupported_languages=
338
252b5132
RH
339# Remove more programs from consideration, based on the host or
340# target this usually means that a port of the program doesn't
341# exist yet.
342
252b5132 343case "${host}" in
75205f78
DD
344 hppa*64*-*-*)
345 noconfigdirs="$noconfigdirs byacc"
346 ;;
ec11bdc6 347 i[[3456789]]86-*-vsta)
675c6968 348 noconfigdirs="$noconfigdirs tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl itcl gnuserv gettext"
252b5132 349 ;;
ec11bdc6 350 i[[3456789]]86-*-go32* | i[[3456789]]86-*-msdosdjgpp*)
675c6968 351 noconfigdirs="$noconfigdirs tcl tk expect dejagnu send-pr uudecode guile itcl gnuserv libffi"
bba45b8b 352 ;;
80f6dcbc
NC
353 x86_64-*-mingw*)
354 noconfigdirs="$noconfigdirs expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool newlib"
355 ;;
ec11bdc6 356 i[[3456789]]86-*-mingw32*)
675c6968 357 # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl itcl gnuserv"
45055374 358 noconfigdirs="$noconfigdirs expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool newlib"
bba45b8b 359 ;;
ec11bdc6 360 i[[3456789]]86-*-beos*)
675c6968 361 noconfigdirs="$noconfigdirs tk itcl libgui gdb"
bba45b8b 362 ;;
252b5132 363 *-*-cygwin*)
a92834c8 364 noconfigdirs="$noconfigdirs autoconf automake send-pr rcs guile perl"
252b5132
RH
365 ;;
366 *-*-netbsd*)
a92834c8 367 noconfigdirs="$noconfigdirs rcs"
252b5132
RH
368 ;;
369 ppc*-*-pe)
675c6968 370 noconfigdirs="$noconfigdirs patch diff make tk tcl expect dejagnu autoconf automake texinfo bison send-pr gprof rcs guile perl itcl gnuserv"
252b5132 371 ;;
ba73c63f 372 powerpc-*-beos*)
675c6968 373 noconfigdirs="$noconfigdirs tk itcl libgui gdb dejagnu readline"
ba73c63f 374 ;;
252b5132
RH
375esac
376
4b1cb4fe 377
a2592b1b 378AC_ARG_ENABLE(libada,
521ec477 379[ --enable-libada build libada directory],
a2592b1b
DD
380ENABLE_LIBADA=$enableval,
381ENABLE_LIBADA=yes)
382if test "${ENABLE_LIBADA}" != "yes" ; then
b00612cc 383 noconfigdirs="$noconfigdirs gnattools"
a2592b1b
DD
384fi
385
5f128533 386AC_ARG_ENABLE(libssp,
521ec477 387[ --enable-libssp build libssp directory],
5f128533
KH
388ENABLE_LIBSSP=$enableval,
389ENABLE_LIBSSP=yes)
5f128533 390
96111c10
AO
391# Save it here so that, even in case of --enable-libgcj, if the Java
392# front-end isn't enabled, we still get libgcj disabled.
393libgcj_saved=$libgcj
394case $enable_libgcj in
395yes)
396 # If we reset it here, it won't get added to noconfigdirs in the
397 # target-specific build rules, so it will be forcibly enabled
398 # (unless the Java language itself isn't enabled).
399 libgcj=
400 ;;
401no)
402 # Make sure we get it printed in the list of not supported target libs.
403 noconfigdirs="$noconfigdirs ${libgcj}"
404 ;;
405esac
406
4b1cb4fe 407
a6df5a19
PB
408# Disable libmudflap on some systems.
409if test x$enable_libmudflap = x ; then
3e707e94 410 case "${target}" in
0ebe98fb 411 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | bfin*-*-uclinux*)
3d6dfe0f 412 # Enable libmudflap by default in GNU and friends.
3e707e94
PB
413 ;;
414 *-*-freebsd*)
415 # Enable libmudflap by default in FreeBSD.
416 ;;
417 *)
418 # Disable it by default everywhere else.
419 noconfigdirs="$noconfigdirs target-libmudflap"
420 ;;
421 esac
a6df5a19 422fi
4b1cb4fe 423
a6df5a19
PB
424# Disable libgomp on non POSIX hosted systems.
425if test x$enable_libgomp = x ; then
b3ded179
PB
426 # Enable libgomp by default on hosted POSIX systems.
427 case "${target}" in
428 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
429 ;;
430 *-*-netbsd* | *-*-freebsd* | *-*-openbsd*)
431 ;;
64ce424c 432 *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11*)
b3ded179
PB
433 ;;
434 *-*-darwin* | *-*-aix*)
435 ;;
436 *)
437 noconfigdirs="$noconfigdirs target-libgomp"
438 ;;
439 esac
a6df5a19 440fi
b3ded179 441
691bb5a1
DD
442# Default libgloss CPU subdirectory.
443libgloss_dir="$target_cpu"
4b1cb4fe 444
252b5132 445case "${target}" in
75205f78 446 *-*-chorusos)
54d1c879 447 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
75205f78 448 ;;
c9b68031 449 powerpc-*-darwin* | i[[3456789]]86-*-darwin* | x86_64-*-darwin9*)
b3f16a9b 450 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes gdb gprof"
4e3fc8e5 451 noconfigdirs="$noconfigdirs sim target-rda"
b3f16a9b 452 ;;
04d1ab34 453 *-*-darwin*)
d320aacb 454 noconfigdirs="$noconfigdirs ld gas gdb gprof"
4e3fc8e5 455 noconfigdirs="$noconfigdirs sim target-rda"
54d1c879 456 noconfigdirs="$noconfigdirs ${libgcj}"
04d1ab34 457 ;;
a0da8069 458 *-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*)
54d1c879 459 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
ffb97b2f 460 ;;
de0b4a87 461 *-*-freebsd*)
4b1cb4fe
DD
462 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
463 if test "x$with_gmp" = x && test "x$with_gmp_dir" = x \
464 && test -f /usr/local/include/gmp.h; then
465 with_gmp=/usr/local
466 fi
467
468 # Skip some stuff that's unsupported on some FreeBSD configurations.
469 case "${target}" in
470 i*86-*-*) ;;
471 alpha*-*-*) ;;
472 *)
54d1c879 473 noconfigdirs="$noconfigdirs ${libgcj}"
4b1cb4fe
DD
474 ;;
475 esac
476 ;;
f8a495c8
NC
477 *-*-kaos*)
478 # Remove unsupported stuff on all kaOS configurations.
54d1c879 479 skipdirs="target-libiberty ${libgcj} target-libstdc++-v3 target-librx"
f8a495c8
NC
480 skipdirs="$skipdirs target-libobjc target-examples target-groff target-gperf"
481 skipdirs="$skipdirs zlib fastjar target-libjava target-boehm-gc target-zlib"
482 noconfigdirs="$noconfigdirs target-libgloss"
483 ;;
e82380cc
JT
484 *-*-netbsd*)
485 # Skip some stuff on all NetBSD configurations.
ae03d6e2 486 noconfigdirs="$noconfigdirs target-newlib target-libiberty target-libgloss"
e82380cc
JT
487
488 # Skip some stuff that's unsupported on some NetBSD configurations.
489 case "${target}" in
75205f78 490 i*86-*-netbsdelf*) ;;
5b474aa8 491 arm*-*-netbsdelf*) ;;
e82380cc 492 *)
54d1c879 493 noconfigdirs="$noconfigdirs ${libgcj}"
e82380cc
JT
494 ;;
495 esac
496 ;;
2a3124ca 497 *-*-netware*)
54d1c879 498 noconfigdirs="$noconfigdirs target-newlib target-libiberty target-libgloss ${libgcj} target-libmudflap"
252b5132
RH
499 ;;
500 *-*-rtems*)
54d1c879 501 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 502 ;;
1587117a
EC
503 # The tpf target doesn't support gdb yet.
504 *-*-tpf*)
54d1c879 505 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libiberty ${libgcj} target-libmudflap gdb tcl tk libgui itcl"
1587117a 506 ;;
c1968181 507 *-*-uclinux*)
54d1c879 508 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-rda ${libgcj}"
c1968181 509 ;;
252b5132 510 *-*-vxworks*)
54d1c879 511 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libiberty target-libstdc++-v3 ${libgcj}"
252b5132
RH
512 ;;
513 alpha*-dec-osf*)
e99daf2b
DD
514 # ld works, but does not support shared libraries.
515 # newlib is not 64 bit ready. I'm not sure about fileutils.
252b5132 516 # gas doesn't generate exception information.
e99daf2b 517 noconfigdirs="$noconfigdirs gas ld fileutils target-newlib target-libgloss"
252b5132
RH
518 ;;
519 alpha*-*-*vms*)
54d1c879 520 noconfigdirs="$noconfigdirs gdb ld target-newlib target-libgloss ${libgcj}"
75205f78
DD
521 ;;
522 alpha*-*-linux*)
523 # newlib is not 64 bit ready
524 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
252b5132
RH
525 ;;
526 alpha*-*-*)
527 # newlib is not 64 bit ready
54d1c879 528 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
252b5132 529 ;;
4a18bd6b 530 am33_2.0-*-linux*)
54d1c879 531 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss"
4a18bd6b 532 ;;
75205f78 533 sh-*-linux*)
54d1c879 534 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss"
75205f78 535 ;;
2fb651f6 536 sh*-*-pe|mips*-*-pe|*arm-wince-pe)
54d1c879 537 noconfigdirs="$noconfigdirs ${libgcj}"
75205f78 538 noconfigdirs="$noconfigdirs target-examples"
ba73c63f 539 noconfigdirs="$noconfigdirs target-libiberty texinfo send-pr"
675c6968 540 noconfigdirs="$noconfigdirs tcl tk itcl libgui sim"
2fb651f6
NC
541 noconfigdirs="$noconfigdirs expect dejagnu"
542 # the C++ libraries don't build on top of CE's C libraries
b9459e83 543 noconfigdirs="$noconfigdirs target-libstdc++-v3"
ae03d6e2 544 noconfigdirs="$noconfigdirs target-newlib"
2fb651f6
NC
545 case "${host}" in
546 *-*-cygwin*) ;; # keep gdb and readline
b9459e83 547 *) noconfigdirs="$noconfigdirs gdb readline"
2fb651f6
NC
548 ;;
549 esac
691bb5a1 550 libgloss_dir=wince
2fb651f6 551 ;;
252b5132 552 arc-*-*)
54d1c879 553 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 554 ;;
caeba88f 555 arm-semi-aof )
caeba88f 556 ;;
f03b4789 557 arm-*-coff | strongarm-*-coff | xscale-*-coff)
54d1c879 558 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 559 libgloss_dir=arm
f03b4789 560 ;;
11b04d1f 561 arm-*-elf* | strongarm-*-elf* | xscale-*-elf* | arm*-*-eabi* )
f03b4789 562 noconfigdirs="$noconfigdirs target-libffi target-qthreads"
691bb5a1 563 libgloss_dir=arm
f03b4789 564 ;;
bd70a46f 565 arm*-*-linux-gnueabi)
6d18b86b 566 noconfigdirs="$noconfigdirs target-qthreads"
a5b3b4dd
DD
567 case ${with_newlib} in
568 no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"
569 esac
691bb5a1 570 libgloss_dir=arm
bd70a46f 571 ;;
df4a6958 572 arm*-*-symbianelf*)
54d1c879 573 noconfigdirs="$noconfigdirs ${libgcj} target-libiberty"
691bb5a1 574 libgloss_dir=arm
df4a6958 575 ;;
252b5132 576 arm-*-pe*)
54d1c879 577 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 578 ;;
252b5132 579 thumb-*-coff)
54d1c879 580 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 581 ;;
252b5132 582 thumb-*-elf)
54d1c879 583 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 584 ;;
347dad9e 585 thumb-*-pe)
54d1c879 586 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132
RH
587 ;;
588 arm-*-riscix*)
54d1c879 589 noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
252b5132 590 ;;
c95f53ae 591 avr-*-*)
266df637 592 noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj} target-libssp"
c95f53ae 593 ;;
376a0e54 594 bfin-*-*)
00d89675 595 noconfigdirs="$noconfigdirs gdb"
3cf3372e 596 if test x${is_cross_compiler} != xno ; then
376a0e54
CM
597 target_configdirs="${target_configdirs} target-bsp target-cygmon"
598 fi
599 ;;
ff72e302 600 c4x-*-* | tic4x-*-*)
54d1c879 601 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
077b8428
NC
602 ;;
603 c54x*-*-* | tic54x-*-*)
54d1c879 604 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj} gcc gdb newlib"
75205f78 605 ;;
52310858
NC
606 cr16-*-*)
607 noconfigdirs="$noconfigdirs ${libgcj} gdb"
608 ;;
c7e66c6d 609 cris-*-* | crisv32-*-*)
59f7ec45 610 unsupported_languages="$unsupported_languages java"
c7e66c6d 611 case "${target}" in
2faa2958 612 *-*-aout)
096f7d00 613 unsupported_languages="$unsupported_languages fortran"
59f7ec45 614 noconfigdirs="$noconfigdirs target-libffi target-boehm-gc";;
2faa2958 615 *-*-elf)
5e818318 616 noconfigdirs="$noconfigdirs target-boehm-gc";;
2faa2958 617 *-*-linux*)
5e818318 618 noconfigdirs="$noconfigdirs target-newlib target-libgloss";;
c7e66c6d 619 *)
096f7d00 620 unsupported_languages="$unsupported_languages fortran"
54d1c879 621 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss";;
c7e66c6d 622 esac
691bb5a1 623 libgloss_dir=cris
077b8428 624 ;;
3e707e94 625 crx-*-*)
54d1c879 626 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-mudflap ${libgcj}"
3e707e94 627 ;;
252b5132 628 d10v-*-*)
54d1c879 629 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
252b5132 630 ;;
252b5132 631 d30v-*-*)
54d1c879 632 noconfigdirs="$noconfigdirs ${libgcj} gdb"
252b5132 633 ;;
691bb5a1
DD
634 ep9312-*-elf | ep9312-*-coff)
635 libgloss_dir=arm
636 ;;
252b5132 637 fr30-*-elf*)
54d1c879 638 noconfigdirs="$noconfigdirs ${libgcj} gdb"
252b5132 639 ;;
d2a86414 640 frv-*-*)
54d1c879 641 noconfigdirs="$noconfigdirs ${libgcj}"
d2a86414 642 ;;
dd1e52a4 643 h8300*-*-*)
54d1c879 644 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
dd1e52a4 645 ;;
252b5132 646 h8500-*-*)
54d1c879 647 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
75205f78 648 ;;
caeba88f 649 hppa1.1-*-osf* | hppa1.1-*-bsd* )
caeba88f 650 ;;
75205f78
DD
651 hppa*64*-*-linux* | parisc*64*-*-linux*)
652 # In this case, it's because the hppa64-linux target is for
653 # the kernel only at this point and has no libc, and thus no
654 # headers, crt*.o, etc., all of which are needed by these.
655 noconfigdirs="$noconfigdirs target-zlib"
252b5132 656 ;;
5dcac624
DA
657 parisc*-*-linux* | hppa*-*-linux*)
658 ;;
252b5132 659 hppa*-*-*elf* | \
09e90eb4 660 hppa*-*-lites* | \
17240c1f 661 hppa*-*-openbsd* | \
09e90eb4 662 hppa*64*-*-*)
54d1c879 663 noconfigdirs="$noconfigdirs ${libgcj}"
4f0ef2d8
CD
664 ;;
665 hppa*-hp-hpux11*)
666 noconfigdirs="$noconfigdirs ld shellutils"
252b5132 667 ;;
691bb5a1
DD
668 hppa*-*-pro*)
669 libgloss_dir=pa
670 ;;
252b5132 671 hppa*-*-*)
b3ed1d6b
AO
672 # According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
673 # build on HP-UX 10.20.
54d1c879 674 noconfigdirs="$noconfigdirs ld shellutils ${libgcj}"
252b5132 675 ;;
b07c2aad 676 i960-*-*)
54d1c879 677 noconfigdirs="$noconfigdirs ${libgcj} gdb"
b07c2aad 678 ;;
2315914d
JW
679 ia64*-*-elf*)
680 # No gdb support yet.
675c6968 681 noconfigdirs="$noconfigdirs readline mmalloc libgui itcl gdb"
2315914d 682 ;;
a0c1c920
NC
683 ia64*-**-hpux*)
684 # No gdb or ld support yet.
54d1c879 685 noconfigdirs="$noconfigdirs ${libgcj} readline mmalloc libgui itcl gdb ld"
a0c1c920 686 ;;
caeba88f 687 i370-*-opened*)
caeba88f 688 ;;
ec11bdc6 689 i[[3456789]]86-*-coff | i[[3456789]]86-*-elf)
54d1c879 690 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 691 libgloss_dir=i386
252b5132 692 ;;
ec11bdc6 693 i[[3456789]]86-*-linux*)
28f46298
HPN
694 # The GCC port for glibc1 has no MD_FALLBACK_FRAME_STATE_FOR, so let's
695 # not build java stuff by default.
696 case "${target}" in
697 *-*-*libc1*)
54d1c879 698 noconfigdirs="$noconfigdirs ${libgcj}";;
28f46298
HPN
699 esac
700
c72f388d
TF
701 # This section makes it possible to build newlib natively on linux.
702 # If we are using a cross compiler then don't configure newlib.
a018e15b 703 if test x${is_cross_compiler} != xno ; then
bba45b8b 704 noconfigdirs="$noconfigdirs target-newlib"
c72f388d
TF
705 fi
706 noconfigdirs="$noconfigdirs target-libgloss"
707 # If we are not using a cross compiler, do configure newlib.
708 # Note however, that newlib will only be configured in this situation
709 # if the --with-newlib option has been given, because otherwise
710 # 'target-newlib' will appear in skipdirs.
c72f388d 711 ;;
ec11bdc6 712 i[[3456789]]86-*-mingw32*)
45055374
CV
713 target_configdirs="$target_configdirs target-winsup"
714 noconfigdirs="$noconfigdirs expect target-libgloss target-newlib ${libgcj}"
252b5132 715 ;;
80f6dcbc
NC
716 x86_64-*-mingw*)
717 target_configdirs="$target_configdirs target-winsup"
718 noconfigdirs="$noconfigdirs expect target-libgloss target-newlib ${libgcj}"
719 ;;
252b5132
RH
720 *-*-cygwin*)
721 target_configdirs="$target_configdirs target-libtermcap target-winsup"
54d1c879 722 noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}"
b76d7de0 723 # always build newlib if winsup directory is present.
45055374 724 if test -d "$srcdir/winsup/cygwin"; then
b76d7de0 725 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
ac0fa625 726 elif test -d "$srcdir/newlib"; then
45055374 727 echo "Warning: winsup/cygwin is missing so newlib can't be built."
b76d7de0 728 fi
252b5132 729 ;;
caeba88f
AL
730 i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss* | \
731 i[[3456789]]86-*-uwin* | i[[3456789]]86-*-interix* )
caeba88f 732 ;;
ec11bdc6 733 i[[3456789]]86-*-pe)
54d1c879 734 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
252b5132 735 ;;
ec11bdc6 736 i[[3456789]]86-*-sco3.2v5*)
252b5132
RH
737 # The linker does not yet know about weak symbols in COFF,
738 # and is not configured to handle mixed ELF and COFF.
54d1c879 739 noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
252b5132 740 ;;
ec11bdc6 741 i[[3456789]]86-*-sco*)
54d1c879 742 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
252b5132 743 ;;
ec11bdc6 744 i[[3456789]]86-*-solaris2*)
252b5132
RH
745 noconfigdirs="$noconfigdirs target-libgloss"
746 ;;
ec11bdc6 747 i[[3456789]]86-*-sysv4*)
54d1c879 748 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 749 ;;
ec11bdc6 750 i[[3456789]]86-*-beos*)
54d1c879 751 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
bba45b8b 752 ;;
b59bea8a 753 i[[3456789]]86-*-rdos*)
80911fe1
PB
754 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
755 ;;
b07c2aad 756 m32r-*-*)
54d1c879 757 noconfigdirs="$noconfigdirs ${libgcj}"
b07c2aad 758 ;;
75205f78 759 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*)
54d1c879 760 noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
691bb5a1 761 libgloss_dir=m68hc11
f9e0997d 762 ;;
75205f78 763 m68k-*-elf*)
54d1c879 764 noconfigdirs="$noconfigdirs ${libgcj}"
252b5132
RH
765 ;;
766 m68k-*-coff*)
54d1c879 767 noconfigdirs="$noconfigdirs ${libgcj}"
252b5132 768 ;;
691bb5a1
DD
769 m68*-*-* | fido-*-*)
770 libgloss_dir=m68k
771 ;;
75205f78
DD
772 mcore-*-pe*)
773 # The EPOC C++ environment does not support exceptions or rtti,
774 # and so building libstdc++-v3 tends not to always work.
775 noconfigdirs="$noconfigdirs target-libstdc++-v3"
776 ;;
777 mmix-*-*)
59f7ec45 778 noconfigdirs="$noconfigdirs target-libffi target-boehm-gc gdb libgloss"
096f7d00 779 unsupported_languages="$unsupported_languages fortran java"
75205f78 780 ;;
252b5132 781 mn10200-*-*)
54d1c879 782 noconfigdirs="$noconfigdirs ${libgcj}"
252b5132
RH
783 ;;
784 mn10300-*-*)
54d1c879 785 noconfigdirs="$noconfigdirs ${libgcj}"
252b5132 786 ;;
4970f871 787 mt-*-*)
cdb9b172
AH
788 noconfigdirs="$noconfigdirs sim"
789 ;;
252b5132
RH
790 powerpc-*-aix*)
791 # copied from rs6000-*-* entry
54d1c879 792 noconfigdirs="$noconfigdirs gprof target-libgloss target-libssp ${libgcj}"
252b5132
RH
793 ;;
794 powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
795 target_configdirs="$target_configdirs target-winsup"
54d1c879 796 noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl gnuserv ${libgcj}"
252b5132
RH
797 # always build newlib.
798 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
799 ;;
800 # This is temporary until we can link against shared libraries
801 powerpcle-*-solaris*)
54d1c879 802 noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl gnuserv ${libgcj}"
691bb5a1 803 libgloss_dir=rs6000
ba73c63f
JM
804 ;;
805 powerpc-*-beos*)
54d1c879 806 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
252b5132
RH
807 ;;
808 powerpc-*-eabi)
54d1c879 809 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 810 libgloss_dir=rs6000
caeba88f
AL
811 ;;
812 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems* )
691bb5a1 813 libgloss_dir=rs6000
252b5132
RH
814 ;;
815 rs6000-*-lynxos*)
54d1c879 816 noconfigdirs="$noconfigdirs target-newlib gprof ${libgcj}"
252b5132
RH
817 ;;
818 rs6000-*-aix*)
54d1c879 819 noconfigdirs="$noconfigdirs gprof target-libgloss target-libssp ${libgcj}"
252b5132
RH
820 ;;
821 rs6000-*-*)
54d1c879 822 noconfigdirs="$noconfigdirs gprof ${libgcj}"
252b5132
RH
823 ;;
824 m68k-apollo-*)
54d1c879 825 noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss ${libgcj}"
252b5132 826 ;;
5bd8be13
RS
827 mips*-sde-elf*)
828 skipdirs="$skipdirs target-libiberty"
829 noconfigdirs="$noconfigdirs ${libgcj}"
830 if test x$with_newlib = xyes; then
831 noconfigdirs="$noconfigdirs gprof"
832 fi
833 libgloss_dir=mips
834 ;;
252b5132 835 mips*-*-irix5*)
54d1c879 836 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
252b5132
RH
837 ;;
838 mips*-*-irix6*)
b3ed1d6b
AO
839 # Linking libjava exceeds command-line length limits on at least
840 # IRIX 6.2, but not on IRIX 6.5.
841 # Also, boehm-gc won't build on IRIX 6.5, according to Jeffrey Oldham
842 # <oldham@codesourcery.com>
54d1c879 843 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
252b5132 844 ;;
252b5132 845 mips*-*-bsd*)
54d1c879 846 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
252b5132 847 ;;
fad93c55 848 mips*-*-linux*)
574e6d11 849 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
fad93c55 850 ;;
252b5132 851 mips*-*-*)
54d1c879 852 noconfigdirs="$noconfigdirs gprof ${libgcj}"
691bb5a1 853 libgloss_dir=mips
252b5132
RH
854 ;;
855 romp-*-*)
54d1c879 856 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss ${libgcj}"
252b5132 857 ;;
dbf85af7 858 sh-*-* | sh64-*-*)
252b5132 859 case "${host}" in
ec11bdc6
DD
860 i[[3456789]]86-*-vsta) ;; # don't add gprof back in
861 i[[3456789]]86-*-go32*) ;; # don't add gprof back in
862 i[[3456789]]86-*-msdosdjgpp*) ;; # don't add gprof back in
252b5132
RH
863 *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
864 esac
54d1c879 865 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 866 ;;
691bb5a1
DD
867 sparclet-*-aout* | sparc86x-*-*)
868 libgloss_dir=sparc
869 ;;
252b5132 870 sparc-*-elf*)
54d1c879 871 noconfigdirs="$noconfigdirs ${libgcj}"
252b5132
RH
872 ;;
873 sparc64-*-elf*)
54d1c879 874 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 875 libgloss_dir=sparc
252b5132
RH
876 ;;
877 sparclite-*-*)
54d1c879 878 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 879 libgloss_dir=sparc
252b5132
RH
880 ;;
881 sparc-*-sunos4*)
54d1c879 882 noconfigdirs="$noconfigdirs ${libgcj}"
a0c4f3a0 883 if test x${is_cross_compiler} != xno ; then
c74222f7 884 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
252b5132
RH
885 else
886 use_gnu_ld=no
887 fi
888 ;;
e3c770b1 889 sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*)
54d1c879 890 noconfigdirs="$noconfigdirs ${libgcj}"
e3c770b1 891 ;;
3a036cdc 892 sparc-*-solaris* | sparc64-*-solaris* | sparcv9-*-solaris*)
b3ed1d6b 893 ;;
2839fe5d
BE
894 spu-*-*)
895 skipdirs="target-libssp"
896 ;;
252b5132 897 v810-*-*)
54d1c879 898 noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld target-libstdc++-v3 opcodes target-libgloss ${libgcj}"
252b5132
RH
899 ;;
900 v850-*-*)
54d1c879 901 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132 902 ;;
347dad9e 903 v850e-*-*)
54d1c879 904 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
252b5132
RH
905 ;;
906 v850ea-*-*)
54d1c879 907 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
347dad9e 908 ;;
252b5132 909 vax-*-vms)
54d1c879 910 noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss ${libgcj}"
252b5132
RH
911 ;;
912 vax-*-*)
54d1c879 913 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
96ce09a7 914 ;;
8b66833e 915 xtensa*-*-*)
54d1c879 916 noconfigdirs="$noconfigdirs ${libgcj}"
fbd1054d 917 ;;
f48556b1 918 ip2k-*-*)
54d1c879 919 noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
f48556b1 920 ;;
de0b4a87 921 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
574e6d11
DD
922 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
923 ;;
252b5132 924 *-*-lynxos*)
54d1c879 925 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
252b5132 926 ;;
75205f78 927 *-*-*)
54d1c879 928 noconfigdirs="$noconfigdirs ${libgcj}"
75205f78 929 ;;
252b5132
RH
930esac
931
932# If we aren't building newlib, then don't build libgloss, since libgloss
933# depends upon some newlib header files.
934case "${noconfigdirs}" in
935 *target-libgloss*) ;;
936 *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;;
f48556b1 937esac
252b5132 938
f48556b1
DD
939# Work in distributions that contain no compiler tools, like Autoconf.
940tentative_cc=""
a0da8069 941host_makefile_frag=/dev/null
f48556b1
DD
942if test -d ${srcdir}/config ; then
943case "${host}" in
944 m68k-hp-hpux*)
945 # Avoid "too much defining" errors from HPUX compiler.
946 tentative_cc="cc -Wp,-H256000"
a0da8069
NN
947 # If "ar" in $PATH is GNU ar, the symbol table may need rebuilding.
948 # If it's HP/UX ar, this should be harmless.
949 RANLIB="ar ts"
f48556b1
DD
950 ;;
951 m68k-apollo-sysv*)
952 tentative_cc="cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DUSG"
f48556b1
DD
953 ;;
954 m68k-apollo-bsd*)
955 #None of the Apollo compilers can compile gas or binutils. The preprocessor
956 # chokes on bfd, the compiler won't let you assign integers to enums, and
957 # other problems. Defining CC to gcc is a questionable way to say "don't use
958 # the apollo compiler" (the preferred version of GCC could be called cc,
959 # or whatever), but I'm not sure leaving CC as cc is any better...
960 #CC=cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DNO_STDARG
a0da8069 961 # Used to have BISON=yacc.
f48556b1 962 tentative_cc=gcc
f48556b1
DD
963 ;;
964 m88k-dg-dgux*)
965 tentative_cc="gcc -Wall -ansi -D__using_DGUX"
f48556b1
DD
966 ;;
967 m88k-harris-cxux*)
968 # Under CX/UX, we want to tell the compiler to use ANSI mode.
969 tentative_cc="cc -Xa"
970 host_makefile_frag="config/mh-cxux"
971 ;;
972 m88k-motorola-sysv*)
f48556b1
DD
973 ;;
974 mips*-dec-ultrix*)
975 tentative_cc="cc -Wf,-XNg1000"
976 host_makefile_frag="config/mh-decstation"
977 ;;
978 mips*-nec-sysv4*)
979 # The C compiler on NEC MIPS SVR4 needs bigger tables.
980 tentative_cc="cc -ZXNd=5000 -ZXNg=1000"
981 host_makefile_frag="config/mh-necv4"
982 ;;
f48556b1
DD
983 mips*-sgi-irix4*)
984 # Tell compiler to use K&R C. We can't compile under the SGI Ansi
985 # environment. Also bump switch table size so that cp-parse will
986 # compile. Bump string length limit so linker builds.
987 tentative_cc="cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh2000 -Wf,-XNl8192"
988 ;;
f48556b1
DD
989 mips*-*-sysv4*)
990 host_makefile_frag="config/mh-sysv4"
991 ;;
992 mips*-*-sysv*)
993 # This is for a MIPS running RISC/os 4.52C.
994
995 # This is needed for GDB, but needs to be in the top-level make because
996 # if a library is compiled with the bsd headers and gets linked with the
997 # sysv system libraries all hell can break loose (e.g. a jmp_buf might be
998 # a different size).
999 # ptrace(2) apparently has problems in the BSD environment. No workaround is
1000 # known except to select the sysv environment. Could we use /proc instead?
1001 # These "sysv environments" and "bsd environments" often end up being a pain.
1002 #
1003 # This is not part of CFLAGS because perhaps not all C compilers have this
1004 # option.
1005 tentative_cc="cc -systype sysv"
f48556b1
DD
1006 ;;
1007 i370-ibm-opened*)
1008 tentative_cc="c89"
f48556b1 1009 ;;
ec11bdc6 1010 i[[3456789]]86-*-sysv5*)
f48556b1
DD
1011 host_makefile_frag="config/mh-sysv5"
1012 ;;
ec11bdc6 1013 i[[3456789]]86-*-dgux*)
f48556b1
DD
1014 tentative_cc="gcc -Wall -ansi -D__using_DGUX"
1015 host_makefile_frag="config/mh-dgux386"
1016 ;;
ec11bdc6 1017 i[[3456789]]86-ncr-sysv4.3*)
f48556b1
DD
1018 # The MetaWare compiler will generate a copyright message unless you
1019 # turn it off by adding the -Hnocopyr flag.
1020 tentative_cc="cc -Hnocopyr"
f48556b1 1021 ;;
ec11bdc6 1022 i[[3456789]]86-ncr-sysv4*)
f48556b1
DD
1023 # for an NCR 3000 (i486/SVR4) system.
1024 # The NCR 3000 ships with a MetaWare compiler installed as /bin/cc.
1025 # This compiler not only emits obnoxious copyright messages every time
1026 # you run it, but it chokes and dies on a whole bunch of GNU source
1027 # files. Default to using the AT&T compiler installed in /usr/ccs/ATT/cc.
1028 tentative_cc="/usr/ccs/ATT/cc"
1029 host_makefile_frag="config/mh-ncr3000"
1030 ;;
ec11bdc6 1031 i[[3456789]]86-*-sco3.2v5*)
f48556b1 1032 ;;
ec11bdc6 1033 i[[3456789]]86-*-sco*)
f48556b1
DD
1034 # The native C compiler botches some simple uses of const. Unfortunately,
1035 # it doesn't defined anything like "__sco__" for us to test for in ansidecl.h.
1036 tentative_cc="cc -Dconst="
1037 host_makefile_frag="config/mh-sco"
1038 ;;
ec11bdc6 1039 i[[3456789]]86-*-udk*)
f48556b1
DD
1040 host_makefile_frag="config/mh-sysv5"
1041 ;;
ec11bdc6 1042 i[[3456789]]86-*-solaris2*)
f48556b1
DD
1043 host_makefile_frag="config/mh-sysv4"
1044 ;;
ec11bdc6 1045 i[[3456789]]86-*-msdosdjgpp*)
f48556b1
DD
1046 host_makefile_frag="config/mh-djgpp"
1047 ;;
1048 *-cygwin*)
e33b51a6 1049 ACX_CHECK_CYGWIN_CAT_WORKS
f48556b1
DD
1050 host_makefile_frag="config/mh-cygwin"
1051 ;;
8a1599ab 1052 *-mingw*)
84e7906e 1053 host_makefile_frag="config/mh-mingw"
80f6dcbc 1054 ;;
f48556b1
DD
1055 *-interix*)
1056 host_makefile_frag="config/mh-interix"
1057 ;;
1058 vax-*-ultrix2*)
1059 # The old BSD pcc isn't up to compiling parts of gdb so use gcc
1060 tentative_cc=gcc
1061 ;;
1062 *-*-solaris2*)
1063 host_makefile_frag="config/mh-solaris"
1064 ;;
1065 m68k-sun-sunos*)
1066 # Sun's C compiler needs the -J flag to be able to compile cp-parse.c
1067 # without overflowing the jump tables (-J says to use a 32 bit table)
1068 tentative_cc="cc -J"
1069 ;;
da888c87 1070 hppa*-hp-hpux10*)
f48556b1 1071 tentative_cc="cc -Wp,-H256000"
da888c87 1072 host_makefile_frag="config/mh-pa-hpux10"
f48556b1 1073 ;;
da888c87
PB
1074 hppa*-hp-hpux* | hppa*-*-hiux*)
1075 tentative_cc="cc -Wp,-H256000"
1076 host_makefile_frag="config/mh-pa"
1077 ;;
1078 hppa*-*)
1079 host_makefile_frag="config/mh-pa"
1080 ;;
1081 *-hp-hpux* | *-*-hiux*)
f48556b1 1082 tentative_cc="cc -Wp,-H256000"
f48556b1
DD
1083 ;;
1084 rs6000-*-lynxos*)
1085 # /bin/cc is less than useful for our purposes. Always use GCC
1086 tentative_cc="/usr/cygnus/progressive/bin/gcc"
1087 host_makefile_frag="config/mh-lynxrs6k"
1088 ;;
0df3d27f
PB
1089 powerpc-*-darwin*)
1090 host_makefile_frag="config/mh-ppc-darwin"
1091 ;;
f6d183c0
PB
1092 powerpc-*-aix*)
1093 host_makefile_frag="config/mh-ppc-aix"
1094 ;;
1095 rs6000-*-aix*)
1096 host_makefile_frag="config/mh-ppc-aix"
1097 ;;
f48556b1
DD
1098 *-*-lynxos*)
1099 # /bin/cc is less than useful for our purposes. Always use GCC
1100 tentative_cc="/bin/gcc"
1101 ;;
1102 *-*-sysv4*)
1103 host_makefile_frag="config/mh-sysv4"
1104 ;;
fe69863c
DD
1105 # This is placed last to prevent interfering with the cases above.
1106 i[[3456789]]86-*-*)
1107 # Build the stage2 and stage3 compilers with -fomit-frame-pointer.
1108 host_makefile_frag="config/mh-x86omitfp"
1109 ;;
f48556b1
DD
1110esac
1111fi
1112
9e07f89d
NN
1113# If we aren't going to be using gcc, see if we can extract a definition
1114# of CC from the fragment.
1115# Actually, use the 'pre-extracted' version above.
1116if test -z "${CC}" && test "${build}" = "${host}" ; then
1117 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
1118 found=
1119 for dir in $PATH; do
1120 test -z "$dir" && dir=.
1121 if test -f $dir/gcc; then
1122 found=yes
1123 break
1124 fi
1125 done
1126 IFS="$save_ifs"
1127 if test -z "${found}" && test -n "${tentative_cc}" ; then
1128 CC=$tentative_cc
1129 fi
1130fi
1131
1132if test "${build}" != "${host}" ; then
b5714970
PB
1133 AR_FOR_BUILD=${AR_FOR_BUILD-ar}
1134 AS_FOR_BUILD=${AS_FOR_BUILD-as}
9e07f89d 1135 CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
b5714970
PB
1136 CXX_FOR_BUILD=${CXX_FOR_BUILD-g++}
1137 GCJ_FOR_BUILD=${GCJ_FOR_BUILD-gcj}
1138 GFORTRAN_FOR_BUILD=${GFORTRAN_FOR_BUILD-gfortran}
1139 DLLTOOL_FOR_BUILD=${DLLTOOL_FOR_BUILD-dlltool}
1140 LD_FOR_BUILD=${LD_FOR_BUILD-ld}
1141 NM_FOR_BUILD=${NM_FOR_BUILD-nm}
1142 RANLIB_FOR_BUILD=${RANLIB_FOR_BUILD-ranlib}
1143 WINDRES_FOR_BUILD=${WINDRES_FOR_BUILD-windres}
1144 WINDMC_FOR_BUILD=${WINDMC_FOR_BUILD-windmc}
9e07f89d 1145else
b5714970
PB
1146 AR_FOR_BUILD="\$(AR)"
1147 AS_FOR_BUILD="\$(AS)"
9e07f89d 1148 CC_FOR_BUILD="\$(CC)"
b5714970
PB
1149 CXX_FOR_BUILD="\$(CXX)"
1150 GCJ_FOR_BUILD="\$(GCJ)"
1151 GFORTRAN_FOR_BUILD="\$(GFORTRAN)"
1152 DLLTOOL_FOR_BUILD="\$(DLLTOOL)"
1153 LD_FOR_BUILD="\$(LD)"
1154 NM_FOR_BUILD="\$(NM)"
1155 RANLIB_FOR_BUILD="\$(RANLIB)"
1156 WINDRES_FOR_BUILD="\$(WINDRES)"
1157 WINDMC_FOR_BUILD="\$(WINDMC)"
24ff9987 1158fi
9e07f89d 1159
24ff9987
DJ
1160AC_PROG_CC
1161AC_PROG_CXX
1162
1163# We must set the default linker to the linker used by gcc for the correct
1164# operation of libtool. If LD is not defined and we are using gcc, try to
1165# set the LD default to the ld used by gcc.
1166if test -z "$LD"; then
1167 if test "$GCC" = yes; then
1168 case $build in
1169 *-*-mingw*)
1170 gcc_prog_ld=`$CC -print-prog-name=ld 2>&1 | tr -d '\015'` ;;
1171 *)
1172 gcc_prog_ld=`$CC -print-prog-name=ld 2>&1` ;;
1173 esac
1174 case $gcc_prog_ld in
1175 # Accept absolute paths.
1176 [[\\/]* | [A-Za-z]:[\\/]*)]
1177 LD="$gcc_prog_ld" ;;
1178 esac
1179 fi
9e07f89d
NN
1180fi
1181
1182ACX_PROG_GNAT
b8908782 1183ACX_PROG_CMP_IGNORE_INITIAL
9e07f89d 1184
11b04d1f 1185# Check for GMP and MPFR
4b900473 1186gmplibs="-lmpfr -lgmp"
4b1cb4fe 1187gmpinc=
4b900473
PB
1188have_gmp=no
1189
11b04d1f
DD
1190# Specify a location for mpfr
1191# check for this first so it ends up on the link line before gmp.
521ec477 1192AC_ARG_WITH(mpfr-dir, [ --with-mpfr-dir=PATH this option has been REMOVED],
8a0d8a5c
PB
1193 AC_MSG_ERROR([The --with-mpfr-dir=PATH option has been removed.
1194Use --with-mpfr=PATH or --with-mpfr-include=PATH plus --with-mpfr-lib=PATH]))
11b04d1f 1195
521ec477 1196AC_ARG_WITH(mpfr, [ --with-mpfr=PATH specify prefix directory for installed MPFR package.
8a0d8a5c
PB
1197 Equivalent to --with-mpfr-include=PATH/include
1198 plus --with-mpfr-lib=PATH/lib])
1199AC_ARG_WITH(mpfr_include, [ --with-mpfr-include=PATH
521ec477
DD
1200 specify directory for installed MPFR include files])
1201AC_ARG_WITH(mpfr_lib, [ --with-mpfr-lib=PATH specify directory for the installed MPFR library])
11b04d1f
DD
1202
1203if test "x$with_mpfr" != x; then
1204 gmplibs="-L$with_mpfr/lib $gmplibs"
1205 gmpinc="-I$with_mpfr/include"
1206fi
8a0d8a5c
PB
1207if test "x$with_mpfr_include" != x; then
1208 gmpinc="-I$with_mpfr_include"
1209fi
1210if test "x$with_mpfr_lib" != x; then
1211 gmplibs="-L$with_mpfr_lib $gmplibs"
1212fi
4b900473
PB
1213if test "x$with_mpfr$with_mpfr_include$with_mpfr_lib" = x && test -d ${srcdir}/mpfr; then
1214 gmplibs='-L$$r/$(HOST_SUBDIR)/mpfr/.libs -L$$r/$(HOST_SUBDIR)/mpfr/_libs '"$gmplibs"
1215 gmpinc='-I$$r/$(HOST_SUBDIR)/mpfr -I$$s/mpfr '"$gmpinc"
1216 # Do not test the mpfr version. Assume that it is sufficient, since
1217 # it is in the source tree, and the library has not been built yet
1218 # but it would be included on the link line in the version check below
1219 # hence making the test fail.
1220 have_gmp=yes
1221fi
11b04d1f 1222
4b1cb4fe 1223# Specify a location for gmp
521ec477 1224AC_ARG_WITH(gmp-dir, [ --with-gmp-dir=PATH this option has been REMOVED],
8a0d8a5c
PB
1225 AC_MSG_ERROR([The --with-gmp-dir=PATH option has been removed.
1226Use --with-gmp=PATH or --with-gmp-include=PATH plus --with-gmp-lib=PATH]))
1227
521ec477 1228AC_ARG_WITH(gmp, [ --with-gmp=PATH specify prefix directory for the installed GMP package.
8a0d8a5c
PB
1229 Equivalent to --with-gmp-include=PATH/include
1230 plus --with-gmp-lib=PATH/lib])
521ec477
DD
1231AC_ARG_WITH(gmp_include, [ --with-gmp-include=PATH specify directory for installed GMP include files])
1232AC_ARG_WITH(gmp_lib, [ --with-gmp-lib=PATH specify directory for the installed GMP library])
4b1cb4fe 1233
4b1cb4fe 1234
11b04d1f
DD
1235if test "x$with_gmp" != x; then
1236 gmplibs="-L$with_gmp/lib $gmplibs"
1237 gmpinc="-I$with_gmp/include $gmpinc"
4b1cb4fe 1238fi
8a0d8a5c
PB
1239if test "x$with_gmp_include" != x; then
1240 gmpinc="-I$with_gmp_include $gmpinc"
1241fi
1242if test "x$with_gmp_lib" != x; then
1243 gmplibs="-L$with_gmp_lib $gmplibs"
1244fi
4b900473
PB
1245if test "x$with_gmp$with_gmp_include$with_gmp_lib" = x && test -d ${srcdir}/gmp; then
1246 gmplibs='-L$$r/$(HOST_SUBDIR)/gmp/.libs -L$$r/$(HOST_SUBDIR)/gmp/_libs '"$gmplibs"
1247 gmpinc='-I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp '"$gmpinc"
1248 # Do not test the gmp version. Assume that it is sufficient, since
1249 # it is in the source tree, and the library has not been built yet
1250 # but it would be included on the link line in the version check below
1251 # hence making the test fail.
1252 have_gmp=yes
1253fi
4b1cb4fe 1254
ceb92e78 1255if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
4b900473
PB
1256 have_gmp=yes
1257 saved_CFLAGS="$CFLAGS"
1258 CFLAGS="$CFLAGS $gmpinc"
1259 # Check GMP actually works
1260 AC_MSG_CHECKING([for correct version of gmp.h])
1261 AC_TRY_COMPILE([#include "gmp.h"],[
1262 #if __GNU_MP_VERSION < 4 || (__GNU_MP_VERSION == 4 && __GNU_MP_VERSION_MINOR < 1)
9dbaa842 1263 choke me
4b900473
PB
1264 #endif
1265 ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); have_gmp=no])
1266
1267 if test x"$have_gmp" = xyes; then
1268 saved_LIBS="$LIBS"
1269 LIBS="$LIBS $gmplibs"
57c53b2b 1270 dnl MPFR 2.2.1 is acceptable, but MPFR 2.3.0 is better.
4b900473
PB
1271 AC_MSG_CHECKING([for correct version of mpfr.h])
1272 AC_TRY_LINK([#include <gmp.h>
1273 #include <mpfr.h>],[
57c53b2b 1274 #if MPFR_VERSION < MPFR_VERSION_NUM(2,2,1)
4b900473
PB
1275 choke me
1276 #endif
a3ca38d2
DD
1277 mpfr_t n;
1278 mpfr_t x;
4b900473 1279 int t;
a3ca38d2
DD
1280 mpfr_init (n);
1281 mpfr_init (x);
4b900473
PB
1282 mpfr_atan2 (n, n, x, GMP_RNDN);
1283 mpfr_erfc (n, x, GMP_RNDN);
1284 mpfr_subnormalize (x, t, GMP_RNDN);
1285 ], [AC_TRY_LINK([#include <gmp.h>
1286 #include <mpfr.h>],[
57c53b2b 1287 #if MPFR_VERSION < MPFR_VERSION_NUM(2,3,0)
4b900473
PB
1288 choke me
1289 #endif
1290 mpfr_t n; mpfr_init(n);
1291 ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([buggy but acceptable])])],
1292 [AC_MSG_RESULT([no]); have_gmp=no])
1293 LIBS="$saved_LIBS"
1294 fi
1295 CFLAGS="$saved_CFLAGS"
4b1cb4fe 1296
4b900473 1297 if test x$have_gmp != xyes; then
57c53b2b 1298 AC_MSG_ERROR([Building GCC requires GMP 4.1+ and MPFR 2.3.0+.
9dbaa842
DD
1299Try the --with-gmp and/or --with-mpfr options to specify their locations.
1300Copies of these libraries' source code can be found at their respective
1301hosting sites as well as at ftp://gcc.gnu.org/pub/gcc/infrastructure/.
8a0d8a5c
PB
1302See also http://gcc.gnu.org/install/prerequisites.html for additional info.
1303If you obtained GMP and/or MPFR from a vendor distribution package, make
1304sure that you have installed both the libraries and the header files.
1305They may be located in separate packages.])
4b900473 1306 fi
9dbaa842
DD
1307fi
1308
11b04d1f 1309# Flags needed for both GMP and/or MPFR
4b1cb4fe
DD
1310AC_SUBST(gmplibs)
1311AC_SUBST(gmpinc)
1312
947f426e 1313# By default, C is the only stage 1 language.
9b134994 1314stage1_languages=,c,
1d39f329 1315
9e07f89d
NN
1316# Figure out what language subdirectories are present.
1317# Look if the user specified --enable-languages="..."; if not, use
1318# the environment variable $LANGUAGES if defined. $LANGUAGES might
1319# go away some day.
1320# NB: embedded tabs in this IF block -- do not untabify
1321if test -d ${srcdir}/gcc; then
1322 if test x"${enable_languages+set}" != xset; then
1323 if test x"${LANGUAGES+set}" = xset; then
1324 enable_languages="${LANGUAGES}"
1325 echo configure.in: warning: setting LANGUAGES is deprecated, use --enable-languages instead 1>&2
1326 else
1327 enable_languages=all
1328 fi
1329 else
1330 if test x"${enable_languages}" = x ||
1331 test x"${enable_languages}" = xyes;
1332 then
1333 echo configure.in: --enable-languages needs at least one language argument 1>&2
1334 exit 1
1335 fi
1336 fi
1337 enable_languages=`echo "${enable_languages}" | sed -e 's/[[ ,]][[ ,]]*/,/g' -e 's/,$//'`
1338
096f7d00
DE
1339 # 'f95' is the old name for the 'fortran' language. We issue a warning
1340 # and make the substitution.
1341 case ,${enable_languages}, in
1342 *,f95,*)
1343 echo configure.in: warning: 'f95' as language name is deprecated, use 'fortran' instead 1>&2
1344 enable_languages=`echo "${enable_languages}" | sed -e 's/f95/fortran/g'`
1345 ;;
1346 esac
1347
9e07f89d
NN
1348 # First scan to see if an enabled language requires some other language.
1349 # We assume that a given config-lang.in will list all the language
1350 # front ends it requires, even if some are required indirectly.
1351 for lang_frag in ${srcdir}/gcc/*/config-lang.in .. ; do
1352 case ${lang_frag} in
1353 ..) ;;
1354 # The odd quoting in the next line works around
1355 # an apparent bug in bash 1.12 on linux.
1356 ${srcdir}/gcc/[[*]]/config-lang.in) ;;
1357 *)
1358 # From the config-lang.in, get $language, $lang_requires
1359 language=
1360 lang_requires=
1361 . ${lang_frag}
1362 for other in ${lang_requires} ; do
1363 case ,${enable_languages}, in
1364 *,$other,*) ;;
1365 *,all,*) ;;
1366 *,$language,*)
1367 echo " \`$other' language required by \`$language'; enabling" 1>&2
1368 enable_languages="${enable_languages},${other}"
1369 ;;
1370 esac
1371 done
1372 ;;
1373 esac
1374 done
1375
9b134994 1376 new_enable_languages=,c,
9e07f89d 1377 missing_languages=`echo ",$enable_languages," | sed -e s/,all,/,/ -e s/,c,/,/ `
9b134994 1378 potential_languages=,c,
9e07f89d
NN
1379
1380 for lang_frag in ${srcdir}/gcc/*/config-lang.in .. ; do
1381 case ${lang_frag} in
1382 ..) ;;
1383 # The odd quoting in the next line works around
1384 # an apparent bug in bash 1.12 on linux.
1385 ${srcdir}/gcc/[[*]]/config-lang.in) ;;
1386 *)
1387 # From the config-lang.in, get $language, $target_libs,
1d39f329 1388 # $lang_dirs, $boot_language, and $build_by_default
9e07f89d
NN
1389 language=
1390 target_libs=
1391 lang_dirs=
64ce424c 1392 subdir_requires=
9b134994
PB
1393 boot_language=no
1394 build_by_default=yes
9e07f89d 1395 . ${lang_frag}
9b134994
PB
1396 if test x${language} = x; then
1397 echo "${lang_frag} doesn't set \$language." 1>&2
1398 exit 1
1399 fi
1400
1401 case ,${enable_languages}, in
1402 *,${language},*)
9e07f89d
NN
1403 # Language was explicitly selected; include it.
1404 add_this_lang=yes
1405 ;;
9b134994
PB
1406 *,all,*)
1407 # 'all' was selected, select it if it is a default language
1408 add_this_lang=${build_by_default}
9e07f89d
NN
1409 ;;
1410 *)
1411 add_this_lang=no
1412 ;;
1413 esac
4b1cb4fe 1414
64ce424c 1415 # Disable languages that need other directories if these aren't available.
1f3f1bbf 1416 for i in $subdir_requires; do
3d3adb43 1417 test -f "$srcdir/gcc/$i/config-lang.in" && continue
64ce424c
PB
1418 case ,${enable_languages}, in
1419 *,${language},*)
1420 # Specifically requested language; tell them.
1421 AC_MSG_ERROR([The gcc/$i directory contains parts of $language but is missing])
1422 ;;
1423 *)
1424 # Silently disable.
9b134994 1425 add_this_lang=unsupported
64ce424c
PB
1426 ;;
1427 esac
1428 done
1429
9b134994
PB
1430 # Disable Ada if no preexisting GNAT is available.
1431 case ,${enable_languages},:${language}:${have_gnat} in
1432 *,${language},*:ada:no)
1433 # Specifically requested language; tell them.
1434 AC_MSG_ERROR([GNAT is required to build $language])
1435 ;;
1436 *:ada:no)
1437 # Silently disable.
1438 add_this_lang=unsupported
1439 ;;
1440 esac
1441
59f7ec45
HPN
1442 # Disable a language that is unsupported by the target.
1443 case " $unsupported_languages " in
1444 *" $language "*)
9b134994 1445 add_this_lang=unsupported
59f7ec45
HPN
1446 ;;
1447 esac
1448
4b1cb4fe 1449 case $add_this_lang in
9b134994 1450 unsupported)
9e07f89d 1451 # Remove language-dependent dirs.
1d39f329
NN
1452 eval noconfigdirs='"$noconfigdirs "'\"$target_libs $lang_dirs\"
1453 ;;
9b134994
PB
1454 no)
1455 # Remove language-dependent dirs; still show language as supported.
1456 eval noconfigdirs='"$noconfigdirs "'\"$target_libs $lang_dirs\"
1457 potential_languages="${potential_languages}${language},"
1458 ;;
1459 yes)
1460 new_enable_languages="${new_enable_languages}${language},"
1461 potential_languages="${potential_languages}${language},"
1d39f329
NN
1462 missing_languages=`echo "$missing_languages" | sed "s/,$language,/,/"`
1463 case ${boot_language} in
1464 yes)
4fa63067 1465 # Add to (comma-separated) list of stage 1 languages.
9b134994 1466 stage1_languages="${stage1_languages}${language},"
1d39f329
NN
1467 ;;
1468 esac
1469 ;;
9e07f89d
NN
1470 esac
1471 ;;
1472 esac
1473 done
1474
9b134994 1475 AC_ARG_ENABLE(stage1-languages,
521ec477 1476[ --enable-stage1-languages@<:@=all@:>@ choose additional languages to build during
9b134994
PB
1477 stage1. Mostly useful for compiler development.],
1478 [case ,${enable_stage1_languages}, in
1479 ,no,|,,)
1480 # Set it to something that will have no effect in the loop below
1481 enable_stage1_languages=c ;;
1482 ,yes,)
1483 enable_stage1_languages=`echo $new_enable_languages | \
1484 sed -e "s/^,//" -e "s/,$//" ` ;;
1485 *,all,*)
1486 enable_stage1_languages=`echo ,$enable_stage1_languages, | \
1487 sed -e "s/,all,/$new_enable_languages/" -e "s/^,//" -e "s/,$//" ` ;;
1488 esac
1489
1490 # Add "good" languages from enable_stage1_languages to stage1_languages,
1491 # while "bad" languages go in missing_languages. Leave no duplicates.
1492 for i in `echo $enable_stage1_languages | sed 's/,/ /g' `; do
1493 case $potential_languages in
1494 *,$i,*)
1495 case $stage1_languages in
1496 *,$i,*) ;;
1497 *) stage1_languages="$stage1_languages$i," ;;
1498 esac ;;
1499 *)
1500 case $missing_languages in
1501 *,$i,*) ;;
1502 *) missing_languages="$missing_languages$i," ;;
1503 esac ;;
1504 esac
1505 done])
1506
1507 # Remove leading/trailing commas that were added for simplicity
1508 potential_languages=`echo "$potential_languages" | sed -e "s/^,//" -e "s/,$//"`
4b0ac75d 1509 missing_languages=`echo "$missing_languages" | sed -e "s/^,//" -e "s/,$//"`
9b134994
PB
1510 stage1_languages=`echo "$stage1_languages" | sed -e "s/^,//" -e "s/,$//"`
1511 new_enable_languages=`echo "$new_enable_languages" | sed -e "s/^,//" -e "s/,$//"`
1512
9e07f89d
NN
1513 if test "x$missing_languages" != x; then
1514 AC_MSG_ERROR([
27258dd4 1515The following requested languages could not be built: ${missing_languages}
9b134994 1516Supported languages are: ${potential_languages}])
9e07f89d 1517 fi
9e07f89d
NN
1518 if test "x$new_enable_languages" != "x$enable_languages"; then
1519 echo The following languages will be built: ${new_enable_languages}
9b134994 1520 enable_languages="$new_enable_languages"
9e07f89d 1521 fi
9b134994
PB
1522
1523 AC_SUBST(stage1_languages)
81ec575a 1524 ac_configure_args=`echo " $ac_configure_args" | sed -e "s/ '--enable-languages=[[^ ]]*'//g" -e "s/$/ '--enable-languages="$enable_languages"'/" `
9e07f89d
NN
1525fi
1526
a6df5a19
PB
1527# Handle --disable-<component> generically.
1528for dir in $configdirs $build_configdirs $target_configdirs ; do
1529 dirname=`echo $dir | sed -e s/target-//g -e s/build-//g -e s/-/_/g`
9cc8ae67
PB
1530 varname=`echo $dirname | sed -e s/+/_/g`
1531 if eval test x\${enable_${varname}} "=" xno ; then
a6df5a19
PB
1532 noconfigdirs="$noconfigdirs $dir"
1533 fi
1534done
1535
4f0ef2d8
CD
1536# Check for Boehm's garbage collector
1537AC_ARG_ENABLE(objc-gc,
521ec477
DD
1538[ --enable-objc-gc enable use of Boehm's garbage collector with the
1539 GNU Objective-C runtime],
4f0ef2d8
CD
1540[case ,${enable_languages},:${enable_objc_gc}:${noconfigdirs} in
1541 *,objc,*:*:yes:*target-boehm-gc*)
1542 AC_MSG_ERROR([Boehm's garbage collector was requested yet not supported in this configuration])
1543 ;;
1544esac])
1545
1546# Make sure we only build Boehm's garbage collector if required.
d42c4017
DA
1547case ,${enable_languages},:${enable_objc_gc} in
1548 *,objc,*:yes)
4f0ef2d8
CD
1549 # Keep target-boehm-gc if requested for Objective-C.
1550 ;;
4f0ef2d8 1551 *)
d42c4017
DA
1552 # Otherwise remove target-boehm-gc depending on target-libjava.
1553 if echo " ${noconfigdirs} " | grep "target-libjava" >/dev/null 2>&1; then
1554 noconfigdirs="$noconfigdirs target-boehm-gc"
1555 fi
4f0ef2d8
CD
1556 ;;
1557esac
1558
caeba88f
AL
1559# Remove the entries in $skipdirs and $noconfigdirs from $configdirs,
1560# $build_configdirs and $target_configdirs.
9e07f89d
NN
1561# If we have the source for $noconfigdirs entries, add them to $notsupp.
1562
1563notsupp=""
1564for dir in . $skipdirs $noconfigdirs ; do
caeba88f 1565 dirname=`echo $dir | sed -e s/target-//g -e s/build-//g`
9e07f89d
NN
1566 if test $dir != . && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1567 configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
1568 if test -r $srcdir/$dirname/configure ; then
1569 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1570 true
1571 else
1572 notsupp="$notsupp $dir"
1573 fi
1574 fi
1575 fi
caeba88f
AL
1576 if test $dir != . && echo " ${build_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1577 build_configdirs=`echo " ${build_configdirs} " | sed -e "s/ ${dir} / /"`
1578 if test -r $srcdir/$dirname/configure ; then
1579 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1580 true
1581 else
1582 notsupp="$notsupp $dir"
1583 fi
1584 fi
1585 fi
9e07f89d
NN
1586 if test $dir != . && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1587 target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
1588 if test -r $srcdir/$dirname/configure ; then
1589 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1590 true
1591 else
1592 notsupp="$notsupp $dir"
1593 fi
1594 fi
1595 fi
1596done
1597
1598# Sometimes the tools are distributed with libiberty but with no other
1599# libraries. In that case, we don't want to build target-libiberty.
f86e35b8 1600# Don't let libgcc imply libiberty either.
9e07f89d 1601if test -n "${target_configdirs}" ; then
f86e35b8 1602 libgcc=
9e07f89d
NN
1603 others=
1604 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
f86e35b8
NC
1605 if test "$i" = "libgcc"; then
1606 libgcc=target-libgcc
1607 elif test "$i" != "libiberty" ; then
9e07f89d
NN
1608 if test -r $srcdir/$i/configure ; then
1609 others=yes;
1610 break;
1611 fi
1612 fi
1613 done
1614 if test -z "${others}" ; then
f86e35b8 1615 target_configdirs=$libgcc
9e07f89d
NN
1616 fi
1617fi
1618
1619# Quietly strip out all directories which aren't configurable in this tree.
1620# This relies on all configurable subdirectories being autoconfiscated, which
1621# is now the case.
6a9cf61e
PB
1622build_configdirs_all="$build_configdirs"
1623build_configdirs=
1624for i in ${build_configdirs_all} ; do
1625 j=`echo $i | sed -e s/build-//g`
1626 if test -f ${srcdir}/$j/configure ; then
1627 build_configdirs="${build_configdirs} $i"
1628 fi
1629done
1630
9e07f89d
NN
1631configdirs_all="$configdirs"
1632configdirs=
1633for i in ${configdirs_all} ; do
1634 if test -f ${srcdir}/$i/configure ; then
1635 configdirs="${configdirs} $i"
1636 fi
1637done
6a9cf61e 1638
9e07f89d
NN
1639target_configdirs_all="$target_configdirs"
1640target_configdirs=
1641for i in ${target_configdirs_all} ; do
1642 j=`echo $i | sed -e s/target-//g`
1643 if test -f ${srcdir}/$j/configure ; then
1644 target_configdirs="${target_configdirs} $i"
1645 fi
1646done
1647
1648# Produce a warning message for the subdirs we can't configure.
1649# This isn't especially interesting in the Cygnus tree, but in the individual
1650# FSF releases, it's important to let people know when their machine isn't
1651# supported by the one or two programs in a package.
1652
1653if test -n "${notsupp}" && test -z "${norecursion}" ; then
1654 # If $appdirs is non-empty, at least one of those directories must still
1655 # be configured, or we error out. (E.g., if the gas release supports a
1656 # specified target in some subdirs but not the gas subdir, we shouldn't
1657 # pretend that all is well.)
1658 if test -n "$appdirs" ; then
1659 for dir in $appdirs ; do
1660 if test -r $dir/Makefile.in ; then
1661 if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1662 appdirs=""
1663 break
1664 fi
6a9cf61e 1665 if echo " ${target_configdirs} " | grep " target-${dir} " >/dev/null 2>&1; then
9e07f89d
NN
1666 appdirs=""
1667 break
1668 fi
1669 fi
1670 done
1671 if test -n "$appdirs" ; then
1672 echo "*** This configuration is not supported by this package." 1>&2
1673 exit 1
1674 fi
1675 fi
1676 # Okay, some application will build, or we don't care to check. Still
1677 # notify of subdirs not getting built.
1678 echo "*** This configuration is not supported in the following subdirectories:" 1>&2
1679 echo " ${notsupp}" 1>&2
1680 echo " (Any other directories should still work fine.)" 1>&2
1681fi
1682
1683case "$host" in
1684 *msdosdjgpp*)
1685 enable_gdbtk=no ;;
1686esac
1687
24ff9987
DJ
1688# To find our prefix, in gcc_cv_tool_prefix.
1689ACX_TOOL_DIRS
1690
9e07f89d
NN
1691copy_dirs=
1692
a19b6204 1693AC_ARG_WITH([build-sysroot],
521ec477 1694 [ --with-build-sysroot=SYSROOT
a19b6204
MM
1695 use sysroot as the system root during the build],
1696 [if test x"$withval" != x ; then
1697 SYSROOT_CFLAGS_FOR_TARGET="--sysroot=$withval"
1698 fi],
1699 [SYSROOT_CFLAGS_FOR_TARGET=])
1700AC_SUBST(SYSROOT_CFLAGS_FOR_TARGET)
1701
8a6ee3ab
JM
1702AC_ARG_WITH([debug-prefix-map],
1703 [ --with-debug-prefix-map='A=B C=D ...'
1704 map A to B, C to D ... in debug information],
1705 [if test x"$withval" != x; then
1706 DEBUG_PREFIX_CFLAGS_FOR_TARGET=
1707 for debug_map in $withval; do
1708 DEBUG_PREFIX_CFLAGS_FOR_TARGET="$DEBUG_PREFIX_CFLAGS_FOR_TARGET -fdebug-prefix-map=$debug_map"
1709 done
1710 fi],
1711 [DEBUG_PREFIX_CFLAGS_FOR_TARGET=])
1712AC_SUBST(DEBUG_PREFIX_CFLAGS_FOR_TARGET)
1713
7f6ef0c0
PB
1714# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
1715# might be empty or "-g". We don't require a C++ compiler, so CXXFLAGS
1716# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
1717# We want to ensure that TARGET libraries (which we know are built with
1718# gcc) are built with "-O2 -g", so include those options when setting
1719# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
1720if test "x$CFLAGS_FOR_TARGET" = x; then
1721 CFLAGS_FOR_TARGET=$CFLAGS
1722 case " $CFLAGS " in
1723 *" -O2 "*) ;;
1724 *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
1725 esac
1726 case " $CFLAGS " in
1727 *" -g "* | *" -g3 "*) ;;
1728 *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
1729 esac
1730fi
1731AC_SUBST(CFLAGS_FOR_TARGET)
1732
1733if test "x$CXXFLAGS_FOR_TARGET" = x; then
1734 CXXFLAGS_FOR_TARGET=$CXXFLAGS
1735 case " $CXXFLAGS " in
1736 *" -O2 "*) ;;
1737 *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
1738 esac
1739 case " $CXXFLAGS " in
1740 *" -g "* | *" -g3 "*) ;;
1741 *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
1742 esac
1743fi
1744AC_SUBST(CXXFLAGS_FOR_TARGET)
1745
9e07f89d
NN
1746# Handle --with-headers=XXX. If the value is not "yes", the contents of
1747# the named directory are copied to $(tooldir)/sys-include.
1748if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
1749 if test x${is_cross_compiler} = xno ; then
1750 echo 1>&2 '***' --with-headers is only supported when cross compiling
1751 exit 1
1752 fi
1753 if test x"${with_headers}" != xyes ; then
24ff9987 1754 x=${gcc_cv_tool_prefix}
c6b750e1 1755 copy_dirs="${copy_dirs} ${with_headers} $x/${target_noncanonical}/sys-include"
9e07f89d
NN
1756 fi
1757fi
1758
1759# Handle --with-libs=XXX. If the value is not "yes", the contents of
1760# the name directories are copied to $(tooldir)/lib. Multiple directories
1761# are permitted.
1762if test x"${with_libs}" != x && test x"${with_libs}" != xno ; then
1763 if test x${is_cross_compiler} = xno ; then
1764 echo 1>&2 '***' --with-libs is only supported when cross compiling
1765 exit 1
1766 fi
1767 if test x"${with_libs}" != xyes ; then
1768 # Copy the libraries in reverse order, so that files in the first named
1769 # library override files in subsequent libraries.
24ff9987 1770 x=${gcc_cv_tool_prefix}
9e07f89d 1771 for l in ${with_libs}; do
c6b750e1 1772 copy_dirs="$l $x/${target_noncanonical}/lib ${copy_dirs}"
9e07f89d
NN
1773 done
1774 fi
1775fi
1776
2429c060
PB
1777# Set with_gnu_as and with_gnu_ld as appropriate.
1778#
1779# This is done by determining whether or not the appropriate directory
1780# is available, and by checking whether or not specific configurations
1781# have requested that this magic not happen.
1782#
1783# The command line options always override the explicit settings in
1784# configure.in, and the settings in configure.in override this magic.
1785#
1786# If the default for a toolchain is to use GNU as and ld, and you don't
1787# want to do that, then you should use the --without-gnu-as and
1788# --without-gnu-ld options for the configure script.
1789
1790if test x${use_gnu_as} = x &&
1791 echo " ${configdirs} " | grep " gas " > /dev/null 2>&1 ; then
1792 with_gnu_as=yes
1793 extra_host_args="$extra_host_args --with-gnu-as"
1794fi
1795
1796if test x${use_gnu_ld} = x &&
93f9b408 1797 echo " ${configdirs} " | egrep " (go)?ld " > /dev/null 2>&1 ; then
2429c060
PB
1798 with_gnu_ld=yes
1799 extra_host_args="$extra_host_args --with-gnu-ld"
1800fi
1801
1802# If using newlib, add --with-newlib to the extra_host_args so that gcc/configure
1803# can detect this case.
1804
1805if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " target-newlib " > /dev/null 2>&1 ; then
1806 with_newlib=yes
1807 extra_host_args="$extra_host_args --with-newlib"
1808fi
1809
9e07f89d
NN
1810# Handle ${copy_dirs}
1811set fnord ${copy_dirs}
1812shift
1813while test $# != 0 ; do
1814 if test -f $2/COPIED && test x"`cat $2/COPIED`" = x"$1" ; then
1815 :
1816 else
1817 echo Copying $1 to $2
1818
1819 # Use the install script to create the directory and all required
1820 # parent directories.
1821 if test -d $2 ; then
1822 :
1823 else
1824 echo >config.temp
1825 ${srcdir}/install-sh -c -m 644 config.temp $2/COPIED
1826 fi
1827
1828 # Copy the directory, assuming we have tar.
1829 # FIXME: Should we use B in the second tar? Not all systems support it.
1830 (cd $1; tar -cf - .) | (cd $2; tar -xpf -)
1831
1832 # It is the responsibility of the user to correctly adjust all
1833 # symlinks. If somebody can figure out how to handle them correctly
1834 # here, feel free to add the code.
1835
1836 echo $1 > $2/COPIED
1837 fi
1838 shift; shift
1839done
1840
2429c060
PB
1841# Determine a target-dependent exec_prefix that the installed
1842# gcc will search in. Keep this list sorted by triplet, with
1843# the *-*-osname triplets last.
1844md_exec_prefix=
1845case "${target}" in
1846 alpha*-*-*vms*)
1847 md_exec_prefix=/gnu/lib/gcc-lib
1848 ;;
521ec477 1849 i[[34567]]86-pc-msdosdjgpp*)
2429c060
PB
1850 md_exec_prefix=/dev/env/DJDIR/bin
1851 ;;
521ec477 1852 i[[34567]]86-*-sco3.2v5*)
2429c060
PB
1853 if test $with_gnu_as = yes; then
1854 md_exec_prefix=/usr/gnu/bin
1855 else
1856 md_exec_prefix=/usr/ccs/bin/elf
1857 fi
1858 ;;
1859
1860 mn10300-*-* | \
1861 powerpc-*-chorusos* | \
1862 powerpc*-*-eabi* | \
1863 powerpc*-*-sysv* | \
1864 powerpc*-*-kaos* | \
1865 s390x-ibm-tpf*)
1866 md_exec_prefix=/usr/ccs/bin
1867 ;;
1868 sparc64-*-elf*)
1869 ;;
1870 v850*-*-*)
1871 md_exec_prefix=/usr/ccs/bin
1872 ;;
8b66833e 1873 xtensa*-*-elf*)
2429c060
PB
1874 ;;
1875
1876 *-*-beos* | \
1877 *-*-elf* | \
1878 *-*-hpux* | \
1879 *-*-netware* | \
1880 *-*-nto-qnx* | \
1881 *-*-rtems* | \
1882 *-*-solaris2* | \
521ec477 1883 *-*-sysv[[45]]* | \
2429c060
PB
1884 *-*-vxworks* | \
1885 *-wrs-windiss)
1886 md_exec_prefix=/usr/ccs/bin
1887 ;;
1888esac
1889
874e38b4
NN
1890extra_arflags_for_target=
1891extra_nmflags_for_target=
1086bc09 1892extra_ranlibflags_for_target=
a0da8069 1893target_makefile_frag=/dev/null
f48556b1 1894case "${target}" in
4e206d7e
DB
1895 mep*-*-*)
1896 target_makefile_frag="config/mt-mep"
1897 ;;
77d7106f
AM
1898 spu-*-*)
1899 target_makefile_frag="config/mt-spu"
1900 ;;
429acdec
RS
1901 mips*-sde-elf*)
1902 target_makefile_frag="config/mt-sde"
1903 ;;
f3b1e08e
RS
1904 mipsisa*-*-elfoabi*)
1905 target_makefile_frag="config/mt-mips-elfoabi"
1906 ;;
2a3124ca 1907 *-*-netware*)
b6f83f2a 1908 target_makefile_frag="config/mt-netware"
f48556b1 1909 ;;
3d6dfe0f
NN
1910 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
1911 target_makefile_frag="config/mt-gnu"
f48556b1 1912 ;;
a0da8069 1913 *-*-aix4.[[3456789]]* | *-*-aix[[56789]].*)
874e38b4
NN
1914 # nm and ar from AIX 4.3 and above require -X32_64 flag to all ar and nm
1915 # commands to handle both 32-bit and 64-bit objects. These flags are
1916 # harmless if we're using GNU nm or ar.
1917 extra_arflags_for_target=" -X32_64"
1918 extra_nmflags_for_target=" -B -X32_64"
f48556b1 1919 ;;
1086bc09
NN
1920 *-*-darwin*)
1921 # ranlib from Darwin requires the -c flag to look at common symbols.
1922 extra_ranlibflags_for_target=" -c"
1923 ;;
f48556b1 1924 mips*-*-pe | sh*-*-pe | *arm-wince-pe)
b6f83f2a
DD
1925 target_makefile_frag="config/mt-wince"
1926 ;;
1927esac
1928
a0da8069 1929alphaieee_frag=/dev/null
b6f83f2a
DD
1930case $target in
1931 alpha*-*-*)
1932 # This just makes sure to use the -mieee option to build target libs.
1933 # This should probably be set individually by each library.
1934 alphaieee_frag="config/mt-alphaieee"
f48556b1
DD
1935 ;;
1936esac
a0a2c6c6 1937
f48556b1
DD
1938# If --enable-target-optspace always use -Os instead of -O2 to build
1939# the target libraries, similarly if it is not specified, use -Os
1940# on selected platforms.
a0da8069 1941ospace_frag=/dev/null
f48556b1
DD
1942case "${enable_target_optspace}:${target}" in
1943 yes:*)
b6f83f2a 1944 ospace_frag="config/mt-ospace"
f48556b1
DD
1945 ;;
1946 :d30v-*)
b6f83f2a 1947 ospace_frag="config/mt-d30v"
f48556b1
DD
1948 ;;
1949 :m32r-* | :d10v-* | :fr30-*)
b6f83f2a 1950 ospace_frag="config/mt-ospace"
f48556b1
DD
1951 ;;
1952 no:* | :*)
1953 ;;
1954 *)
1955 echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
1956 ;;
1957esac
252b5132 1958
f48556b1
DD
1959# Default to using --with-stabs for certain targets.
1960if test x${with_stabs} = x ; then
1961 case "${target}" in
e31d1ea3 1962 mips*-*-irix[[56]]*)
f48556b1
DD
1963 ;;
1964 mips*-*-* | alpha*-*-osf*)
1965 with_stabs=yes;
ae831be5 1966 extra_host_args="${extra_host_args} --with-stabs"
f48556b1
DD
1967 ;;
1968 esac
1969fi
1970
1971# hpux11 in 64bit mode has libraries in a weird place. Arrange to find
1972# them automatically.
1973case "${host}" in
1974 hppa*64*-*-hpux11*)
ae831be5 1975 extra_host_args="$extra_host_args -x-libraries=/usr/lib/pa20_64 -x-includes=/usr/X11R6/include"
f48556b1 1976 ;;
c92a0210
DD
1977esac
1978
a0da8069
NN
1979# Some systems (e.g., one of the i386-aix systems the gas testers are
1980# using) don't handle "\$" correctly, so don't use it here.
c6b750e1 1981tooldir='${exec_prefix}'/${target_noncanonical}
a0da8069
NN
1982build_tooldir=${tooldir}
1983
a0da8069
NN
1984# Create a .gdbinit file which runs the one in srcdir
1985# and tells GDB to look there for source files.
1986
1987if test -r ${srcdir}/.gdbinit ; then
1988 case ${srcdir} in
1989 .) ;;
1990 *) cat > ./.gdbinit <<EOF
1991# ${NO_EDIT}
1992dir ${srcdir}
1993dir .
1994source ${srcdir}/.gdbinit
1995EOF
1996 ;;
1997 esac
1998fi
1999
252b5132
RH
2000# Make sure that the compiler is able to generate an executable. If it
2001# can't, we are probably in trouble. We don't care whether we can run the
2002# executable--we might be using a cross compiler--we only care whether it
2003# can be created. At this point the main configure script has set CC.
a0c4f3a0 2004we_are_ok=no
252b5132
RH
2005echo "int main () { return 0; }" > conftest.c
2006${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
a0c4f3a0
DD
2007if test $? = 0 ; then
2008 if test -s conftest || test -s conftest.exe ; then
2009 we_are_ok=yes
2010 fi
2011fi
2012case $we_are_ok in
2013 no)
2014 echo 1>&2 "*** The command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed."
2015 echo 1>&2 "*** You must set the environment variable CC to a working compiler."
2016 rm -f conftest*
2017 exit 1
2018 ;;
2019esac
252b5132
RH
2020rm -f conftest*
2021
2022# The Solaris /usr/ucb/cc compiler does not appear to work.
2023case "${host}" in
2024 sparc-sun-solaris2*)
2025 CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
a0da8069 2026 if test "`type $CCBASE | sed 's/^[[^/]]*//'`" = "/usr/ucb/cc" ; then
252b5132 2027 could_use=
a0c4f3a0
DD
2028 test -d /opt/SUNWspro/bin && could_use="/opt/SUNWspro/bin"
2029 if test -d /opt/cygnus/bin ; then
2030 if test "$could_use" = "" ; then
252b5132
RH
2031 could_use="/opt/cygnus/bin"
2032 else
2033 could_use="$could_use or /opt/cygnus/bin"
2034 fi
2035 fi
a0c4f3a0 2036 if test "$could_use" = "" ; then
252b5132
RH
2037 echo "Warning: compilation may fail because you're using"
2038 echo "/usr/ucb/cc. You should change your PATH or CC "
2039 echo "variable and rerun configure."
2040 else
2041 echo "Warning: compilation may fail because you're using"
2042 echo "/usr/ucb/cc, when you should use the C compiler from"
2043 echo "$could_use. You should change your"
2044 echo "PATH or CC variable and rerun configure."
2045 fi
2046 fi
2047 ;;
2048esac
2049
8607b6c9
NN
2050case "${host}" in
2051 *-*-hpux*) RPATH_ENVVAR=SHLIB_PATH ;;
9a237d9e 2052 *-*-darwin* | *-*-rhapsody* ) RPATH_ENVVAR=DYLD_LIBRARY_PATH ;;
8607b6c9
NN
2053 *) RPATH_ENVVAR=LD_LIBRARY_PATH ;;
2054esac
8607b6c9 2055
3866be5d
NN
2056# Record target_configdirs and the configure arguments for target and
2057# build configuration in Makefile.
2058target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
6a9cf61e 2059build_configdirs=`echo "${build_configdirs}" | sed -e 's/build-//g'`
930314a4 2060
930314a4
NN
2061# Determine whether gdb needs tk/tcl or not.
2062# Use 'maybe' since enable_gdbtk might be true even if tk isn't available
2063# and in that case we want gdb to be built without tk. Ugh!
2064# In fact I believe gdb is the *only* package directly dependent on tk,
2065# so we should be able to put the 'maybe's in unconditionally and
2066# leave out the maybe dependencies when enable_gdbtk is false. I'm not
2067# 100% sure that that's safe though.
c180f501 2068
675c6968 2069gdb_tk="maybe-all-tcl maybe-all-tk maybe-all-itcl maybe-all-libgui"
930314a4
NN
2070case "$enable_gdbtk" in
2071 no)
2072 GDB_TK="" ;;
c180f501
AC
2073 yes)
2074 GDB_TK="${gdb_tk}" ;;
930314a4 2075 *)
c180f501
AC
2076 # Only add the dependency on gdbtk when GDBtk is part of the gdb
2077 # distro. Eventually someone will fix this and move Insight, nee
2078 # gdbtk to a separate directory.
2079 if test -d ${srcdir}/gdb/gdbtk ; then
2080 GDB_TK="${gdb_tk}"
2081 else
2082 GDB_TK=""
2083 fi
2084 ;;
930314a4 2085esac
907be67c
DJ
2086CONFIGURE_GDB_TK=`echo ${GDB_TK} | sed s/-all-/-configure-/g`
2087INSTALL_GDB_TK=`echo ${GDB_TK} | sed s/-all-/-install-/g`
930314a4 2088
6bd3dfaa 2089# Strip out unwanted targets.
dd12c3a8
NN
2090
2091# While at that, we remove Makefiles if we were started for recursive
2092# configuration, so that the top-level Makefile reconfigures them,
2093# like we used to do when configure itself was recursive.
dd12c3a8 2094
6bd3dfaa
PB
2095# Loop over modules. $extrasub must be used with care, limiting as
2096# much as possible the usage of range addresses. That's because autoconf
2097# splits the sed script to overcome limits in the number of commands,
2098# and relying on carefully-timed sed passes may turn out to be very hard
2099# to maintain later. In this particular case, you just have to be careful
2100# not to nest @if/@endif pairs, because configure will not warn you at all.
dd12c3a8 2101
498d4a71 2102AC_ARG_ENABLE([bootstrap],
521ec477 2103[ --enable-bootstrap enable bootstrapping @<:@yes if native build@:>@],,
9cb3fa6f
PB
2104enable_bootstrap=default)
2105
2106# Issue errors and warnings for invalid/strange bootstrap combinations.
2107case "$configdirs" in
2108 *gcc*) have_compiler=yes ;;
2109 *) have_compiler=no ;;
2110esac
2111
2112case "$have_compiler:$host:$target:$enable_bootstrap" in
2113 *:*:*:no) ;;
2114
0aed8855 2115 # Default behavior. Enable bootstrap if we have a compiler
9cb3fa6f
PB
2116 # and we are in a native configuration.
2117 yes:$build:$build:default)
0aed8855 2118 enable_bootstrap=yes ;;
9cb3fa6f
PB
2119
2120 *:*:*:default)
2121 enable_bootstrap=no ;;
2122
2123 # We have a compiler and we are in a native configuration, bootstrap is ok
80911fe1 2124 yes:$build:$build:yes)
9cb3fa6f
PB
2125 ;;
2126
2127 # Other configurations, but we have a compiler. Assume the user knows
2128 # what he's doing.
80911fe1 2129 yes:*:*:yes)
9cb3fa6f
PB
2130 AC_MSG_WARN([trying to bootstrap a cross compiler])
2131 ;;
498d4a71 2132
9cb3fa6f 2133 # No compiler: if they passed --enable-bootstrap explicitly, fail
80911fe1 2134 no:*:*:yes)
9cb3fa6f
PB
2135 AC_MSG_ERROR([cannot bootstrap without a compiler]) ;;
2136
2137 # Fail if wrong command line
2138 *)
2139 AC_MSG_ERROR([invalid option for --enable-bootstrap])
2140 ;;
2141esac
2142
2143# Adjust the toplevel makefile according to whether bootstrap was selected.
498d4a71
CF
2144case "$enable_bootstrap" in
2145 yes)
498d4a71
CF
2146 bootstrap_suffix=bootstrap ;;
2147 no)
498d4a71
CF
2148 bootstrap_suffix=no-bootstrap ;;
2149esac
498d4a71 2150
6a9cf61e 2151for module in ${build_configdirs} ; do
dd12c3a8
NN
2152 if test -z "${no_recursion}" \
2153 && test -f ${build_subdir}/${module}/Makefile; then
2154 echo 1>&2 "*** removing ${build_subdir}/${module}/Makefile to force reconfigure"
2155 rm -f ${build_subdir}/${module}/Makefile
2156 fi
6bd3dfaa
PB
2157 extrasub="$extrasub
2158/^@if build-$module\$/d
498d4a71
CF
2159/^@endif build-$module\$/d
2160/^@if build-$module-$bootstrap_suffix\$/d
2161/^@endif build-$module-$bootstrap_suffix\$/d"
dd12c3a8
NN
2162done
2163for module in ${configdirs} ; do
80911fe1 2164 if test -z "${no_recursion}"; then
8cf39b1b 2165 for file in stage*-${module}/Makefile prev-${module}/Makefile ${module}/Makefile; do
80911fe1
PB
2166 if test -f ${file}; then
2167 echo 1>&2 "*** removing ${file} to force reconfigure"
2168 rm -f ${file}
2169 fi
2170 done
dd12c3a8 2171 fi
6bd3dfaa
PB
2172 extrasub="$extrasub
2173/^@if $module\$/d
498d4a71
CF
2174/^@endif $module\$/d
2175/^@if $module-$bootstrap_suffix\$/d
2176/^@endif $module-$bootstrap_suffix\$/d"
dd12c3a8
NN
2177done
2178for module in ${target_configdirs} ; do
2179 if test -z "${no_recursion}" \
2180 && test -f ${target_subdir}/${module}/Makefile; then
2181 echo 1>&2 "*** removing ${target_subdir}/${module}/Makefile to force reconfigure"
2182 rm -f ${target_subdir}/${module}/Makefile
2183 fi
6bd3dfaa
PB
2184 extrasub="$extrasub
2185/^@if target-$module\$/d
498d4a71
CF
2186/^@endif target-$module\$/d
2187/^@if target-$module-$bootstrap_suffix\$/d
2188/^@endif target-$module-$bootstrap_suffix\$/d"
930314a4 2189done
319cab08 2190
6bd3dfaa
PB
2191extrasub="$extrasub
2192/^@if /,/^@endif /d"
930314a4 2193
a2cc058a
NN
2194# Create the serialization dependencies. This uses a temporary file.
2195
e6bfb94a 2196AC_ARG_ENABLE([serial-configure],
521ec477
DD
2197[ --enable-serial-@<:@{host,target,build}-@:>@configure
2198 force sequential configuration of
e6bfb94a 2199 sub-packages for the host, target or build
521ec477 2200 machine, or all sub-packages])
1047cb91
DD
2201
2202case ${enable_serial_configure} in
2203 yes)
2204 enable_serial_build_configure=yes
2205 enable_serial_host_configure=yes
2206 enable_serial_target_configure=yes
2207 ;;
2208esac
e6bfb94a 2209
a2cc058a
NN
2210# These force 'configure's to be done one at a time, to avoid problems
2211# with contention over a shared config.cache.
2212rm -f serdep.tmp
e6bfb94a 2213echo '# serdep.tmp' > serdep.tmp
a2cc058a 2214olditem=
1047cb91 2215test "x${enable_serial_build_configure}" = xyes &&
a2cc058a
NN
2216for item in ${build_configdirs} ; do
2217 case ${olditem} in
2218 "") ;;
e6bfb94a 2219 *) echo "configure-build-${item}: configure-build-${olditem}" >> serdep.tmp ;;
a2cc058a
NN
2220 esac
2221 olditem=${item}
2222done
2223olditem=
1047cb91 2224test "x${enable_serial_host_configure}" = xyes &&
a2cc058a
NN
2225for item in ${configdirs} ; do
2226 case ${olditem} in
2227 "") ;;
e6bfb94a 2228 *) echo "configure-${item}: configure-${olditem}" >> serdep.tmp ;;
a2cc058a
NN
2229 esac
2230 olditem=${item}
2231done
2232olditem=
1047cb91 2233test "x${enable_serial_target_configure}" = xyes &&
a2cc058a
NN
2234for item in ${target_configdirs} ; do
2235 case ${olditem} in
2236 "") ;;
e6bfb94a 2237 *) echo "configure-target-${item}: configure-target-${olditem}" >> serdep.tmp ;;
a2cc058a
NN
2238 esac
2239 olditem=${item}
2240done
a0da8069
NN
2241serialization_dependencies=serdep.tmp
2242AC_SUBST_FILE(serialization_dependencies)
a2cc058a 2243
e6bfb94a 2244# Base args. Strip norecursion, cache-file, srcdir, host, build,
c6b750e1
DJ
2245# target, nonopt, and variable assignments. These are the ones we
2246# might not want to pass down to subconfigures. Also strip
2247# program-prefix, program-suffix, and program-transform-name, so that
2248# we can pass down a consistent program-transform-name.
2249baseargs=
2250keep_next=no
2251skip_next=no
2252eval "set -- $ac_configure_args"
b0aaa663
DJ
2253for ac_arg
2254do
c6b750e1
DJ
2255 if test X"$skip_next" = X"yes"; then
2256 skip_next=no
2257 continue
2258 fi
2259 if test X"$keep_next" = X"yes"; then
2260 case $ac_arg in
2261 *\'*)
2262 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
2263 esac
2264 baseargs="$baseargs '$ac_arg'"
2265 keep_next=no
2266 continue
2267 fi
2268
2269 # Handle separated arguments. Based on the logic generated by
2270 # autoconf 2.59.
2271 case $ac_arg in
2272 *=* | --config-cache | -C | -disable-* | --disable-* \
2273 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
2274 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
2275 | -with-* | --with-* | -without-* | --without-* | --x)
2276 separate_arg=no
2277 ;;
2278 -*)
2279 separate_arg=yes
2280 ;;
2281 *)
2282 separate_arg=no
2283 ;;
2284 esac
2285
2286 case "$ac_arg" in
2287 --no*)
2288 continue
2289 ;;
2290 --c* | \
2291 --sr* | \
2292 --ho* | \
2293 --bu* | \
2294 --t* | \
2295 --program-* | \
2296 -cache_file* | \
2297 -srcdir* | \
2298 -host* | \
2299 -build* | \
2300 -target* | \
2301 -program-prefix* | \
2302 -program-suffix* | \
2303 -program-transform-name* )
2304 skip_next=$separate_arg
2305 continue
2306 ;;
2307 -*)
2308 # An option. Add it.
2309 case $ac_arg in
2310 *\'*)
2311 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
2312 esac
2313 baseargs="$baseargs '$ac_arg'"
2314 keep_next=$separate_arg
2315 ;;
2316 *)
2317 # Either a variable assignment, or a nonopt (triplet). Don't
2318 # pass it down; let the Makefile handle this.
2319 continue
2320 ;;
2321 esac
2322done
2323# Remove the initial space we just introduced and, as these will be
2324# expanded by make, quote '$'.
2325baseargs=`echo "x$baseargs" | sed -e 's/^x *//' -e 's,\\$,$$,g'`
252b5132 2326
f27d4f92
DJ
2327# Add in --program-transform-name, after --program-prefix and
2328# --program-suffix have been applied to it. Autoconf has already
2329# doubled dollar signs and backslashes in program_transform_name; we want
2330# the backslashes un-doubled, and then the entire thing wrapped in single
2331# quotes, because this will be expanded first by make and then by the shell.
2332# Also, because we want to override the logic in subdir configure scripts to
2333# choose program_transform_name, replace any s,x,x, with s,y,y,.
2334sed -e "s,\\\\\\\\,\\\\,g; s,','\\\\'',g; s/s,x,x,/s,y,y,/" <<EOF_SED > conftestsed.out
2335${program_transform_name}
2336EOF_SED
2337gcc_transform_name=`cat conftestsed.out`
2338rm -f conftestsed.out
2339baseargs="$baseargs --program-transform-name='${gcc_transform_name}'"
2444379b
BE
2340if test "$silent" = yes; then
2341 baseargs="$baseargs --silent"
2342fi
f27d4f92 2343
49b7683b
DD
2344# For the build-side libraries, we just need to pretend we're native,
2345# and not use the same cache file. Multilibs are neither needed nor
2346# desired.
4b900473 2347build_configargs="--cache-file=../config.cache ${baseargs}"
91e060aa 2348
ae831be5
NN
2349# For host modules, accept cache file option, or specification as blank.
2350case "${cache_file}" in
2351"") # empty
2352 cache_file_option="" ;;
a0da8069 2353/* | [[A-Za-z]]:[[\\/]]* ) # absolute path
ae831be5
NN
2354 cache_file_option="--cache-file=${cache_file}" ;;
2355*) # relative path
2356 cache_file_option="--cache-file=../${cache_file}" ;;
2357esac
2358
82252c06
NN
2359# Host dirs don't like to share a cache file either, horribly enough.
2360# This seems to be due to autoconf 2.5x stupidity.
4b900473 2361host_configargs="--cache-file=./config.cache ${extra_host_args} ${baseargs}"
ae831be5 2362
a0da8069 2363target_configargs=${baseargs}
49b7683b 2364
252b5132
RH
2365# Passing a --with-cross-host argument lets the target libraries know
2366# whether they are being built with a cross-compiler or being built
2367# native. However, it would be better to use other mechanisms to make the
2368# sorts of decisions they want to make on this basis. Please consider
2369# this option to be deprecated. FIXME.
a0c4f3a0 2370if test x${is_cross_compiler} = xyes ; then
c6b750e1 2371 target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}"
252b5132
RH
2372fi
2373
2374# Default to --enable-multilib.
a0c4f3a0 2375if test x${enable_multilib} = x ; then
a0da8069 2376 target_configargs="--enable-multilib ${target_configargs}"
252b5132
RH
2377fi
2378
2379# Pass --with-newlib if appropriate. Note that target_configdirs has
2380# changed from the earlier setting of with_newlib.
a0c4f3a0 2381if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && test -d ${srcdir}/newlib ; then
a0da8069 2382 target_configargs="--with-newlib ${target_configargs}"
252b5132
RH
2383fi
2384
95036d20
NN
2385# Different target subdirs use different values of certain variables
2386# (notably CXX). Worse, multilibs use *lots* of different values.
2387# Worse yet, autoconf 2.5x makes some of these 'precious', meaning that
2388# it doesn't automatically accept command-line overrides of them.
2389# This means it's not safe for target subdirs to share a cache file,
2390# which is disgusting, but there you have it. Hopefully this can be
2391# fixed in future. It's still worthwhile to use a cache file for each
2392# directory. I think.
2393
ae380b45
MS
2394# Pass the appropriate --build, --host, --target and --cache-file arguments.
2395# We need to pass --target, as newer autoconf's requires consistency
2396# for target_alias and gcc doesn't manage it consistently.
4b900473 2397target_configargs="--cache-file=./config.cache ${target_configargs}"
49b7683b 2398
9e449d3e 2399FLAGS_FOR_TARGET=
7c1f909c 2400case " $target_configdirs " in
75205f78 2401 *" newlib "*)
a0da8069 2402 case " $target_configargs " in
75205f78 2403 *" --with-newlib "*)
9e449d3e 2404 case "$target" in
63266560 2405 *-cygwin*)
564b43e5 2406 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;;
9e449d3e
AO
2407 esac
2408
7450026c 2409 # If we're not building GCC, don't discard standard headers.
4d5fd396 2410 if test -d ${srcdir}/gcc; then
63266560 2411 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc'
7450026c
AO
2412
2413 if test "${build}" != "${host}"; then
2414 # On Canadian crosses, CC_FOR_TARGET will have already been set
2415 # by `configure', so we won't have an opportunity to add -Bgcc/
2416 # to it. This is right: we don't want to search that directory
2417 # for binaries, but we want the header files in there, so add
2418 # them explicitly.
b00612cc 2419 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -isystem $$r/$(HOST_SUBDIR)/gcc/include'
7450026c
AO
2420
2421 # Someone might think of using the pre-installed headers on
2422 # Canadian crosses, in case the installed compiler is not fully
2423 # compatible with the compiler being built. In this case, it
2424 # would be better to flag an error than risking having
2425 # incompatible object files being constructed. We can't
2426 # guarantee that an error will be flagged, but let's hope the
2427 # compiler will do it, when presented with incompatible header
2428 # files.
2429 fi
63266560
DD
2430 fi
2431
0a0d0041 2432 case "${target}-${is_cross_compiler}" in
ec11bdc6 2433 i[[3456789]]86-*-linux*-no)
0a0d0041
TF
2434 # Here host == target, so we don't need to build gcc,
2435 # so we don't want to discard standard headers.
2436 FLAGS_FOR_TARGET=`echo " $FLAGS_FOR_TARGET " | sed -e 's/ -nostdinc / /'`
0a0d0041
TF
2437 ;;
2438 *)
2439 # If we're building newlib, use its generic headers last, but search
2440 # for any libc-related directories first (so make it the last -B
2441 # switch).
2442 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/newlib/ -isystem $$r/$(TARGET_SUBDIR)/newlib/targ-include -isystem $$s/newlib/libc/include'
691bb5a1
DD
2443
2444 # If we're building libgloss, find the startup file, simulator library
2445 # and linker script.
2446 case " $target_configdirs " in
2447 *" libgloss "*)
2448 # Look for startup file, simulator library and maybe linker script.
2449 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/libgloss/'"$libgloss_dir"
2450 # Look for libnosys.a in case the target needs it.
2451 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/libgloss/libnosys'
2452 # Most targets have the linker script in the source directory.
2453 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$s/libgloss/'"$libgloss_dir"
2454 ;;
2455 esac
0a0d0041
TF
2456 ;;
2457 esac
9e449d3e 2458 ;;
75205f78
DD
2459 esac
2460 ;;
9e449d3e 2461esac
45055374
CV
2462case "$target" in
2463*-mingw*)
2464 # Can't be handled as Cygwin above since Mingw does not use newlib.
2465 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup/mingw -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/mingw/include -isystem $$s/winsup/w32api/include' ;;
2466esac
63266560 2467
5fbad20a
DD
2468# Allow the user to override the flags for
2469# our build compiler if desired.
c66487f8
NC
2470if test x"${build}" = x"${host}" ; then
2471 CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
2472 CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-${CXXFLAGS}}
2473 LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-${LDFLAGS}}
2474fi
5fbad20a 2475
63266560
DD
2476# On Canadian crosses, we'll be searching the right directories for
2477# the previously-installed cross compiler, so don't bother to add
2478# flags for directories within the install tree of the compiler
2479# being built; programs in there won't even run.
4d5fd396 2480if test "${build}" = "${host}" && test -d ${srcdir}/gcc; then
9e449d3e 2481 # Search for pre-installed headers if nothing else fits.
bba45b8b 2482 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include'
9e449d3e 2483fi
63266560 2484
7c1f909c 2485if test "x${use_gnu_ld}" = x &&
f48556b1 2486 echo " ${configdirs} " | grep " ld " > /dev/null ; then
9e449d3e 2487 # Arrange for us to find uninstalled linker scripts.
b00612cc 2488 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(HOST_SUBDIR)/ld'
9e449d3e
AO
2489fi
2490
a481dbb7
DD
2491# Search for other target-specific linker scripts and such.
2492case "${target}" in
4e206d7e
DB
2493 mep*)
2494 FLAGS_FOR_TARGET="$FLAGS_FOR_TARGET -mlibrary"
2495 ;;
2496esac
2497
a0da8069 2498# Makefile fragments.
3e707e94
PB
2499for frag in host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag;
2500do
2501 eval fragval=\$$frag
2502 if test $fragval != /dev/null; then
2503 eval $frag=${srcdir}/$fragval
2504 fi
2505done
a0da8069
NN
2506AC_SUBST_FILE(host_makefile_frag)
2507AC_SUBST_FILE(target_makefile_frag)
2508AC_SUBST_FILE(alphaieee_frag)
2509AC_SUBST_FILE(ospace_frag)
2510
2511# Miscellanea: directories, flags, etc.
a0da8069 2512AC_SUBST(RPATH_ENVVAR)
a0da8069
NN
2513AC_SUBST(tooldir)
2514AC_SUBST(build_tooldir)
907be67c 2515AC_SUBST(CONFIGURE_GDB_TK)
a0da8069 2516AC_SUBST(GDB_TK)
907be67c 2517AC_SUBST(INSTALL_GDB_TK)
a0da8069
NN
2518
2519# Build module lists & subconfigure args.
a0da8069 2520AC_SUBST(build_configargs)
6a9cf61e 2521AC_SUBST(build_configdirs)
a0da8069
NN
2522
2523# Host module lists & subconfigure args.
2524AC_SUBST(host_configargs)
2525AC_SUBST(configdirs)
a0da8069
NN
2526
2527# Target module lists & subconfigure args.
a0da8069 2528AC_SUBST(target_configargs)
a6df5a19 2529
a0da8069
NN
2530
2531# Build tools.
b5714970
PB
2532AC_SUBST(AR_FOR_BUILD)
2533AC_SUBST(AS_FOR_BUILD)
a0da8069 2534AC_SUBST(CC_FOR_BUILD)
b5714970
PB
2535AC_SUBST(CFLAGS_FOR_BUILD)
2536AC_SUBST(CXXFLAGS_FOR_BUILD)
2537AC_SUBST(CXX_FOR_BUILD)
2538AC_SUBST(DLLTOOL_FOR_BUILD)
2539AC_SUBST(GCJ_FOR_BUILD)
2540AC_SUBST(GFORTRAN_FOR_BUILD)
2541AC_SUBST(LDFLAGS_FOR_BUILD)
2542AC_SUBST(LD_FOR_BUILD)
2543AC_SUBST(NM_FOR_BUILD)
2544AC_SUBST(RANLIB_FOR_BUILD)
2545AC_SUBST(WINDMC_FOR_BUILD)
2546AC_SUBST(WINDRES_FOR_BUILD)
a0da8069
NN
2547AC_SUBST(config_shell)
2548
be01d343
PB
2549# Generate default definitions for YACC, M4, LEX and other programs that run
2550# on the build machine. These are used if the Makefile can't locate these
2551# programs in objdir.
2552MISSING=`cd $ac_aux_dir && ${PWDCMD-pwd}`/missing
2553
2554AC_CHECK_PROGS([YACC], ['bison -y' byacc yacc], [$MISSING bison -y])
2555case " $build_configdirs " in
2556 *" bison "*) YACC='$$r/$(BUILD_SUBDIR)/bison/tests/bison -y' ;;
2557 *" byacc "*) YACC='$$r/$(BUILD_SUBDIR)/byacc/byacc' ;;
2558esac
2559
2560AC_CHECK_PROGS([BISON], [bison], [$MISSING bison])
2561case " $build_configdirs " in
2562 *" bison "*) BISON='$$r/$(BUILD_SUBDIR)/bison/tests/bison' ;;
2563esac
2564
2565AC_CHECK_PROGS([M4], [gm4 gnum4 m4], [$MISSING m4])
2566case " $build_configdirs " in
2567 *" m4 "*) M4='$$r/$(BUILD_SUBDIR)/m4/m4' ;;
2568esac
2569
2570AC_CHECK_PROGS([LEX], [flex lex], [$MISSING flex])
2571case " $build_configdirs " in
2572 *" flex "*) LEX='$$r/$(BUILD_SUBDIR)/flex/flex' ;;
2573 *" lex "*) LEX='$$r/$(BUILD_SUBDIR)/lex/lex' ;;
2574esac
2575
2576AC_CHECK_PROGS([FLEX], [flex], [$MISSING flex])
2577case " $build_configdirs " in
2578 *" flex "*) FLEX='$$r/$(BUILD_SUBDIR)/flex/flex' ;;
2579esac
2580
2581AC_CHECK_PROGS([MAKEINFO], makeinfo, [$MISSING makeinfo])
2582case " $build_configdirs " in
2583 *" texinfo "*) MAKEINFO='$$r/$(BUILD_SUBDIR)/texinfo/makeinfo/makeinfo' ;;
2584 *)
2585changequote(,)
625a61cd 2586 # For an installed makeinfo, we require it to be from texinfo 4.6 or
be01d343
PB
2587 # higher, else we use the "missing" dummy.
2588 if ${MAKEINFO} --version \
625a61cd 2589 | egrep 'texinfo[^0-9]*(4\.([6-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then
be01d343
PB
2590 :
2591 else
2592 MAKEINFO="$MISSING makeinfo"
2593 fi
2594 ;;
2595changequote([,])
2596esac
2597
2598# FIXME: expect and dejagnu may become build tools?
2599
2600AC_CHECK_PROGS(EXPECT, expect, expect)
2601case " $configdirs " in
2602 *" expect "*)
2603 test $host = $build && EXPECT='$$r/$(HOST_SUBDIR)/expect/expect'
2604 ;;
2605esac
2606
2607AC_CHECK_PROGS(RUNTEST, runtest, runtest)
2608case " $configdirs " in
2609 *" dejagnu "*)
6b89cc21 2610 test $host = $build && RUNTEST='$$s/$(HOST_SUBDIR)/dejagnu/runtest'
be01d343
PB
2611 ;;
2612esac
2613
2614
a0da8069 2615# Host tools.
05cbd757
PB
2616NCN_STRICT_CHECK_TOOLS(AR, ar)
2617NCN_STRICT_CHECK_TOOLS(AS, as)
2618NCN_STRICT_CHECK_TOOLS(DLLTOOL, dlltool)
2619NCN_STRICT_CHECK_TOOLS(LD, ld)
be01d343 2620NCN_STRICT_CHECK_TOOLS(LIPO, lipo)
05cbd757
PB
2621NCN_STRICT_CHECK_TOOLS(NM, nm)
2622NCN_STRICT_CHECK_TOOLS(RANLIB, ranlib, :)
be01d343 2623NCN_STRICT_CHECK_TOOLS(STRIP, strip, :)
05cbd757 2624NCN_STRICT_CHECK_TOOLS(WINDRES, windres)
0c24b341 2625NCN_STRICT_CHECK_TOOLS(WINDMC, windmc)
05cbd757
PB
2626NCN_STRICT_CHECK_TOOLS(OBJCOPY, objcopy)
2627NCN_STRICT_CHECK_TOOLS(OBJDUMP, objdump)
a0da8069
NN
2628AC_SUBST(CC)
2629AC_SUBST(CXX)
2630AC_SUBST(CFLAGS)
2631AC_SUBST(CXXFLAGS)
a0da8069 2632
be01d343 2633# Target tools.
2429c060 2634AC_ARG_WITH([build-time-tools],
521ec477 2635 [ --with-build-time-tools=PATH
2429c060
PB
2636 use given path to find target tools during the build],
2637 [case x"$withval" in
2638 x/*) ;;
2639 *)
2640 with_build_time_tools=
2641 AC_MSG_WARN([argument to --with-build-time-tools must be an absolute path])
2642 ;;
2643 esac],
2644 [with_build_time_tools=])
2645
05cbd757
PB
2646NCN_STRICT_CHECK_TARGET_TOOLS(CC_FOR_TARGET, cc gcc)
2647NCN_STRICT_CHECK_TARGET_TOOLS(CXX_FOR_TARGET, c++ g++ cxx gxx)
05cbd757
PB
2648NCN_STRICT_CHECK_TARGET_TOOLS(GCC_FOR_TARGET, gcc, ${CC_FOR_TARGET})
2649NCN_STRICT_CHECK_TARGET_TOOLS(GCJ_FOR_TARGET, gcj)
2650NCN_STRICT_CHECK_TARGET_TOOLS(GFORTRAN_FOR_TARGET, gfortran)
2429c060
PB
2651
2652ACX_CHECK_INSTALLED_TARGET_TOOL(AR_FOR_TARGET, ar)
2653ACX_CHECK_INSTALLED_TARGET_TOOL(AS_FOR_TARGET, as)
2654ACX_CHECK_INSTALLED_TARGET_TOOL(DLLTOOL_FOR_TARGET, dlltool)
2655ACX_CHECK_INSTALLED_TARGET_TOOL(LD_FOR_TARGET, ld)
2656ACX_CHECK_INSTALLED_TARGET_TOOL(LIPO_FOR_TARGET, lipo)
2657ACX_CHECK_INSTALLED_TARGET_TOOL(NM_FOR_TARGET, nm)
2658ACX_CHECK_INSTALLED_TARGET_TOOL(OBJDUMP_FOR_TARGET, objdump)
2659ACX_CHECK_INSTALLED_TARGET_TOOL(RANLIB_FOR_TARGET, ranlib, :)
2660ACX_CHECK_INSTALLED_TARGET_TOOL(STRIP_FOR_TARGET, strip)
2661ACX_CHECK_INSTALLED_TARGET_TOOL(WINDRES_FOR_TARGET, windres)
0c24b341 2662ACX_CHECK_INSTALLED_TARGET_TOOL(WINDMC_FOR_TARGET, windmc)
55db4b87 2663
be01d343
PB
2664RAW_CXX_FOR_TARGET="$CXX_FOR_TARGET"
2665
2666GCC_TARGET_TOOL(ar, AR_FOR_TARGET, AR, [binutils/ar])
2667GCC_TARGET_TOOL(as, AS_FOR_TARGET, AS, [gas/as-new])
2668GCC_TARGET_TOOL(cc, CC_FOR_TARGET, CC, [gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/])
2669GCC_TARGET_TOOL(c++, CXX_FOR_TARGET, CXX,
2670 [gcc/g++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `test ! -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags || $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs],
2671 c++)
2672GCC_TARGET_TOOL(c++ for libstdc++, RAW_CXX_FOR_TARGET, CXX,
2673 [gcc/xgcc -shared-libgcc -B$$r/$(HOST_SUBDIR)/gcc -nostdinc++ -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs],
2674 c++)
2675GCC_TARGET_TOOL(dlltool, DLLTOOL_FOR_TARGET, DLLTOOL, [binutils/dlltool])
2676GCC_TARGET_TOOL(gcc, GCC_FOR_TARGET, , [gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/])
2677GCC_TARGET_TOOL(gcj, GCJ_FOR_TARGET, GCJ,
2678 [gcc/gcj -B$$r/$(HOST_SUBDIR)/gcc/], java)
2679GCC_TARGET_TOOL(gfortran, GFORTRAN_FOR_TARGET, GFORTRAN,
2680 [gcc/gfortran -B$$r/$(HOST_SUBDIR)/gcc/], fortran)
2681GCC_TARGET_TOOL(ld, LD_FOR_TARGET, LD, [ld/ld-new])
2682GCC_TARGET_TOOL(lipo, LIPO_FOR_TARGET, LIPO)
2683GCC_TARGET_TOOL(nm, NM_FOR_TARGET, NM, [binutils/nm-new])
2684GCC_TARGET_TOOL(objdump, OBJDUMP_FOR_TARGET, OBJDUMP, [binutils/objdump])
2685GCC_TARGET_TOOL(ranlib, RANLIB_FOR_TARGET, RANLIB, [binutils/ranlib])
2686GCC_TARGET_TOOL(strip, STRIP_FOR_TARGET, STRIP, [binutils/strip])
2687GCC_TARGET_TOOL(windres, WINDRES_FOR_TARGET, WINDRES, [binutils/windres])
0c24b341 2688GCC_TARGET_TOOL(windmc, WINDMC_FOR_TARGET, WINDMC, [binutils/windmc])
55db4b87 2689
be01d343 2690AC_SUBST(FLAGS_FOR_TARGET)
55db4b87 2691AC_SUBST(RAW_CXX_FOR_TARGET)
54752a6b 2692
a0da8069
NN
2693# Certain tools may need extra flags.
2694AR_FOR_TARGET=${AR_FOR_TARGET}${extra_arflags_for_target}
2695RANLIB_FOR_TARGET=${RANLIB_FOR_TARGET}${extra_ranlibflags_for_target}
2696NM_FOR_TARGET=${NM_FOR_TARGET}${extra_nmflags_for_target}
252b5132 2697
be01d343
PB
2698# When building target libraries, except in a Canadian cross, we use
2699# the same toolchain as the compiler we just built.
2700COMPILER_AS_FOR_TARGET='$(AS_FOR_TARGET)'
2701COMPILER_LD_FOR_TARGET='$(LD_FOR_TARGET)'
2702COMPILER_NM_FOR_TARGET='$(NM_FOR_TARGET)'
2703if test $host = $build; then
2704 case " $configdirs " in
2705 *" gcc "*)
2706 COMPILER_AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/as'
2707 COMPILER_LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/collect-ld'
2708 COMPILER_NM_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/nm'${extra_nmflags_for_target}
2709 ;;
2710 esac
2711fi
2712
2713AC_SUBST(COMPILER_AS_FOR_TARGET)
2714AC_SUBST(COMPILER_LD_FOR_TARGET)
2715AC_SUBST(COMPILER_NM_FOR_TARGET)
2716
6b784d9f
AO
2717AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
2718AC_ARG_ENABLE(maintainer-mode,
2719[ --enable-maintainer-mode enable make rules and dependencies not useful
2720 (and sometimes confusing) to the casual installer],
2721 USE_MAINTAINER_MODE=$enableval,
2722 USE_MAINTAINER_MODE=no)
2723AC_MSG_RESULT($USE_MAINTAINER_MODE)
2724AC_SUBST(MAINTAINER_MODE_TRUE)
2725AC_SUBST(MAINTAINER_MODE_FALSE)
2726if test "$USE_MAINTAINER_MODE" = yes; then
2727 MAINTAINER_MODE_TRUE=
2728 MAINTAINER_MODE_FALSE='#'
2729else
2730 MAINTAINER_MODE_TRUE='#'
2731 MAINTAINER_MODE_FALSE=
2732fi
2733MAINT=$MAINTAINER_MODE_TRUE
2734AC_SUBST(MAINT)dnl
2735
1d39f329
NN
2736# ---------------------
2737# GCC bootstrap support
2738# ---------------------
2739
2740# Stage specific cflags for build.
2741stage1_cflags="-g"
2742case $build in
2743 vax-*-*)
2744 case ${GCC} in
2745 yes) stage1_cflags="-g -Wa,-J" ;;
2746 *) stage1_cflags="-g -J" ;;
2747 esac ;;
1d39f329 2748esac
1d89b610
PB
2749
2750# This is aimed to mimic bootstrap with a non-GCC compiler to catch problems.
2751if test "$GCC" = yes; then
2752 saved_CFLAGS="$CFLAGS"
2753
2754 # Pass -fkeep-inline-functions for stage 1 if the GCC version supports it.
2755 CFLAGS="$CFLAGS -fkeep-inline-functions"
2756 AC_MSG_CHECKING([whether -fkeep-inline-functions is supported])
2038f525
PB
2757 AC_TRY_COMPILE([
2758#if (__GNUC__ < 3) \
2759 || (__GNUC__ == 3 && (__GNUC_MINOR__ < 3 \
2760 || (__GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ < 1)))
2761#error http://gcc.gnu.org/PR29382
2762#endif
2763 ],,
1d89b610
PB
2764 [AC_MSG_RESULT([yes]); stage1_cflags="$stage1_cflags -fkeep-inline-functions"],
2765 [AC_MSG_RESULT([no])])
2766
2767 CFLAGS="$saved_CFLAGS"
2768fi
2769
1d39f329
NN
2770AC_SUBST(stage1_cflags)
2771
8a0d8a5c
PB
2772# Enable --enable-checking in stage1 of the compiler.
2773AC_ARG_ENABLE(stage1-checking,
521ec477
DD
2774[ --enable-stage1-checking@<:@=all@:>@ choose additional checking for stage1
2775 of the compiler],
8a0d8a5c 2776[stage1_checking=--enable-checking=${enable_stage1_checking}],
5566c1fa 2777[if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
2abc4e65 2778 stage1_checking=--enable-checking=yes,types
8a0d8a5c 2779else
5566c1fa 2780 stage1_checking=--enable-checking=$enable_checking,types
8a0d8a5c
PB
2781fi])
2782AC_SUBST(stage1_checking)
2783
1d39f329 2784# Enable -Werror in bootstrap stage2 and later.
1d39f329
NN
2785AC_ARG_ENABLE(werror,
2786[ --enable-werror enable -Werror in bootstrap stage2 and later], [],
a0323144 2787[if test -d ${srcdir}/gcc && test x"`cat $srcdir/gcc/DEV-PHASE`" = xexperimental; then
79fcd0ec
PB
2788 enable_werror=yes
2789else
2790 enable_werror=no
2791fi])
1a6f2dc7
NN
2792case ${enable_werror} in
2793 yes) stage2_werror_flag="--enable-werror-always" ;;
2794 *) stage2_werror_flag="" ;;
1d39f329 2795esac
1a6f2dc7 2796AC_SUBST(stage2_werror_flag)
1d39f329 2797
108a6f8e
CD
2798# Flags needed to enable html installing and building
2799AC_ARG_WITH(datarootdir,
521ec477 2800[ --with-datarootdir use datarootdir as the data root directory.],
108a6f8e
CD
2801[datarootdir="\${prefix}/${withval}"],
2802[datarootdir="\${prefix}/share"])
2803
2804AC_ARG_WITH(docdir,
521ec477 2805[ --with-docdir install documentation in this directory.],
108a6f8e
CD
2806[docdir="\${prefix}/${withval}"],
2807[docdir="\${datarootdir}/doc"])
2808
a3ca38d2 2809AC_ARG_WITH(pdfdir,
521ec477 2810[ --with-pdfdir install pdf in this directory.],
a3ca38d2
DD
2811[pdfdir="\${prefix}/${withval}"],
2812[pdfdir="\${docdir}"])
2813
108a6f8e 2814AC_ARG_WITH(htmldir,
521ec477 2815[ --with-htmldir install html in this directory.],
108a6f8e
CD
2816[htmldir="\${prefix}/${withval}"],
2817[htmldir="\${docdir}"])
2818
2819AC_SUBST(datarootdir)
2820AC_SUBST(docdir)
a3ca38d2 2821AC_SUBST(pdfdir)
108a6f8e
CD
2822AC_SUBST(htmldir)
2823
a0da8069 2824AC_OUTPUT(Makefile)
This page took 0.552553 seconds and 4 git commands to generate.