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