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