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