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