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