OSDN Git Service

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