OSDN Git Service

334fc70a3cdd295ef7c4eac8076383f46c82af86
[pf3gnuchains/gcc-fork.git] / configure.in
1 #! /bin/bash
2 ##############################################################################
3
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.  
8
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.  
13
14 ## For more information on these two systems, check out the documentation
15 ## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).  
16
17 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
18 #   1999, 2000, 2001, 2002 Free Software Foundation, Inc.
19 #
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.
24 #
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.
29 #
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.
33
34 ##############################################################################
35
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.  
41
42
43 # these libraries are used by various programs built for the host environment
44 #
45 host_libs="intl mmalloc libiberty opcodes bfd readline db tcl tk tclX itcl tix libgui zlib"
46
47 libstdcxx_version="target-libstdc++-v3"
48
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 cgen sid sim gdb make patch prms send-pr gprof gdbtest tgas etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool ispell grep diff rcs cvssrc fileutils shellutils time textutils wdiff find uudecode hello tar gzip indent recode release sed utils guile perl apache inet gawk findutils snavigator libtool gettext zip fastjar"
53
54 # libgcj represents the runtime libraries only used by gcj.
55 libgcj="target-libffi \
56         target-boehm-gc \
57         target-zlib \
58         target-qthreads \
59         target-libjava"
60
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)
63 #
64 target_libs="target-libiberty \
65                 target-libgloss \
66                 target-newlib \
67                 ${libstdcxx_version} \
68                 target-libf2c \
69                 ${libgcj}
70                 target-libobjc"
71
72 # these tools are built using the target libs, and are intended to run only
73 # in the target environment
74 #
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
78 #
79 target_tools="target-examples target-groff target-gperf"
80
81 ################################################################################
82
83 ## These two lists are of directories that are to be removed from the
84 ## ${configdirs} list for either cross-compilations or for native-
85 ## compilations.  For example, it doesn't make that much sense to
86 ## cross-compile Emacs, nor is it terribly useful to compile target-libiberty in
87 ## a native environment.  
88
89 # directories to be built in the native environment only
90 #
91 # This must be a single line because of the way it is searched by grep in
92 # the code below.
93 native_only="autoconf automake libtool cvssrc fileutils find gawk gettext grep gzip hello indent ispell m4 rcs recode sed shellutils tar textutils uudecode wdiff gprof target-groff guile perl apache inet time ash bash bzip2 prms snavigator gnuserv target-gperf"
94
95 # directories to be built in a cross environment only
96 #
97 cross_only="target-libgloss target-newlib target-cygmon target-opcodes target-libstub"
98
99 ## All tools belong in one of the four categories, and are assigned above
100 ## We assign ${configdirs} this way to remove all embedded newlines.  This
101 ## is important because configure will choke if they ever get through.
102 ## ${configdirs} is directories we build using the host tools.
103 ## ${target_configdirs} is directories we build using the target tools.
104 #
105 configdirs=`echo ${host_libs} ${host_tools}`
106 target_configdirs=`echo ${target_libs} ${target_tools}`
107
108 ################################################################################
109
110 srctrigger=move-if-change
111 srcname="gnu development package"
112
113 # This gets set non-empty for some net releases of packages.
114 appdirs=""
115
116 # per-host:
117
118 # There is no longer anything interesting in the per-host section.
119
120 # per-target:
121
122 # Define is_cross_compiler to save on calls to 'test'.
123 is_cross_compiler=
124 if test x"${host}" = x"${target}" ; then
125   is_cross_compiler=no
126 else
127   is_cross_compiler=yes
128 fi      
129
130 # Don't use libstdc++-v3's flags to configure/build itself.
131 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'
132
133 # Work in distributions that contain no compiler tools, like Autoconf.
134 tentative_cc=""
135 if test -d ${srcdir}/config ; then
136 case "${host}" in
137   m68k-hp-hpux*)
138     # Avoid "too much defining" errors from HPUX compiler.
139     tentative_cc="cc -Wp,-H256000"
140     host_makefile_frag="config/mh-hp300"
141     ;;
142   m68k-apollo-sysv*)
143     tentative_cc="cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DUSG"
144     host_makefile_frag="config/mh-apollo68"
145     ;;
146   m68k-apollo-bsd*)
147     #None of the Apollo compilers can compile gas or binutils.  The preprocessor
148     # chokes on bfd, the compiler won't let you assign integers to enums, and
149     # other problems.  Defining CC to gcc is a questionable way to say "don't use
150     # the apollo compiler" (the preferred version of GCC could be called cc,
151     # or whatever), but I'm not sure leaving CC as cc is any better...
152     #CC=cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DNO_STDARG
153     tentative_cc=gcc
154     host_makefile_frag="config/mh-a68bsd"
155     ;;
156   m88k-dg-dgux*)
157     tentative_cc="gcc -Wall -ansi -D__using_DGUX"
158     host_makefile_frag="config/mh-dgux"
159     ;;
160   m88k-harris-cxux*)
161     # Under CX/UX, we want to tell the compiler to use ANSI mode.
162     tentative_cc="cc -Xa"
163     host_makefile_frag="config/mh-cxux"
164     ;;
165   m88k-motorola-sysv*)
166     host_makefile_frag="config/mh-delta88"
167     ;;
168   mips*-dec-ultrix*)
169     tentative_cc="cc -Wf,-XNg1000"
170     host_makefile_frag="config/mh-decstation"
171     ;;
172   mips*-nec-sysv4*)
173     # The C compiler on NEC MIPS SVR4 needs bigger tables.
174     tentative_cc="cc -ZXNd=5000 -ZXNg=1000"
175     host_makefile_frag="config/mh-necv4"
176     ;;
177   mips*-sgi-irix6*)
178     host_makefile_frag="config/mh-irix6"
179     ;;
180   mips*-sgi-irix5*)
181     host_makefile_frag="config/mh-irix5"
182     ;;
183   mips*-sgi-irix4*)
184     # Tell compiler to use K&R C.  We can't compile under the SGI Ansi
185     # environment.  Also bump switch table size so that cp-parse will
186     # compile.  Bump string length limit so linker builds.
187     tentative_cc="cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh2000 -Wf,-XNl8192"
188     ;;
189   mips*-sgi-irix3*)
190     host_makefile_frag="config/mh-sysv"
191     ;;
192   mips*-*-sysv4*)
193     host_makefile_frag="config/mh-sysv4"
194     ;;
195   mips*-*-sysv*)
196     # This is for a MIPS running RISC/os 4.52C.
197
198     # This is needed for GDB, but needs to be in the top-level make because
199     # if a library is compiled with the bsd headers and gets linked with the
200     # sysv system libraries all hell can break loose (e.g. a jmp_buf might be
201     # a different size).
202     # ptrace(2) apparently has problems in the BSD environment.  No workaround is
203     # known except to select the sysv environment.  Could we use /proc instead?
204     # These "sysv environments" and "bsd environments" often end up being a pain.
205     #
206     # This is not part of CFLAGS because perhaps not all C compilers have this
207     # option.
208     tentative_cc="cc -systype sysv"
209     host_makefile_frag="config/mh-riscos"
210     ;;
211   i370-ibm-opened*)
212     tentative_cc="c89"
213     host_makefile_frag="config/mh-openedition"
214     ;;
215   i[3456]86-*-sysv5*)
216     host_makefile_frag="config/mh-sysv5"
217     ;;
218   i[3456]86-*-dgux*)
219     tentative_cc="gcc -Wall -ansi -D__using_DGUX"
220     host_makefile_frag="config/mh-dgux386"
221     ;;
222   i[3456]86-ncr-sysv4.3*)
223     # The MetaWare compiler will generate a copyright message unless you
224     # turn it off by adding the -Hnocopyr flag.
225     tentative_cc="cc -Hnocopyr"
226     host_makefile_frag="config/mh-ncrsvr43"
227     ;;
228   i[3456]86-ncr-sysv4*)
229     # for an NCR 3000 (i486/SVR4) system.
230     # The NCR 3000 ships with a MetaWare compiler installed as /bin/cc.
231     # This compiler not only emits obnoxious copyright messages every time
232     # you run it, but it chokes and dies on a whole bunch of GNU source
233     # files.  Default to using the AT&T compiler installed in /usr/ccs/ATT/cc.
234     tentative_cc="/usr/ccs/ATT/cc"
235     host_makefile_frag="config/mh-ncr3000"
236     ;;
237   i[3456]86-*-sco3.2v5*)
238     host_makefile_frag="config/mh-sysv"
239     ;;
240   i[3456]86-*-sco*)
241     # The native C compiler botches some simple uses of const.  Unfortunately,
242     # it doesn't defined anything like "__sco__" for us to test for in ansidecl.h.
243     tentative_cc="cc -Dconst="
244     host_makefile_frag="config/mh-sco"
245     ;;
246   i[3456]86-*-udk*)
247     host_makefile_frag="config/mh-sysv5"
248     ;;
249   i[3456]86-*-isc*)
250     host_makefile_frag="config/mh-sysv"
251     ;;
252   i[3456]86-*-solaris2*)
253     host_makefile_frag="config/mh-sysv4"
254     ;;
255   i[3456]86-*-aix*)
256     host_makefile_frag="config/mh-aix386"
257     ;;
258   i[3456]86-*-msdosdjgpp*)
259     host_makefile_frag="config/mh-djgpp"
260     ;;
261   *-cygwin*)
262     host_makefile_frag="config/mh-cygwin"
263     ;;
264   *-mingw32*)
265     host_makefile_frag="config/mh-mingw32"
266     ;;
267   *-interix*)
268     host_makefile_frag="config/mh-interix"
269     ;;
270   vax-*-ultrix2*)
271     # The old BSD pcc isn't up to compiling parts of gdb so use gcc
272     tentative_cc=gcc
273     ;;
274   *-*-solaris2*)
275     host_makefile_frag="config/mh-solaris"
276     ;;
277   m68k-sun-sunos*)
278     # Sun's C compiler needs the -J flag to be able to compile cp-parse.c
279     # without overflowing the jump tables (-J says to use a 32 bit table)
280     tentative_cc="cc -J"
281     ;;
282   *-hp-hpux[78]*)
283     tentative_cc="cc -Wp,-H256000"
284     host_makefile_frag="config/mh-hpux8"
285     ;;
286   *-hp-hpux*)
287     tentative_cc="cc -Wp,-H256000"
288     host_makefile_frag="config/mh-hpux"
289     ;;
290   *-*-hiux*)
291     tentative_cc="cc -Wp,-H256000"
292     host_makefile_frag="config/mh-hpux"
293     ;;
294   rs6000-*-lynxos*)
295     # /bin/cc is less than useful for our purposes.  Always use GCC
296     tentative_cc="/usr/cygnus/progressive/bin/gcc"
297     host_makefile_frag="config/mh-lynxrs6k"
298     ;;
299   *-*-lynxos*)
300     # /bin/cc is less than useful for our purposes.  Always use GCC
301     tentative_cc="/bin/gcc"
302     ;;
303   *-*-sysv4*)
304     host_makefile_frag="config/mh-sysv4"
305     ;;
306   *-*-sysv*)
307     host_makefile_frag="config/mh-sysv"
308     ;;
309 esac
310 fi
311
312 # If we aren't going to be using gcc, see if we can extract a definition
313 # of CC from the fragment.
314 # Actually, use the 'pre-extracted' version above.
315 if test -z "${CC}" && test "${build}" = "${host}" ; then
316   IFS="${IFS=   }"; save_ifs="$IFS"; IFS="${IFS}:"
317   found=
318   for dir in $PATH; do
319     test -z "$dir" && dir=.
320     if test -f $dir/gcc; then
321       found=yes
322       break
323     fi
324   done
325   IFS="$save_ifs"
326   if test -z "${found}" && test -n "${tentative_cc}" ; then
327     CC=$tentative_cc
328   fi
329 fi
330
331 # We default to --with-shared on platforms where -fpic is meaningless.
332 # Well, we don't yet, but we will.
333 if false && test "${host}" = "${target}" && test x${enable_shared} = x ; then
334   case "${target}" in
335     alpha*-dec-osf*)    enable_shared=yes ;;
336     alpha*-*-linux*)    enable_shared=yes ;;
337     mips-sgi-irix5*)    enable_shared=yes ;;
338     *)                  enable_shared=no ;;
339   esac
340 fi
341
342 # hpux11 in 64bit mode has libraries in a weird place.  Arrange to find
343 # them automatically.
344 case "${host}" in
345   hppa*64*-*-hpux11*)   
346     withoptions="$withoptions -x-libraries=/usr/lib/pa20_64 -x-includes=/usr/X11R6/include"
347     ;;
348 esac
349
350 case "${enable_shared}" in
351   yes) shared=yes ;;
352   no) shared=no ;;
353   "") shared=no ;;
354   *) shared=yes ;;
355 esac
356
357 rm -f mh-frag
358 if test -n "${host_makefile_frag}" ; then
359   for f in ${host_makefile_frag}
360   do
361     cat ${srcdir}/$f >> mh-frag
362   done
363   host_makefile_frag=mh-frag
364 fi
365
366 case "${target}" in
367   v810*)
368     target_makefile_frag="${target_makefile_frag} config/mt-v810"
369     ;;
370   i[3456]86-*-netware*)
371     target_makefile_frag="${target_makefile_frag} config/mt-netware"
372     ;;
373   powerpc-*-netware*)
374     target_makefile_frag="${target_makefile_frag} config/mt-netware"
375     ;;
376   alpha*-*-linux*)
377     target_makefile_frag="${target_makefile_frag} config/mt-linux"
378     target_makefile_frag="${target_makefile_frag} config/mt-alphaieee"
379     ;;
380   alpha*-*-*)
381     target_makefile_frag="${target_makefile_frag} config/mt-alphaieee"
382     ;;
383   *-*-linux*)
384     target_makefile_frag="${target_makefile_frag} config/mt-linux"
385     ;;
386   *-*-aix4.[3456789]* | *-*-aix[56789].*)
387     target_makefile_frag="${target_makefile_frag} config/mt-aix43"
388     ;;
389   mips*-*-pe | sh*-*-pe | *arm-wince-pe)
390     target_makefile_frag="${target_makefile_frag} config/mt-wince"
391     ;;
392 esac
393
394 # If --enable-target-optspace always use -Os instead of -O2 to build
395 # the target libraries, similarly if it is not specified, use -Os
396 # on selected platforms.
397 case "${enable_target_optspace}:${target}" in
398   yes:*)
399     target_makefile_frag="${target_makefile_frag} config/mt-ospace"
400     ;;
401   :d30v-*)
402     target_makefile_frag="${target_makefile_frag} config/mt-d30v"
403     ;;
404   :m32r-* | :d10v-* | :fr30-*)
405     target_makefile_frag="${target_makefile_frag} config/mt-ospace"
406     ;;
407   no:* | :*)
408     ;;
409   *)
410     echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
411     ;;
412 esac
413
414 skipdirs=
415 use_gnu_ld=
416 use_gnu_as=
417
418 # some tools are so dependent upon X11 that if we're not building with X, 
419 # it's not even worth trying to configure, much less build, that tool.
420
421 case ${with_x} in
422   yes | "")  # the default value for this tree is that X11 is available
423         ;;
424   no)
425         skipdirs="${skipdirs} tk libgui"
426         ;;
427   *)
428         echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
429         ;;
430 esac
431
432 # Some tools are only suitable for building in a "native" situation.
433 # Those are added when we have a host==target configuration.  For cross
434 # toolchains, we add some directories that should only be useful in a
435 # cross-compiler.
436
437 case $is_cross_compiler in
438   no) skipdirs="${skipdirs} ${cross_only}" ;;
439   yes) skipdirs="${skipdirs} ${native_only}" ;;
440 esac
441
442 # We always want to use the same name for this directory, so that dejagnu
443 # can reliably find it.
444 target_subdir=${target_alias}
445
446 if test ! -d ${target_subdir} ; then
447   if mkdir ${target_subdir} ; then true
448   else
449     echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${target_subdir}" 1>&2
450     exit 1
451   fi
452 fi
453
454 build_subdir=${build_alias}
455
456 if test x"${build_alias}" != x"${host}" ; then
457   if test ! -d ${build_subdir} ; then
458     if mkdir ${build_subdir} ; then true
459     else
460       echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${build_subdir}" 1>&2
461       exit 1
462     fi
463   fi
464 fi
465
466 copy_dirs=
467
468 # Handle --with-headers=XXX.  The contents of the named directory are
469 # copied to $(tooldir)/sys-include.
470 if test x"${with_headers}" != x ; then
471   if test x${is_cross_compiler} = xno ; then
472     echo 1>&2 '***' --with-headers is only supported when cross compiling
473     exit 1
474   fi
475   case "${exec_prefixoption}" in
476   "") x=${prefix} ;;
477   *) x=${exec_prefix} ;;
478   esac
479   copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include"
480 fi
481
482 # Handle --with-libs=XXX.  Multiple directories are permitted.  The
483 # contents are copied to $(tooldir)/lib.
484 if test x"${with_libs}" != x ; then
485   if test x${is_cross_compiler} = xno ; then
486     echo 1>&2 '***' --with-libs is only supported when cross compiling
487     exit 1
488   fi
489   # Copy the libraries in reverse order, so that files in the first named
490   # library override files in subsequent libraries.
491   case "${exec_prefixoption}" in
492   "") x=${prefix} ;;
493   *) x=${exec_prefix} ;;
494   esac
495   for l in ${with_libs}; do
496     copy_dirs="$l $x/${target_alias}/lib ${copy_dirs}"
497   done
498 fi
499
500 # Handle ${copy_dirs}
501 set fnord ${copy_dirs}
502 shift
503 while test $# != 0 ; do
504   if test -f $2/COPIED && test x"`cat $2/COPIED`" = x"$1" ; then
505     :
506   else
507     echo Copying $1 to $2
508
509     # Use the install script to create the directory and all required
510     # parent directories.
511     if test -d $2 ; then
512       :
513     else
514       echo >config.temp
515       ${srcdir}/install-sh -c -m 644 config.temp $2/COPIED
516     fi
517
518     # Copy the directory, assuming we have tar.
519     # FIXME: Should we use B in the second tar?  Not all systems support it.
520     (cd $1; tar -cf - .) | (cd $2; tar -xpf -)
521
522     # It is the responsibility of the user to correctly adjust all
523     # symlinks.  If somebody can figure out how to handle them correctly
524     # here, feel free to add the code.
525
526     echo $1 > $2/COPIED
527   fi
528   shift; shift
529 done
530
531 # If both --with-headers and --with-libs are specified, default to
532 # --without-newlib.
533 if test x"${with_headers}" != x && test x"${with_libs}" != x ; then
534   if test x"${with_newlib}" = x ; then
535     with_newlib=no
536   fi
537 fi
538
539 # Recognize --with-newlib/--without-newlib.
540 case ${with_newlib} in
541   no) skipdirs="${skipdirs} target-newlib" ;;
542   yes) skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` ;;
543 esac
544
545 # Default to using --with-stabs for certain targets.
546 if test x${with_stabs} = x ; then
547   case "${target}" in
548   mips*-*-irix6*)
549     ;;
550   mips*-*-* | alpha*-*-osf*)
551     with_stabs=yes;
552     withoptions="${withoptions} --with-stabs"
553     ;;
554   esac
555 fi
556
557 # Configure extra directories which are host specific
558
559 case "${host}" in
560         i[3456]86-*-go32*)
561           configdirs="$configdirs dosrel" ;;
562         i[3456]86-*-mingw32*)
563           configdirs="$configdirs dosrel" ;;
564         *-cygwin*)
565           configdirs="$configdirs libtermcap dosrel" ;;
566 esac
567
568 # Remove more programs from consideration, based on the host or 
569 # target this usually means that a port of the program doesn't
570 # exist yet.
571
572 noconfigdirs=""
573
574 case "${host}" in
575   hppa*64*-*-*)
576     noconfigdirs="$noconfigdirs byacc"
577     ;;
578   i[3456]86-*-vsta)
579     noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv gettext"
580     ;;
581   i[3456]86-*-go32* | i[3456]86-*-msdosdjgpp*)
582     noconfigdirs="tcl tk expect dejagnu send-pr uudecode guile apache inet itcl tix db snavigator gnuserv libffi"
583         ;;
584   i[3456]86-*-mingw32*)
585     # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv"
586      noconfigdirs="expect dejagnu cvs autoconf automake send-pr rcs guile perl texinfo apache inet libtool"
587         ;;
588   i[3456]86-*-beos*)
589      noconfigdirs="$noconfigdirs tk itcl tix libgui gdb"
590      ;;
591   *-*-cygwin*)
592      noconfigdirs="autoconf automake send-pr rcs guile perl apache inet"
593     ;;
594   *-*-netbsd*)
595     noconfigdirs="rcs"
596     ;;
597   ppc*-*-pe)
598      noconfigdirs="patch diff make tk tcl expect dejagnu cvssrc autoconf automake texinfo bison send-pr gprof rcs guile perl apache inet itcl tix db snavigator gnuserv"
599     ;;
600   powerpc-*-beos*)
601     noconfigdirs="$noconfigdirs tk itcl tix libgui gdb dejagnu readline"
602     ;;
603 esac
604
605 # Save it here so that, even in case of --enable-libgcj, if the Java
606 # front-end isn't enabled, we still get libgcj disabled.
607 libgcj_saved=$libgcj
608 case $enable_libgcj in
609 yes)
610   # If we reset it here, it won't get added to noconfigdirs in the
611   # target-specific build rules, so it will be forcibly enabled
612   # (unless the Java language itself isn't enabled).
613   libgcj=
614   ;;
615 no)
616   # Make sure we get it printed in the list of not supported target libs.
617   noconfigdirs="$noconfigdirs ${libgcj}"
618   ;;
619 esac
620
621 case "${target}" in
622   *-*-chorusos)
623     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
624     ;;
625   *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
626     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
627     ;;
628   *-*-netbsd*)
629     # Skip some stuff on all NetBSD configurations.
630     skipdirs="$skipdirs target-newlib target-libiberty target-libgloss"
631
632     # Skip some stuff that's unsupported on some NetBSD configurations.
633     case "${target}" in
634       i*86-*-netbsdelf*) ;;
635       *)
636         noconfigdirs="$noconfigdirs ${libgcj}"
637         ;;
638     esac
639     ;;
640   *-*-netware)
641     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-newlib target-libiberty target-libgloss ${libgcj}"
642     ;;
643   *-*-rtems*)
644     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
645     case ${target} in
646         h8300*-*-* | h8500-*-*)
647           noconfigdirs="$noconfigdirs target-libf2c"
648           ;;
649         *) ;;
650     esac
651     ;;
652   *-*-vxworks*)
653     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
654     ;;
655   alpha*-dec-osf*)
656     # ld works, but does not support shared libraries.
657     # newlib is not 64 bit ready.  I'm not sure about fileutils.
658     # gas doesn't generate exception information.
659     noconfigdirs="$noconfigdirs gas ld fileutils target-newlib target-libgloss"
660     ;;
661   alpha*-*-*vms*)
662     noconfigdirs="$noconfigdirs gdb ld target-newlib target-libgloss ${libgcj}"
663     ;;
664   alpha*-*-linux*)
665     # newlib is not 64 bit ready
666     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
667     ;;
668   alpha*-*-freebsd*)
669     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
670     ;;
671   alpha*-*-*)
672     # newlib is not 64 bit ready
673     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
674     ;;
675   sh-*-linux*)
676     noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss"
677     ;;    
678   sh*-*-pe|mips*-*-pe|*arm-wince-pe)
679     noconfigdirs="$noconfigdirs ${libgcj}"
680     noconfigdirs="$noconfigdirs target-examples"
681     noconfigdirs="$noconfigdirs target-libiberty texinfo send-pr"
682     noconfigdirs="$noconfigdirs tcl tix tk itcl libgui sim"
683     noconfigdirs="$noconfigdirs expect dejagnu"
684     # the C++ libraries don't build on top of CE's C libraries
685     noconfigdirs="$noconfigdirs ${libstdcxx_version}"
686     skipdirs="$skipdirs target-newlib"
687     case "${host}" in
688       *-*-cygwin*) ;; # keep gdb and readline
689       *) noconfigdirs="$noconfigdirs gdb readline ${libstdcxx_version}"
690          ;;
691     esac
692     ;;
693   arc-*-*)
694     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
695     ;;
696   arm-*-pe*)
697     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
698     ;;
699   arm-*-oabi*)
700     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
701     ;;
702   thumb-*-coff)
703     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
704     ;;
705   thumb-*-elf)
706     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
707     ;;
708   thumb-*-oabi)
709     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
710     ;;
711   strongarm-*-elf)
712     noconfigdirs="$noconfigdirs ${libgcj}"
713     ;;
714   strongarm-*-coff)
715     noconfigdirs="$noconfigdirs ${libgcj}"
716     ;;
717   xscale-*-elf)
718     noconfigdirs="$noconfigdirs target-libffi target-qthreads"
719     ;;
720   xscale-*-coff)
721     noconfigdirs="$noconfigdirs ${libgcj}"
722     ;;
723   thumb-*-pe)
724     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
725     ;;
726   arm-*-riscix*)
727     noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
728     ;;
729   avr-*-*)
730     noconfigdirs="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
731     ;;
732   c4x-*-*)
733     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
734     ;;
735   c54x*-*-* | tic54x-*-*)
736     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj} gcc gdb newlib"
737     ;;
738   cris-*-*)
739     noconfigdirs="$noconfigdirs ${libgcj}"
740     ;;
741   d10v-*-*)
742     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
743     ;;
744   d30v-*-*)
745     noconfigdirs="$noconfigdirs ${libgcj}"
746     ;;
747   fr30-*-elf*)
748     noconfigdirs="$noconfigdirs ${libgcj}"
749     if test x${is_cross_compiler} != xno ; then
750            target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
751     fi
752     ;;
753   frv-*-*)
754     noconfigdirs="$noconfigdirs ${libgcj}"
755     if test x${is_cross_compiler} != xno ; then
756            target_configdirs="${target_configdirs} target-bsp target-cygmon"
757     fi
758     ;;
759   h8300*-*-*)
760     noconfigdirs="$noconfigdirs target-libgloss"
761     ;;
762   h8500-*-*)
763     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj} target-libf2c"
764     ;;
765   hppa*64*-*-linux* | parisc*64*-*-linux*)
766     # In this case, it's because the hppa64-linux target is for
767     # the kernel only at this point and has no libc, and thus no
768     # headers, crt*.o, etc., all of which are needed by these.
769     noconfigdirs="$noconfigdirs target-zlib"
770     ;;
771   hppa*-*-*elf* | \
772   parisc*-*-linux* | hppa*-*-linux* | \
773   hppa*-*-lites* | \
774   hppa*64*-*-*)
775     noconfigdirs="$noconfigdirs ${libgcj}"
776     # Do configure ld/binutils/gas for this case.
777     ;;
778   hppa*-*-*)
779     # According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
780     # build on HP-UX 10.20.
781     noconfigdirs="$noconfigdirs ld shellutils ${libgcj}"
782     ;;
783   ia64*-*-elf*)
784     # No gdb support yet.
785     noconfigdirs="$noconfigdirs tix readline mmalloc libgui itcl gdb"
786     ;;
787   ia64*-**-hpux*)
788     # No gdb or ld support yet.
789     noconfigdirs="$noconfigdirs tix readline mmalloc libgui itcl gdb ld"
790     ;;
791   i[3456]86-*-coff | i[3456]86-*-elf)
792     noconfigdirs="$noconfigdirs ${libgcj}"
793     if test x${is_cross_compiler} != xno ; then
794          target_configdirs="${target_configdirs} target-libstub target-cygmon"
795     fi
796     ;;
797   i[34567]86-*-freebsd*)
798     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
799     ;;
800   s390*-*-linux*)
801     # The libffi port is not yet in the GCC tree
802     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
803     ;;
804   i[3456]86-*-linux*)
805     # This section makes it possible to build newlib natively on linux.
806     # If we are using a cross compiler then don't configure newlib.
807     if test x${is_cross_compiler} != xno ; then
808          noconfigdirs="$noconfigdirs target-newlib"
809     fi
810     noconfigdirs="$noconfigdirs target-libgloss"
811     # If we are not using a cross compiler, do configure newlib.
812     # Note however, that newlib will only be configured in this situation
813     # if the --with-newlib option has been given, because otherwise
814     # 'target-newlib' will appear in skipdirs.
815     ;;
816   *-*-linux*)
817     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
818     ;;
819   i[3456]86-*-mingw32*)
820     target_configdirs="$target_configdirs target-mingw"
821     noconfigdirs="$noconfigdirs expect target-libgloss ${libgcj}"
822
823     # Can't build gdb for mingw32 if not native.
824     case "${host}" in
825       i[3456]86-*-mingw32) ;; # keep gdb tcl tk expect etc.
826       *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix db snavigator gnuserv"
827          ;;
828     esac
829     ;;    
830   *-*-cygwin*)
831     target_configdirs="$target_configdirs target-libtermcap target-winsup"
832     noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}"
833     # always build newlib.
834     skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
835
836     # Can't build gdb for Cygwin if not native.
837     case "${host}" in
838       *-*-cygwin*) ;; # keep gdb tcl tk expect etc.
839       *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix libgui db snavigator gnuserv"
840          ;;
841     esac
842     ;;    
843   i[3456]86-*-pe)
844     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
845     ;;
846   i[3456]86-*-sco3.2v5*)
847     # The linker does not yet know about weak symbols in COFF,
848     # and is not configured to handle mixed ELF and COFF.
849     noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
850     ;;
851   i[3456]86-*-sco*)
852     noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
853     ;;
854   i[3456]86-*-solaris2*)
855     noconfigdirs="$noconfigdirs target-libgloss"
856     ;;
857   i[3456]86-*-sysv4*)
858     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
859     ;;
860   i[3456]86-*-beos*)
861      noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
862      ;;
863   m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*)
864     noconfigdirs="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
865     ;;
866   m68k-*-elf*)
867     noconfigdirs="$noconfigdirs ${libgcj}"
868     if test x${is_cross_compiler} != xno ; then
869            target_configdirs="${target_configdirs} target-bsp target-cygmon"
870     fi
871     ;;
872   m68k-*-coff*)
873     noconfigdirs="$noconfigdirs ${libgcj}"
874     if test x${is_cross_compiler} != xno ; then
875            target_configdirs="${target_configdirs} target-bsp target-cygmon"
876     fi
877     ;;
878   mcore-*-pe*)
879   # The EPOC C++ environment does not support exceptions or rtti,
880   # and so building libstdc++-v3 tends not to always work.
881     noconfigdirs="$noconfigdirs target-libstdc++-v3"
882     ;;
883   mmix-*-*)
884     noconfigdirs="$noconfigdirs ${libgcj}"
885     ;;
886   mn10200-*-*)
887     noconfigdirs="$noconfigdirs ${libgcj}"
888     if test x${is_cross_compiler} != xno ; then
889            target_configdirs="${target_configdirs} target-libstub target-cygmon"
890     fi
891     ;;
892   mn10300-*-*)
893     noconfigdirs="$noconfigdirs ${libgcj}"
894     if test x${is_cross_compiler} != xno ; then
895            target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
896     fi
897     ;;
898   powerpc-*-aix*)
899     # copied from rs6000-*-* entry
900     noconfigdirs="$noconfigdirs gprof cvssrc target-libgloss ${libgcj}"
901     use_gnu_ld=yes
902     ;;
903   powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
904     target_configdirs="$target_configdirs target-winsup"
905     noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl tix db snavigator gnuserv ${libgcj}"
906     # always build newlib.
907     skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
908     ;;
909     # This is temporary until we can link against shared libraries
910   powerpcle-*-solaris*)
911     noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl tix db snavigator gnuserv ${libgcj}"
912     ;;
913   powerpc-*-beos*)
914     noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
915     ;;
916   powerpc-*-eabi)
917     noconfigdirs="$noconfigdirs ${libgcj}"
918     if test x${is_cross_compiler} != xno ; then
919            target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
920     fi
921     ;;
922   rs6000-*-lynxos*)
923     # The CVS server code doesn't work on the RS/6000
924     noconfigdirs="$noconfigdirs target-newlib gprof cvssrc ${libgcj}"
925     ;;
926   rs6000-*-aix*)
927     noconfigdirs="$noconfigdirs gprof ${libgcj}"
928     use_gnu_ld=yes
929     ;;
930   rs6000-*-*)
931     noconfigdirs="$noconfigdirs gprof ${libgcj}"
932     ;;
933   m68k-apollo-*)
934     noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss ${libgcj}"
935     ;;
936   mips*-*-irix5*)
937     # The GNU linker does not support shared libraries.
938     noconfigdirs="$noconfigdirs ld gprof target-libgloss ${libgcj}"
939     ;;
940   mips*-*-irix6*)
941     # The GNU assembler does not support IRIX 6.
942     # Linking libjava exceeds command-line length limits on at least
943     # IRIX 6.2, but not on IRIX 6.5.
944     # Also, boehm-gc won't build on IRIX 6.5, according to Jeffrey Oldham
945     # <oldham@codesourcery.com>
946     noconfigdirs="$noconfigdirs gas gprof target-libgloss ${libgcj}"
947     ;;
948   mips*-dec-bsd*)
949     noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
950     ;;
951   mips*-*-bsd*)
952     noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
953     ;;
954   mipstx39-*-*)
955     noconfigdirs="$noconfigdirs gprof ${libgcj}"   # same as generic mips
956     target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
957    ;;
958   mips*-*-linux*)
959     noconfigdirs="$noconfigdirs target-libffi"
960     ;;
961   mips*-*-*)
962     noconfigdirs="$noconfigdirs gprof ${libgcj}"
963     ;;
964   romp-*-*)
965     noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss ${libgcj}"
966     ;;
967   sh-*-*)
968     case "${host}" in
969       i[3456]86-*-vsta) ;; # don't add gprof back in
970       i[3456]86-*-go32*) ;; # don't add gprof back in
971       i[3456]86-*-msdosdjgpp*) ;; # don't add gprof back in
972       *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
973     esac
974     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
975     ;;
976   sh64-*-*)
977     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
978     ;;
979   sparc-*-elf*)
980     if test x${is_cross_compiler} != xno ; then
981            target_configdirs="${target_configdirs} target-libstub target-cygmon"
982     fi
983     noconfigdirs="$noconfigdirs ${libgcj}"
984     ;;
985   sparc64-*-elf*)
986     if test x${is_cross_compiler} != xno ; then
987            target_configdirs="${target_configdirs} target-libstub target-cygmon"
988     fi
989     noconfigdirs="$noconfigdirs ${libgcj}"
990     ;;
991   sparclite-*-*)
992     if test x${is_cross_compiler} != xno ; then
993            target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
994     fi
995     noconfigdirs="$noconfigdirs ${libgcj}"
996     ;;
997   sparc-*-sunos4*)
998     noconfigdirs="$noconfigdirs ${libgcj}"
999     if test x${is_cross_compiler} != xno ; then
1000            noconfigdirs="$noconfigdirs gdb gdbtest target-newlib target-libgloss"
1001     else
1002            use_gnu_ld=no
1003     fi
1004     ;;
1005   sparc-*-solaris* | sparc64-*-solaris* | sparcv9-*-solaris*)
1006     ;;
1007   v810-*-*)
1008     noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld ${libstdcxx_version} opcodes target-libgloss ${libgcj}"
1009     ;;
1010   v850-*-*)
1011     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
1012     ;;
1013   v850e-*-*)
1014     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
1015     ;;
1016   v850ea-*-*)
1017     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
1018     ;;
1019   vax-*-vms)
1020     noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss ${libgcj}"
1021     ;;
1022   vax-*-*)
1023     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
1024     ;;
1025   *-*-lynxos*)
1026     noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
1027     ;; 
1028   *-*-macos* | \
1029   *-*-mpw*)
1030     # Macs want a resource compiler.
1031     configdirs="$configdirs grez"
1032     noconfigdirs="$noconfigdirs ${libgcj}"
1033     ;;    
1034   *-*-*)
1035     noconfigdirs="$noconfigdirs ${libgcj}"
1036     ;;
1037 esac
1038
1039 # If we aren't building newlib, then don't build libgloss, since libgloss
1040 # depends upon some newlib header files.
1041 case "${noconfigdirs}" in
1042   *target-libgloss*) ;;
1043   *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;;
1044 esac
1045
1046 # Make sure we don't let GNU ld be added if we didn't want it.
1047 if test x$with_gnu_ld = xno ; then
1048   use_gnu_ld=no
1049   noconfigdirs="$noconfigdirs ld"
1050 fi
1051
1052 # Make sure we don't let GNU as be added if we didn't want it.
1053 if test x$with_gnu_as = xno ; then
1054   use_gnu_as=no
1055   noconfigdirs="$noconfigdirs gas"
1056 fi
1057
1058 # Figure out what language subdirectories are present.
1059 # Look if the user specified --enable-languages="..."; if not, use
1060 # the environment variable $LANGUAGES if defined. $LANGUAGES might
1061 # go away some day.
1062 # NB:  embedded tabs in this IF block -- do not untabify
1063 if test x"${enable_languages+set}" != xset; then
1064         if test x"${LANGUAGES+set}" = xset; then
1065                 enable_languages="${LANGUAGES}"
1066                 echo configure.in: warning: setting LANGUAGES is deprecated, use --enable-languages instead 1>&2
1067         else
1068                 enable_languages=all
1069         fi
1070 else
1071         if test x"${enable_languages}" = x ||
1072            test x"${enable_languages}" = xyes;
1073         then
1074                 echo configure.in: --enable-languages needs at least one language argument 1>&2
1075                 exit 1
1076         fi
1077 fi
1078 enable_languages=`echo "${enable_languages}" | sed -e 's/[      ,][     ,]*/,/g' -e 's/,$//'`
1079
1080 # First scan to see if an enabled language requires some other language.
1081 # We assume that a given config-lang.in will list all the language
1082 # front ends it requires, even if some are required indirectly.
1083 for lang in ${srcdir}/gcc/*/config-lang.in ..
1084 do
1085    case $lang in
1086     ..)
1087        ;;
1088     # The odd quoting in the next line works around
1089     # an apparent bug in bash 1.12 on linux.
1090     ${srcdir}/gcc/[*]/config-lang.in)
1091        ;;
1092     *)
1093        lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^      ]*\).*$,\1,p' $lang`
1094        this_lang_requires=`sed -n -e 's,^lang_requires=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_requires=\([^    ]*\).*$,\1,p' $lang`
1095        for other in $this_lang_requires
1096        do
1097           case ,${enable_languages}, in
1098            *,$other,*)
1099               ;;
1100            *,all,*)
1101               ;;
1102            *,$lang_alias,*)
1103               echo " \`$other' language required by \`$lang_alias'; enabling" 1>&2
1104               enable_languages="$enable_languages,$other"
1105               ;;
1106           esac
1107        done
1108        ;;
1109    esac
1110 done
1111
1112 subdirs=
1113 for lang in ${srcdir}/gcc/*/config-lang.in ..
1114 do
1115         case $lang in
1116         ..) ;;
1117         # The odd quoting in the next line works around
1118         # an apparent bug in bash 1.12 on linux.
1119         ${srcdir}/gcc/[*]/config-lang.in) ;;
1120         *)
1121           lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^   ]*\).*$,\1,p' $lang`
1122           this_lang_libs=`sed -n -e 's,^target_libs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^target_libs=\([^         ]*\).*$,\1,p' $lang`
1123           this_lang_dirs=`sed -n -e 's,^lang_dirs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_dirs=\([^     ]*\).*$,\1,p' $lang`
1124           build_by_default=`sed -n -e 's,^build_by_default=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^build_by_default=\([^     ]*\).*$,\1,p' $lang`
1125           if test "x$lang_alias" = x
1126           then
1127                 echo "$lang doesn't set \$language." 1>&2
1128                 exit 1
1129           fi
1130           case ${build_by_default},${enable_languages}, in
1131           *,$lang_alias,*) add_this_lang=yes ;;
1132           no,*) add_this_lang=no ;;
1133           *,all,*) add_this_lang=yes ;;
1134           *) add_this_lang=no ;;
1135           esac
1136           if test x"${add_this_lang}" = xyes; then
1137               eval target_libs='"$target_libs "'\"$this_lang_libs\"
1138           else
1139               eval noconfigdirs='"$noconfigdirs "'\"$this_lang_libs $this_lang_dirs\"
1140           fi
1141           ;;
1142         esac
1143 done
1144
1145 # Remove the entries in $skipdirs and $noconfigdirs from $configdirs and
1146 # $target_configdirs.
1147 # If we have the source for $noconfigdirs entries, add them to $notsupp.
1148
1149 notsupp=""
1150 for dir in . $skipdirs $noconfigdirs ; do
1151   dirname=`echo $dir | sed -e s/target-//g`
1152   if test $dir != .  && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1153     configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
1154     if test -r $srcdir/$dirname/configure \
1155         || test -r $srcdir/$dirname/configure.in ; then
1156       if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1157         true
1158       else
1159         notsupp="$notsupp $dir"
1160       fi
1161     fi
1162   fi
1163   if test $dir != . && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1164     target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
1165     if test -r $srcdir/$dirname/configure \
1166         || test -r $srcdir/$dirname/configure.in ; then
1167       if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1168         true
1169       else
1170         notsupp="$notsupp $dir"
1171       fi
1172     fi
1173   fi
1174 done
1175
1176 # Sometimes the tools are distributed with libiberty but with no other
1177 # libraries.  In that case, we don't want to build target-libiberty.
1178 if test -n "${target_configdirs}" ; then
1179   others=
1180   for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
1181     if test "$i" != "libiberty" ; then
1182       if test -r $srcdir/$i/configure || test -r $srcdir/$i/configure.in ; then
1183         others=yes;
1184         break;
1185       fi
1186     fi
1187   done
1188   if test -z "${others}" ; then
1189     target_configdirs=
1190   fi
1191 fi
1192
1193 # Deconfigure all subdirectories, in case we are changing the
1194 # configuration from one where a subdirectory is supported to one where it
1195 # is not.
1196 if test -z "${norecursion}" && test -n "${configdirs}" ; then
1197   for i in `echo ${configdirs} | sed -e s/target-//g` ; do
1198     rm -f $i/Makefile
1199   done
1200 fi
1201 if test -z "${norecursion}" && test -n "${target_configdirs}" ; then
1202   for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
1203     rm -f ${target_subdir}/$i/Makefile
1204   done
1205 fi
1206
1207 # Quietly strip out all directories which aren't configurable in this tree.
1208 # This relies on all configurable subdirectories being autoconfiscated, which
1209 # is now the case.
1210 configdirs_all="$configdirs"
1211 configdirs=
1212 for i in ${configdirs_all} ; do
1213   if test -f ${srcdir}/$i/configure ; then
1214     configdirs="${configdirs} $i"
1215   fi
1216 done
1217 target_configdirs_all="$target_configdirs"
1218 target_configdirs=
1219 for i in ${target_configdirs_all} ; do
1220   j=`echo $i | sed -e s/target-//g` 
1221   if test -f ${srcdir}/$j/configure ; then
1222     target_configdirs="${target_configdirs} $i"
1223   fi
1224 done
1225
1226 # Produce a warning message for the subdirs we can't configure.
1227 # This isn't especially interesting in the Cygnus tree, but in the individual
1228 # FSF releases, it's important to let people know when their machine isn't
1229 # supported by the one or two programs in a package.
1230
1231 if test -n "${notsupp}" && test -z "${norecursion}" ; then
1232   # If $appdirs is non-empty, at least one of those directories must still
1233   # be configured, or we error out.  (E.g., if the gas release supports a
1234   # specified target in some subdirs but not the gas subdir, we shouldn't
1235   # pretend that all is well.)
1236   if test -n "$appdirs" ; then
1237     for dir in $appdirs ; do
1238       if test -r $dir/Makefile.in ; then
1239         if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1240           appdirs=""
1241           break
1242         fi
1243         if echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
1244           appdirs=""
1245           break
1246         fi
1247       fi
1248     done
1249     if test -n "$appdirs" ; then
1250       echo "*** This configuration is not supported by this package." 1>&2
1251       exit 1
1252     fi
1253   fi
1254   # Okay, some application will build, or we don't care to check.  Still
1255   # notify of subdirs not getting built.
1256   echo "*** This configuration is not supported in the following subdirectories:" 1>&2
1257   echo "    ${notsupp}" 1>&2
1258   echo "    (Any other directories should still work fine.)" 1>&2
1259 fi
1260
1261 # Set with_gnu_as and with_gnu_ld as appropriate.
1262 #
1263 # This is done by determining whether or not the appropriate directory
1264 # is available, and by checking whether or not specific configurations
1265 # have requested that this magic not happen.
1266
1267 # The command line options always override the explicit settings in 
1268 # configure.in, and the settings in configure.in override this magic.
1269 #
1270 # If the default for a toolchain is to use GNU as and ld, and you don't 
1271 # want to do that, then you should use the --without-gnu-as and
1272 # --without-gnu-ld options for the configure script.
1273
1274 if test x${use_gnu_as} = x ; then
1275   if test x${with_gnu_as} != xno && echo " ${configdirs} " | grep " gas " > /dev/null 2>&1 && test -d ${srcdir}/gas ; then
1276     with_gnu_as=yes
1277     withoptions="$withoptions --with-gnu-as"
1278   fi
1279 fi
1280
1281 if test x${use_gnu_ld} = x ; then
1282   if test x${with_gnu_ld} != xno && echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && test -d ${srcdir}/ld ; then
1283     with_gnu_ld=yes
1284     withoptions="$withoptions --with-gnu-ld"
1285   fi
1286 fi
1287
1288 # If using newlib, add --with-newlib to the withoptions so that gcc/configure
1289 # can detect this case.
1290
1291 if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " target-newlib " > /dev/null 2>&1 && test -d ${srcdir}/newlib ; then
1292   with_newlib=yes
1293   withoptions="$withoptions --with-newlib"
1294 fi
1295
1296 rm -f mt-frag
1297 if test -n "${target_makefile_frag}" ; then
1298   for f in ${target_makefile_frag}
1299   do
1300     cat ${srcdir}/$f >> mt-frag
1301   done
1302   target_makefile_frag=mt-frag
1303 fi
1304
1305 case "$host" in
1306   *msdosdjgpp*)
1307     enable_gdbtk=no ;;
1308 esac
1309 # Determine whether gdb needs tk/tcl or not.
1310 case "$enable_gdbtk" in
1311   no)
1312     GDB_TK="" ;;
1313   *)
1314     GDB_TK="all-tcl all-tk all-itcl all-tix all-libgui" ;;
1315 esac
1316
1317 # post-target:
1318
1319 # Make sure that the compiler is able to generate an executable.  If it
1320 # can't, we are probably in trouble.  We don't care whether we can run the
1321 # executable--we might be using a cross compiler--we only care whether it
1322 # can be created.  At this point the main configure script has set CC.
1323 we_are_ok=no
1324 echo "int main () { return 0; }" > conftest.c
1325 ${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
1326 if test $? = 0 ; then
1327   if test -s conftest || test -s conftest.exe ; then
1328     we_are_ok=yes
1329   fi
1330 fi 
1331 case $we_are_ok in
1332   no)
1333     echo 1>&2 "*** The command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed."
1334     echo 1>&2 "*** You must set the environment variable CC to a working compiler."
1335     rm -f conftest*
1336     exit 1
1337     ;;
1338 esac
1339 rm -f conftest*
1340
1341 # The Solaris /usr/ucb/cc compiler does not appear to work.
1342 case "${host}" in
1343   sparc-sun-solaris2*)
1344       CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
1345       if test "`type $CCBASE | sed 's/^[^/]*//'`" = "/usr/ucb/cc" ; then
1346           could_use=
1347           test -d /opt/SUNWspro/bin && could_use="/opt/SUNWspro/bin"
1348           if test -d /opt/cygnus/bin ; then
1349               if test "$could_use" = "" ; then
1350                   could_use="/opt/cygnus/bin"
1351               else
1352                   could_use="$could_use or /opt/cygnus/bin"
1353               fi
1354           fi
1355         if test "$could_use" = "" ; then
1356             echo "Warning: compilation may fail because you're using"
1357             echo "/usr/ucb/cc.  You should change your PATH or CC "
1358             echo "variable and rerun configure."
1359         else
1360             echo "Warning: compilation may fail because you're using"
1361             echo "/usr/ucb/cc, when you should use the C compiler from"
1362             echo "$could_use.  You should change your"
1363             echo "PATH or CC variable and rerun configure."
1364         fi
1365       fi
1366   ;;
1367 esac
1368
1369 # If --enable-shared was set, we must set LD_LIBRARY_PATH so that the
1370 # binutils tools will find libbfd.so.
1371 if test "${shared}" = "yes" ; then
1372   sed -e 's/^SET_LIB_PATH[      ]*=.*$/SET_LIB_PATH = $(REALLY_SET_LIB_PATH)/' \
1373       Makefile > Makefile.tem
1374   rm -f Makefile
1375   mv -f Makefile.tem Makefile
1376
1377   case "${host}" in
1378   *-*-hpux*)
1379     sed -e 's/^RPATH_ENVVAR[    ]*=.*$/RPATH_ENVVAR = SHLIB_PATH/' \
1380         Makefile > Makefile.tem
1381     rm -f Makefile
1382     mv -f Makefile.tem Makefile
1383     ;;
1384   esac
1385 fi
1386
1387 # Base args.  Strip norecursion, cache-file, srcdir, host, build, target.
1388 # These are the ones we might not want to pass down to subconfigures.
1389 baseargs=`echo "${arguments}" | \
1390         sed -e 's/--no[^        ]*//' \
1391             -e 's/--cache[a-z-]*=[^     ]*//' \
1392             -e 's/--sr[a-z-]*=[^        ]*//' \
1393             -e 's/--ho[a-z-]*=[^        ]*//' \
1394             -e 's/--bu[a-z-]*=[^        ]*//' \
1395             -e 's/--ta[a-z-]*=[^        ]*//'`
1396
1397 # For the build-side libraries, we just need to pretend we're native,
1398 # and not use the same cache file.  Multilibs are neither needed nor
1399 # desired.
1400 buildargs="--cache-file=../config.cache --build=${build_alias} --host=${build_alias} ${baseargs}"
1401
1402 # Record target_configdirs and the configure arguments for target and
1403 # build configuration in Makefile.
1404 target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
1405 targargs=${baseargs}
1406
1407 # Passing a --with-cross-host argument lets the target libraries know
1408 # whether they are being built with a cross-compiler or being built
1409 # native.  However, it would be better to use other mechanisms to make the
1410 # sorts of decisions they want to make on this basis.  Please consider
1411 # this option to be deprecated.  FIXME.
1412 if test x${is_cross_compiler} = xyes ; then
1413   targargs="--with-cross-host=${host_alias} ${targargs}"
1414 fi
1415
1416 # Default to --enable-multilib.
1417 if test x${enable_multilib} = x ; then
1418   targargs="--enable-multilib ${targargs}"
1419 fi
1420
1421 # Pass --with-newlib if appropriate.  Note that target_configdirs has
1422 # changed from the earlier setting of with_newlib.
1423 if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && test -d ${srcdir}/newlib ; then
1424   targargs="--with-newlib ${targargs}"
1425 fi
1426
1427 # Pass the appropriate --host, --build, and --cache-file arguments.
1428 targargs="--cache-file=../config.cache --host=${target_alias} --build=${build_alias} ${targargs}"
1429
1430 # provide a proper gxx_include_dir.
1431 # Note, if you change the default, make sure to fix both here and in
1432 # the gcc and libstdc++-v3 subdirectories.
1433 # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given.
1434 gxx_include_dir=
1435 if test -n "${with_gxx_include_dir}"; then
1436   case "${with_gxx_include_dir}" in
1437     yes )
1438       echo "configure.in: error: bad value ${withval} given for g++ include directory" 1>&2
1439       exit 1
1440       ;;
1441     no )
1442       ;;
1443     * )
1444       gxx_include_dir=${with_gxx_include_dir}
1445       ;;
1446   esac
1447 fi
1448 if test x${gxx_include_dir} = x; then
1449   if test x${enable_version_specific_runtime_libs} = xyes; then
1450     gxx_include_dir='${libsubdir}/include/g++'
1451   else
1452     . ${topsrcdir}/config.if
1453     gxx_include_dir='${prefix}/include/${libstdcxx_incdir}'
1454   fi
1455 else
1456   gxx_include_dir=${gxx_include_dir}
1457 fi
1458
1459 FLAGS_FOR_TARGET=
1460 case " $skipdirs " in
1461 *" target-newlib "*) ;;
1462 *)
1463  case " $target_configdirs " in
1464  *" newlib "*)
1465   case " $targargs " in
1466   *" --with-newlib "*)
1467    case "$target" in
1468    *-cygwin*)
1469      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' ;;
1470    esac
1471
1472    # If we're not building GCC, don't discard standard headers.
1473    if test -d ${topsrcdir}/gcc; then
1474      FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc'
1475
1476      if test "${build}" != "${host}"; then
1477        # On Canadian crosses, CC_FOR_TARGET will have already been set
1478        # by `configure', so we won't have an opportunity to add -Bgcc/
1479        # to it.  This is right: we don't want to search that directory
1480        # for binaries, but we want the header files in there, so add
1481        # them explicitly.
1482        FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -isystem $$r/gcc/include'
1483
1484        # Someone might think of using the pre-installed headers on
1485        # Canadian crosses, in case the installed compiler is not fully
1486        # compatible with the compiler being built.  In this case, it
1487        # would be better to flag an error than risking having
1488        # incompatible object files being constructed.  We can't
1489        # guarantee that an error will be flagged, but let's hope the
1490        # compiler will do it, when presented with incompatible header
1491        # files.
1492      fi
1493    fi
1494
1495    case "${target}-${is_cross_compiler}" in
1496    i[3456]86-*-linux*-no)
1497       # Here host == target, so we don't need to build gcc,
1498       # so we don't want to discard standard headers.
1499       FLAGS_FOR_TARGET=`echo " $FLAGS_FOR_TARGET " | sed -e 's/ -nostdinc / /'`
1500       ;;
1501    *)
1502       # If we're building newlib, use its generic headers last, but search
1503       # for any libc-related directories first (so make it the last -B
1504       # switch).
1505       FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/newlib/ -isystem $$r/$(TARGET_SUBDIR)/newlib/targ-include -isystem $$s/newlib/libc/include'
1506       ;;
1507    esac
1508    ;;
1509   esac
1510   ;;
1511  esac
1512  ;;
1513 esac
1514
1515 # On Canadian crosses, we'll be searching the right directories for
1516 # the previously-installed cross compiler, so don't bother to add
1517 # flags for directories within the install tree of the compiler
1518 # being built; programs in there won't even run.
1519 if test "${build}" = "${host}" && test -d ${topsrcdir}/gcc; then
1520   # Search for pre-installed headers if nothing else fits.
1521   FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include'
1522 fi
1523
1524 if test "x${use_gnu_ld}" = x && test "x${with_gnu_ld}" != xno &&
1525    echo " ${configdirs} " | grep " ld " > /dev/null &&
1526    test -d ${srcdir}/ld; then
1527   # Arrange for us to find uninstalled linker scripts.
1528   FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/ld'
1529 fi
1530
1531 if test "x${CC_FOR_TARGET+set}" = xset; then
1532   :
1533 elif test -d ${topsrcdir}/gcc; then
1534   CC_FOR_TARGET='$$r/gcc/xgcc -B$$r/gcc/'
1535 elif test "$host" = "$target"; then
1536   CC_FOR_TARGET='$(CC)'
1537 else
1538   CC_FOR_TARGET=`echo gcc | sed -e 's/x/x/' ${program_transform_name}`
1539 fi
1540 # On Canadian crosses, configure reads CC_FOR_TARGET from Makefile,
1541 # if Makefile exists.  Prevent $(FLAGS_FOR_TARGET) from being duplicated.
1542 case $CC_FOR_TARGET in
1543 *' $(FLAGS_FOR_TARGET)') ;;
1544 *) CC_FOR_TARGET=$CC_FOR_TARGET' $(FLAGS_FOR_TARGET)' ;;
1545 esac
1546
1547 if test "x${GCJ_FOR_TARGET+set}" = xset; then
1548   :
1549 elif test -d ${topsrcdir}/gcc; then
1550   GCJ_FOR_TARGET='$$r/gcc/gcj -B$$r/gcc/'
1551 elif test "$host" = "$target"; then
1552   GCJ_FOR_TARGET='gcj'
1553 else
1554   GCJ_FOR_TARGET=`echo gcj | sed -e 's/x/x/' ${program_transform_name}`
1555 fi
1556 case $GCJ_FOR_TARGET in
1557 *' $(FLAGS_FOR_TARGET)') ;;
1558 *) GCJ_FOR_TARGET=$GCJ_FOR_TARGET' $(FLAGS_FOR_TARGET)' ;;
1559 esac
1560
1561 if test "x${CXX_FOR_TARGET+set}" = xset; then
1562   :
1563 elif test -d ${topsrcdir}/gcc; then
1564   # We add -shared-libgcc to CXX_FOR_TARGET whenever we use xgcc instead
1565   # of g++ for linking C++ or Java, because g++ has -shared-libgcc by
1566   # default whereas gcc does not.
1567   CXX_FOR_TARGET='$$r/gcc/`case $$dir in libstdc++-v3 | libjava) echo xgcc -shared-libgcc ;; *) echo g++ ;; esac` -B$$r/gcc/ -nostdinc++ '$libstdcxx_flags
1568 elif test "$host" = "$target"; then
1569   CXX_FOR_TARGET='$(CXX)'
1570 else
1571   CXX_FOR_TARGET=`echo c++ | sed -e 's/x/x/' ${program_transform_name}`
1572 fi
1573 case $CXX_FOR_TARGET in
1574 *' $(FLAGS_FOR_TARGET)') ;;
1575 *) CXX_FOR_TARGET=$CXX_FOR_TARGET' $(FLAGS_FOR_TARGET)' ;;
1576 esac
1577 qCXX_FOR_TARGET=`echo "$CXX_FOR_TARGET" | sed 's,[&%],\\\&,g'`
1578
1579 # We want to defer the evaluation of `cmd`s and shell variables in
1580 # CXX_FOR_TARGET when recursing in the top-level Makefile, such as for
1581 # bootstrap.  We'll enclose CXX_FOR_TARGET_FOR_RECURSIVE_MAKE in single
1582 # quotes, but we still have to duplicate `$'s so that shell variables
1583 # can be expanded by the nested make as shell variables, not as make
1584 # macros.
1585 qqCXX_FOR_TARGET=`echo "$qCXX_FOR_TARGET" | sed -e 's,[$][$],$$$$,g'`
1586
1587 sedtemp=sed.$$
1588 cat >$sedtemp <<EOF
1589 s:^TARGET_CONFIGDIRS[   ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:
1590 s%^TARGET_CONFIGARGS[   ]*=.*$%TARGET_CONFIGARGS = ${targargs}%
1591 s%^FLAGS_FOR_TARGET[    ]*=.*$%FLAGS_FOR_TARGET = ${FLAGS_FOR_TARGET}%
1592 s%^CC_FOR_TARGET[       ]*=.*$%CC_FOR_TARGET = ${CC_FOR_TARGET}%
1593 s%^GCJ_FOR_TARGET[      ]*=.*$%GCJ_FOR_TARGET = ${GCJ_FOR_TARGET}%
1594 s%^CXX_FOR_TARGET[      ]*=.*$%CXX_FOR_TARGET = ${qCXX_FOR_TARGET}%
1595 s%^CXX_FOR_TARGET_FOR_RECURSIVE_MAKE[   ]*=.*$%CXX_FOR_TARGET_FOR_RECURSIVE_MAKE = ${qqCXX_FOR_TARGET}%
1596 s%^TARGET_SUBDIR[       ]*=.*$%TARGET_SUBDIR = ${target_subdir}%
1597 s%^BUILD_SUBDIR[        ]*=.*$%BUILD_SUBDIR = ${build_subdir}%
1598 s%^BUILD_CONFIGARGS[    ]*=.*$%BUILD_CONFIGARGS = ${buildargs}%
1599 s%^gxx_include_dir[     ]*=.*$%gxx_include_dir=${gxx_include_dir}%
1600 EOF
1601 sed -f $sedtemp Makefile > Makefile.tem
1602 rm -f Makefile $sedtemp
1603 mv -f Makefile.tem Makefile
1604
1605 #
1606 # Local Variables:
1607 # fill-column: 131
1608 # End:
1609 #