]> git.ipfire.org Git - thirdparty/gcc.git/blame - configure.in
In include,
[thirdparty/gcc.git] / configure.in
CommitLineData
6599da04
JM
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
93e1dce9 17# Copyright (C) 1992-99, 2000 Free Software Foundation, Inc.
6599da04
JM
18#
19# This file is free software; you can redistribute it and/or modify it
20# under the terms of the GNU General Public License as published by
21# the Free Software Foundation; either version 2 of the License, or
22# (at your option) any later version.
23#
24# This program is distributed in the hope that it will be useful, but
25# WITHOUT ANY WARRANTY; without even the implied warranty of
26# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27# General Public License for more details.
28#
29# You should have received a copy of the GNU General Public License
30# along with this program; if not, write to the Free Software
31# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32
33##############################################################################
34
35### To add a new directory to the tree, first choose whether it is a target
36### or a host dependent tool. Then put it into the appropriate list
37### (library or tools, host or target), doing a dependency sort. For
38### example, gdb requires that byacc (or bison) be built first, so it is in
39### the ${host_tools} list after byacc and bison.
40
41
42# these libraries are used by various programs built for the host environment
43#
5d4a5ee6 44host_libs="intl mmalloc libiberty opcodes bfd readline gash db tcl tk tclX itcl tix libgui"
6599da04
JM
45
46if [ "${enable_gdbgui}" = "yes" ] ; then
47 host_libs="${host_libs} libgui"
48fi
49
17090313
BK
50# Set up configure/Makefile variables if libstdc++-v3 is to be built.
51if [ "${enable_libstdcxx_v3}" = "yes" ] ; then
52 libstdcxx_version="target-libstdc++-v3"
53else
54 libstdcxx_version="target-libio target-libstdc++"
55fi
56
6599da04
JM
57# these tools are built for the host environment
58# Note, the powerpc-eabi build depends on sim occurring before gdb in order to
59# know that we are building the simulator.
99d60508 60host_tools="texinfo byacc flex bison binutils ld gas gcc 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 emacs emacs19 uudecode hello tar gzip indent recode release sed utils guile perl apache inet gawk findutils snavigator libtool gettext zip"
5d4a5ee6 61
6599da04
JM
62
63# these libraries are built for the target environment, and are built after
64# the host libraries and the host tools (which may be a cross compiler)
65#
5d4a5ee6
JL
66target_libs="target-libiberty \
67 target-libgloss \
68 target-newlib \
17090313 69 ${libstdcxx_version} \
5d4a5ee6 70 target-librx \
5d4a5ee6
JL
71 target-libg++ \
72 target-libf2c \
73 target-libchill \
aab0d19d 74 target-libffi \
99d60508
TT
75 target-libjava \
76 target-zlib \
77 target-boehm-gc \
78 target-qthreads \
5d4a5ee6 79 target-libobjc"
6599da04
JM
80
81# these tools are built using the target libs, and are intended to run only
82# in the target environment
83#
84# note: any program that *uses* libraries that are in the "target_libs"
85# list belongs in this list. those programs are also very likely
86# candidates for the "native_only" list which follows
87#
88target_tools="target-examples target-groff target-gperf"
89
90################################################################################
91
92## These two lists are of directories that are to be removed from the
93## ${configdirs} list for either cross-compilations or for native-
94## compilations. For example, it doesn't make that much sense to
95## cross-compile Emacs, nor is it terribly useful to compile target-libiberty in
96## a native environment.
97
98# directories to be built in the native environment only
99#
100# This must be a single line because of the way it is searched by grep in
101# the code below.
5d4a5ee6 102native_only="autoconf automake libtool cvssrc emacs emacs19 fileutils find gawk gettext grep gzip hello indent ispell m4 rcs recode sed shellutils tar textutils gash uudecode wdiff gprof target-groff guile perl apache inet time ash bash bzip2 prms snavigator gnuserv target-gperf"
6599da04
JM
103
104# directories to be built in a cross environment only
105#
5d4a5ee6 106cross_only="target-libgloss target-newlib target-cygmon target-opcodes target-libstub"
6599da04
JM
107
108## All tools belong in one of the four categories, and are assigned above
109## We assign ${configdirs} this way to remove all embedded newlines. This
110## is important because configure will choke if they ever get through.
111## ${configdirs} is directories we build using the host tools.
112## ${target_configdirs} is directories we build using the target tools.
113#
114configdirs=`echo ${host_libs} ${host_tools}`
115target_configdirs=`echo ${target_libs} ${target_tools}`
116
117################################################################################
118
119srctrigger=move-if-change
120srcname="gnu development package"
121
122# This gets set non-empty for some net releases of packages.
123appdirs=""
124
125# per-host:
126
127# Work in distributions that contain no compiler tools, like Autoconf.
128if [ -d ${srcdir}/config ]; then
129case "${host}" in
e2de3a46
L
130 m68k-hp-hpux*)
131 host_makefile_frag="${host_makefile_frag} config/mh-hp300"
132 ;;
133 m68k-apollo-sysv*)
134 host_makefile_frag="${host_makefile_frag} config/mh-apollo68"
135 ;;
136 m68k-apollo-bsd*)
137 host_makefile_frag="${host_makefile_frag} config/mh-a68bsd"
138 ;;
139 m88k-dg-dgux*)
140 host_makefile_frag="${host_makefile_frag} config/mh-dgux"
141 ;;
142 m88k-harris-cxux*)
143 host_makefile_frag="${host_makefile_frag} config/mh-cxux"
144 ;;
145 m88k-motorola-sysv*)
146 host_makefile_frag="${host_makefile_frag} config/mh-delta88"
147 ;;
148 mips*-dec-ultrix*)
149 host_makefile_frag="${host_makefile_frag} config/mh-decstation"
150 ;;
151 mips*-nec-sysv4*)
152 host_makefile_frag="${host_makefile_frag} config/mh-necv4"
153 ;;
154 mips*-sgi-irix6*)
155 host_makefile_frag="${host_makefile_frag} config/mh-irix6"
156 ;;
157 mips*-sgi-irix5*)
158 host_makefile_frag="${host_makefile_frag} config/mh-irix5"
159 ;;
160 mips*-sgi-irix4*)
161 host_makefile_frag="${host_makefile_frag} config/mh-irix4"
162 ;;
163 mips*-sgi-irix3*)
164 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
165 ;;
166 mips*-*-sysv4*)
167 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
168 ;;
169 mips*-*-sysv*)
170 host_makefile_frag="${host_makefile_frag} config/mh-riscos"
171 ;;
0b77644a
LV
172 i370-ibm-opened*)
173 host_makefile_frag="${host_makefile_frag} config/mh-openedition"
174 ;;
5d4a5ee6
JL
175 i[3456]86-*-sysv5*)
176 host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
177 ;;
e2de3a46
L
178 i[3456]86-*-dgux*)
179 host_makefile_frag="${host_makefile_frag} config/mh-dgux386"
180 ;;
181 i[3456]86-ncr-sysv4.3*)
182 host_makefile_frag="${host_makefile_frag} config/mh-ncrsvr43"
183 ;;
184 i[3456]86-ncr-sysv4*)
185 host_makefile_frag="${host_makefile_frag} config/mh-ncr3000"
186 ;;
187 i[3456]86-*-sco3.2v5*)
188 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
189 ;;
190 i[3456]86-*-sco*)
191 host_makefile_frag="${host_makefile_frag} config/mh-sco"
192 ;;
73a6d2e7
RL
193 i[3456]86-*-udk*)
194 host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
195 ;;
e2de3a46
L
196 i[3456]86-*-isc*)
197 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
198 ;;
199 i[3456]86-*-solaris2*)
200 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
201 ;;
202 i[3456]86-*-aix*)
203 host_makefile_frag="${host_makefile_frag} config/mh-aix386"
204 ;;
e2de3a46 205 i[3456]86-*-msdosdjgpp*)
8dc91cbe 206 host_makefile_frag="${host_makefile_frag} config/mh-djgpp"
e2de3a46
L
207 ;;
208 *-cygwin32*)
82281fc2 209 host_makefile_frag="${host_makefile_frag} config/mh-cygwin"
e2de3a46 210 ;;
d39cd7a1
MK
211 *-mingw32*)
212 host_makefile_frag="${host_makefile_frag} config/mh-mingw32"
213 ;;
c9ffaa63
MK
214 *-interix*)
215 host_makefile_frag="${host_makefile_frag} config/mh-interix"
216 ;;
e2de3a46
L
217 *-windows*)
218 host_makefile_frag="${host_makefile_frag} config/mh-windows"
219 ;;
220 vax-*-ultrix2*)
221 host_makefile_frag="${host_makefile_frag} config/mh-vaxult2"
222 ;;
223 *-*-solaris2*)
224 host_makefile_frag="${host_makefile_frag} config/mh-solaris"
225 ;;
226 m68k-sun-sunos*)
227 host_makefile_frag="${host_makefile_frag} config/mh-sun3"
228 ;;
229 *-hp-hpux[78]*)
230 host_makefile_frag="${host_makefile_frag} config/mh-hpux8"
231 ;;
232 *-hp-hpux*)
233 host_makefile_frag="${host_makefile_frag} config/mh-hpux"
234 ;;
235 *-*-hiux*)
236 host_makefile_frag="${host_makefile_frag} config/mh-hpux"
237 ;;
238 rs6000-*-lynxos*)
239 host_makefile_frag="${host_makefile_frag} config/mh-lynxrs6k"
240 ;;
241 *-*-lynxos*)
242 host_makefile_frag="${host_makefile_frag} config/mh-lynxos"
243 ;;
244 *-*-sysv4*)
245 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
246 ;;
247 *-*-sysv*)
248 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
249 ;;
6599da04
JM
250esac
251fi
252
253# If we aren't going to be using gcc, see if we can extract a definition
254# of CC from the fragment.
5d4a5ee6 255if [ -z "${CC}" ] && [ "${build}" = "${host}" ]; then
6599da04
JM
256 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
257 found=
258 for dir in $PATH; do
259 test -z "$dir" && dir=.
260 if test -f $dir/gcc; then
261 found=yes
262 break
263 fi
264 done
265 IFS="$save_ifs"
5d4a5ee6 266 if [ -z "${found}" ] && [ -n "${host_makefile_frag}" ] && [ -f "${srcdir}/${host_makefile_frag}" ]; then
6599da04
JM
267 xx=`sed -n -e 's/^[ ]*CC[ ]*=[ ]*\(.*\)$/\1/p' < ${srcdir}/${host_makefile_frag}`
268 if [ -n "${xx}" ] ; then
269 CC=$xx
270 fi
271 fi
272fi
273
274# We default to --with-shared on platforms where -fpic is meaningless.
275# Well, we don't yet, but we will.
276if false && [ "${host}" = "${target}" ] && [ x${enable_shared} = x ]; then
277 case "${target}" in
b104e095
RH
278 alpha*-dec-osf*) enable_shared=yes ;;
279 alpha*-*-linux*) enable_shared=yes ;;
6599da04
JM
280 mips-sgi-irix5*) enable_shared=yes ;;
281 *) enable_shared=no ;;
282 esac
283fi
284
285case "${enable_shared}" in
286 yes) shared=yes ;;
287 no) shared=no ;;
288 "") shared=no ;;
289 *) shared=yes ;;
290esac
291
292if [ x${shared} = xyes ]; then
6599da04 293 case "${host}" in
4a6e3000
FS
294 alpha*-*-linux*)
295 host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic"
296 ;;
297 arm*-*-*)
298 host_makefile_frag="${host_makefile_frag} config/mh-armpic"
299 ;;
300 hppa*-*-*)
e2de3a46
L
301 host_makefile_frag="${host_makefile_frag} config/mh-papic"
302 ;;
5d4a5ee6
JL
303 i[3456]86-*-cygwin32*)
304 # We don't want -fPIC on cygwin32.
305 ;;
4a6e3000 306 i[3456]86-*-*)
e2de3a46
L
307 host_makefile_frag="${host_makefile_frag} config/mh-x86pic"
308 ;;
4a6e3000 309 sparc64-*-*)
e2de3a46
L
310 host_makefile_frag="${host_makefile_frag} config/mh-sparcpic"
311 ;;
4a6e3000
FS
312 powerpc*-*-aix*)
313 # We don't want -fPIC on AIX.
e2de3a46 314 ;;
4a6e3000
FS
315 powerpc*-*-*)
316 host_makefile_frag="${host_makefile_frag} config/mh-ppcpic"
e2de3a46 317 ;;
4a6e3000 318 *-*-*)
520ab477 319 if test -f ${srcdir}/config/mh-${host_cpu}pic; then
4bcdb76d
AO
320 host_makefile_frag="${host_makefile_frag} config/mh-${host_cpu}pic"
321 fi
e2de3a46 322 ;;
6599da04 323 esac
e2de3a46
L
324fi
325
326rm -f mh-frag
327if [ -n "${host_makefile_frag}" ] ; then
328 for f in ${host_makefile_frag}
329 do
330 cat ${srcdir}/$f >> mh-frag
331 done
332 host_makefile_frag=mh-frag
6599da04
JM
333fi
334
335# per-target:
336
337case "${target}" in
e2de3a46
L
338 v810*)
339 target_makefile_frag="${target_makefile_frag} config/mt-v810"
340 ;;
341 i[3456]86-*-netware*)
342 target_makefile_frag="${target_makefile_frag} config/mt-netware"
343 ;;
344 powerpc-*-netware*)
345 target_makefile_frag="${target_makefile_frag} config/mt-netware"
346 ;;
ad242caf 347 *-*-linux-gnu*)
e2de3a46
L
348 target_makefile_frag="${target_makefile_frag} config/mt-linux"
349 ;;
93e1dce9
GK
350 *-*-aix4.[3456789]* | *-*-aix[56789].*)
351 target_makefile_frag="${target_makefile_frag} config/mt-aix43"
352 ;;
3a685f6f
NC
353 mips*-*-pe | sh*-*-pe | *arm-wince-pe)
354 target_makefile_frag="${target_makefile_frag} config/mt-wince"
355 ;;
6599da04
JM
356esac
357
3f4ea1de
MM
358# If --enable-target-optspace always use -Os instead of -O2 to build
359# the target libraries, similarly if it is not specified, use -Os
360# on selected platforms.
3f4ea1de
MM
361case "${enable_target_optspace}:${target}" in
362 yes:*)
363 target_makefile_frag="${target_makefile_frag} config/mt-ospace"
364 ;;
3897b7b7 365 :m32r-* | :fr30-*)
3f4ea1de
MM
366 target_makefile_frag="${target_makefile_frag} config/mt-ospace"
367 ;;
368 no:* | :*)
369 ;;
370 *)
371 echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
372 ;;
373esac
374
6599da04
JM
375skipdirs=
376gasdir=gas
377use_gnu_ld=
378use_gnu_as=
379
380# some tools are so dependent upon X11 that if we're not building with X,
381# it's not even worth trying to configure, much less build, that tool.
382
383case ${with_x} in
384 yes | "") # the default value for this tree is that X11 is available
385 ;;
386 no)
5d4a5ee6 387 skipdirs="${skipdirs} tk libgui gash"
6599da04
JM
388 ;;
389 *)
390 echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
391 ;;
392esac
393
394# Some tools are only suitable for building in a "native" situation.
395# Those are added when we have a host==target configuration. For cross
396# toolchains, we add some directories that should only be useful in a
397# cross-compiler.
398
399is_cross_compiler=
400
401if [ x"${host}" = x"${target}" ] ; then
402 # when doing a native toolchain, don't build the targets
403 # that are in the 'cross only' list
404 skipdirs="${skipdirs} ${cross_only}"
405 is_cross_compiler=no
6599da04
JM
406else
407 # similarly, don't build the targets in the 'native only'
408 # list when building a cross compiler
409 skipdirs="${skipdirs} ${native_only}"
410 is_cross_compiler=yes
6599da04
JM
411fi
412
494933e4
JL
413# We always want to use the same name for this directory, so that dejagnu
414# can reliably find it.
415target_subdir=${target_alias}
f653f0ab 416
6599da04
JM
417if [ ! -d ${target_subdir} ] ; then
418 if mkdir ${target_subdir} ; then true
419 else
420 echo "'*** could not make ${PWD=`pwd`}/${target_subdir}" 1>&2
421 exit 1
422 fi
423fi
424
425copy_dirs=
426
427# Handle --with-headers=XXX. The contents of the named directory are
428# copied to $(tooldir)/sys-include.
429if [ x"${with_headers}" != x ]; then
430 if [ x${is_cross_compiler} = xno ]; then
431 echo 1>&2 '***' --with-headers is only supported when cross compiling
432 exit 1
433 fi
434 case "${exec_prefixoption}" in
435 "") x=${prefix} ;;
436 *) x=${exec_prefix} ;;
437 esac
438 copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include"
439fi
440
441# Handle --with-libs=XXX. Multiple directories are permitted. The
442# contents are copied to $(tooldir)/lib.
443if [ x"${with_libs}" != x ]; then
444 if [ x${is_cross_compiler} = xno ]; then
445 echo 1>&2 '***' --with-libs is only supported when cross compiling
446 exit 1
447 fi
448 # Copy the libraries in reverse order, so that files in the first named
449 # library override files in subsequent libraries.
450 case "${exec_prefixoption}" in
451 "") x=${prefix} ;;
452 *) x=${exec_prefix} ;;
453 esac
454 for l in ${with_libs}; do
455 copy_dirs="$l $x/${target_alias}/lib ${copy_dirs}"
456 done
457fi
458
459# If both --with-headers and --with-libs are specified, default to
460# --without-newlib.
461if [ x"${with_headers}" != x ] && [ x"${with_libs}" != x ]; then
462 if [ x"${with_newlib}" = x ]; then
463 with_newlib=no
464 fi
465fi
466
467# Recognize --with-newlib/--without-newlib.
468if [ x${with_newlib} = xno ]; then
469 skipdirs="${skipdirs} target-newlib"
470elif [ x${with_newlib} = xyes ]; then
471 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
472fi
473
474# Default to using --with-stabs for certain targets.
475if [ x${with_stabs} = x ]; then
476 case "${target}" in
477 mips*-*-irix6*)
478 ;;
c5ce8032 479 mips*-*-* | alpha*-*-osf*)
6599da04
JM
480 with_stabs=yes;
481 withoptions="${withoptions} --with-stabs"
482 ;;
483 esac
484fi
485
486# Handle ${copy_dirs}
487set fnord ${copy_dirs}
488shift
489while [ $# != 0 ]; do
490 if [ -f $2/COPIED ] && [ x"`cat $2/COPIED`" = x"$1" ]; then
491 :
492 else
493 echo Copying $1 to $2
494
495 # Use the install script to create the directory and all required
496 # parent directories.
497 if [ -d $2 ]; then
498 :
499 else
500 echo >config.temp
501 ${srcdir}/install-sh -c -m 644 config.temp $2/COPIED
502 fi
503
504 # Copy the directory, assuming we have tar.
505 # FIXME: Should we use B in the second tar? Not all systems support it.
506 (cd $1; tar -cf - .) | (cd $2; tar -xpf -)
507
508 # It is the responsibility of the user to correctly adjust all
509 # symlinks. If somebody can figure out how to handle them correctly
510 # here, feel free to add the code.
511
512 echo $1 > $2/COPIED
513 fi
514 shift; shift
515done
516
517# Configure extra directories which are host specific
518
519case "${host}" in
520 i[3456]86-*-go32*)
521 configdirs="$configdirs dosrel" ;;
d39cd7a1
MK
522 i[3456]86-*-mingw32*)
523 configdirs="$configdirs dosrel" ;;
6599da04
JM
524 *-cygwin32*)
525 configdirs="$configdirs dosrel" ;;
526esac
527
528# Remove more programs from consideration, based on the host or
529# target this usually means that a port of the program doesn't
530# exist yet.
531
532noconfigdirs=""
533
534case "${host}" in
535 i[3456]86-*-vsta)
5d4a5ee6 536 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"
6599da04
JM
537 ;;
538 i[3456]86-*-go32* | i[3456]86-*-msdosdjgpp*)
aab0d19d 539 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 gettext libffi"
6599da04 540 ;;
d39cd7a1 541 i[3456]86-*-mingw32*)
5d4a5ee6
JL
542 # 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"
543 noconfigdirs="expect dejagnu cvs autoconf automake send-pr gprof rcs guile perl texinfo apache inet libtool"
d39cd7a1 544 ;;
0da3b5a7
RH
545 i[3456]86-*-beos*)
546 noconfigdirs="$noconfigdirs tk itcl tix libgui gdb"
547 ;;
6599da04 548 *-*-cygwin32)
82281fc2 549 noconfigdirs="autoconf automake send-pr gprof rcs guile perl apache inet"
6599da04
JM
550 ;;
551 *-*-windows*)
552# This is only used to build WinGDB...
553# note that powerpc-eabi depends on sim configured before gdb.
554 configdirs="bfd libiberty opcodes readline sim gdb"
555 target_configdirs=
556 ;;
5d4a5ee6
JL
557 *-*-netbsd*)
558 noconfigdirs="rcs"
559 ;;
6599da04 560 ppc*-*-pe)
5d4a5ee6 561 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"
c135ea39 562 ;;
0da3b5a7
RH
563 powerpc-*-beos*)
564 noconfigdirs="$noconfigdirs tk itcl tix libgui gdb dejagnu readline"
565 ;;
6599da04
JM
566esac
567
568
569case "${target}" in
570 *-*-netware)
aab0d19d 571 noconfigdirs="$noconfigdirs target-libg++ ${libstdcxx_version} target-librx target-newlib target-libiberty target-libgloss target-libffi"
6599da04 572 ;;
3fbc0b70 573 *-*-rtems*)
aab0d19d 574 noconfigdirs="$noconfigdirs target-libgloss target-libffi"
3fbc0b70 575 ;;
6599da04 576 *-*-vxworks*)
aab0d19d 577 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libffi"
6599da04 578 ;;
b104e095 579 alpha*-dec-osf*)
6599da04
JM
580 # ld works, but does not support shared libraries. emacs doesn't
581 # work. newlib is not 64 bit ready. I'm not sure about fileutils.
582 # gas doesn't generate exception information.
583 noconfigdirs="$noconfigdirs gas ld emacs fileutils target-newlib target-libgloss"
584 ;;
585 alpha*-*-*vms*)
aab0d19d 586 noconfigdirs="$noconfigdirs gdb ld target-newlib target-libgloss target-libffi"
6599da04 587 ;;
b104e095 588 alpha*-*-linux*)
e2de3a46
L
589 # newlib is not 64 bit ready
590 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
591 # linux has rx in libc
592 skipdirs="$skipdirs target-librx"
593 ;;
6599da04
JM
594 alpha*-*-*)
595 # newlib is not 64 bit ready
596 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
597 ;;
598 arc-*-*)
aab0d19d 599 noconfigdirs="$noconfigdirs target-libgloss target-libffi"
6599da04 600 ;;
3a685f6f
NC
601 sh*-*-pe|mips*-*-pe|*arm-wince-pe)
602 noconfigdirs="$noconfigdirs target-libjava target-libffi target-zlib"
603 noconfigdirs="$noconfigdirs target-boehm-gc target-qthreads target-examples"
604 noconfigdirs="$noconfigdirs target-librx target-libiberty texinfo send-pr"
605 noconfigdirs="$noconfigdirs tcl tix tk itcl libgui sim"
606 noconfigdirs="$noconfigdirs expect dejagnu"
607 # the C++ libraries don't build on top of CE's C libraries
17090313 608 noconfigdirs="$noconfigdirs target-libg++ ${libstdcxx_version}"
3a685f6f
NC
609 skipdirs="$skipdirs target-newlib"
610 case "${host}" in
611 *-*-cygwin*) ;; # keep gdb and readline
17090313 612 *) noconfigdirs="$noconfigdirs gdb readline ${libstdcxx_version} target-libg++"
3a685f6f
NC
613 ;;
614 esac
615 ;;
6599da04
JM
616 arm-*-pe*)
617 noconfigdirs="$noconfigdirs target-libgloss"
618 ;;
619 arm-*-coff*)
620 noconfigdirs="$noconfigdirs target-libgloss"
621 ;;
bbd8fa7f
CM
622 arm-*-elf*)
623 noconfigdirs="$noconfigdirs target-libgloss"
624 if [ x${is_cross_compiler} != xno ] ; then
625 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
626 fi
627 ;;
628 arm-*-oabi*)
aab0d19d 629 noconfigdirs="$noconfigdirs target-libgloss target-libffi"
bbd8fa7f
CM
630 if [ x${is_cross_compiler} != xno ] ; then
631 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
632 fi
633 ;;
b9d6c60d 634 c4x-*-*)
aab0d19d 635 noconfigdirs="$noconfigdirs target-libg++ ${libstdcxx_version} target-librx target-libgloss target-libffi"
b9d6c60d 636 ;;
e98e406f 637 thumb-*-coff)
aab0d19d 638 noconfigdirs="$noconfigdirs target-libgloss target-libffi"
e98e406f 639 ;;
5d4a5ee6 640 arm-*-riscix*)
aab0d19d 641 noconfigdirs="$noconfigdirs ld target-libgloss target-libffi"
5d4a5ee6 642 ;;
6599da04 643 d10v-*-*)
aab0d19d 644 noconfigdirs="$noconfigdirs target-librx target-libg++ ${libstdcxx_version} target-libgloss target-libffi"
6599da04 645 ;;
09b5f8bf
NC
646 fr30-*-elf*)
647 if [ x${is_cross_compiler} != xno ] ; then
648 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
649 fi
650 ;;
6599da04
JM
651 h8300*-*-* | \
652 h8500-*-*)
aab0d19d 653 noconfigdirs="$noconfigdirs target-libg++ ${libstdcxx_version} target-librx target-libgloss target-libffi"
6599da04
JM
654 ;;
655 hppa*-*-*elf* | \
bae29210
JL
656 hppa*-*-linux-gnu* | \
657 hppa*-*-lites* | \
658 hppa*64*-*-*)
6599da04
JM
659 # Do configure ld/binutils/gas for this case.
660 ;;
661 hppa*-*-*)
662 # HP's C compiler doesn't handle Emacs correctly (but on BSD and Mach
663 # cc is gcc, and on any system a user should be able to link cc to
664 # whatever they want. FIXME, emacs emacs19).
665 case "${CC}" in
666 "" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
667 *) ;;
668 esac
aab0d19d 669 noconfigdirs="$noconfigdirs ld shellutils target-libffi"
6599da04
JM
670 ;;
671 i[3456]86-*-go32* | i[3456]-*-msdosdjgpp*)
672 # but don't build gdb
aab0d19d 673 noconfigdirs="$noconfigdirs gdb target-libg++ ${libstdcxx_version} target-librx target-libffi"
6599da04 674 ;;
f401679e
JW
675 *-*-linux*)
676 # linux has rx in libc
677 skipdirs="$skipdirs target-librx"
678 ;;
d39cd7a1
MK
679 i[3456]86-*-mingw32*)
680 target_configdirs="$target_configdirs target-mingw"
aab0d19d 681 noconfigdirs="$noconfigdirs expect target-libgloss target-libffi"
d39cd7a1 682
5d4a5ee6 683 # Can't build gdb for mingw32 if not native.
d39cd7a1
MK
684 case "${host}" in
685 i[3456]86-*-mingw32) ;; # keep gdb tcl tk expect etc.
5d4a5ee6 686 *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix db snavigator gnuserv"
d39cd7a1
MK
687 ;;
688 esac
689 ;;
5d4a5ee6 690 *-*-cygwin32*)
6599da04 691 target_configdirs="$target_configdirs target-winsup"
aab0d19d 692 noconfigdirs="$noconfigdirs target-gperf target-libgloss target-libffi"
6599da04
JM
693 # always build newlib.
694 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
695
696 # Can't build gdb for cygwin32 if not native.
697 case "${host}" in
5d4a5ee6
JL
698 *-*-cygwin32*) ;; # keep gdb tcl tk expect etc.
699 *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix libgui db snavigator gnuserv"
6599da04
JM
700 ;;
701 esac
702 ;;
703 i[3456]86-*-pe)
aab0d19d 704 noconfigdirs="$noconfigdirs target-libg++ ${libstdcxx_version} target-librx target-libgloss target-libffi"
6599da04
JM
705 ;;
706 i[3456]86-*-sco3.2v5*)
707 # The linker does not yet know about weak symbols in COFF,
708 # and is not configured to handle mixed ELF and COFF.
aab0d19d 709 noconfigdirs="$noconfigdirs ld target-libgloss target-libffi"
6599da04
JM
710 ;;
711 i[3456]86-*-sco*)
aab0d19d 712 noconfigdirs="$noconfigdirs gprof target-libgloss target-libffi"
6599da04
JM
713 ;;
714 i[3456]86-*-solaris2*)
715 # The linker does static linking correctly, but the Solaris C library
716 # has bugs such that some important functions won't work when statically
717 # linked. (See man pages for getpwuid, for example.)
718 noconfigdirs="$noconfigdirs ld target-libgloss"
719 ;;
720 i[3456]86-*-sysv4*)
721 # The SYSV4 C compiler doesn't handle Emacs correctly
722 case "${CC}" in
723 "" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
724 *) ;;
725 esac
726 # but that's okay since emacs doesn't work anyway
aab0d19d 727 noconfigdirs="$noconfigdirs emacs emacs19 target-libgloss target-libffi"
6599da04 728 ;;
0da3b5a7
RH
729 i[3456]86-*-beos*)
730 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
731 ;;
6599da04 732 mn10200-*-*)
aab0d19d 733 noconfigdirs="$noconfigdirs target-libffi"
5d4a5ee6
JL
734 if [ x${is_cross_compiler} != xno ] ; then
735 target_configdirs="${target_configdirs} target-libstub target-cygmon"
736 fi
6599da04
JM
737 ;;
738 mn10300-*-*)
aab0d19d 739 noconfigdirs="$noconfigdirs target-libffi"
5d4a5ee6
JL
740 if [ x${is_cross_compiler} != xno ] ; then
741 target_configdirs="${target_configdirs} target-libstub target-cygmon"
742 fi
6599da04
JM
743 ;;
744 powerpc-*-aix*)
745 # copied from rs6000-*-* entry
af13ebe9
NC
746 # The configure and build of ld are currently disabled because
747 # GNU ld is known to be broken for AIX 4.2 and 4.3 (at least)
748 # The symptom is that GDBtk 4.18 fails at startup with a segfault
749 # if linked by GNU ld, but not if linked by the native ld.
aab0d19d 750 noconfigdirs="$noconfigdirs gprof cvssrc target-libgloss target-libffi ld"
6599da04
JM
751 use_gnu_ld=no
752 ;;
753 powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
754 target_configdirs="$target_configdirs target-winsup"
aab0d19d 755 noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl tix db snavigator gnuserv target-libffi"
6599da04
JM
756 # always build newlib.
757 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
758 ;;
759 # This is temporary until we can link against shared libraries
760 powerpcle-*-solaris*)
aab0d19d 761 noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl tix db snavigator gnuserv target-libffi"
6599da04 762 ;;
0da3b5a7
RH
763 powerpc-*-beos*)
764 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
765 ;;
6599da04
JM
766 rs6000-*-lynxos*)
767 # The CVS server code doesn't work on the RS/6000
768 # Newlib makes problems for libg++ in crosses.
aab0d19d 769 noconfigdirs="$noconfigdirs target-newlib gprof cvssrc target-libffi"
6599da04
JM
770 ;;
771 rs6000-*-aix*)
af13ebe9
NC
772 # The configure and build of ld are currently disabled because
773 # GNU ld is known to be broken for AIX 4.2 and 4.3 (at least)
774 # The symptom is that GDBtk 4.18 fails at startup with a segfault
775 # if linked by GNU ld, but not if linked by the native ld.
aab0d19d 776 noconfigdirs="$noconfigdirs gprof target-libffi ld"
6599da04
JM
777 use_gnu_ld=no
778 ;;
779 rs6000-*-*)
aab0d19d 780 noconfigdirs="$noconfigdirs gprof target-libffi"
6599da04
JM
781 ;;
782 m68k-apollo-*)
aab0d19d 783 noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss target-libffi"
6599da04
JM
784 ;;
785 mips*-*-irix5*)
786 # The GNU linker does not support shared libraries.
787 # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
788 noconfigdirs="$noconfigdirs ld gprof emacs target-libgloss"
789 ;;
790 mips*-*-irix6*)
791 # The GNU assembler and linker do not support IRIX 6.
792 # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
793 noconfigdirs="$noconfigdirs ld gas gprof emacs target-libgloss"
794 ;;
795 mips*-dec-bsd*)
aab0d19d 796 noconfigdirs="$noconfigdirs gprof target-libgloss target-libffi"
6599da04
JM
797 ;;
798 mips*-*-bsd*)
aab0d19d 799 noconfigdirs="$noconfigdirs gprof target-libgloss target-libffi"
6599da04 800 ;;
5d4a5ee6 801 mipstx39-*-*)
aab0d19d 802 noconfigdirs="$noconfigdirs gprof target-libffi" # same as generic mips
5d4a5ee6
JL
803 target_configdirs="${target_configdirs} target-libstub target-cygmon"
804 ;;
6599da04 805 mips*-*-*)
aab0d19d 806 noconfigdirs="$noconfigdirs gprof target-libffi"
6599da04
JM
807 ;;
808 romp-*-*)
aab0d19d 809 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss target-libffi"
6599da04
JM
810 ;;
811 sh-*-*)
812 case "${host}" in
813 i[3456]86-*-vsta) ;; # don't add gprof back in
814 i[3456]86-*-go32*) ;; # don't add gprof back in
815 i[3456]86-*-msdosdjgpp*) ;; # don't add gprof back in
816 *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
817 esac
aab0d19d 818 noconfigdirs="$noconfigdirs target-libgloss target-libffi"
6599da04 819 ;;
5d4a5ee6
JL
820 sparc-*-elf*)
821 if [ x${is_cross_compiler} != xno ] ; then
822 target_configdirs="${target_configdirs} target-libstub target-cygmon"
823 fi
824 ;;
825 sparc64-*-elf*)
826 if [ x${is_cross_compiler} != xno ] ; then
827 target_configdirs="${target_configdirs} target-libstub target-cygmon"
aab0d19d 828 noconfigdirs="target-libffi"
5d4a5ee6
JL
829 fi
830 ;;
831 sparclite-*-aout*)
832 if [ x${is_cross_compiler} != xno ] ; then
833 target_configdirs="${target_configdirs} target-libstub target-cygmon"
aab0d19d 834 noconfigdirs="target-libffi"
5d4a5ee6
JL
835 fi
836 ;;
6599da04
JM
837 sparc-*-sunos4*)
838 if [ x${is_cross_compiler} != xno ] ; then
839 noconfigdirs="$noconfigdirs gdb gdbtest target-newlib target-libgloss"
840 else
841 use_gnu_ld=no
842 fi
843 ;;
844 v810-*-*)
aab0d19d 845 noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld ${libstdcxx_version} target-libg++ opcodes target-libgloss target-libffi"
6599da04 846 ;;
5d4a5ee6 847 v850-*-*)
aab0d19d 848 noconfigdirs="$noconfigdirs target-libgloss target-libffi"
5d4a5ee6 849 ;;
6599da04 850 vax-*-vms)
aab0d19d 851 noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss target-libffi"
6599da04
JM
852 ;;
853 vax-*-*)
aab0d19d 854 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libffi"
6599da04
JM
855 ;;
856 *-*-lynxos*)
857 # Newlib makes problems for libg++ in crosses.
aab0d19d 858 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libffi"
6599da04
JM
859 ;;
860 *-*-macos* | \
861 *-*-mpw*)
862 # Macs want a resource compiler.
863 configdirs="$configdirs grez"
aab0d19d 864 noconfigdirs="target-libffi"
6599da04
JM
865 ;;
866esac
867
6599da04
JM
868# If we aren't building newlib, then don't build libgloss, since libgloss
869# depends upon some newlib header files.
870case "${noconfigdirs}" in
871 *target-libgloss*) ;;
872 *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;;
873esac
874
6599da04
JM
875# Make sure we don't let GNU ld be added if we didn't want it.
876if [ x$with_gnu_ld = xno ]; then
877 use_gnu_ld=no
878 noconfigdirs="$noconfigdirs ld"
879fi
880
881# Make sure we don't let GNU as be added if we didn't want it.
882if [ x$with_gnu_as = xno ]; then
883 use_gnu_as=no
884 noconfigdirs="$noconfigdirs gas"
885fi
886
887# Remove the entries in $skipdirs and $noconfigdirs from $configdirs and
888# $target_configdirs.
889# If we have the source for $noconfigdirs entries, add them to $notsupp.
890
891notsupp=""
892for dir in . $skipdirs $noconfigdirs ; do
893 dirname=`echo $dir | sed -e s/target-//g`
894 if [ $dir != . ] && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
895 configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
896 if [ -r $srcdir/$dirname/configure ] \
897 || [ -r $srcdir/$dirname/configure.in ]; then
898 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
899 true
900 else
901 notsupp="$notsupp $dir"
902 fi
903 fi
904 fi
905 if [ $dir != . ] && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
906 target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
907 if [ -r $srcdir/$dirname/configure ] \
908 || [ -r $srcdir/$dirname/configure.in ]; then
909 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
910 true
911 else
912 notsupp="$notsupp $dir"
913 fi
914 fi
915 fi
916done
917
918# Sometimes the tools are distributed with libiberty but with no other
919# libraries. In that case, we don't want to build target-libiberty.
920if [ -n "${target_configdirs}" ]; then
921 others=
922 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
923 if [ "$i" != "libiberty" ]; then
924 if [ -r $srcdir/$i/configure ] || [ -r $srcdir/$i/configure.in ]; then
925 others=yes;
926 break;
927 fi
928 fi
929 done
930 if [ -z "${others}" ]; then
931 target_configdirs=
932 fi
933fi
934
935# Deconfigure all subdirectories, in case we are changing the
936# configuration from one where a subdirectory is supported to one where it
937# is not.
5d4a5ee6 938if [ -z "${norecursion}" ] && [ -n "${configdirs}" ]; then
6599da04
JM
939 for i in `echo ${configdirs} | sed -e s/target-//g` ; do
940 rm -f $i/Makefile
941 done
942fi
5d4a5ee6 943if [ -z "${norecursion}" ] && [ -n "${target_configdirs}" ]; then
6599da04
JM
944 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
945 rm -f ${target_subdir}/$i/Makefile
946 done
947fi
948
949# Produce a warning message for the subdirs we can't configure.
950# This isn't especially interesting in the Cygnus tree, but in the individual
951# FSF releases, it's important to let people know when their machine isn't
952# supported by the one or two programs in a package.
953
954if [ -n "${notsupp}" ] && [ -z "${norecursion}" ]; then
955 # If $appdirs is non-empty, at least one of those directories must still
956 # be configured, or we error out. (E.g., if the gas release supports a
957 # specified target in some subdirs but not the gas subdir, we shouldn't
958 # pretend that all is well.)
959 if [ -n "$appdirs" ]; then
960 for dir in $appdirs ; do
961 if [ -r $dir/Makefile.in ]; then
962 if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
963 appdirs=""
964 break
965 fi
966 if echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
967 appdirs=""
968 break
969 fi
970 fi
971 done
972 if [ -n "$appdirs" ]; then
973 echo "*** This configuration is not supported by this package." 1>&2
974 exit 1
975 fi
976 fi
977 # Okay, some application will build, or we don't care to check. Still
978 # notify of subdirs not getting built.
979 echo "*** This configuration is not supported in the following subdirectories:" 1>&2
980 echo " ${notsupp}" 1>&2
981 echo " (Any other directories should still work fine.)" 1>&2
982fi
983
984# Set with_gnu_as and with_gnu_ld as appropriate.
985#
986# This is done by determining whether or not the appropriate directory
987# is available, and by checking whether or not specific configurations
988# have requested that this magic not happen.
989#
990# The command line options always override the explicit settings in
991# configure.in, and the settings in configure.in override this magic.
992#
993# If the default for a toolchain is to use GNU as and ld, and you don't
994# want to do that, then you should use the --without-gnu-as and
995# --without-gnu-ld options for the configure script.
996
997if [ x${use_gnu_as} = x ] ; then
998 if [ x${with_gnu_as} != xno ] && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
999 with_gnu_as=yes
1000 withoptions="$withoptions --with-gnu-as"
1001 fi
1002fi
1003
1004if [ x${use_gnu_ld} = x ] ; then
1005 if [ x${with_gnu_ld} != xno ] && echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
1006 with_gnu_ld=yes
1007 withoptions="$withoptions --with-gnu-ld"
1008 fi
1009fi
1010
1011# If using newlib, add --with-newlib to the withoptions so that gcc/configure
1012# can detect this case.
1013
1014if [ x${with_newlib} != xno ] && echo " ${target_configdirs} " | grep " target-newlib " > /dev/null 2>&1 && [ -d ${srcdir}/newlib ] ; then
1015 with_newlib=yes
1016 withoptions="$withoptions --with-newlib"
1017fi
1018
1019if [ x${shared} = xyes ]; then
1020 case "${target}" in
e2de3a46
L
1021 hppa*)
1022 target_makefile_frag="${target_makefile_frag} config/mt-papic"
1023 ;;
1024 i[3456]86-*)
1025 target_makefile_frag="${target_makefile_frag} config/mt-x86pic"
1026 ;;
758c7bd4
DE
1027 powerpc*-*-aix*)
1028 # We don't want -fPIC on AIX.
1029 ;;
e2de3a46
L
1030 powerpc*-*)
1031 target_makefile_frag="${target_makefile_frag} config/mt-ppcpic"
1032 ;;
b104e095 1033 alpha*-*-linux*)
e2de3a46
L
1034 target_makefile_frag="${target_makefile_frag} config/mt-elfalphapic"
1035 ;;
1036 *)
520ab477 1037 if test -f ${srcdir}/config/mt-${target_cpu}pic; then
4bcdb76d
AO
1038 target_makefile_frag="${target_makefile_frag} config/mt-${target_cpu}pic"
1039 fi
e2de3a46 1040 ;;
6599da04
JM
1041 esac
1042fi
1043
e2de3a46
L
1044rm -f mt-frag
1045if [ -n "${target_makefile_frag}" ] ; then
1046 for f in ${target_makefile_frag}
1047 do
1048 cat ${srcdir}/$f >> mt-frag
1049 done
1050 target_makefile_frag=mt-frag
1051fi
1052
6599da04
JM
1053# post-target:
1054
1055# Make sure that the compiler is able to generate an executable. If it
1056# can't, we are probably in trouble. We don't care whether we can run the
1057# executable--we might be using a cross compiler--we only care whether it
1058# can be created. At this point the main configure script has set CC.
1059echo "int main () { return 0; }" > conftest.c
1060${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
5d4a5ee6 1061if [ $? = 0 ] && [ -s conftest -o -s conftest.exe ]; then
6599da04
JM
1062 :
1063else
1064 echo 1>&2 "*** The command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed."
1065 echo 1>&2 "*** You must set the environment variable CC to a working compiler."
1066 rm -f conftest*
1067 exit 1
1068fi
1069rm -f conftest*
1070
1071# The Solaris /usr/ucb/cc compiler does not appear to work.
1072case "${host}" in
1073 sparc-sun-solaris2*)
1074 CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
1075 if [ "`/usr/bin/which $CCBASE`" = "/usr/ucb/cc" ] ; then
1076 could_use=
1077 [ -d /opt/SUNWspro/bin ] && could_use="/opt/SUNWspro/bin"
1078 if [ -d /opt/cygnus/bin ] ; then
1079 if [ "$could_use" = "" ] ; then
1080 could_use="/opt/cygnus/bin"
1081 else
1082 could_use="$could_use or /opt/cygnus/bin"
1083 fi
1084 fi
1085 if [ "$could_use" = "" ] ; then
1086 echo "Warning: compilation may fail because you're using"
1087 echo "/usr/ucb/cc. You should change your PATH or CC "
1088 echo "variable and rerun configure."
1089 else
1090 echo "Warning: compilation may fail because you're using"
1091 echo "/usr/ucb/cc, when you should use the C compiler from"
1092 echo "$could_use. You should change your"
1093 echo "PATH or CC variable and rerun configure."
1094 fi
1095 fi
1096 ;;
1097esac
1098
1099# If --enable-shared was set, we must set LD_LIBRARY_PATH so that the
1100# binutils tools will find libbfd.so.
1101if [ "${shared}" = "yes" ]; then
1102 sed -e 's/^SET_LIB_PATH[ ]*=.*$/SET_LIB_PATH = $(REALLY_SET_LIB_PATH)/' \
1103 Makefile > Makefile.tem
1104 rm -f Makefile
1105 mv -f Makefile.tem Makefile
1106
1107 case "${host}" in
1108 *-*-hpux*)
5d4a5ee6 1109 sed -e 's/^RPATH_ENVVAR[ ]*=.*$/RPATH_ENVVAR = SHLIB_PATH/' \
6599da04
JM
1110 Makefile > Makefile.tem
1111 rm -f Makefile
1112 mv -f Makefile.tem Makefile
1113 ;;
1114 esac
1115fi
1116
6599da04
JM
1117# Record target_configdirs and the configure arguments in Makefile.
1118target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
1119targargs=`echo "${arguments}" | \
5d4a5ee6 1120 sed -e 's/--no[^ ]*//' \
6599da04
JM
1121 -e 's/--cache[a-z-]*=[^ ]*//' \
1122 -e 's/--ho[a-z-]*=[^ ]*//' \
1123 -e 's/--bu[a-z-]*=[^ ]*//' \
1124 -e 's/--ta[a-z-]*=[^ ]*//'`
1125
1126# Passing a --with-cross-host argument lets the target libraries know
1127# whether they are being built with a cross-compiler or being built
1128# native. However, it would be better to use other mechanisms to make the
1129# sorts of decisions they want to make on this basis. Please consider
1130# this option to be deprecated. FIXME.
1131if [ x${is_cross_compiler} = xyes ]; then
1132 targargs="--with-cross-host=${host_alias} ${targargs}"
1133fi
1134
1135# Default to --enable-multilib.
1136if [ x${enable_multilib} = x ]; then
1137 targargs="--enable-multilib ${targargs}"
1138fi
1139
5d4a5ee6
JL
1140# Pass --with-newlib if appropriate. Note that target_configdirs has
1141# changed from the earlier setting of with_newlib.
1142if [ x${with_newlib} != xno ] && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && [ -d ${srcdir}/newlib ] ; then
1143 targargs="--with-newlib ${targargs}"
1144fi
1145
88101ab9
L
1146# provide a proper gxx_include_dir.
1147# Note, if you change the default, make sure to fix both here and in
1148# the gcc, libio, libstdc++ and libg++ subdirectories.
1149# Check whether --with-gxx-include-dir or --without-gxx-include-dir was given.
1150gxx_include_dir=
1151if test -n "${with_gxx_include_dir}"; then
1152 case "${with_gxx_include_dir}" in
1153 yes )
1154 echo "configure.in: error: bad value ${withval} given for g++ include directory" 1>&2
1155 exit 1
1156 ;;
1157 no )
1158 ;;
1159 * )
1160 gxx_include_dir=${with_gxx_include_dir}
1161 ;;
1162 esac
1163fi
1164if test x${gxx_include_dir} = x; then
1165 if test x${enable_version_specific_runtime_libs} = xyes; then
1166 gxx_include_dir='${libsubdir}/include/g++'
1167 else
1168 . ${topsrcdir}/config.if
1169 gxx_include_dir='${prefix}/include/g++'-${libstdcxx_interface}
1170 fi
1171else
1172 gxx_include_dir=${gxx_include_dir}
1173fi
1174
6599da04
JM
1175targargs="--host=${target_alias} --build=${build_alias} ${targargs}"
1176sed -e "s:^TARGET_CONFIGDIRS[ ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:" \
1177 -e "s%^CONFIG_ARGUMENTS[ ]*=.*$%CONFIG_ARGUMENTS = ${targargs}%" \
1178 -e "s%^TARGET_SUBDIR[ ]*=.*$%TARGET_SUBDIR = ${target_subdir}%" \
88101ab9 1179 -e "s%^gxx_include_dir[ ]*=.*$%gxx_include_dir=${gxx_include_dir}%" \
6599da04
JM
1180 Makefile > Makefile.tem
1181rm -f Makefile
1182mv -f Makefile.tem Makefile
1183
1184#
1185# Local Variables:
1186# fill-column: 131
1187# End:
1188#