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