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