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