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