]> git.ipfire.org Git - thirdparty/gcc.git/blame - config-ml.in
LoongArch: Guard REGNO with REG_P in loongarch_expand_conditional_move [PR115169]
[thirdparty/gcc.git] / config-ml.in
CommitLineData
6599da04
JM
1# Configure fragment invoked in the post-target section for subdirs
2# wanting multilib support.
3#
d683ec81 4# Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
a10ec8bc 5# 2005, 2006, 2007, 2008, 2010, 2011, 2014 Free Software Foundation, Inc.
74bed51b
ADL
6#
7# This file is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
0063a823
KC
19# Foundation, Inc., 51 Franklin Street, Fifth Floor,
20# Boston, MA 02110-1301, USA.
74bed51b
ADL
21#
22# As a special exception to the GNU General Public License, if you
23# distribute this file as part of a program that contains a
24# configuration script generated by Autoconf, you may include it under
25# the same distribution terms that you use for the rest of that program.
26#
27# Please report bugs to <gcc-bugs@gnu.org>
28# and send patches to <gcc-patches@gnu.org>.
29
6599da04
JM
30# It is advisable to support a few --enable/--disable options to let the
31# user select which libraries s/he really wants.
32#
33# Subdirectories wishing to use multilib should put the following lines
6b1786aa 34# in the "post-target" section of configure.ac.
6599da04
JM
35#
36# if [ "${srcdir}" = "." ] ; then
37# if [ "${with_target_subdir}" != "." ] ; then
38# . ${with_multisrctop}../../config-ml.in
39# else
40# . ${with_multisrctop}../config-ml.in
41# fi
42# else
43# . ${srcdir}/../config-ml.in
44# fi
45#
6599da04
JM
46#
47# Things are complicated because 6 separate cases must be handled:
48# 2 (native, cross) x 3 (absolute-path, relative-not-dot, dot) = 6.
49#
50# srcdir=. is special. It must handle make programs that don't handle VPATH.
51# To implement this, a symlink tree is built for each library and for each
52# multilib subdir.
53#
54# The build tree is layed out as
55#
56# ./
6599da04
JM
57# newlib
58# m68020/
6599da04
JM
59# newlib
60# m68881/
6599da04
JM
61# newlib
62#
63# The nice feature about this arrangement is that inter-library references
64# in the build tree work without having to care where you are. Note that
65# inter-library references also work in the source tree because symlink trees
66# are built when srcdir=.
67#
68# Unfortunately, trying to access the libraries in the build tree requires
69# the user to manually choose which library to use as GCC won't be able to
70# find the right one. This is viewed as the lesser of two evils.
71#
72# Configure variables:
73# ${with_target_subdir} = "." for native, or ${target_alias} for cross.
74# Set by top level Makefile.
75# ${with_multisrctop} = how many levels of multilibs there are in the source
76# tree. It exists to handle the case of configuring in the source tree:
77# ${srcdir} is not constant.
78# ${with_multisubdir} = name of multilib subdirectory (eg: m68020/m68881).
79#
80# Makefile variables:
81# MULTISRCTOP = number of multilib levels in source tree (+1 if cross)
82# (FIXME: note that this is different than ${with_multisrctop}. Check out.).
83# MULTIBUILDTOP = number of multilib levels in build tree
84# MULTIDIRS = list of multilib subdirs (eg: m68000 m68020 ...)
85# (only defined in each library's main Makefile).
86# MULTISUBDIR = installed subdirectory name with leading '/' (eg: /m68000)
87# (only defined in each multilib subdir).
88
89# FIXME: Multilib is currently disabled by default for everything other than
90# newlib. It is up to each target to turn on multilib support for the other
91# libraries as desired.
92
6599da04 93# Autoconf incoming variables:
d207ebef 94# srcdir, host, ac_configure_args
6599da04 95#
d207ebef 96# We *could* figure srcdir and host out, but we'd have to do work that
6599da04
JM
97# our caller has already done to figure them out and requiring these two
98# seems reasonable.
d207ebef
JM
99# Note that `host' in this case is GCC's `target'. Target libraries are
100# configured for a particular host.
6599da04 101
5fd3853a
NN
102Makefile=${ac_file-Makefile}
103ml_config_shell=${CONFIG_SHELL-/bin/sh}
5fd3853a 104ml_realsrcdir=${srcdir}
6599da04
JM
105
106# Scan all the arguments and set all the ones we need.
107
a10ec8bc
TS
108scan_arguments ()
109{
110 ml_verbose=--verbose
111 for option
112 do
113 # Strip single quotes surrounding individual options, that is, remove one
114 # level of shell quoting for these.
115 case $option in
116 \'*\') eval option=$option ;;
117 esac
118
119 case $option in
120 --*) ;;
121 -*) option=-$option ;;
122 esac
123
124 case $option in
125 --*=*)
6599da04
JM
126 optarg=`echo $option | sed -e 's/^[^=]*=//'`
127 ;;
a10ec8bc 128 esac
6599da04 129
a10ec8bc
TS
130 case $option in
131 --disable-*)
6599da04
JM
132 enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
133 eval $enableopt=no
134 ;;
a10ec8bc 135 --enable-*)
6599da04
JM
136 case "$option" in
137 *=*) ;;
138 *) optarg=yes ;;
139 esac
140 enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
61ab1651
RAE
141 # enable_shared and enable_static are handled by configure.
142 # Don't undo its work.
143 case $enableopt in
144 enable_shared | enable_static) ;;
a10ec8bc 145 *) eval $enableopt='$optarg' ;;
61ab1651 146 esac
6599da04 147 ;;
a10ec8bc 148 --norecursion | --no-recursion)
6599da04
JM
149 ml_norecursion=yes
150 ;;
a10ec8bc 151 --silent | --sil* | --quiet | --q*)
6755ff73
ILT
152 ml_verbose=--silent
153 ;;
a10ec8bc 154 --verbose | --v | --verb*)
6599da04
JM
155 ml_verbose=--verbose
156 ;;
a10ec8bc 157 --with-*)
6599da04
JM
158 case "$option" in
159 *=*) ;;
160 *) optarg=yes ;;
161 esac
162 withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
a10ec8bc 163 eval $withopt='$optarg'
6599da04 164 ;;
a10ec8bc 165 --without-*)
6599da04
JM
166 withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
167 eval $withopt=no
168 ;;
a10ec8bc
TS
169 esac
170 done
171}
172# Use eval to properly handle configure arguments such as
173# --enable-foo='--enable-a=1 --enable-b=2 --enable-c=3'.
174eval scan_arguments "${ac_configure_args}"
175unset scan_arguments
6599da04
JM
176
177# Only do this if --enable-multilib.
178if [ "${enable_multilib}" = yes ]; then
179
180# Compute whether this is the library's top level directory
4d88a68a 181# (ie: not a multilib subdirectory, and not a subdirectory like newlib/src).
6599da04
JM
182# ${with_multisubdir} tells us we're in the right branch, but we could be
183# in a subdir of that.
184# ??? The previous version could void this test by separating the process into
6b1786aa
JL
185# two files: one that only the library's toplevel configure.ac ran (to
186# configure the multilib subdirs), and another that all configure.ac's ran to
6599da04
JM
187# update the Makefile. It seemed reasonable to collapse all multilib support
188# into one file, but it does leave us with having to perform this test.
189ml_toplevel_p=no
190if [ -z "${with_multisubdir}" ]; then
191 if [ "${srcdir}" = "." ]; then
192 # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
193 # ${with_target_subdir} = "." for native, otherwise target alias.
194 if [ "${with_target_subdir}" = "." ]; then
195 if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
196 ml_toplevel_p=yes
197 fi
198 else
199 if [ -f ${ml_realsrcdir}/../../config-ml.in ]; then
200 ml_toplevel_p=yes
201 fi
202 fi
203 else
204 # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
205 if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
206 ml_toplevel_p=yes
207 fi
208 fi
209fi
210
211# If this is the library's top level directory, set multidirs to the
212# multilib subdirs to support. This lives at the top because we need
213# `multidirs' set right away.
214
215if [ "${ml_toplevel_p}" = yes ]; then
216
217multidirs=
218for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
219 dir=`echo $i | sed -e 's/;.*$//'`
220 if [ "${dir}" = "." ]; then
221 true
222 else
223 if [ -z "${multidirs}" ]; then
224 multidirs="${dir}"
225 else
226 multidirs="${multidirs} ${dir}"
227 fi
228 fi
229done
230
d207ebef
JM
231# Target libraries are configured for the host they run on, so we check
232# $host here, not $target.
233
234case "${host}" in
8141abe8
NC
235arm-*-*)
236 if [ x"$enable_fpu" = xno ]
237 then
238 old_multidirs=${multidirs}
239 multidirs=""
240 for x in ${old_multidirs}; do
241 case "${x}" in
242 *fpu*) : ;;
243 *) multidirs="${multidirs} ${x}" ;;
244 esac
245 done
246 fi
247 if [ x"$enable_26bit" = xno ]
248 then
249 old_multidirs=${multidirs}
250 multidirs=""
251 for x in ${old_multidirs}; do
252 case "${x}" in
253 *26bit*) : ;;
254 *) multidirs="${multidirs} ${x}" ;;
255 esac
256 done
257 fi
258 if [ x"$enable_underscore" = xno ]
259 then
260 old_multidirs=${multidirs}
261 multidirs=""
262 for x in ${old_multidirs}; do
263 case "${x}" in
264 *under*) : ;;
265 *) multidirs="${multidirs} ${x}" ;;
266 esac
267 done
268 fi
269 if [ x"$enable_interwork" = xno ]
270 then
271 old_multidirs=${multidirs}
272 multidirs=""
273 for x in ${old_multidirs}; do
274 case "${x}" in
275 *interwork*) : ;;
276 *) multidirs="${multidirs} ${x}" ;;
277 esac
278 done
279 fi
280 if [ x$enable_biendian = xno ]
281 then
282 old_multidirs="${multidirs}"
283 multidirs=""
284 for x in ${old_multidirs}; do
285 case "$x" in
286 *le* ) : ;;
287 *be* ) : ;;
288 *) multidirs="${multidirs} ${x}" ;;
289 esac
290 done
291 fi
292 if [ x"$enable_nofmult" = xno ]
293 then
294 old_multidirs="${multidirs}"
295 multidirs=""
296 for x in ${old_multidirs}; do
297 case "$x" in
298 *nofmult* ) : ;;
299 *) multidirs="${multidirs} ${x}" ;;
300 esac
301 done
302 fi
303 ;;
6599da04
JM
304m68*-*-*)
305 if [ x$enable_softfloat = xno ]
306 then
307 old_multidirs="${multidirs}"
308 multidirs=""
309 for x in ${old_multidirs}; do
310 case "$x" in
311 *soft-float* ) : ;;
312 *) multidirs="${multidirs} ${x}" ;;
313 esac
314 done
315 fi
316 if [ x$enable_m68881 = xno ]
317 then
318 old_multidirs="${multidirs}"
319 multidirs=""
320 for x in ${old_multidirs}; do
321 case "$x" in
322 *m68881* ) : ;;
323 *) multidirs="${multidirs} ${x}" ;;
324 esac
325 done
326 fi
327 if [ x$enable_m68000 = xno ]
328 then
329 old_multidirs="${multidirs}"
330 multidirs=""
331 for x in ${old_multidirs}; do
332 case "$x" in
333 *m68000* ) : ;;
334 *) multidirs="${multidirs} ${x}" ;;
335 esac
336 done
337 fi
338 if [ x$enable_m68020 = xno ]
339 then
340 old_multidirs="${multidirs}"
341 multidirs=""
342 for x in ${old_multidirs}; do
343 case "$x" in
344 *m68020* ) : ;;
345 *) multidirs="${multidirs} ${x}" ;;
346 esac
347 done
348 fi
349 ;;
350mips*-*-*)
351 if [ x$enable_single_float = xno ]
352 then
353 old_multidirs="${multidirs}"
354 multidirs=""
355 for x in ${old_multidirs}; do
356 case "$x" in
357 *single* ) : ;;
358 *) multidirs="${multidirs} ${x}" ;;
359 esac
360 done
361 fi
362 if [ x$enable_biendian = xno ]
363 then
364 old_multidirs="${multidirs}"
365 multidirs=""
366 for x in ${old_multidirs}; do
367 case "$x" in
368 *el* ) : ;;
369 *eb* ) : ;;
370 *) multidirs="${multidirs} ${x}" ;;
371 esac
372 done
373 fi
374 if [ x$enable_softfloat = xno ]
375 then
376 old_multidirs="${multidirs}"
377 multidirs=""
378 for x in ${old_multidirs}; do
379 case "$x" in
380 *soft-float* ) : ;;
381 *) multidirs="${multidirs} ${x}" ;;
382 esac
383 done
384 fi
385 ;;
a9046e98
JL
386msp430-*-*)
387 if [ x$enable_no_exceptions = xno ]
388 then
389 old_multidirs="${multidirs}"
390 multidirs=""
391 for x in ${old_multidirs}; do
392 case "$x" in
393 *no-exceptions* ) : ;;
394 *) multidirs="${multidirs} ${x}" ;;
395 esac
396 done
397 fi
398 ;;
6599da04 399powerpc*-*-* | rs6000*-*-*)
fe2ee7c4
DE
400 if [ x$enable_aix64 = xno ]
401 then
402 old_multidirs="${multidirs}"
403 multidirs=""
404 for x in ${old_multidirs}; do
405 case "$x" in
406 *ppc64* ) : ;;
407 *) multidirs="${multidirs} ${x}" ;;
408 esac
409 done
410 fi
411 if [ x$enable_pthread = xno ]
412 then
413 old_multidirs="${multidirs}"
414 multidirs=""
415 for x in ${old_multidirs}; do
416 case "$x" in
417 *pthread* ) : ;;
418 *) multidirs="${multidirs} ${x}" ;;
419 esac
420 done
421 fi
6599da04
JM
422 if [ x$enable_softfloat = xno ]
423 then
424 old_multidirs="${multidirs}"
425 multidirs=""
426 for x in ${old_multidirs}; do
427 case "$x" in
428 *soft-float* ) : ;;
429 *) multidirs="${multidirs} ${x}" ;;
430 esac
431 done
432 fi
433 if [ x$enable_powercpu = xno ]
434 then
435 old_multidirs="${multidirs}"
436 multidirs=""
437 for x in ${old_multidirs}; do
438 case "$x" in
439 power | */power | */power/* ) : ;;
440 *) multidirs="${multidirs} ${x}" ;;
441 esac
442 done
443 fi
444 if [ x$enable_powerpccpu = xno ]
445 then
446 old_multidirs="${multidirs}"
447 multidirs=""
448 for x in ${old_multidirs}; do
449 case "$x" in
450 *powerpc* ) : ;;
451 *) multidirs="${multidirs} ${x}" ;;
452 esac
453 done
454 fi
455 if [ x$enable_powerpcos = xno ]
456 then
457 old_multidirs="${multidirs}"
458 multidirs=""
459 for x in ${old_multidirs}; do
460 case "$x" in
461 *mcall-linux* | *mcall-solaris* ) : ;;
462 *) multidirs="${multidirs} ${x}" ;;
463 esac
464 done
465 fi
466 if [ x$enable_biendian = xno ]
467 then
468 old_multidirs="${multidirs}"
469 multidirs=""
470 for x in ${old_multidirs}; do
471 case "$x" in
472 *mlittle* | *mbig* ) : ;;
473 *) multidirs="${multidirs} ${x}" ;;
474 esac
475 done
476 fi
477 if [ x$enable_sysv = xno ]
478 then
479 old_multidirs="${multidirs}"
480 multidirs=""
481 for x in ${old_multidirs}; do
482 case "$x" in
483 *mcall-sysv* ) : ;;
484 *) multidirs="${multidirs} ${x}" ;;
485 esac
486 done
487 fi
6599da04
JM
488 ;;
489esac
490
491# Remove extraneous blanks from multidirs.
492# Tests like `if [ -n "$multidirs" ]' require it.
493multidirs=`echo "$multidirs" | sed -e 's/^[ ][ ]*//' -e 's/[ ][ ]*$//' -e 's/[ ][ ]*/ /g'`
494
495# Add code to library's top level makefile to handle building the multilib
496# subdirs.
497
498cat > Multi.tem <<\EOF
499
8c90b13a 500PWD_COMMAND=$${PWDCMD-pwd}
1e6347d8 501
6599da04 502multi-do:
8a713174 503 @if [ -z "$(MULTIDIRS)" ]; then \
6599da04
JM
504 true; \
505 else \
8c90b13a
L
506 rootpre=`${PWD_COMMAND}`/; export rootpre; \
507 srcrootpre=`cd $(srcdir); ${PWD_COMMAND}`/; export srcrootpre; \
d683ec81 508 lib=`echo "$${rootpre}" | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
6599da04
JM
509 compiler="$(CC)"; \
510 for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
511 dir=`echo $$i | sed -e 's/;.*$$//'`; \
512 if [ "$${dir}" = "." ]; then \
513 true; \
514 else \
515 if [ -d ../$${dir}/$${lib} ]; then \
516 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
70d30dd6
YS
517 libsuffix_=`$${compiler} $${flags} --print-multi-os-directory`; \
518 if (cd ../$${dir}/$${lib}; $(MAKE) $(subst \
519 -B$(build_tooldir)/lib/, \
520 -B$(build_tooldir)/lib/$${libsuffix_}/ \
521 -B$(build_tooldir)/lib/, \
522 $(FLAGS_TO_PASS)) \
6599da04 523 CFLAGS="$(CFLAGS) $${flags}" \
12973d7a 524 CCASFLAGS="$(CCASFLAGS) $${flags}" \
68c70f15 525 FCFLAGS="$(FCFLAGS) $${flags}" \
78dd5e36
AJ
526 FFLAGS="$(FFLAGS) $${flags}" \
527 ADAFLAGS="$(ADAFLAGS) $${flags}" \
d207ebef
JM
528 prefix="$(prefix)" \
529 exec_prefix="$(exec_prefix)" \
ce59187e 530 GOCFLAGS="$(GOCFLAGS) $${flags}" \
b4c522fa 531 GDCFLAGS="$(GDCFLAGS) $${flags}" \
6599da04
JM
532 CXXFLAGS="$(CXXFLAGS) $${flags}" \
533 LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
534 LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
0d3e11a5 535 LDFLAGS="$(LDFLAGS) $${flags}" \
05dcec66 536 MULTIFLAGS="$${flags}" \
fe2fe497 537 DESTDIR="$(DESTDIR)" \
aa1a100b
EB
538 INSTALL="$(INSTALL)" \
539 INSTALL_DATA="$(INSTALL_DATA)" \
540 INSTALL_PROGRAM="$(INSTALL_PROGRAM)" \
541 INSTALL_SCRIPT="$(INSTALL_SCRIPT)" \
6599da04
JM
542 $(DO)); then \
543 true; \
544 else \
545 exit 1; \
546 fi; \
547 else true; \
548 fi; \
549 fi; \
550 done; \
551 fi
552
6599da04 553multi-clean:
8a713174 554 @if [ -z "$(MULTIDIRS)" ]; then \
6599da04
JM
555 true; \
556 else \
8c90b13a 557 lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
d683ec81
PB
558 for dir in : $(MULTIDIRS); do \
559 test $$dir != : || continue; \
560EOF
561cat >>Multi.tem <<EOF
562 if [ -f ../\$\${dir}/\$\${lib}/${Makefile} ]; then \\
563EOF
564cat >>Multi.tem <<\EOF
6599da04
JM
565 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
566 then true; \
567 else exit 1; \
568 fi; \
569 else true; \
570 fi; \
571 done; \
572 fi
573EOF
574
575cat ${Makefile} Multi.tem > Makefile.tem
576rm -f ${Makefile} Multi.tem
577mv Makefile.tem ${Makefile}
578
579fi # ${ml_toplevel_p} = yes
580
581if [ "${ml_verbose}" = --verbose ]; then
60f1711a 582 echo "Adding multilib support to ${Makefile} in ${ml_realsrcdir}"
6599da04
JM
583 if [ "${ml_toplevel_p}" = yes ]; then
584 echo "multidirs=${multidirs}"
585 fi
586 echo "with_multisubdir=${with_multisubdir}"
587fi
588
589if [ "${srcdir}" = "." ]; then
590 if [ "${with_target_subdir}" != "." ]; then
591 ml_srcdotdot="../"
592 else
593 ml_srcdotdot=""
594 fi
595else
596 ml_srcdotdot=""
597fi
598
599if [ -z "${with_multisubdir}" ]; then
600 ml_subdir=
601 ml_builddotdot=
602 : # ml_srcdotdot= # already set
603else
604 ml_subdir="/${with_multisubdir}"
605 # The '[^/][^/]*' appears that way to work around a SunOS sed bug.
606 ml_builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`/
607 if [ "$srcdir" = "." ]; then
608 ml_srcdotdot=${ml_srcdotdot}${ml_builddotdot}
609 else
610 : # ml_srcdotdot= # already set
611 fi
612fi
613
614if [ "${ml_toplevel_p}" = yes ]; then
615 ml_do='$(MAKE)'
616 ml_clean='$(MAKE)'
617else
618 ml_do=true
619 ml_clean=true
620fi
621
622# TOP is used by newlib and should not be used elsewhere for this purpose.
623# MULTI{SRC,BUILD}TOP are the proper ones to use. MULTISRCTOP is empty
624# when srcdir != builddir. MULTIBUILDTOP is always some number of ../'s.
625# FIXME: newlib needs to be updated to use MULTI{SRC,BUILD}TOP so we can
626# delete TOP. Newlib may wish to continue to use TOP for its own purposes
627# of course.
628# MULTIDIRS is non-empty for the cpu top level Makefile (eg: newlib/Makefile)
629# and lists the subdirectories to recurse into.
630# MULTISUBDIR is non-empty in each cpu subdirectory's Makefile
631# (eg: newlib/h8300h/Makefile) and is the installed subdirectory name with
632# a leading '/'.
633# MULTIDO is used for targets like all, install, and check where
634# $(FLAGS_TO_PASS) augmented with the subdir's compiler option is needed.
635# MULTICLEAN is used for the *clean targets.
636#
637# ??? It is possible to merge MULTIDO and MULTICLEAN into one. They are
638# currently kept separate because we don't want the *clean targets to require
639# the existence of the compiler (which MULTIDO currently requires) and
640# therefore we'd have to record the directory options as well as names
641# (currently we just record the names and use --print-multi-lib to get the
642# options).
643
644sed -e "s:^TOP[ ]*=[ ]*\([./]*\)[ ]*$:TOP = ${ml_builddotdot}\1:" \
645 -e "s:^MULTISRCTOP[ ]*=.*$:MULTISRCTOP = ${ml_srcdotdot}:" \
646 -e "s:^MULTIBUILDTOP[ ]*=.*$:MULTIBUILDTOP = ${ml_builddotdot}:" \
647 -e "s:^MULTIDIRS[ ]*=.*$:MULTIDIRS = ${multidirs}:" \
648 -e "s:^MULTISUBDIR[ ]*=.*$:MULTISUBDIR = ${ml_subdir}:" \
649 -e "s:^MULTIDO[ ]*=.*$:MULTIDO = $ml_do:" \
650 -e "s:^MULTICLEAN[ ]*=.*$:MULTICLEAN = $ml_clean:" \
651 ${Makefile} > Makefile.tem
652rm -f ${Makefile}
653mv Makefile.tem ${Makefile}
654
655# If this is the library's top level, configure each multilib subdir.
656# This is done at the end because this is the loop that runs configure
657# in each multilib subdir and it seemed reasonable to finish updating the
658# Makefile before going on to configure the subdirs.
659
660if [ "${ml_toplevel_p}" = yes ]; then
661
662# We must freshly configure each subdirectory. This bit of code is
663# actually partially stolen from the main configure script. FIXME.
664
665if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
666
667 if [ "${ml_verbose}" = --verbose ]; then
668 echo "Running configure in multilib subdirs ${multidirs}"
1e6347d8 669 echo "pwd: `${PWDCMD-pwd}`"
6599da04
JM
670 fi
671
1e6347d8 672 ml_origdir=`${PWDCMD-pwd}`
d683ec81 673 ml_libdir=`echo "$ml_origdir" | sed -e 's,^.*/,,'`
6599da04
JM
674 # cd to top-level-build-dir/${with_target_subdir}
675 cd ..
676
677 for ml_dir in ${multidirs}; do
678
679 if [ "${ml_verbose}" = --verbose ]; then
680 echo "Running configure in multilib subdir ${ml_dir}"
1e6347d8 681 echo "pwd: `${PWDCMD-pwd}`"
6599da04
JM
682 fi
683
d207ebef
JM
684 if [ -d ${ml_dir} ]; then true; else
685 # ``mkdir -p ${ml_dir}'' See also mkinstalldirs.
686 pathcomp=""
687 for d in `echo ":${ml_dir}" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`; do
688 pathcomp="$pathcomp$d"
689 case "$pathcomp" in
690 -* ) pathcomp=./$pathcomp ;;
691 esac
692 if test ! -d "$pathcomp"; then
693 echo "mkdir $pathcomp" 1>&2
694 mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
695 fi
696 if test ! -d "$pathcomp"; then
697 exit $lasterr
698 fi
699 pathcomp="$pathcomp/"
700 done
701 fi
6599da04
JM
702 if [ -d ${ml_dir}/${ml_libdir} ]; then true; else mkdir ${ml_dir}/${ml_libdir}; fi
703
704 # Eg: if ${ml_dir} = m68000/m68881, dotdot = ../../
705 dotdot=../`echo ${ml_dir} | sed -e 's|[^/]||g' -e 's|/|../|g'`
706
707 case ${srcdir} in
708 ".")
d683ec81 709 echo "Building symlink tree in `${PWDCMD-pwd}`/${ml_dir}/${ml_libdir}"
6599da04
JM
710 if [ "${with_target_subdir}" != "." ]; then
711 ml_unsubdir="../"
712 else
713 ml_unsubdir=""
714 fi
715 (cd ${ml_dir}/${ml_libdir};
716 ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "")
60f1711a 717 if [ -f ${ml_dir}/${ml_libdir}/${Makefile} ]; then
88838149
MH
718 if [ x"${MAKE}" = x ]; then
719 (cd ${ml_dir}/${ml_libdir}; make distclean)
720 else
721 (cd ${ml_dir}/${ml_libdir}; ${MAKE} distclean)
722 fi
723 fi
6599da04
JM
724 ml_newsrcdir="."
725 ml_srcdiroption=
726 multisrctop=${dotdot}
727 ;;
728 *)
729 case "${srcdir}" in
fc26516b 730 /* | [A-Za-z]:[\\/]* ) # absolute path
6599da04
JM
731 ml_newsrcdir=${srcdir}
732 ;;
733 *) # otherwise relative
734 ml_newsrcdir=${dotdot}${srcdir}
735 ;;
736 esac
737 ml_srcdiroption="-srcdir=${ml_newsrcdir}"
738 multisrctop=
739 ;;
740 esac
741
742 case "${progname}" in
fc26516b 743 /* | [A-Za-z]:[\\/]* ) ml_recprog=${progname} ;;
6599da04
JM
744 *) ml_recprog=${dotdot}${progname} ;;
745 esac
746
747 # FIXME: POPDIR=${PWD=`pwd`} doesn't work here.
a89e49c7 748 ML_POPDIR=`${PWDCMD-pwd}`
6599da04
JM
749 cd ${ml_dir}/${ml_libdir}
750
751 if [ -f ${ml_newsrcdir}/configure ]; then
8b21cda6 752 ml_recprog="${ml_newsrcdir}/configure"
6599da04 753 fi
1250c760
RO
754
755 # find compiler flag corresponding to ${ml_dir}
74bed51b 756 for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
1250c760
RO
757 dir=`echo $i | sed -e 's/;.*$//'`
758 if [ "${dir}" = "${ml_dir}" ]; then
759 flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`
760 break
761 fi
762 done
b4c522fa 763 ml_config_env='CC="${CC_}$flags" CXX="${CXX_}$flags" F77="${F77_}$flags" GFORTRAN="${GFORTRAN_}$flags" GOC="${GOC_}$flags" GDC="${GDC_}$flags"'
e81b330a
AO
764
765 if [ "${with_target_subdir}" = "." ]; then
5b0e9d29
AO
766 CC_=$CC' '
767 CXX_=$CXX' '
78dd5e36 768 F77_=$F77' '
68c70f15 769 GFORTRAN_=$GFORTRAN' '
ce59187e 770 GOC_=$GOC' '
b4c522fa 771 GDC_=$GDC' '
e81b330a
AO
772 else
773 # Create a regular expression that matches any string as long
774 # as ML_POPDIR.
d683ec81 775 popdir_rx=`echo "${ML_POPDIR}" | sed 's,.,.,g'`
70d30dd6 776 multi_osdir=`${CC-gcc} ${flags} --print-multi-os-directory 2>/dev/null`
e81b330a
AO
777 CC_=
778 for arg in ${CC}; do
779 case $arg in
780 -[BIL]"${ML_POPDIR}"/*)
25698887 781 CC_="${CC_}"`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\1/p"`' ' ;;
e81b330a 782 "${ML_POPDIR}"/*)
808d8c41 783 CC_="${CC_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
70d30dd6
YS
784 -B*/lib/)
785 CC_="${CC_}${arg}${multi_osdir} ${arg} " ;;
e81b330a 786 *)
25698887 787 CC_="${CC_}${arg} " ;;
e81b330a
AO
788 esac
789 done
790
791 CXX_=
792 for arg in ${CXX}; do
793 case $arg in
794 -[BIL]"${ML_POPDIR}"/*)
25698887 795 CXX_="${CXX_}"`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
e81b330a 796 "${ML_POPDIR}"/*)
25698887 797 CXX_="${CXX_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
70d30dd6
YS
798 -B*/lib/)
799 CXX_="${CXX_}${arg}${multi_osdir} ${arg} " ;;
e81b330a 800 *)
25698887 801 CXX_="${CXX_}${arg} " ;;
e81b330a
AO
802 esac
803 done
804
78dd5e36
AJ
805 F77_=
806 for arg in ${F77}; do
807 case $arg in
808 -[BIL]"${ML_POPDIR}"/*)
809 F77_="${F77_}"`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
810 "${ML_POPDIR}"/*)
811 F77_="${F77_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
70d30dd6
YS
812 -B*/lib/)
813 F77_="${F77_}${arg}${multi_osdir} ${arg} " ;;
78dd5e36
AJ
814 *)
815 F77_="${F77_}${arg} " ;;
816 esac
817 done
818
68c70f15
DE
819 GFORTRAN_=
820 for arg in ${GFORTRAN}; do
821 case $arg in
822 -[BIL]"${ML_POPDIR}"/*)
823 GFORTRAN_="${GFORTRAN_}"`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
824 "${ML_POPDIR}"/*)
825 GFORTRAN_="${GFORTRAN_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
70d30dd6
YS
826 -B*/lib/)
827 GFORTRAN_="${GFORTRAN_}${arg}${multi_osdir} ${arg} " ;;
68c70f15
DE
828 *)
829 GFORTRAN_="${GFORTRAN_}${arg} " ;;
830 esac
831 done
832
ce59187e
ILT
833 GOC_=
834 for arg in ${GOC}; do
835 case $arg in
836 -[BIL]"${ML_POPDIR}"/*)
837 GOC_="${GOC_}"`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
838 "${ML_POPDIR}"/*)
839 GOC_="${GOC_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
70d30dd6
YS
840 -B*/lib/)
841 GOC_="${GOC_}${arg}${multi_osdir} ${arg} " ;;
ce59187e
ILT
842 *)
843 GOC_="${GOC_}${arg} " ;;
844 esac
845 done
846
b4c522fa
IB
847 GDC_=
848 for arg in ${GDC}; do
849 case $arg in
850 -[BIL]"${ML_POPDIR}"/*)
851 GDC_="${GDC_}"`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
852 "${ML_POPDIR}"/*)
853 GDC_="${GDC_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
70d30dd6
YS
854 -B*/lib/)
855 GDC_="${GDC_}${arg}${multi_osdir} ${arg} " ;;
b4c522fa
IB
856 *)
857 GDC_="${GDC_}${arg} " ;;
858 esac
859 done
860
5b0e9d29
AO
861 if test "x${LD_LIBRARY_PATH+set}" = xset; then
862 LD_LIBRARY_PATH_=
863 for arg in `echo "$LD_LIBRARY_PATH" | tr ':' ' '`; do
864 case "$arg" in
865 "${ML_POPDIR}"/*)
866 arg=`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`
867 ;;
868 esac
869 if test "x$LD_LIBRARY_PATH_" != x; then
870 LD_LIBRARY_PATH_=$LD_LIBRARY_PATH_:$arg
871 else
872 LD_LIBRARY_PATH_=$arg
873 fi
874 done
875 ml_config_env="$ml_config_env LD_LIBRARY_PATH=$LD_LIBRARY_PATH_"
876 fi
877
878 if test "x${SHLIB_PATH+set}" = xset; then
879 SHLIB_PATH_=
880 for arg in `echo "$SHLIB_PATH" | tr ':' ' '`; do
881 case "$arg" in
882 "${ML_POPDIR}"/*)
883 arg=`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`
884 ;;
885 esac
886 if test "x$SHLIB_PATH_" != x; then
887 SHLIB_PATH_=$SHLIB_PATH_:$arg
888 else
889 SHLIB_PATH_=$arg
890 fi
891 done
892 ml_config_env="$ml_config_env SHLIB_PATH=$SHLIB_PATH_"
893 fi
e81b330a 894 fi
1250c760
RO
895
896 if eval ${ml_config_env} ${ml_config_shell} ${ml_recprog} \
6599da04 897 --with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \
a10ec8bc 898 "${ac_configure_args}" ${ml_config_env} ${ml_srcdiroption} ; then
6599da04
JM
899 true
900 else
901 exit 1
902 fi
903
d683ec81 904 cd "${ML_POPDIR}"
6599da04
JM
905
906 done
907
d683ec81 908 cd "${ml_origdir}"
6599da04
JM
909fi
910
911fi # ${ml_toplevel_p} = yes
912fi # ${enable_multilib} = yes