2 ##############################################################################
4 ## This file is a shell script fragment that supplies the information
5 ## necessary to tailor a template configure script into the configure
6 ## script appropriate for this directory. For more information, check
7 ## any existing configure script.
9 ## Be warned, there are two types of configure.in files. There are those
10 ## used by Autoconf, which are macros which are expanded into a configure
11 ## script by autoconf. The other sort, of which this is one, is executed
12 ## by Cygnus configure.
14 ## For more information on these two systems, check out the documentation
15 ## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).
17 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
18 # 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
20 # This file is free software; you can redistribute it and/or modify it
21 # under the terms of the GNU General Public License as published by
22 # the Free Software Foundation; either version 2 of the License, or
23 # (at your option) any later version.
25 # This program is distributed in the hope that it will be useful, but
26 # WITHOUT ANY WARRANTY; without even the implied warranty of
27 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28 # General Public License for more details.
30 # You should have received a copy of the GNU General Public License
31 # along with this program; if not, write to the Free Software
32 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
34 ##############################################################################
36 ### To add a new directory to the tree, first choose whether it is a target
37 ### or a host dependent tool. Then put it into the appropriate list
38 ### (library or tools, host or target), doing a dependency sort. For
39 ### example, gdb requires that byacc (or bison) be built first, so it is in
40 ### the ${host_tools} list after byacc and bison.
43 # these libraries are used by various programs built for the host environment
45 host_libs
="intl mmalloc libiberty opcodes bfd readline db tcl tk tclX itcl tix libgui zlib"
47 libstdcxx_version
="target-libstdc++-v3"
49 # these tools are built for the host environment
50 # Note, the powerpc-eabi build depends on sim occurring before gdb in order to
51 # know that we are building the simulator.
52 host_tools
="texinfo byacc flex bison binutils ld gas gcc sid sim gdb make patch prms send-pr gprof etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool grep diff rcs fileutils shellutils time textutils wdiff find uudecode hello tar gzip indent recode release sed utils guile perl gawk findutils snavigator libtool gettext zip fastjar"
54 # libgcj represents the runtime libraries only used by gcj.
55 libgcj
="target-libffi \
61 # these libraries are built for the target environment, and are built after
62 # the host libraries and the host tools (which may be a cross compiler)
64 target_libs
="target-libiberty \
67 ${libstdcxx_version} \
72 # these tools are built using the target libs, and are intended to run only
73 # in the target environment
75 # note: any program that *uses* libraries that are in the "target_libs"
76 # list belongs in this list. those programs are also very likely
77 # candidates for the "native_only" list which follows
79 target_tools
="target-examples target-groff target-gperf target-rda"
81 ################################################################################
83 ## All tools belong in one of the four categories, and are assigned above
84 ## We assign ${configdirs} this way to remove all embedded newlines. This
85 ## is important because configure will choke if they ever get through.
86 ## ${configdirs} is directories we build using the host tools.
87 ## ${target_configdirs} is directories we build using the target tools.
89 configdirs
=`echo ${host_libs} ${host_tools}`
90 target_configdirs
=`echo ${target_libs} ${target_tools}`
92 ################################################################################
94 srctrigger
=move-if-change
95 srcname
="gnu development package"
97 # This gets set non-empty for some net releases of packages.
102 # There is no longer anything interesting in the per-host section.
106 # Define is_cross_compiler to save on calls to 'test'.
108 if test x
"${host}" = x
"${target}" ; then
111 is_cross_compiler
=yes
114 # We always want to use the same name for this directory, so that dejagnu
115 # can reliably find it.
116 target_subdir
=${target_alias}
118 if test ! -d ${target_subdir} ; then
119 if mkdir
${target_subdir} ; then true
121 echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${target_subdir}" 1>&2
126 build_subdir
=${build_alias}
128 if test x
"${build_alias}" != x
"${host}" ; then
129 if test ! -d ${build_subdir} ; then
130 if mkdir
${build_subdir} ; then true
132 echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${build_subdir}" 1>&2
138 # Skipdirs are removed silently.
140 # Noconfigdirs are removed loudly.
144 # Make sure we don't let GNU ld be added if we didn't want it.
145 if test x
$with_gnu_ld = xno
; then
147 noconfigdirs
="$noconfigdirs ld"
151 # Make sure we don't let GNU as be added if we didn't want it.
152 if test x
$with_gnu_as = xno
; then
154 noconfigdirs
="$noconfigdirs gas"
157 # some tools are so dependent upon X11 that if we're not building with X,
158 # it's not even worth trying to configure, much less build, that tool.
161 yes |
"") ;; # the default value for this tree is that X11 is available
163 skipdirs
="${skipdirs} tk tix itcl libgui"
164 # We won't be able to build gdbtk without X.
167 *) echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2 ;;
170 # Some tools are only suitable for building in a "native" situation.
171 # Remove these if host!=target.
172 native_only
="autoconf automake libtool fileutils find gawk gettext grep gzip hello indent m4 rcs recode sed shellutils tar textutils uudecode wdiff gprof target-groff guile perl time ash bash bzip2 prms snavigator gnuserv target-gperf"
174 # Similarly, some are only suitable for cross toolchains.
175 # Remove these if host=target.
176 cross_only
="target-libgloss target-newlib target-opcodes"
178 case $is_cross_compiler in
179 no
) skipdirs
="${skipdirs} ${cross_only}" ;;
180 yes) skipdirs
="${skipdirs} ${native_only}" ;;
183 # If both --with-headers and --with-libs are specified, default to
185 if test x
"${with_headers}" != x
&& test x
"${with_libs}" != x
; then
186 if test x
"${with_newlib}" = x
; then
191 # Recognize --with-newlib/--without-newlib.
192 case ${with_newlib} in
193 no
) skipdirs
="${skipdirs} target-newlib" ;;
194 yes) skipdirs
=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` ;;
197 # Configure extra directories which are host specific
201 configdirs
="$configdirs libtermcap" ;;
204 # Remove more programs from consideration, based on the host or
205 # target this usually means that a port of the program doesn't
210 noconfigdirs
="$noconfigdirs byacc"
213 noconfigdirs
="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl itcl tix db snavigator gnuserv gettext"
215 i
[3456]86-*-go32* | i
[3456]86-*-msdosdjgpp*)
216 noconfigdirs
="tcl tk expect dejagnu send-pr uudecode guile itcl tix db snavigator gnuserv libffi"
218 i
[3456]86-*-mingw32*)
219 # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl itcl tix db snavigator gnuserv"
220 noconfigdirs
="expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool"
223 noconfigdirs
="$noconfigdirs tk itcl tix libgui gdb"
226 noconfigdirs
="autoconf automake send-pr rcs guile perl"
232 noconfigdirs
="patch diff make tk tcl expect dejagnu autoconf automake texinfo bison send-pr gprof rcs guile perl itcl tix db snavigator gnuserv"
235 noconfigdirs
="$noconfigdirs tk itcl tix libgui gdb dejagnu readline"
239 # Save it here so that, even in case of --enable-libgcj, if the Java
240 # front-end isn't enabled, we still get libgcj disabled.
242 case $enable_libgcj in
244 # If we reset it here, it won't get added to noconfigdirs in the
245 # target-specific build rules, so it will be forcibly enabled
246 # (unless the Java language itself isn't enabled).
250 # Make sure we get it printed in the list of not supported target libs.
251 noconfigdirs
="$noconfigdirs ${libgcj}"
257 noconfigdirs
="$noconfigdirs target-newlib target-libgloss ${libgcj}"
259 *-*-freebsd[12] |
*-*-freebsd[12].
* |
*-*-freebsd*aout
*)
260 noconfigdirs
="$noconfigdirs target-newlib target-libgloss ${libgcj}"
263 # Skip some stuff on all NetBSD configurations.
264 noconfigdirs
="$noconfigdirs target-newlib target-libiberty target-libgloss"
266 # Skip some stuff that's unsupported on some NetBSD configurations.
268 i
*86-*-netbsdelf*) ;;
270 noconfigdirs
="$noconfigdirs ${libgcj}"
275 noconfigdirs
="$noconfigdirs ${libstdcxx_version} target-newlib target-libiberty target-libgloss ${libgcj}"
278 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
280 h8300
*-*-* | h8500-
*-*)
281 noconfigdirs
="$noconfigdirs target-libf2c"
287 noconfigdirs
="$noconfigdirs target-newlib target-libgloss ${libgcj}"
290 # ld works, but does not support shared libraries.
291 # newlib is not 64 bit ready. I'm not sure about fileutils.
292 # gas doesn't generate exception information.
293 noconfigdirs
="$noconfigdirs gas ld fileutils target-newlib target-libgloss"
296 noconfigdirs
="$noconfigdirs gdb ld target-newlib target-libgloss ${libgcj}"
299 # newlib is not 64 bit ready
300 noconfigdirs
="$noconfigdirs target-newlib target-libgloss"
303 noconfigdirs
="$noconfigdirs target-newlib target-libgloss"
306 # newlib is not 64 bit ready
307 noconfigdirs
="$noconfigdirs target-newlib target-libgloss ${libgcj}"
310 noconfigdirs
="$noconfigdirs ${libgcj} target-newlib target-libgloss"
312 sh
*-*-pe|mips
*-*-pe|
*arm-wince-pe
)
313 noconfigdirs
="$noconfigdirs ${libgcj}"
314 noconfigdirs
="$noconfigdirs target-examples"
315 noconfigdirs
="$noconfigdirs target-libiberty texinfo send-pr"
316 noconfigdirs
="$noconfigdirs tcl tix tk itcl libgui sim"
317 noconfigdirs
="$noconfigdirs expect dejagnu"
318 # the C++ libraries don't build on top of CE's C libraries
319 noconfigdirs
="$noconfigdirs ${libstdcxx_version}"
320 noconfigdirs
="$noconfigdirs target-newlib"
322 *-*-cygwin*) ;; # keep gdb and readline
323 *) noconfigdirs
="$noconfigdirs gdb readline ${libstdcxx_version}"
328 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
330 arm-
*-coff | strongarm-
*-coff | xscale-
*-coff)
331 noconfigdirs
="$noconfigdirs ${libgcj}"
333 arm-
*-elf* | strongarm-
*-elf* | xscale-
*-elf*)
334 noconfigdirs
="$noconfigdirs target-libffi target-qthreads"
337 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
340 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
343 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
346 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
349 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
352 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
355 noconfigdirs
="$noconfigdirs ld target-libgloss ${libgcj}"
358 noconfigdirs
="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
361 noconfigdirs
="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
363 c54x
*-*-* | tic54x-
*-*)
364 noconfigdirs
="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj} gcc gdb newlib"
367 noconfigdirs
="$noconfigdirs ${libgcj}"
370 noconfigdirs
="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
373 noconfigdirs
="$noconfigdirs ${libgcj}"
376 noconfigdirs
="$noconfigdirs ${libgcj}"
379 noconfigdirs
="$noconfigdirs ${libgcj}"
382 noconfigdirs
="$noconfigdirs target-libgloss"
385 noconfigdirs
="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj} target-libf2c"
387 hppa
*64*-*-linux* | parisc
*64*-*-linux*)
388 # In this case, it's because the hppa64-linux target is for
389 # the kernel only at this point and has no libc, and thus no
390 # headers, crt*.o, etc., all of which are needed by these.
391 noconfigdirs
="$noconfigdirs target-zlib"
394 parisc
*-*-linux* | hppa
*-*-linux* | \
398 noconfigdirs
="$noconfigdirs ${libgcj}"
399 # Do configure ld/binutils/gas for this case.
402 # According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
403 # build on HP-UX 10.20.
404 noconfigdirs
="$noconfigdirs ld shellutils ${libgcj}"
407 # No gdb support yet.
408 noconfigdirs
="$noconfigdirs tix readline mmalloc libgui itcl gdb"
411 # No gdb or ld support yet.
412 noconfigdirs
="$noconfigdirs tix readline mmalloc libgui itcl gdb ld"
414 i
[3456]86-*-coff | i
[3456]86-*-elf)
415 noconfigdirs
="$noconfigdirs ${libgcj}"
417 i
[34567]86-*-freebsd*)
418 noconfigdirs
="$noconfigdirs target-newlib target-libgloss"
421 # The GCC port for glibc1 has no MD_FALLBACK_FRAME_STATE_FOR, so let's
422 # not build java stuff by default.
425 noconfigdirs
="$noconfigdirs ${libgcj}";;
428 # This section makes it possible to build newlib natively on linux.
429 # If we are using a cross compiler then don't configure newlib.
430 if test x
${is_cross_compiler} != xno
; then
431 noconfigdirs
="$noconfigdirs target-newlib"
433 noconfigdirs
="$noconfigdirs target-libgloss"
434 # If we are not using a cross compiler, do configure newlib.
435 # Note however, that newlib will only be configured in this situation
436 # if the --with-newlib option has been given, because otherwise
437 # 'target-newlib' will appear in skipdirs.
439 i
[3456]86-*-mingw32*)
440 target_configdirs
="$target_configdirs target-mingw"
441 noconfigdirs
="$noconfigdirs expect target-libgloss ${libgcj}"
443 # Can't build gdb for mingw32 if not native.
445 i
[3456]86-*-mingw32) ;; # keep gdb tcl tk expect etc.
446 *) noconfigdirs
="$noconfigdirs gdb tcl tk expect itcl tix db snavigator gnuserv"
451 target_configdirs
="$target_configdirs target-libtermcap target-winsup"
452 noconfigdirs
="$noconfigdirs target-gperf target-libgloss ${libgcj}"
453 # always build newlib.
454 skipdirs
=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
456 # Can't build gdb for Cygwin if not native.
458 *-*-cygwin*) ;; # keep gdb tcl tk expect etc.
459 *) noconfigdirs
="$noconfigdirs gdb tcl tk expect itcl tix libgui db snavigator gnuserv"
464 noconfigdirs
="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
466 i
[3456]86-*-sco3.2v5
*)
467 # The linker does not yet know about weak symbols in COFF,
468 # and is not configured to handle mixed ELF and COFF.
469 noconfigdirs
="$noconfigdirs ld target-libgloss ${libgcj}"
472 noconfigdirs
="$noconfigdirs gprof target-libgloss ${libgcj}"
474 i
[3456]86-*-solaris2*)
475 noconfigdirs
="$noconfigdirs target-libgloss"
478 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
481 noconfigdirs
="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
483 m68hc11-
*-*|m6811-
*-*|m68hc12-
*-*|m6812-
*-*)
484 noconfigdirs
="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
487 noconfigdirs
="$noconfigdirs ${libgcj}"
490 noconfigdirs
="$noconfigdirs ${libgcj}"
493 # The EPOC C++ environment does not support exceptions or rtti,
494 # and so building libstdc++-v3 tends not to always work.
495 noconfigdirs
="$noconfigdirs target-libstdc++-v3"
498 noconfigdirs
="$noconfigdirs ${libgcj}"
501 noconfigdirs
="$noconfigdirs ${libgcj}"
504 noconfigdirs
="$noconfigdirs ${libgcj}"
507 # copied from rs6000-*-* entry
508 noconfigdirs
="$noconfigdirs gprof target-libgloss ${libgcj}"
510 powerpc
*-*-winnt* | powerpc
*-*-pe* | ppc
*-*-pe)
511 target_configdirs
="$target_configdirs target-winsup"
512 noconfigdirs
="$noconfigdirs gdb tcl tk make expect target-libgloss itcl tix db snavigator gnuserv ${libgcj}"
513 # always build newlib.
514 skipdirs
=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
516 # This is temporary until we can link against shared libraries
517 powerpcle-
*-solaris*)
518 noconfigdirs
="$noconfigdirs gdb sim make tcl tk expect itcl tix db snavigator gnuserv ${libgcj}"
521 noconfigdirs
="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
524 noconfigdirs
="$noconfigdirs bfd binutils ld gas opcodes gdb tk itcl tix libgui gprof ${libgcj}"
527 noconfigdirs
="$noconfigdirs ${libgcj}"
530 noconfigdirs
="$noconfigdirs target-newlib target-libgloss"
532 noconfigdirs
="$noconfigdirs target-libffi"
535 noconfigdirs
="$noconfigdirs target-newlib gprof ${libgcj}"
538 noconfigdirs
="$noconfigdirs gprof ${libgcj}"
541 noconfigdirs
="$noconfigdirs gprof ${libgcj}"
544 noconfigdirs
="$noconfigdirs ld binutils gprof target-libgloss ${libgcj}"
547 # The GNU linker does not support shared libraries.
548 noconfigdirs
="$noconfigdirs ld gprof target-libgloss ${libgcj}"
551 # The GNU assembler does not support IRIX 6.
552 # Linking libjava exceeds command-line length limits on at least
553 # IRIX 6.2, but not on IRIX 6.5.
554 # Also, boehm-gc won't build on IRIX 6.5, according to Jeffrey Oldham
555 # <oldham@codesourcery.com>
556 noconfigdirs
="$noconfigdirs gas gprof target-libgloss ${libgcj}"
559 noconfigdirs
="$noconfigdirs gprof target-libgloss ${libgcj}"
562 noconfigdirs
="$noconfigdirs gprof target-libgloss ${libgcj}"
565 noconfigdirs
="$noconfigdirs gprof ${libgcj}" # same as generic mips
568 noconfigdirs
="$noconfigdirs target-newlib target-libgloss"
571 noconfigdirs
="$noconfigdirs gprof ${libgcj}"
574 noconfigdirs
="$noconfigdirs bfd binutils ld gas opcodes target-libgloss ${libgcj}"
578 i
[3456]86-*-vsta) ;; # don't add gprof back in
579 i
[3456]86-*-go32*) ;; # don't add gprof back in
580 i
[3456]86-*-msdosdjgpp*) ;; # don't add gprof back in
581 *) skipdirs
=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
583 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
586 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
589 noconfigdirs
="$noconfigdirs ${libgcj}"
592 noconfigdirs
="$noconfigdirs ${libgcj}"
595 noconfigdirs
="$noconfigdirs ${libgcj}"
598 noconfigdirs
="$noconfigdirs ${libgcj}"
599 if test x
${is_cross_compiler} != xno
; then
600 noconfigdirs
="$noconfigdirs gdb target-newlib target-libgloss"
605 sparc-
*-solaris* | sparc64-
*-solaris* | sparcv9-
*-solaris*)
608 noconfigdirs
="$noconfigdirs bfd binutils gas gcc gdb ld ${libstdcxx_version} opcodes target-libgloss ${libgcj}"
611 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
614 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
617 noconfigdirs
="$noconfigdirs target-libgloss ${libgcj}"
620 noconfigdirs
="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss ${libgcj}"
623 noconfigdirs
="$noconfigdirs target-newlib target-libgloss ${libgcj}"
626 noconfigdirs
="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
629 noconfigdirs
="$noconfigdirs target-newlib target-libgloss"
632 noconfigdirs
="$noconfigdirs target-newlib target-libgloss ${libgcj}"
635 noconfigdirs
="$noconfigdirs ${libgcj}"
639 # If we aren't building newlib, then don't build libgloss, since libgloss
640 # depends upon some newlib header files.
641 case "${noconfigdirs}" in
642 *target-libgloss
*) ;;
643 *target-newlib
*) noconfigdirs
="$noconfigdirs target-libgloss" ;;
646 # Figure out what language subdirectories are present.
647 # Look if the user specified --enable-languages="..."; if not, use
648 # the environment variable $LANGUAGES if defined. $LANGUAGES might
650 # NB: embedded tabs in this IF block -- do not untabify
651 if test x
"${enable_languages+set}" != xset
; then
652 if test x
"${LANGUAGES+set}" = xset
; then
653 enable_languages
="${LANGUAGES}"
654 echo configure.
in: warning
: setting LANGUAGES is deprecated
, use
--enable-languages instead
1>&2
659 if test x
"${enable_languages}" = x ||
660 test x
"${enable_languages}" = xyes
;
662 echo configure.
in: --enable-languages needs
at least one language argument
1>&2
666 enable_languages
=`echo "${enable_languages}" | sed -e 's/[ ,][ ,]*/,/g' -e 's/,$//'`
668 # First scan to see if an enabled language requires some other language.
669 # We assume that a given config-lang.in will list all the language
670 # front ends it requires, even if some are required indirectly.
671 for lang
in ${srcdir}/gcc
/*/config-lang.
in ..
676 # The odd quoting in the next line works around
677 # an apparent bug in bash 1.12 on linux.
678 ${srcdir}/gcc
/[*]/config-lang.
in)
681 lang_alias
=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
682 this_lang_requires
=`sed -n -e 's,^lang_requires=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_requires=\([^ ]*\).*$,\1,p' $lang`
683 for other
in $this_lang_requires
685 case ,${enable_languages}, in
691 echo " \`$other' language required by \`$lang_alias'; enabling" 1>&2
692 enable_languages
="$enable_languages,$other"
701 for lang
in ${srcdir}/gcc
/*/config-lang.
in ..
705 # The odd quoting in the next line works around
706 # an apparent bug in bash 1.12 on linux.
707 ${srcdir}/gcc
/[*]/config-lang.
in) ;;
709 lang_alias
=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
710 this_lang_libs
=`sed -n -e 's,^target_libs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^target_libs=\([^ ]*\).*$,\1,p' $lang`
711 this_lang_dirs
=`sed -n -e 's,^lang_dirs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_dirs=\([^ ]*\).*$,\1,p' $lang`
712 build_by_default
=`sed -n -e 's,^build_by_default=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^build_by_default=\([^ ]*\).*$,\1,p' $lang`
713 if test "x$lang_alias" = x
715 echo "$lang doesn't set \$language." 1>&2
718 case ${build_by_default},${enable_languages}, in
719 *,$lang_alias,*) add_this_lang
=yes ;;
720 no
,*) add_this_lang
=no
;;
721 *,all
,*) add_this_lang
=yes ;;
722 *) add_this_lang
=no
;;
724 if test x
"${add_this_lang}" = xyes
; then
725 eval target_libs
='"$target_libs "'\"$this_lang_libs\"
727 eval noconfigdirs
='"$noconfigdirs "'\"$this_lang_libs $this_lang_dirs\"
733 # Remove the entries in $skipdirs and $noconfigdirs from $configdirs and
734 # $target_configdirs.
735 # If we have the source for $noconfigdirs entries, add them to $notsupp.
738 for dir
in .
$skipdirs $noconfigdirs ; do
739 dirname=`echo $dir | sed -e s/target-//g`
740 if test $dir != .
&& echo " ${configdirs} " |
grep " ${dir} " >/dev
/null
2>&1; then
741 configdirs
=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
742 if test -r $srcdir/$dirname/configure
; then
743 if echo " ${skipdirs} " |
grep " ${dir} " >/dev
/null
2>&1; then
746 notsupp
="$notsupp $dir"
750 if test $dir != .
&& echo " ${target_configdirs} " |
grep " ${dir} " >/dev
/null
2>&1; then
751 target_configdirs
=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
752 if test -r $srcdir/$dirname/configure
; then
753 if echo " ${skipdirs} " |
grep " ${dir} " >/dev
/null
2>&1; then
756 notsupp
="$notsupp $dir"
762 # Sometimes the tools are distributed with libiberty but with no other
763 # libraries. In that case, we don't want to build target-libiberty.
764 if test -n "${target_configdirs}" ; then
766 for i
in `echo ${target_configdirs} | sed -e s/target-//g` ; do
767 if test "$i" != "libiberty" ; then
768 if test -r $srcdir/$i/configure
; then
774 if test -z "${others}" ; then
779 # Deconfigure all subdirectories, in case we are changing the
780 # configuration from one where a subdirectory is supported to one where it
782 if test -z "${norecursion}" && test -n "${configdirs}" ; then
783 for i
in `echo ${configdirs} | sed -e s/target-//g` ; do
787 if test -z "${norecursion}" && test -n "${target_configdirs}" ; then
788 for i
in `echo ${target_configdirs} | sed -e s/target-//g` ; do
789 rm -f ${target_subdir}/$i/Makefile
793 # Quietly strip out all directories which aren't configurable in this tree.
794 # This relies on all configurable subdirectories being autoconfiscated, which
796 configdirs_all
="$configdirs"
798 for i
in ${configdirs_all} ; do
799 if test -f ${srcdir}/$i/configure
; then
800 configdirs
="${configdirs} $i"
803 target_configdirs_all
="$target_configdirs"
805 for i
in ${target_configdirs_all} ; do
806 j
=`echo $i | sed -e s/target-//g`
807 if test -f ${srcdir}/$j/configure
; then
808 target_configdirs
="${target_configdirs} $i"
812 # Produce a warning message for the subdirs we can't configure.
813 # This isn't especially interesting in the Cygnus tree, but in the individual
814 # FSF releases, it's important to let people know when their machine isn't
815 # supported by the one or two programs in a package.
817 if test -n "${notsupp}" && test -z "${norecursion}" ; then
818 # If $appdirs is non-empty, at least one of those directories must still
819 # be configured, or we error out. (E.g., if the gas release supports a
820 # specified target in some subdirs but not the gas subdir, we shouldn't
821 # pretend that all is well.)
822 if test -n "$appdirs" ; then
823 for dir
in $appdirs ; do
824 if test -r $dir/Makefile.
in ; then
825 if echo " ${configdirs} " |
grep " ${dir} " >/dev
/null
2>&1; then
829 if echo " ${target_configdirs} " |
grep " ${dir} " >/dev
/null
2>&1; then
835 if test -n "$appdirs" ; then
836 echo "*** This configuration is not supported by this package." 1>&2
840 # Okay, some application will build, or we don't care to check. Still
841 # notify of subdirs not getting built.
842 echo "*** This configuration is not supported in the following subdirectories:" 1>&2
843 echo " ${notsupp}" 1>&2
844 echo " (Any other directories should still work fine.)" 1>&2
851 # Determine whether gdb needs tk/tcl or not.
852 case "$enable_gdbtk" in
856 GDB_TK
="all-tcl all-tk all-itcl all-tix all-libgui" ;;
861 # Handle --with-headers=XXX. If the value is not "yes", the contents of
862 # the named directory are copied to $(tooldir)/sys-include.
863 if test x
"${with_headers}" != x
; then
864 if test x
${is_cross_compiler} = xno
; then
865 echo 1>&2 '***' --with-headers is only supported when cross compiling
868 if test x
"${with_headers}" != xyes
; then
869 case "${exec_prefixoption}" in
871 *) x
=${exec_prefix} ;;
873 copy_dirs
="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include"
877 # Handle --with-libs=XXX. If the value is not "yes", the contents of
878 # the name directories are copied to $(tooldir)/lib. Multiple directories
880 if test x
"${with_libs}" != x
; then
881 if test x
${is_cross_compiler} = xno
; then
882 echo 1>&2 '***' --with-libs is only supported when cross compiling
885 if test x
"${with_libs}" != xyes
; then
886 # Copy the libraries in reverse order, so that files in the first named
887 # library override files in subsequent libraries.
888 case "${exec_prefixoption}" in
890 *) x
=${exec_prefix} ;;
892 for l
in ${with_libs}; do
893 copy_dirs
="$l $x/${target_alias}/lib ${copy_dirs}"
898 # Handle ${copy_dirs}
899 set fnord
${copy_dirs}
901 while test $# != 0 ; do
902 if test -f $2/COPIED
&& test x
"`cat $2/COPIED`" = x
"$1" ; then
905 echo Copying
$1 to
$2
907 # Use the install script to create the directory and all required
908 # parent directories.
913 ${srcdir}/install-sh
-c -m 644 config.temp
$2/COPIED
916 # Copy the directory, assuming we have tar.
917 # FIXME: Should we use B in the second tar? Not all systems support it.
918 (cd $1; tar -cf - .
) |
(cd $2; tar -xpf -)
920 # It is the responsibility of the user to correctly adjust all
921 # symlinks. If somebody can figure out how to handle them correctly
922 # here, feel free to add the code.
929 # Work in distributions that contain no compiler tools, like Autoconf.
931 if test -d ${srcdir}/config
; then
934 # Avoid "too much defining" errors from HPUX compiler.
935 tentative_cc
="cc -Wp,-H256000"
936 host_makefile_frag
="config/mh-hp300"
939 tentative_cc
="cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DUSG"
940 host_makefile_frag
="config/mh-apollo68"
943 #None of the Apollo compilers can compile gas or binutils. The preprocessor
944 # chokes on bfd, the compiler won't let you assign integers to enums, and
945 # other problems. Defining CC to gcc is a questionable way to say "don't use
946 # the apollo compiler" (the preferred version of GCC could be called cc,
947 # or whatever), but I'm not sure leaving CC as cc is any better...
948 #CC=cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DNO_STDARG
950 host_makefile_frag
="config/mh-a68bsd"
953 tentative_cc
="gcc -Wall -ansi -D__using_DGUX"
954 host_makefile_frag
="config/mh-dgux"
957 # Under CX/UX, we want to tell the compiler to use ANSI mode.
958 tentative_cc
="cc -Xa"
959 host_makefile_frag
="config/mh-cxux"
962 host_makefile_frag
="config/mh-delta88"
965 tentative_cc
="cc -Wf,-XNg1000"
966 host_makefile_frag
="config/mh-decstation"
969 # The C compiler on NEC MIPS SVR4 needs bigger tables.
970 tentative_cc
="cc -ZXNd=5000 -ZXNg=1000"
971 host_makefile_frag
="config/mh-necv4"
974 host_makefile_frag
="config/mh-irix6"
977 host_makefile_frag
="config/mh-irix5"
980 # Tell compiler to use K&R C. We can't compile under the SGI Ansi
981 # environment. Also bump switch table size so that cp-parse will
982 # compile. Bump string length limit so linker builds.
983 tentative_cc
="cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh2000 -Wf,-XNl8192"
986 host_makefile_frag
="config/mh-sysv"
989 host_makefile_frag
="config/mh-sysv4"
992 # This is for a MIPS running RISC/os 4.52C.
994 # This is needed for GDB, but needs to be in the top-level make because
995 # if a library is compiled with the bsd headers and gets linked with the
996 # sysv system libraries all hell can break loose (e.g. a jmp_buf might be
998 # ptrace(2) apparently has problems in the BSD environment. No workaround is
999 # known except to select the sysv environment. Could we use /proc instead?
1000 # These "sysv environments" and "bsd environments" often end up being a pain.
1002 # This is not part of CFLAGS because perhaps not all C compilers have this
1004 tentative_cc
="cc -systype sysv"
1005 host_makefile_frag
="config/mh-riscos"
1009 host_makefile_frag
="config/mh-openedition"
1012 host_makefile_frag
="config/mh-sysv5"
1015 tentative_cc
="gcc -Wall -ansi -D__using_DGUX"
1016 host_makefile_frag
="config/mh-dgux386"
1018 i
[3456]86-ncr-sysv4.3
*)
1019 # The MetaWare compiler will generate a copyright message unless you
1020 # turn it off by adding the -Hnocopyr flag.
1021 tentative_cc
="cc -Hnocopyr"
1022 host_makefile_frag
="config/mh-ncrsvr43"
1024 i
[3456]86-ncr-sysv4*)
1025 # for an NCR 3000 (i486/SVR4) system.
1026 # The NCR 3000 ships with a MetaWare compiler installed as /bin/cc.
1027 # This compiler not only emits obnoxious copyright messages every time
1028 # you run it, but it chokes and dies on a whole bunch of GNU source
1029 # files. Default to using the AT&T compiler installed in /usr/ccs/ATT/cc.
1030 tentative_cc
="/usr/ccs/ATT/cc"
1031 host_makefile_frag
="config/mh-ncr3000"
1033 i
[3456]86-*-sco3.2v5
*)
1034 host_makefile_frag
="config/mh-sysv"
1037 # The native C compiler botches some simple uses of const. Unfortunately,
1038 # it doesn't defined anything like "__sco__" for us to test for in ansidecl.h.
1039 tentative_cc
="cc -Dconst="
1040 host_makefile_frag
="config/mh-sco"
1043 host_makefile_frag
="config/mh-sysv5"
1046 host_makefile_frag
="config/mh-sysv"
1048 i
[3456]86-*-solaris2*)
1049 host_makefile_frag
="config/mh-sysv4"
1052 host_makefile_frag
="config/mh-aix386"
1054 i
[3456]86-*-msdosdjgpp*)
1055 host_makefile_frag
="config/mh-djgpp"
1058 host_makefile_frag
="config/mh-cygwin"
1061 host_makefile_frag
="config/mh-mingw32"
1064 host_makefile_frag
="config/mh-interix"
1067 # The old BSD pcc isn't up to compiling parts of gdb so use gcc
1071 host_makefile_frag
="config/mh-solaris"
1074 # Sun's C compiler needs the -J flag to be able to compile cp-parse.c
1075 # without overflowing the jump tables (-J says to use a 32 bit table)
1076 tentative_cc
="cc -J"
1079 tentative_cc
="cc -Wp,-H256000"
1080 host_makefile_frag
="config/mh-hpux8"
1083 tentative_cc
="cc -Wp,-H256000"
1084 host_makefile_frag
="config/mh-hpux"
1087 tentative_cc
="cc -Wp,-H256000"
1088 host_makefile_frag
="config/mh-hpux"
1091 # /bin/cc is less than useful for our purposes. Always use GCC
1092 tentative_cc
="/usr/cygnus/progressive/bin/gcc"
1093 host_makefile_frag
="config/mh-lynxrs6k"
1096 # /bin/cc is less than useful for our purposes. Always use GCC
1097 tentative_cc
="/bin/gcc"
1100 host_makefile_frag
="config/mh-sysv4"
1103 host_makefile_frag
="config/mh-sysv"
1109 if test -n "${host_makefile_frag}" ; then
1110 for f
in ${host_makefile_frag}
1112 cat ${srcdir}/$f >> mh-frag
1114 host_makefile_frag
=mh-frag
1117 extra_arflags_for_target
=
1118 extra_nmflags_for_target
=
1120 i
[3456]86-*-netware*)
1121 target_makefile_frag
="config/mt-netware"
1124 target_makefile_frag
="config/mt-netware"
1127 target_makefile_frag
="config/mt-linux"
1129 *-*-aix4.
[3456789]* |
*-*-aix[56789].
*)
1130 # nm and ar from AIX 4.3 and above require -X32_64 flag to all ar and nm
1131 # commands to handle both 32-bit and 64-bit objects. These flags are
1132 # harmless if we're using GNU nm or ar.
1133 extra_arflags_for_target
=" -X32_64"
1134 extra_nmflags_for_target
=" -B -X32_64"
1136 mips
*-*-pe | sh
*-*-pe |
*arm-wince-pe
)
1137 target_makefile_frag
="config/mt-wince"
1144 # This just makes sure to use the -mieee option to build target libs.
1145 # This should probably be set individually by each library.
1146 alphaieee_frag
="config/mt-alphaieee"
1150 # If --enable-target-optspace always use -Os instead of -O2 to build
1151 # the target libraries, similarly if it is not specified, use -Os
1152 # on selected platforms.
1154 case "${enable_target_optspace}:${target}" in
1156 ospace_frag
="config/mt-ospace"
1159 ospace_frag
="config/mt-d30v"
1161 :m32r-
* |
:d10v-
* |
:fr30-
*)
1162 ospace_frag
="config/mt-ospace"
1167 echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
1172 if test -n "${target_makefile_frag}${alphaieee_frag}${ospace_frag}" ; then
1173 for f
in ${target_makefile_frag} ${alphaieee_frag} ${ospace_frag}
1175 cat ${srcdir}/$f >> mt-frag
1177 target_makefile_frag
=mt-frag
1180 # Set with_gnu_as and with_gnu_ld as appropriate.
1182 # This is done by determining whether or not the appropriate directory
1183 # is available, and by checking whether or not specific configurations
1184 # have requested that this magic not happen.
1186 # The command line options always override the explicit settings in
1187 # configure.in, and the settings in configure.in override this magic.
1189 # If the default for a toolchain is to use GNU as and ld, and you don't
1190 # want to do that, then you should use the --without-gnu-as and
1191 # --without-gnu-ld options for the configure script.
1193 if test x
${use_gnu_as} = x
&&
1194 echo " ${configdirs} " |
grep " gas " > /dev
/null
2>&1 ; then
1196 withoptions
="$withoptions --with-gnu-as"
1199 if test x
${use_gnu_ld} = x
&&
1200 echo " ${configdirs} " |
grep " ld " > /dev
/null
2>&1 ; then
1202 withoptions
="$withoptions --with-gnu-ld"
1205 # If using newlib, add --with-newlib to the withoptions so that gcc/configure
1206 # can detect this case.
1208 if test x
${with_newlib} != xno
&& echo " ${target_configdirs} " |
grep " target-newlib " > /dev
/null
2>&1 ; then
1210 withoptions
="$withoptions --with-newlib"
1213 # We default to --with-shared on platforms where -fpic is meaningless.
1214 # Well, we don't yet, but we will.
1215 if false
&& test "${host}" = "${target}" && test x${enable_shared} = x ; then
1217 alpha*-dec-osf*) enable_shared=yes ;;
1218 alpha*-*-linux*) enable_shared=yes ;;
1219 mips-sgi-irix5*) enable_shared=yes ;;
1220 *) enable_shared=no ;;
1224 case "${enable_shared}" in
1232 # Default to using --with-stabs for certain targets.
1233 if test x${with_stabs} = x ; then
1237 withoptions="${withoptions} --with-stabs"
1241 mips*-*-* | alpha*-*-osf*)
1243 withoptions="${withoptions} --with-stabs"
1248 # hpux11 in 64bit mode has libraries in a weird place. Arrange to find
1249 # them automatically.
1252 withoptions="$withoptions -x-libraries=/usr
/lib
/pa20_64
-x-includes=/usr
/X11R
6/include
"
1256 # If we aren't going to be using gcc, see if we can extract a definition
1257 # of CC from the fragment.
1258 # Actually, use the 'pre-extracted' version above.
1259 if test -z "${CC}" && test "${build}" = "${host}" ; then
1260 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
1262 for dir in $PATH; do
1263 test -z "$dir" && dir=.
1264 if test -f $dir/gcc; then
1270 if test -z "${found}" && test -n "${tentative_cc}" ; then
1277 # Make sure that the compiler is able to generate an executable. If it
1278 # can't, we are probably in trouble. We don't care whether we can run the
1279 # executable--we might be using a cross compiler--we only care whether it
1280 # can be created. At this point the main configure script has set CC.
1282 echo "int main
() { return 0; }" > conftest.c
1283 ${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
1284 if test $? = 0 ; then
1285 if test -s conftest || test -s conftest.exe ; then
1291 echo 1>&2 "*** The
command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed.
"
1292 echo 1>&2 "*** You must
set the environment variable CC to a working compiler.
"
1299 # The Solaris /usr/ucb/cc compiler does not appear to work.
1301 sparc-sun-solaris2*)
1302 CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
1303 if test "`type $CCBASE | sed 's/^[^/]*//'`" = "/usr
/ucb
/cc
" ; then
1305 test -d /opt/SUNWspro/bin && could_use="/opt
/SUNWspro
/bin
"
1306 if test -d /opt/cygnus/bin ; then
1307 if test "$could_use" = "" ; then
1308 could_use="/opt
/cygnus
/bin
"
1310 could_use="$could_use or
/opt
/cygnus
/bin
"
1313 if test "$could_use" = "" ; then
1314 echo "Warning
: compilation may fail because you
're using"
1315 echo "/usr/ucb/cc. You should change your PATH or CC "
1316 echo "variable and rerun configure."
1318 echo "Warning: compilation may fail because you're using
"
1319 echo "/usr
/ucb
/cc
, when you should use the C compiler from
"
1320 echo "$could_use. You should change your
"
1321 echo "PATH or CC variable and rerun configure.
"
1327 # If --enable-shared was set, we must set LD_LIBRARY_PATH so that the
1328 # binutils tools will find libbfd.so.
1329 if test "${shared}" = "yes" ; then
1330 SET_LIB_PATH="\$
(REALLY_SET_LIB_PATH
)"
1334 sed -e "s
/@SET_LIB_PATH@
/${SET_LIB_PATH}/" Makefile > Makefile.tem
1336 mv -f Makefile.tem Makefile
1340 *-*-hpux*) RPATH_ENVVAR=SHLIB_PATH ;;
1341 *) RPATH_ENVVAR=LD_LIBRARY_PATH ;;
1343 sed -e "s
/@RPATH_ENVVAR@
/${RPATH_ENVVAR}/" Makefile > Makefile.tem
1345 mv -f Makefile.tem Makefile
1347 # Record target_configdirs and the configure arguments for target and
1348 # build configuration in Makefile.
1349 target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
1351 # This is the final value for target_configdirs. configdirs already
1352 # has its final value. It's time to create some lists of valid targets.
1355 install_host_modules=
1356 for module in ${configdirs} ; do
1357 all_host_modules="${all_host_modules} all-
${module}"
1358 check_host_modules="${check_host_modules} check-
${module}"
1359 install_host_modules="${install_host_modules} install-
${module}"
1361 install_host_modules_nogcc=`echo "${install_host_modules}" | sed -e 's/install-gcc//g'`
1364 check_target_modules=
1365 install_target_modules=
1366 for module in ${target_configdirs} ; do
1367 all_target_modules="${all_target_modules} all-target-
${module}"
1368 check_target_modules="${check_target_modules} check-target-
${module}"
1369 install_target_modules="${install_target_modules} install-target-
${module}"
1372 # Base args. Strip norecursion, cache-file, srcdir, host, build, target.
1373 # These are the ones we might not want to pass down to subconfigures.
1374 baseargs=`echo "${arguments}" | \
1375 sed -e 's/--no[^ ]*//' \
1376 -e 's/--cache[a-z-]*=[^ ]*//' \
1377 -e 's/--sr[a-z-]*=[^ ]*//' \
1378 -e 's/--ho[a-z-]*=[^ ]*//' \
1379 -e 's/--bu[a-z-]*=[^ ]*//' \
1380 -e 's/--ta[a-z-]*=[^ ]*//'`
1382 # For the build-side libraries, we just need to pretend we're native,
1383 # and not use the same cache file. Multilibs are neither needed nor
1385 buildargs="--cache-file=..
/config.cache
--build=${build_alias} --host=${build_alias} ${baseargs}"
1387 targargs=${baseargs}
1389 # Passing a --with-cross-host argument lets the target libraries know
1390 # whether they are being built with a cross-compiler or being built
1391 # native. However, it would be better to use other mechanisms to make the
1392 # sorts of decisions they want to make on this basis. Please consider
1393 # this option to be deprecated. FIXME.
1394 if test x${is_cross_compiler} = xyes ; then
1395 targargs="--with-cross-host=${host_alias} ${targargs}"
1398 # Default to --enable-multilib.
1399 if test x${enable_multilib} = x ; then
1400 targargs="--enable-multilib ${targargs}"
1403 # Pass --with-newlib if appropriate. Note that target_configdirs has
1404 # changed from the earlier setting of with_newlib.
1405 if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && test -d ${srcdir}/newlib ; then
1406 targargs="--with-newlib ${targargs}"
1409 # Pass the appropriate --host, --build, and --cache-file arguments.
1410 targargs="--cache-file=..
/config.cache
--host=${target_alias} --build=${build_alias} ${targargs}"
1412 # provide a proper gxx_include_dir.
1413 # Note, if you change the default, make sure to fix both here and in
1414 # the gcc and libstdc++-v3 subdirectories.
1415 # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given.
1417 if test -n "${with_gxx_include_dir}"; then
1418 case "${with_gxx_include_dir}" in
1420 echo "configure.
in: error
: bad value
${withval} given
for g
++ include directory
" 1>&2
1426 gxx_include_dir=${with_gxx_include_dir}
1430 if test x${gxx_include_dir} = x; then
1431 if test x${enable_version_specific_runtime_libs} = xyes; then
1432 gxx_include_dir='${libsubdir}/include/c++'
1434 . ${srcdir}/config.if
1435 gxx_include_dir='${prefix}/include/${libstdcxx_incdir}'
1438 gxx_include_dir=${gxx_include_dir}
1442 case " $target_configdirs " in
1444 case " $targargs " in
1445 *" --with-newlib "*)
1448 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include -isystem $$s/newlib/libc/sys/cygwin -isystem $$s/newlib/libc/sys/cygwin32' ;;
1451 # If we're not building GCC, don't discard standard headers.
1452 if test -d ${srcdir}/gcc; then
1453 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc'
1455 if test "${build}" != "${host}"; then
1456 # On Canadian crosses, CC_FOR_TARGET will have already been set
1457 # by `configure', so we won't have an opportunity to add -Bgcc/
1458 # to it. This is right: we don't want to search that directory
1459 # for binaries, but we want the header files in there, so add
1461 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -isystem $$r/gcc/include'
1463 # Someone might think of using the pre-installed headers on
1464 # Canadian crosses, in case the installed compiler is not fully
1465 # compatible with the compiler being built. In this case, it
1466 # would be better to flag an error than risking having
1467 # incompatible object files being constructed. We can't
1468 # guarantee that an error will be flagged, but let's hope the
1469 # compiler will do it, when presented with incompatible header
1474 case "${target}-${is_cross_compiler}" in
1475 i[3456]86-*-linux*-no)
1476 # Here host == target, so we don't need to build gcc,
1477 # so we don't want to discard standard headers.
1478 FLAGS_FOR_TARGET=`echo " $FLAGS_FOR_TARGET " | sed -e 's/ -nostdinc / /'`
1481 # If we're building newlib, use its generic headers last, but search
1482 # for any libc-related directories first (so make it the last -B
1484 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/newlib/ -isystem $$r/$(TARGET_SUBDIR)/newlib/targ-include -isystem $$s/newlib/libc/include'
1492 # On Canadian crosses, we'll be searching the right directories for
1493 # the previously-installed cross compiler, so don't bother to add
1494 # flags for directories within the install tree of the compiler
1495 # being built; programs in there won't even run.
1496 if test "${build}" = "${host}" && test -d ${srcdir}/gcc
; then
1497 # Search for pre-installed headers if nothing else fits.
1498 FLAGS_FOR_TARGET
=$FLAGS_FOR_TARGET' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include'
1501 if test "x${use_gnu_ld}" = x
&&
1502 echo " ${configdirs} " |
grep " ld " > /dev
/null
; then
1503 # Arrange for us to find uninstalled linker scripts.
1504 FLAGS_FOR_TARGET
=$FLAGS_FOR_TARGET' -L$$r/ld'
1507 if test "x${CC_FOR_TARGET+set}" = xset
; then
1509 elif test -d ${srcdir}/gcc
; then
1510 CC_FOR_TARGET
='$$r/gcc/xgcc -B$$r/gcc/'
1511 elif test "$host" = "$target"; then
1512 CC_FOR_TARGET
='$(CC)'
1514 CC_FOR_TARGET
=`echo gcc | sed -e 's/x/x/' ${program_transform_name}`
1516 # On Canadian crosses, configure reads CC_FOR_TARGET from Makefile,
1517 # if Makefile exists. Prevent $(FLAGS_FOR_TARGET) from being duplicated.
1518 case $CC_FOR_TARGET in
1519 *' $(FLAGS_FOR_TARGET)') ;;
1520 *) CC_FOR_TARGET
=$CC_FOR_TARGET' $(FLAGS_FOR_TARGET)' ;;
1523 if test "x${GCJ_FOR_TARGET+set}" = xset
; then
1525 elif test -d ${srcdir}/gcc
; then
1526 GCJ_FOR_TARGET
='$$r/gcc/gcj -B$$r/gcc/'
1527 elif test "$host" = "$target"; then
1528 GCJ_FOR_TARGET
='gcj'
1530 GCJ_FOR_TARGET
=`echo gcj | sed -e 's/x/x/' ${program_transform_name}`
1532 case $GCJ_FOR_TARGET in
1533 *' $(FLAGS_FOR_TARGET)') ;;
1534 *) GCJ_FOR_TARGET
=$GCJ_FOR_TARGET' $(FLAGS_FOR_TARGET)' ;;
1537 # Don't use libstdc++-v3's flags to configure/build itself.
1538 libstdcxx_flags
='`case $$dir in libstdc++-v3 | libjava) ;; *) test ! -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/testsuite_flags || $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/testsuite_flags --build-includes;; esac` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs'
1540 if test "x${CXX_FOR_TARGET+set}" = xset
; then
1542 elif test -d ${srcdir}/gcc
; then
1543 # We add -shared-libgcc to CXX_FOR_TARGET whenever we use xgcc instead
1544 # of g++ for linking C++ or Java, because g++ has -shared-libgcc by
1545 # default whereas gcc does not.
1546 CXX_FOR_TARGET
='$$r/gcc/`case $$dir in libstdc++-v3 | libjava) echo xgcc -shared-libgcc ;; *) echo g++ ;; esac` -B$$r/gcc/ -nostdinc++ '$libstdcxx_flags
1547 elif test "$host" = "$target"; then
1548 CXX_FOR_TARGET
='$(CXX)'
1550 CXX_FOR_TARGET
=`echo c++ | sed -e 's/x/x/' ${program_transform_name}`
1552 case $CXX_FOR_TARGET in
1553 *' $(FLAGS_FOR_TARGET)') ;;
1554 *) CXX_FOR_TARGET
=$CXX_FOR_TARGET' $(FLAGS_FOR_TARGET)' ;;
1556 qCXX_FOR_TARGET
=`echo "$CXX_FOR_TARGET" | sed 's,[&%],\\\&,g'`
1558 # We want to defer the evaluation of `cmd`s and shell variables in
1559 # CXX_FOR_TARGET when recursing in the top-level Makefile, such as for
1560 # bootstrap. We'll enclose CXX_FOR_TARGET_FOR_RECURSIVE_MAKE in single
1561 # quotes, but we still have to duplicate `$'s so that shell variables
1562 # can be expanded by the nested make as shell variables, not as make
1564 qqCXX_FOR_TARGET
=`echo "$qCXX_FOR_TARGET" | sed -e 's,[$][$],$$$$,g'`
1568 s%@all_host_modules@%${all_host_modules}%
1569 s%@check_host_modules@%${check_host_modules}%
1570 s%@install_host_modules@%${install_host_modules}%
1571 s%@install_host_modules_nogcc@%${install_host_modules_nogcc}%
1572 s%@all_target_modules@%${all_target_modules}%
1573 s%@check_target_modules@%${check_target_modules}%
1574 s%@install_target_modules@%${install_target_modules}%
1575 s:@target_configdirs@:${target_configdirs}:
1576 s%@target_configargs@%${targargs}%
1577 s%@FLAGS_FOR_TARGET@%${FLAGS_FOR_TARGET}%
1578 s%@CC_FOR_TARGET@%\$(STAGE_CC_WRAPPER) ${CC_FOR_TARGET}%
1579 s%@GCJ_FOR_TARGET@%\$(STAGE_CC_WRAPPER) ${GCJ_FOR_TARGET}%
1580 s%@CXX_FOR_TARGET@%\$(STAGE_CC_WRAPPER) ${qCXX_FOR_TARGET}%
1581 s%@CXX_FOR_TARGET_FOR_RECURSIVE_MAKE@%\$(STAGE_CC_WRAPPER) ${qqCXX_FOR_TARGET}%
1582 s%@target_subdir@%${target_subdir}%
1583 s%@build_subdir@%${build_subdir}%
1584 s%@build_configargs@%${buildargs}%
1585 s%@gxx_include_dir@%${gxx_include_dir}%
1587 sed -f $sedtemp Makefile
> Makefile.tem
1588 rm -f Makefile
$sedtemp
1589 mv -f Makefile.tem Makefile