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