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