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