* config-ml.in, symlink-tree: Add license.
[external/binutils.git] / config-ml.in
1 # Configure fragment invoked in the post-target section for subdirs
2 # wanting multilib support.
3 #
4 # Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003
5 #   Free Software Foundation, Inc.
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
19 # Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
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
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
34 # in the "post-target" section of configure.in.
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 #
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 # ./
57 #   newlib
58 #   m68020/
59 #          newlib
60 #          m68881/
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
93 # Autoconf incoming variables:
94 # srcdir, host, ac_configure_args
95 #
96 # We *could* figure srcdir and host out, but we'd have to do work that
97 # our caller has already done to figure them out and requiring these two
98 # seems reasonable.
99 # Note that `host' in this case is GCC's `target'.  Target libraries are
100 # configured for a particular host.
101
102 Makefile=${ac_file-Makefile}
103 ml_config_shell=${CONFIG_SHELL-/bin/sh}
104 ml_arguments="${ac_configure_args}"
105 ml_realsrcdir=${srcdir}
106
107 # Scan all the arguments and set all the ones we need.
108
109 ml_verbose=--verbose
110 for option in ${ml_arguments}
111 do
112   case $option in
113   --*) ;;
114   -*) option=-$option ;;
115   esac
116
117   case $option in
118   --*=*)
119         optarg=`echo $option | sed -e 's/^[^=]*=//'`
120         ;;
121   esac
122
123   case $option in
124   --disable-*)
125         enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
126         eval $enableopt=no
127         ;;
128   --enable-*)
129         case "$option" in
130         *=*)    ;;
131         *)      optarg=yes ;;
132         esac
133         enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
134         eval $enableopt="$optarg"
135         ;;
136   --norecursion | --no*)
137         ml_norecursion=yes
138         ;;
139   --silent | --sil* | --quiet | --q*)
140         ml_verbose=--silent
141         ;;
142   --verbose | --v | --verb*)
143         ml_verbose=--verbose
144         ;;
145   --with-*)
146         case "$option" in
147         *=*)    ;;
148         *)      optarg=yes ;;
149         esac
150         withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
151         eval $withopt="$optarg"
152         ;;
153   --without-*)
154         withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
155         eval $withopt=no
156         ;;
157   esac
158 done
159
160 # Only do this if --enable-multilib.
161 if [ "${enable_multilib}" = yes ]; then
162
163 # Compute whether this is the library's top level directory
164 # (ie: not a multilib subdirectory, and not a subdirectory like newlib/src).
165 # ${with_multisubdir} tells us we're in the right branch, but we could be
166 # in a subdir of that.
167 # ??? The previous version could void this test by separating the process into
168 # two files: one that only the library's toplevel configure.in ran (to
169 # configure the multilib subdirs), and another that all configure.in's ran to
170 # update the Makefile.  It seemed reasonable to collapse all multilib support
171 # into one file, but it does leave us with having to perform this test.
172 ml_toplevel_p=no
173 if [ -z "${with_multisubdir}" ]; then
174   if [ "${srcdir}" = "." ]; then
175     # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
176     # ${with_target_subdir} = "." for native, otherwise target alias.
177     if [ "${with_target_subdir}" = "." ]; then
178       if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
179         ml_toplevel_p=yes
180       fi
181     else
182       if [ -f ${ml_realsrcdir}/../../config-ml.in ]; then
183         ml_toplevel_p=yes
184       fi
185     fi
186   else
187     # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
188     if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
189       ml_toplevel_p=yes
190     fi
191   fi
192 fi
193
194 # If this is the library's top level directory, set multidirs to the
195 # multilib subdirs to support.  This lives at the top because we need
196 # `multidirs' set right away.
197
198 if [ "${ml_toplevel_p}" = yes ]; then
199
200 multidirs=
201 for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
202   dir=`echo $i | sed -e 's/;.*$//'`
203   if [ "${dir}" = "." ]; then
204     true
205   else
206     if [ -z "${multidirs}" ]; then
207       multidirs="${dir}"
208     else
209       multidirs="${multidirs} ${dir}"
210     fi
211   fi
212 done
213
214 # Target libraries are configured for the host they run on, so we check
215 # $host here, not $target.
216
217 case "${host}" in
218 arc-*-elf*)
219         if [ x$enable_biendian != xyes ]
220         then
221           old_multidirs=${multidirs}
222           multidirs=""
223           for x in ${old_multidirs}; do
224             case "${x}" in
225               *be*) : ;;
226               *) multidirs="${multidirs} ${x}" ;;
227             esac
228           done
229         fi
230         ;;
231 arm-*-*)
232         if [ x"$enable_fpu" = xno ]
233         then
234           old_multidirs=${multidirs}
235           multidirs=""
236           for x in ${old_multidirs}; do
237             case "${x}" in
238               *fpu*) : ;;
239               *) multidirs="${multidirs} ${x}" ;;
240             esac
241           done
242         fi
243         if [ x"$enable_26bit" = xno ]
244         then
245           old_multidirs=${multidirs}
246           multidirs=""
247           for x in ${old_multidirs}; do
248             case "${x}" in
249               *26bit*) : ;;
250               *) multidirs="${multidirs} ${x}" ;;
251             esac
252           done
253         fi
254         if [ x"$enable_underscore" = xno ]
255         then
256           old_multidirs=${multidirs}
257           multidirs=""
258           for x in ${old_multidirs}; do
259             case "${x}" in
260               *under*) : ;;
261               *) multidirs="${multidirs} ${x}" ;;
262             esac
263           done
264         fi
265         if [ x"$enable_interwork" = xno ]
266         then
267           old_multidirs=${multidirs}
268           multidirs=""
269           for x in ${old_multidirs}; do
270             case "${x}" in
271               *interwork*) : ;;
272               *) multidirs="${multidirs} ${x}" ;;
273             esac
274           done
275         fi
276         if [ x$enable_biendian = xno ]
277         then
278           old_multidirs="${multidirs}"
279           multidirs=""
280           for x in ${old_multidirs}; do
281             case "$x" in
282               *le* ) : ;;
283               *be* ) : ;;
284               *) multidirs="${multidirs} ${x}" ;;
285             esac
286           done
287         fi
288         if [ x"$enable_nofmult" = xno ]
289         then
290           old_multidirs="${multidirs}"
291           multidirs=""
292           for x in ${old_multidirs}; do
293             case "$x" in
294               *nofmult* ) : ;;
295               *) multidirs="${multidirs} ${x}" ;;
296             esac
297           done
298         fi
299         ;;
300 m68*-*-*)
301         if [ x$enable_softfloat = xno ]
302         then
303           old_multidirs="${multidirs}"
304           multidirs=""
305           for x in ${old_multidirs}; do
306             case "$x" in
307               *soft-float* ) : ;;
308               *) multidirs="${multidirs} ${x}" ;;
309             esac
310           done
311         fi
312         if [ x$enable_m68881 = xno ]
313         then
314           old_multidirs="${multidirs}"
315           multidirs=""
316           for x in ${old_multidirs}; do
317             case "$x" in
318               *m68881* ) : ;;
319               *) multidirs="${multidirs} ${x}" ;;
320             esac
321           done
322         fi
323         if [ x$enable_m68000 = xno ]
324         then
325           old_multidirs="${multidirs}"
326           multidirs=""
327           for x in ${old_multidirs}; do
328             case "$x" in
329               *m68000* ) : ;;
330               *) multidirs="${multidirs} ${x}" ;;
331             esac
332           done
333         fi
334         if [ x$enable_m68020 = xno ]
335         then
336           old_multidirs="${multidirs}"
337           multidirs=""
338           for x in ${old_multidirs}; do
339             case "$x" in
340               *m68020* ) : ;;
341               *) multidirs="${multidirs} ${x}" ;;
342             esac
343           done
344         fi
345         ;;
346 mips*-*-*)
347         if [ x$enable_single_float = xno ]
348         then
349           old_multidirs="${multidirs}"
350           multidirs=""
351           for x in ${old_multidirs}; do
352             case "$x" in
353               *single* ) : ;;
354               *) multidirs="${multidirs} ${x}" ;;
355             esac
356           done
357         fi
358         if [ x$enable_biendian = xno ]
359         then
360           old_multidirs="${multidirs}"
361           multidirs=""
362           for x in ${old_multidirs}; do
363             case "$x" in
364               *el* ) : ;;
365               *eb* ) : ;;
366               *) multidirs="${multidirs} ${x}" ;;
367             esac
368           done
369         fi
370         if [ x$enable_softfloat = xno ]
371         then
372           old_multidirs="${multidirs}"
373           multidirs=""
374           for x in ${old_multidirs}; do
375             case "$x" in
376               *soft-float* ) : ;;
377               *) multidirs="${multidirs} ${x}" ;;
378             esac
379           done
380         fi
381         case " $multidirs " in
382         *" mabi=64 "*)
383           # We will not be able to create libraries with -mabi=64 if
384           # we cannot even link a trivial program.  It usually
385           # indicates the 64bit libraries are missing.
386           if echo 'main() {}' > conftest.c &&
387              ${CC-gcc} -mabi=64 conftest.c -o conftest; then
388             :
389           else
390             echo Could not link program with -mabi=64, disabling it.
391             old_multidirs="${multidirs}"
392             multidirs=""
393             for x in ${old_multidirs}; do
394               case "$x" in
395               *mabi=64* ) : ;;
396               *) multidirs="${multidirs} ${x}" ;;
397               esac
398             done
399           fi
400           rm -f conftest.c conftest
401           ;;
402         esac
403         ;;
404 powerpc*-*-* | rs6000*-*-*)
405         if [ x$enable_aix64 = xno ]
406         then
407           old_multidirs="${multidirs}"
408           multidirs=""
409           for x in ${old_multidirs}; do
410             case "$x" in
411               *ppc64* ) : ;;
412               *) multidirs="${multidirs} ${x}" ;;
413             esac
414           done
415         fi
416         if [ x$enable_pthread = xno ]
417         then
418           old_multidirs="${multidirs}"
419           multidirs=""
420           for x in ${old_multidirs}; do
421             case "$x" in
422               *pthread* ) : ;;
423               *) multidirs="${multidirs} ${x}" ;;
424             esac
425           done
426         fi
427         if [ x$enable_softfloat = xno ]
428         then
429           old_multidirs="${multidirs}"
430           multidirs=""
431           for x in ${old_multidirs}; do
432             case "$x" in
433               *soft-float* ) : ;;
434               *) multidirs="${multidirs} ${x}" ;;
435             esac
436           done
437         fi
438         if [ x$enable_powercpu = xno ]
439         then
440           old_multidirs="${multidirs}"
441           multidirs=""
442           for x in ${old_multidirs}; do
443             case "$x" in
444               power | */power | */power/* ) : ;;
445               *) multidirs="${multidirs} ${x}" ;;
446             esac
447           done
448         fi
449         if [ x$enable_powerpccpu = xno ]
450         then
451           old_multidirs="${multidirs}"
452           multidirs=""
453           for x in ${old_multidirs}; do
454             case "$x" in
455               *powerpc* ) : ;;
456               *) multidirs="${multidirs} ${x}" ;;
457             esac
458           done
459         fi
460         if [ x$enable_powerpcos = xno ]
461         then
462           old_multidirs="${multidirs}"
463           multidirs=""
464           for x in ${old_multidirs}; do
465             case "$x" in
466               *mcall-linux* | *mcall-solaris* ) : ;;
467               *) multidirs="${multidirs} ${x}" ;;
468             esac
469           done
470         fi
471         if [ x$enable_biendian = xno ]
472         then
473           old_multidirs="${multidirs}"
474           multidirs=""
475           for x in ${old_multidirs}; do
476             case "$x" in
477               *mlittle* | *mbig* ) : ;;
478               *) multidirs="${multidirs} ${x}" ;;
479             esac
480           done
481         fi
482         if [ x$enable_sysv = xno ]
483         then
484           old_multidirs="${multidirs}"
485           multidirs=""
486           for x in ${old_multidirs}; do
487             case "$x" in
488               *mcall-sysv* ) : ;;
489               *) multidirs="${multidirs} ${x}" ;;
490             esac
491           done
492         fi
493         ;;
494 sparc*-*-*)
495         case " $multidirs " in
496         *" m64 "*)
497           # We will not be able to create libraries with -m64 if
498           # we cannot even link a trivial program.  It usually
499           # indicates the 64bit libraries are missing.
500           if echo 'main() {}' > conftest.c &&
501              ${CC-gcc} -m64 conftest.c -o conftest; then
502             :
503           else
504             echo Could not link program with -m64, disabling it.
505             old_multidirs="${multidirs}"
506             multidirs=""
507             for x in ${old_multidirs}; do
508               case "$x" in
509               *m64* ) : ;;
510               *) multidirs="${multidirs} ${x}" ;;
511               esac
512             done
513           fi
514           rm -f conftest.c conftest
515           ;;
516         esac
517         ;;
518 esac
519
520 # Remove extraneous blanks from multidirs.
521 # Tests like `if [ -n "$multidirs" ]' require it.
522 multidirs=`echo "$multidirs" | sed -e 's/^[ ][ ]*//' -e 's/[ ][ ]*$//' -e 's/[ ][ ]*/ /g'`
523
524 # Add code to library's top level makefile to handle building the multilib
525 # subdirs.
526
527 cat > Multi.tem <<\EOF
528
529 PWD_COMMAND=$${PWDCMD-pwd}
530
531 # FIXME: There should be an @-sign in front of the `if'.
532 # Leave out until this is tested a bit more.
533 multi-do:
534         if [ -z "$(MULTIDIRS)" ]; then \
535           true; \
536         else \
537           rootpre=`${PWD_COMMAND}`/; export rootpre; \
538           srcrootpre=`cd $(srcdir); ${PWD_COMMAND}`/; export srcrootpre; \
539           lib=`echo $${rootpre} | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
540           compiler="$(CC)"; \
541           for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
542             dir=`echo $$i | sed -e 's/;.*$$//'`; \
543             if [ "$${dir}" = "." ]; then \
544               true; \
545             else \
546               if [ -d ../$${dir}/$${lib} ]; then \
547                 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
548                 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) \
549                                 CFLAGS="$(CFLAGS) $${flags}" \
550                                 prefix="$(prefix)" \
551                                 exec_prefix="$(exec_prefix)" \
552                                 GCJFLAGS="$(GCJFLAGS) $${flags}" \
553                                 CXXFLAGS="$(CXXFLAGS) $${flags}" \
554                                 LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
555                                 LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
556                                 LDFLAGS="$(LDFLAGS) $${flags}" \
557                                 DESTDIR="$(DESTDIR)" \
558                                 $(DO)); then \
559                   true; \
560                 else \
561                   exit 1; \
562                 fi; \
563               else true; \
564               fi; \
565             fi; \
566           done; \
567         fi
568
569 # FIXME: There should be an @-sign in front of the `if'.
570 # Leave out until this is tested a bit more.
571 multi-clean:
572         if [ -z "$(MULTIDIRS)" ]; then \
573           true; \
574         else \
575           lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
576           for dir in Makefile $(MULTIDIRS); do \
577             if [ -f ../$${dir}/$${lib}/Makefile ]; then \
578               if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
579               then true; \
580               else exit 1; \
581               fi; \
582             else true; \
583             fi; \
584           done; \
585         fi
586 EOF
587
588 cat ${Makefile} Multi.tem > Makefile.tem
589 rm -f ${Makefile} Multi.tem
590 mv Makefile.tem ${Makefile}
591
592 fi # ${ml_toplevel_p} = yes
593
594 if [ "${ml_verbose}" = --verbose ]; then
595   echo "Adding multilib support to Makefile in ${ml_realsrcdir}"
596   if [ "${ml_toplevel_p}" = yes ]; then
597     echo "multidirs=${multidirs}"
598   fi
599   echo "with_multisubdir=${with_multisubdir}"
600 fi
601
602 if [ "${srcdir}" = "." ]; then
603   if [ "${with_target_subdir}" != "." ]; then
604     ml_srcdotdot="../"
605   else
606     ml_srcdotdot=""
607   fi
608 else
609   ml_srcdotdot=""
610 fi
611
612 if [ -z "${with_multisubdir}" ]; then
613   ml_subdir=
614   ml_builddotdot=
615   : # ml_srcdotdot= # already set
616 else
617   ml_subdir="/${with_multisubdir}"
618   # The '[^/][^/]*' appears that way to work around a SunOS sed bug.
619   ml_builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`/
620   if [ "$srcdir" = "." ]; then
621     ml_srcdotdot=${ml_srcdotdot}${ml_builddotdot}
622   else
623     : # ml_srcdotdot= # already set
624   fi
625 fi
626
627 if [ "${ml_toplevel_p}" = yes ]; then
628   ml_do='$(MAKE)'
629   ml_clean='$(MAKE)'
630 else
631   ml_do=true
632   ml_clean=true
633 fi
634
635 # TOP is used by newlib and should not be used elsewhere for this purpose.
636 # MULTI{SRC,BUILD}TOP are the proper ones to use.  MULTISRCTOP is empty
637 # when srcdir != builddir.  MULTIBUILDTOP is always some number of ../'s.
638 # FIXME: newlib needs to be updated to use MULTI{SRC,BUILD}TOP so we can
639 # delete TOP.  Newlib may wish to continue to use TOP for its own purposes
640 # of course.
641 # MULTIDIRS is non-empty for the cpu top level Makefile (eg: newlib/Makefile)
642 # and lists the subdirectories to recurse into.
643 # MULTISUBDIR is non-empty in each cpu subdirectory's Makefile
644 # (eg: newlib/h8300h/Makefile) and is the installed subdirectory name with
645 # a leading '/'.
646 # MULTIDO is used for targets like all, install, and check where
647 # $(FLAGS_TO_PASS) augmented with the subdir's compiler option is needed.
648 # MULTICLEAN is used for the *clean targets.
649 #
650 # ??? It is possible to merge MULTIDO and MULTICLEAN into one.  They are
651 # currently kept separate because we don't want the *clean targets to require
652 # the existence of the compiler (which MULTIDO currently requires) and
653 # therefore we'd have to record the directory options as well as names
654 # (currently we just record the names and use --print-multi-lib to get the
655 # options).
656
657 sed -e "s:^TOP[         ]*=[    ]*\([./]*\)[    ]*$:TOP = ${ml_builddotdot}\1:" \
658     -e "s:^MULTISRCTOP[         ]*=.*$:MULTISRCTOP = ${ml_srcdotdot}:" \
659     -e "s:^MULTIBUILDTOP[       ]*=.*$:MULTIBUILDTOP = ${ml_builddotdot}:" \
660     -e "s:^MULTIDIRS[   ]*=.*$:MULTIDIRS = ${multidirs}:" \
661     -e "s:^MULTISUBDIR[         ]*=.*$:MULTISUBDIR = ${ml_subdir}:" \
662     -e "s:^MULTIDO[     ]*=.*$:MULTIDO = $ml_do:" \
663     -e "s:^MULTICLEAN[  ]*=.*$:MULTICLEAN = $ml_clean:" \
664         ${Makefile} > Makefile.tem
665 rm -f ${Makefile}
666 mv Makefile.tem ${Makefile}
667
668 # If this is the library's top level, configure each multilib subdir.
669 # This is done at the end because this is the loop that runs configure
670 # in each multilib subdir and it seemed reasonable to finish updating the
671 # Makefile before going on to configure the subdirs.
672
673 if [ "${ml_toplevel_p}" = yes ]; then
674
675 # We must freshly configure each subdirectory.  This bit of code is
676 # actually partially stolen from the main configure script.  FIXME.
677
678 if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
679
680   if [ "${ml_verbose}" = --verbose ]; then
681     echo "Running configure in multilib subdirs ${multidirs}"
682     echo "pwd: `${PWDCMD-pwd}`"
683   fi
684
685   ml_origdir=`${PWDCMD-pwd}`
686   ml_libdir=`echo $ml_origdir | sed -e 's,^.*/,,'`
687   # cd to top-level-build-dir/${with_target_subdir}
688   cd ..
689
690   for ml_dir in ${multidirs}; do
691
692     if [ "${ml_verbose}" = --verbose ]; then
693       echo "Running configure in multilib subdir ${ml_dir}"
694       echo "pwd: `${PWDCMD-pwd}`"
695     fi
696
697     if [ -d ${ml_dir} ]; then true; else
698       # ``mkdir -p ${ml_dir}'' See also mkinstalldirs.
699       pathcomp=""
700       for d in `echo ":${ml_dir}" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`; do
701         pathcomp="$pathcomp$d"
702         case "$pathcomp" in
703           -* ) pathcomp=./$pathcomp ;;
704         esac
705         if test ! -d "$pathcomp"; then
706            echo "mkdir $pathcomp" 1>&2
707            mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
708         fi
709         if test ! -d "$pathcomp"; then
710            exit $lasterr
711         fi
712         pathcomp="$pathcomp/"
713       done
714     fi
715     if [ -d ${ml_dir}/${ml_libdir} ]; then true; else mkdir ${ml_dir}/${ml_libdir}; fi
716
717     # Eg: if ${ml_dir} = m68000/m68881, dotdot = ../../
718     dotdot=../`echo ${ml_dir} | sed -e 's|[^/]||g' -e 's|/|../|g'`
719
720     case ${srcdir} in
721     ".")
722       echo Building symlink tree in `${PWDCMD-pwd}`/${ml_dir}/${ml_libdir}
723       if [ "${with_target_subdir}" != "." ]; then
724         ml_unsubdir="../"
725       else
726         ml_unsubdir=""
727       fi
728       (cd ${ml_dir}/${ml_libdir};
729        ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "")
730       if [ -f ${ml_dir}/${ml_libdir}/Makefile ]; then
731         if [ x"${MAKE}" = x ]; then
732           (cd ${ml_dir}/${ml_libdir}; make distclean)
733         else
734           (cd ${ml_dir}/${ml_libdir}; ${MAKE} distclean)
735         fi
736       fi
737       ml_newsrcdir="."
738       ml_srcdiroption=
739       multisrctop=${dotdot}
740       ;;
741     *)
742       case "${srcdir}" in
743       /* | [A-Za-z]:[\\/]* ) # absolute path
744         ml_newsrcdir=${srcdir}
745         ;;
746       *) # otherwise relative
747         ml_newsrcdir=${dotdot}${srcdir}
748         ;;
749       esac
750       ml_srcdiroption="-srcdir=${ml_newsrcdir}"
751       multisrctop=
752       ;;
753     esac
754
755     case "${progname}" in
756     /* | [A-Za-z]:[\\/]* )     ml_recprog=${progname} ;;
757     *)      ml_recprog=${dotdot}${progname} ;;
758     esac
759
760     # FIXME: POPDIR=${PWD=`pwd`} doesn't work here.
761     ML_POPDIR=`${PWDCMD-pwd}`
762     cd ${ml_dir}/${ml_libdir}
763
764     if [ -f ${ml_newsrcdir}/configure ]; then
765       ml_recprog="${ml_newsrcdir}/configure --cache-file=../config.cache"
766     fi
767
768     # find compiler flag corresponding to ${ml_dir}
769     for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
770       dir=`echo $i | sed -e 's/;.*$//'`
771       if [ "${dir}" = "${ml_dir}" ]; then
772         flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`
773         break
774       fi
775     done
776     ml_config_env='CC="${CC_}$flags" CXX="${CXX_}$flags" GCJ="${GCJ_}$flags"'
777
778     if [ "${with_target_subdir}" = "." ]; then
779         CC_=$CC' '
780         CXX_=$CXX' '
781         GCJ_=$GCJ' '
782     else
783         # Create a regular expression that matches any string as long
784         # as ML_POPDIR.
785         popdir_rx=`echo ${ML_POPDIR} | sed 's,.,.,g'`
786         CC_=
787         for arg in ${CC}; do
788           case $arg in
789           -[BIL]"${ML_POPDIR}"/*)
790             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"`' ' ;;
791           "${ML_POPDIR}"/*)
792             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"`' ' ;;
793           *)
794             CC_="${CC_}${arg} " ;;
795           esac
796         done
797
798         CXX_=
799         for arg in ${CXX}; do
800           case $arg in
801           -[BIL]"${ML_POPDIR}"/*)
802             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"`' ' ;;
803           "${ML_POPDIR}"/*)
804             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"`' ' ;;
805           *)
806             CXX_="${CXX_}${arg} " ;;
807           esac
808         done
809
810         GCJ_=
811         for arg in ${GCJ}; do
812           case $arg in
813           -[BIL]"${ML_POPDIR}"/*)
814             GCJ_="${GCJ_}"`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"`' ' ;;
815           "${ML_POPDIR}"/*)
816             GCJ_="${GCJ_}"`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"`' ' ;;
817           *)
818             GCJ_="${GCJ_}${arg} " ;;
819           esac
820         done
821
822         if test "x${LD_LIBRARY_PATH+set}" = xset; then
823           LD_LIBRARY_PATH_=
824           for arg in `echo "$LD_LIBRARY_PATH" | tr ':' ' '`; do
825             case "$arg" in
826             "${ML_POPDIR}"/*)
827               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"`
828               ;;
829             esac
830             if test "x$LD_LIBRARY_PATH_" != x; then
831               LD_LIBRARY_PATH_=$LD_LIBRARY_PATH_:$arg
832             else
833               LD_LIBRARY_PATH_=$arg
834             fi
835           done
836           ml_config_env="$ml_config_env LD_LIBRARY_PATH=$LD_LIBRARY_PATH_"
837         fi
838
839         if test "x${SHLIB_PATH+set}" = xset; then
840           SHLIB_PATH_=
841           for arg in `echo "$SHLIB_PATH" | tr ':' ' '`; do
842             case "$arg" in
843             "${ML_POPDIR}"/*)
844               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"`
845               ;;
846             esac
847             if test "x$SHLIB_PATH_" != x; then
848               SHLIB_PATH_=$SHLIB_PATH_:$arg
849             else
850               SHLIB_PATH_=$arg
851             fi
852           done
853           ml_config_env="$ml_config_env SHLIB_PATH=$SHLIB_PATH_"
854         fi
855     fi
856
857     if eval ${ml_config_env} ${ml_config_shell} ${ml_recprog} \
858         --with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \
859         ${ml_arguments} ${ml_srcdiroption} ; then
860       true
861     else
862       exit 1
863     fi
864
865     cd ${ML_POPDIR}
866
867   done
868
869   cd ${ml_origdir}
870 fi
871
872 fi # ${ml_toplevel_p} = yes
873 fi # ${enable_multilib} = yes