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