OSDN Git Service

* predict.c (expected_value_to_br_prob): Don't bomb if op1 of
[pf3gnuchains/gcc-fork.git] / config-ml.in
1 # Configure fragment invoked in the post-target section for subdirs
2 # wanting multilib support.
3 #
4 # It is advisable to support a few --enable/--disable options to let the
5 # user select which libraries s/he really wants.
6 #
7 # Subdirectories wishing to use multilib should put the following lines
8 # in the "post-target" section of configure.in.
9 #
10 # if [ "${srcdir}" = "." ] ; then
11 #   if [ "${with_target_subdir}" != "." ] ; then
12 #     . ${with_multisrctop}../../config-ml.in
13 #   else
14 #     . ${with_multisrctop}../config-ml.in
15 #   fi
16 # else
17 #   . ${srcdir}/../config-ml.in
18 # fi
19 #
20 # See librx/configure.in in the libg++ distribution for an example of how
21 # to handle autoconf'd libraries.
22 #
23 # Things are complicated because 6 separate cases must be handled:
24 # 2 (native, cross) x 3 (absolute-path, relative-not-dot, dot) = 6.
25 #
26 # srcdir=. is special.  It must handle make programs that don't handle VPATH.
27 # To implement this, a symlink tree is built for each library and for each
28 # multilib subdir.
29 #
30 # The build tree is layed out as
31 #
32 # ./
33 #   libg++
34 #   newlib
35 #   m68020/
36 #          libg++
37 #          newlib
38 #          m68881/
39 #                 libg++
40 #                 newlib
41 #
42 # The nice feature about this arrangement is that inter-library references
43 # in the build tree work without having to care where you are.  Note that
44 # inter-library references also work in the source tree because symlink trees
45 # are built when srcdir=.
46 #
47 # Unfortunately, trying to access the libraries in the build tree requires
48 # the user to manually choose which library to use as GCC won't be able to
49 # find the right one.  This is viewed as the lesser of two evils.
50 #
51 # Configure variables:
52 # ${with_target_subdir} = "." for native, or ${target_alias} for cross.
53 # Set by top level Makefile.
54 # ${with_multisrctop} = how many levels of multilibs there are in the source
55 # tree.  It exists to handle the case of configuring in the source tree:
56 # ${srcdir} is not constant.
57 # ${with_multisubdir} = name of multilib subdirectory (eg: m68020/m68881).
58 #
59 # Makefile variables:
60 # MULTISRCTOP = number of multilib levels in source tree (+1 if cross)
61 # (FIXME: note that this is different than ${with_multisrctop}.  Check out.).
62 # MULTIBUILDTOP = number of multilib levels in build tree
63 # MULTIDIRS = list of multilib subdirs (eg: m68000 m68020 ...)
64 # (only defined in each library's main Makefile).
65 # MULTISUBDIR = installed subdirectory name with leading '/' (eg: /m68000)
66 # (only defined in each multilib subdir).
67
68 # FIXME: Multilib is currently disabled by default for everything other than
69 # newlib.  It is up to each target to turn on multilib support for the other
70 # libraries as desired.
71
72 # We have to handle being invoked by both Cygnus configure and Autoconf.
73 #
74 # Cygnus configure incoming variables:
75 # srcdir, subdir, target, arguments
76 #
77 # Autoconf incoming variables:
78 # srcdir, target, ac_configure_args
79 #
80 # We *could* figure srcdir and target out, but we'd have to do work that
81 # our caller has already done to figure them out and requiring these two
82 # seems reasonable.
83
84 if [ -n "${ac_configure_args}" ]; then
85   Makefile=${ac_file-Makefile}
86   ml_config_shell=${CONFIG_SHELL-/bin/sh}
87   ml_arguments="${ac_configure_args}"
88   ml_realsrcdir=${srcdir}
89 else
90   Makefile=${Makefile-Makefile}
91   ml_config_shell=${config_shell-/bin/sh}
92   ml_arguments="${arguments}"
93   if [ -n "${subdir}" -a "${subdir}" != "." ] ; then
94     ml_realsrcdir=${srcdir}/${subdir}
95   else
96     ml_realsrcdir=${srcdir}
97   fi
98 fi
99
100 # Scan all the arguments and set all the ones we need.
101
102 ml_verbose=--verbose
103 for option in ${ml_arguments}
104 do
105   case $option in
106   --*) ;;
107   -*) option=-$option ;;
108   esac
109
110   case $option in
111   --*=*)
112         optarg=`echo $option | sed -e 's/^[^=]*=//'`
113         ;;
114   esac
115
116   case $option in
117   --disable-*)
118         enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
119         eval $enableopt=no
120         ;;
121   --enable-*)
122         case "$option" in
123         *=*)    ;;
124         *)      optarg=yes ;;
125         esac
126         enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
127         eval $enableopt="$optarg"
128         ;;
129   --norecursion | --no*)
130         ml_norecursion=yes
131         ;;
132   --silent | --sil* | --quiet | --q*)
133         ml_verbose=--silent
134         ;;
135   --verbose | --v | --verb*)
136         ml_verbose=--verbose
137         ;;
138   --with-*)
139         case "$option" in
140         *=*)    ;;
141         *)      optarg=yes ;;
142         esac
143         withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
144         eval $withopt="$optarg"
145         ;;
146   --without-*)
147         withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
148         eval $withopt=no
149         ;;
150   esac
151 done
152
153 # Only do this if --enable-multilib.
154 if [ "${enable_multilib}" = yes ]; then
155
156 # Compute whether this is the library's top level directory
157 # (ie: not a multilib subdirectory, and not a subdirectory like libg++/src).
158 # ${with_multisubdir} tells us we're in the right branch, but we could be
159 # in a subdir of that.
160 # ??? The previous version could void this test by separating the process into
161 # two files: one that only the library's toplevel configure.in ran (to
162 # configure the multilib subdirs), and another that all configure.in's ran to
163 # update the Makefile.  It seemed reasonable to collapse all multilib support
164 # into one file, but it does leave us with having to perform this test.
165 ml_toplevel_p=no
166 if [ -z "${with_multisubdir}" ]; then
167   if [ "${srcdir}" = "." ]; then
168     # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
169     # ${with_target_subdir} = "." for native, otherwise target alias.
170     if [ "${with_target_subdir}" = "." ]; then
171       if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
172         ml_toplevel_p=yes
173       fi
174     else
175       if [ -f ${ml_realsrcdir}/../../config-ml.in ]; then
176         ml_toplevel_p=yes
177       fi
178     fi
179   else
180     # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
181     if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
182       ml_toplevel_p=yes
183     fi
184   fi
185 fi
186
187 # If this is the library's top level directory, set multidirs to the
188 # multilib subdirs to support.  This lives at the top because we need
189 # `multidirs' set right away.
190
191 if [ "${ml_toplevel_p}" = yes ]; then
192
193 multidirs=
194 for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
195   dir=`echo $i | sed -e 's/;.*$//'`
196   if [ "${dir}" = "." ]; then
197     true
198   else
199     if [ -z "${multidirs}" ]; then
200       multidirs="${dir}"
201     else
202       multidirs="${multidirs} ${dir}"
203     fi
204   fi
205 done
206
207 case "${target}" in
208 arc-*-elf*)
209         if [ x$enable_biendian != xyes ]
210         then
211           old_multidirs=${multidirs}
212           multidirs=""
213           for x in ${old_multidirs}; do
214             case "${x}" in
215               *be*) : ;;
216               *) multidirs="${multidirs} ${x}" ;;
217             esac
218           done
219         fi
220         ;;
221 arm-*-*)
222         if [ x"$enable_fpu" = xno ]
223         then
224           old_multidirs=${multidirs}
225           multidirs=""
226           for x in ${old_multidirs}; do
227             case "${x}" in
228               *fpu*) : ;;
229               *) multidirs="${multidirs} ${x}" ;;
230             esac
231           done
232         fi
233         if [ x"$enable_26bit" = xno ]
234         then
235           old_multidirs=${multidirs}
236           multidirs=""
237           for x in ${old_multidirs}; do
238             case "${x}" in
239               *26bit*) : ;;
240               *) multidirs="${multidirs} ${x}" ;;
241             esac
242           done
243         fi
244         if [ x"$enable_underscore" = xno ]
245         then
246           old_multidirs=${multidirs}
247           multidirs=""
248           for x in ${old_multidirs}; do
249             case "${x}" in
250               *under*) : ;;
251               *) multidirs="${multidirs} ${x}" ;;
252             esac
253           done
254         fi
255         if [ x"$enable_interwork" = xno ]
256         then
257           old_multidirs=${multidirs}
258           multidirs=""
259           for x in ${old_multidirs}; do
260             case "${x}" in
261               *interwork*) : ;;
262               *) multidirs="${multidirs} ${x}" ;;
263             esac
264           done
265         fi
266         if [ x$enable_biendian = xno ]
267         then
268           old_multidirs="${multidirs}"
269           multidirs=""
270           for x in ${old_multidirs}; do
271             case "$x" in
272               *le* ) : ;;
273               *be* ) : ;;
274               *) multidirs="${multidirs} ${x}" ;;
275             esac
276           done
277         fi
278         if [ x"$enable_nofmult" = xno ]
279         then
280           old_multidirs="${multidirs}"
281           multidirs=""
282           for x in ${old_multidirs}; do
283             case "$x" in
284               *nofmult* ) : ;;
285               *) multidirs="${multidirs} ${x}" ;;
286             esac
287           done
288         fi
289         ;;
290 m68*-*-*)
291         if [ x$enable_softfloat = xno ]
292         then
293           old_multidirs="${multidirs}"
294           multidirs=""
295           for x in ${old_multidirs}; do
296             case "$x" in
297               *soft-float* ) : ;;
298               *) multidirs="${multidirs} ${x}" ;;
299             esac
300           done
301         fi
302         if [ x$enable_m68881 = xno ]
303         then
304           old_multidirs="${multidirs}"
305           multidirs=""
306           for x in ${old_multidirs}; do
307             case "$x" in
308               *m68881* ) : ;;
309               *) multidirs="${multidirs} ${x}" ;;
310             esac
311           done
312         fi
313         if [ x$enable_m68000 = xno ]
314         then
315           old_multidirs="${multidirs}"
316           multidirs=""
317           for x in ${old_multidirs}; do
318             case "$x" in
319               *m68000* ) : ;;
320               *) multidirs="${multidirs} ${x}" ;;
321             esac
322           done
323         fi
324         if [ x$enable_m68020 = xno ]
325         then
326           old_multidirs="${multidirs}"
327           multidirs=""
328           for x in ${old_multidirs}; do
329             case "$x" in
330               *m68020* ) : ;;
331               *) multidirs="${multidirs} ${x}" ;;
332             esac
333           done
334         fi
335         ;;
336 mips*-*-*)
337         if [ x$enable_single_float = xno ]
338         then
339           old_multidirs="${multidirs}"
340           multidirs=""
341           for x in ${old_multidirs}; do
342             case "$x" in
343               *single* ) : ;;
344               *) multidirs="${multidirs} ${x}" ;;
345             esac
346           done
347         fi
348         if [ x$enable_biendian = xno ]
349         then
350           old_multidirs="${multidirs}"
351           multidirs=""
352           for x in ${old_multidirs}; do
353             case "$x" in
354               *el* ) : ;;
355               *eb* ) : ;;
356               *) multidirs="${multidirs} ${x}" ;;
357             esac
358           done
359         fi
360         if [ x$enable_softfloat = xno ]
361         then
362           old_multidirs="${multidirs}"
363           multidirs=""
364           for x in ${old_multidirs}; do
365             case "$x" in
366               *soft-float* ) : ;;
367               *) multidirs="${multidirs} ${x}" ;;
368             esac
369           done
370         fi
371         case " $multidirs " in
372         *" mabi=64 "*)
373           # We will not be able to create libraries with -mabi=64 if
374           # we cannot even link a trivial program.  It usually
375           # indicates the 64bit libraries are missing.
376           if echo 'main() {}' > conftest.c &&
377              ${CC-gcc} -mabi=64 conftest.c -o conftest; then
378             :
379           else
380             echo Could not link program with -mabi=64, disabling it.
381             old_multidirs="${multidirs}"
382             multidirs=""
383             for x in ${old_multidirs}; do
384               case "$x" in
385               *mabi=64* ) : ;;
386               *) multidirs="${multidirs} ${x}" ;;
387               esac
388             done
389           fi
390           rm -f conftest.c conftest
391           ;;
392         esac
393         ;;
394 powerpc*-*-* | rs6000*-*-*)
395         if [ x$enable_softfloat = xno ]
396         then
397           old_multidirs="${multidirs}"
398           multidirs=""
399           for x in ${old_multidirs}; do
400             case "$x" in
401               *soft-float* ) : ;;
402               *) multidirs="${multidirs} ${x}" ;;
403             esac
404           done
405         fi
406         if [ x$enable_powercpu = xno ]
407         then
408           old_multidirs="${multidirs}"
409           multidirs=""
410           for x in ${old_multidirs}; do
411             case "$x" in
412               power | */power | */power/* ) : ;;
413               *) multidirs="${multidirs} ${x}" ;;
414             esac
415           done
416         fi
417         if [ x$enable_powerpccpu = xno ]
418         then
419           old_multidirs="${multidirs}"
420           multidirs=""
421           for x in ${old_multidirs}; do
422             case "$x" in
423               *powerpc* ) : ;;
424               *) multidirs="${multidirs} ${x}" ;;
425             esac
426           done
427         fi
428         if [ x$enable_powerpcos = xno ]
429         then
430           old_multidirs="${multidirs}"
431           multidirs=""
432           for x in ${old_multidirs}; do
433             case "$x" in
434               *mcall-linux* | *mcall-solaris* ) : ;;
435               *) multidirs="${multidirs} ${x}" ;;
436             esac
437           done
438         fi
439         if [ x$enable_biendian = xno ]
440         then
441           old_multidirs="${multidirs}"
442           multidirs=""
443           for x in ${old_multidirs}; do
444             case "$x" in
445               *mlittle* | *mbig* ) : ;;
446               *) multidirs="${multidirs} ${x}" ;;
447             esac
448           done
449         fi
450         if [ x$enable_sysv = xno ]
451         then
452           old_multidirs="${multidirs}"
453           multidirs=""
454           for x in ${old_multidirs}; do
455             case "$x" in
456               *mcall-sysv* ) : ;;
457               *) multidirs="${multidirs} ${x}" ;;
458             esac
459           done
460         fi
461         if [ x$enable_aix = xno ]
462         then
463           old_multidirs="${multidirs}"
464           multidirs=""
465           for x in ${old_multidirs}; do
466             case "$x" in
467               *mcall-aix* ) : ;;
468               *) multidirs="${multidirs} ${x}" ;;
469             esac
470           done
471         fi
472         ;;
473 sparc*-*-*)
474         case " $multidirs " in
475         *" m64 "*)
476           # We will not be able to create libraries with -m64 if
477           # we cannot even link a trivial program.  It usually
478           # indicates the 64bit libraries are missing.
479           if echo 'main() {}' > conftest.c &&
480              ${CC-gcc} -m64 conftest.c -o conftest; then
481             :
482           else
483             echo Could not link program with -m64, disabling it.
484             old_multidirs="${multidirs}"
485             multidirs=""
486             for x in ${old_multidirs}; do
487               case "$x" in
488               *m64* ) : ;;
489               *) multidirs="${multidirs} ${x}" ;;
490               esac
491             done
492           fi
493           rm -f conftest.c conftest
494           ;;
495         esac
496         ;;
497 esac
498
499 # Remove extraneous blanks from multidirs.
500 # Tests like `if [ -n "$multidirs" ]' require it.
501 multidirs=`echo "$multidirs" | sed -e 's/^[ ][ ]*//' -e 's/[ ][ ]*$//' -e 's/[ ][ ]*/ /g'`
502
503 # Add code to library's top level makefile to handle building the multilib
504 # subdirs.
505
506 cat > Multi.tem <<\EOF
507
508 # FIXME: There should be an @-sign in front of the `if'.
509 # Leave out until this is tested a bit more.
510 multi-do:
511         if [ -z "$(MULTIDIRS)" ]; then \
512           true; \
513         else \
514           rootpre=`pwd`/; export rootpre; \
515           srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
516           lib=`echo $${rootpre} | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
517           compiler="$(CC)"; \
518           for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
519             dir=`echo $$i | sed -e 's/;.*$$//'`; \
520             if [ "$${dir}" = "." ]; then \
521               true; \
522             else \
523               if [ -d ../$${dir}/$${lib} ]; then \
524                 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
525                 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) \
526                                 CFLAGS="$(CFLAGS) $${flags}" \
527                                 CXXFLAGS="$(CXXFLAGS) $${flags}" \
528                                 LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
529                                 LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
530                                 LDFLAGS="$(LDFLAGS) $${flags}" \
531                                 $(DO)); then \
532                   true; \
533                 else \
534                   exit 1; \
535                 fi; \
536               else true; \
537               fi; \
538             fi; \
539           done; \
540         fi
541
542 # FIXME: There should be an @-sign in front of the `if'.
543 # Leave out until this is tested a bit more.
544 multi-clean:
545         if [ -z "$(MULTIDIRS)" ]; then \
546           true; \
547         else \
548           lib=`pwd | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
549           for dir in Makefile $(MULTIDIRS); do \
550             if [ -f ../$${dir}/$${lib}/Makefile ]; then \
551               if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
552               then true; \
553               else exit 1; \
554               fi; \
555             else true; \
556             fi; \
557           done; \
558         fi
559 EOF
560
561 cat ${Makefile} Multi.tem > Makefile.tem
562 rm -f ${Makefile} Multi.tem
563 mv Makefile.tem ${Makefile}
564
565 fi # ${ml_toplevel_p} = yes
566
567 if [ "${ml_verbose}" = --verbose ]; then
568   echo "Adding multilib support to Makefile in ${ml_realsrcdir}"
569   if [ "${ml_toplevel_p}" = yes ]; then
570     echo "multidirs=${multidirs}"
571   fi
572   echo "with_multisubdir=${with_multisubdir}"
573 fi
574
575 if [ "${srcdir}" = "." ]; then
576   if [ "${with_target_subdir}" != "." ]; then
577     ml_srcdotdot="../"
578   else
579     ml_srcdotdot=""
580   fi
581 else
582   ml_srcdotdot=""
583 fi
584
585 if [ -z "${with_multisubdir}" ]; then
586   ml_subdir=
587   ml_builddotdot=
588   : # ml_srcdotdot= # already set
589 else
590   ml_subdir="/${with_multisubdir}"
591   # The '[^/][^/]*' appears that way to work around a SunOS sed bug.
592   ml_builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`/
593   if [ "$srcdir" = "." ]; then
594     ml_srcdotdot=${ml_srcdotdot}${ml_builddotdot}
595   else
596     : # ml_srcdotdot= # already set
597   fi
598 fi
599
600 if [ "${ml_toplevel_p}" = yes ]; then
601   ml_do='$(MAKE)'
602   ml_clean='$(MAKE)'
603 else
604   ml_do=true
605   ml_clean=true
606 fi
607
608 # TOP is used by newlib and should not be used elsewhere for this purpose.
609 # MULTI{SRC,BUILD}TOP are the proper ones to use.  MULTISRCTOP is empty
610 # when srcdir != builddir.  MULTIBUILDTOP is always some number of ../'s.
611 # FIXME: newlib needs to be updated to use MULTI{SRC,BUILD}TOP so we can
612 # delete TOP.  Newlib may wish to continue to use TOP for its own purposes
613 # of course.
614 # MULTIDIRS is non-empty for the cpu top level Makefile (eg: newlib/Makefile)
615 # and lists the subdirectories to recurse into.
616 # MULTISUBDIR is non-empty in each cpu subdirectory's Makefile
617 # (eg: newlib/h8300h/Makefile) and is the installed subdirectory name with
618 # a leading '/'.
619 # MULTIDO is used for targets like all, install, and check where
620 # $(FLAGS_TO_PASS) augmented with the subdir's compiler option is needed.
621 # MULTICLEAN is used for the *clean targets.
622 #
623 # ??? It is possible to merge MULTIDO and MULTICLEAN into one.  They are
624 # currently kept separate because we don't want the *clean targets to require
625 # the existence of the compiler (which MULTIDO currently requires) and
626 # therefore we'd have to record the directory options as well as names
627 # (currently we just record the names and use --print-multi-lib to get the
628 # options).
629
630 sed -e "s:^TOP[         ]*=[    ]*\([./]*\)[    ]*$:TOP = ${ml_builddotdot}\1:" \
631     -e "s:^MULTISRCTOP[         ]*=.*$:MULTISRCTOP = ${ml_srcdotdot}:" \
632     -e "s:^MULTIBUILDTOP[       ]*=.*$:MULTIBUILDTOP = ${ml_builddotdot}:" \
633     -e "s:^MULTIDIRS[   ]*=.*$:MULTIDIRS = ${multidirs}:" \
634     -e "s:^MULTISUBDIR[         ]*=.*$:MULTISUBDIR = ${ml_subdir}:" \
635     -e "s:^MULTIDO[     ]*=.*$:MULTIDO = $ml_do:" \
636     -e "s:^MULTICLEAN[  ]*=.*$:MULTICLEAN = $ml_clean:" \
637         ${Makefile} > Makefile.tem
638 rm -f ${Makefile}
639 mv Makefile.tem ${Makefile}
640
641 # If this is the library's top level, configure each multilib subdir.
642 # This is done at the end because this is the loop that runs configure
643 # in each multilib subdir and it seemed reasonable to finish updating the
644 # Makefile before going on to configure the subdirs.
645
646 if [ "${ml_toplevel_p}" = yes ]; then
647
648 # We must freshly configure each subdirectory.  This bit of code is
649 # actually partially stolen from the main configure script.  FIXME.
650
651 if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
652
653   if [ "${ml_verbose}" = --verbose ]; then
654     echo "Running configure in multilib subdirs ${multidirs}"
655     echo "pwd: `pwd`"
656   fi
657
658   ml_origdir=`pwd`
659   ml_libdir=`echo $ml_origdir | sed -e 's,^.*/,,'`
660   # cd to top-level-build-dir/${with_target_subdir}
661   cd ..
662
663   for ml_dir in ${multidirs}; do
664
665     if [ "${ml_verbose}" = --verbose ]; then
666       echo "Running configure in multilib subdir ${ml_dir}"
667       echo "pwd: `pwd`"
668     fi
669
670     if [ -d ${ml_dir} ]; then true; else mkdir ${ml_dir}; fi
671     if [ -d ${ml_dir}/${ml_libdir} ]; then true; else mkdir ${ml_dir}/${ml_libdir}; fi
672
673     # Eg: if ${ml_dir} = m68000/m68881, dotdot = ../../
674     dotdot=../`echo ${ml_dir} | sed -e 's|[^/]||g' -e 's|/|../|g'`
675
676     case ${srcdir} in
677     ".")
678       echo Building symlink tree in `pwd`/${ml_dir}/${ml_libdir}
679       if [ "${with_target_subdir}" != "." ]; then
680         ml_unsubdir="../"
681       else
682         ml_unsubdir=""
683       fi
684       (cd ${ml_dir}/${ml_libdir};
685        ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "")
686       if [ -f ${ml_dir}/${ml_libdir}/Makefile ]; then
687         if [ x"${MAKE}" = x ]; then
688           (cd ${ml_dir}/${ml_libdir}; make distclean)
689         else
690           (cd ${ml_dir}/${ml_libdir}; ${MAKE} distclean)
691         fi
692       fi
693       ml_newsrcdir="."
694       ml_srcdiroption=
695       multisrctop=${dotdot}
696       ;;
697     *)
698       case "${srcdir}" in
699       /*) # absolute path
700         ml_newsrcdir=${srcdir}
701         ;;
702       *) # otherwise relative
703         ml_newsrcdir=${dotdot}${srcdir}
704         ;;
705       esac
706       ml_srcdiroption="-srcdir=${ml_newsrcdir}"
707       multisrctop=
708       ;;
709     esac
710
711     case "${progname}" in
712     /*)     ml_recprog=${progname} ;;
713     *)      ml_recprog=${dotdot}${progname} ;;
714     esac
715
716     # FIXME: POPDIR=${PWD=`pwd`} doesn't work here.
717     ML_POPDIR=`pwd`
718     cd ${ml_dir}/${ml_libdir}
719
720     if [ -f ${ml_newsrcdir}/configure ]; then
721       ml_recprog=${ml_newsrcdir}/configure
722     fi
723
724     # find compiler flag corresponding to ${ml_dir}
725     for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do 
726       dir=`echo $i | sed -e 's/;.*$//'`
727       if [ "${dir}" = "${ml_dir}" ]; then
728         flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`
729         break
730       fi
731     done
732     ml_config_env='CC="${CC} $flags"'
733
734     if eval ${ml_config_env} ${ml_config_shell} ${ml_recprog} \
735         --with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \
736         ${ml_arguments} ${ml_srcdiroption} ; then
737       true
738     else
739       exit 1
740     fi
741
742     cd ${ML_POPDIR}
743
744   done
745
746   cd ${ml_origdir}
747 fi
748
749 fi # ${ml_toplevel_p} = yes
750 fi # ${enable_multilib} = yes