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