1 # Configure fragment invoked in the post-target section for subdirs
2 # wanting multilib support.
4 # Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 # 2005, 2006, 2007, 2008, 2010, 2011, 2014 Free Software Foundation, Inc.
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.
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.
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., 51 Franklin Street, Fifth Floor,
20 # Boston, MA 02110-1301, USA.
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.
27 # Please report bugs to <gcc-bugs@gnu.org>
28 # and send patches to <gcc-patches@gnu.org>.
30 # It is advisable to support a few --enable/--disable options to let the
31 # user select which libraries s/he really wants.
33 # Subdirectories wishing to use multilib should put the following lines
34 # in the "post-target" section of configure.ac.
36 # if [ "${srcdir}" = "." ] ; then
37 # if [ "${with_target_subdir}" != "." ] ; then
38 # . ${with_multisrctop}../../config-ml.in
40 # . ${with_multisrctop}../config-ml.in
43 # . ${srcdir}/../config-ml.in
47 # Things are complicated because 6 separate cases must be handled:
48 # 2 (native, cross) x 3 (absolute-path, relative-not-dot, dot) = 6.
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
54 # The build tree is layed out as
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=.
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.
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).
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).
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.
93 # Autoconf incoming variables:
94 # srcdir, host, ac_configure_args
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
99 # Note that `host' in this case is GCC's `target'. Target libraries are
100 # configured for a particular host.
102 Makefile=${ac_file-Makefile}
103 ml_config_shell=${CONFIG_SHELL-/bin/sh}
104 ml_realsrcdir=${srcdir}
106 # Scan all the arguments and set all the ones we need.
113 # Strip single quotes surrounding individual options, that is, remove one
114 # level of shell quoting for these.
116 \'*\') eval option=$option ;;
121 -*) option=-$option ;;
126 optarg=`echo $option | sed -e 's/^[^=]*=//'`
132 enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
140 enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
141 # enable_shared and enable_static are handled by configure.
142 # Don't undo its work.
144 enable_shared | enable_static) ;;
145 *) eval $enableopt='$optarg' ;;
148 --norecursion | --no-recursion)
151 --silent | --sil* | --quiet | --q*)
154 --verbose | --v | --verb*)
162 withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
163 eval $withopt='$optarg'
166 withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
172 # Use eval to properly handle configure arguments such as
173 # --enable-foo='--enable-a=1 --enable-b=2 --enable-c=3'.
174 eval scan_arguments "${ac_configure_args}"
177 # Only do this if --enable-multilib.
178 if [ "${enable_multilib}" = yes ]; then
180 # Compute whether this is the library's top level directory
181 # (ie: not a multilib subdirectory, and not a subdirectory like newlib/src).
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
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
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.
190 if [ -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
199 if [ -f ${ml_realsrcdir}/../../config-ml.in ]; then
204 # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
205 if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
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.
215 if [ "${ml_toplevel_p}" = yes ]; then
218 for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
219 dir=`echo $i | sed -e 's/;.*$//'`
220 if [ "${dir}" = "." ]; then
223 if [ -z "${multidirs}" ]; then
226 multidirs="${multidirs} ${dir}"
231 # Target libraries are configured for the host they run on, so we check
232 # $host here, not $target.
236 if [ x"$enable_fpu" = xno ]
238 old_multidirs=${multidirs}
240 for x in ${old_multidirs}; do
243 *) multidirs="${multidirs} ${x}" ;;
247 if [ x"$enable_26bit" = xno ]
249 old_multidirs=${multidirs}
251 for x in ${old_multidirs}; do
254 *) multidirs="${multidirs} ${x}" ;;
258 if [ x"$enable_underscore" = xno ]
260 old_multidirs=${multidirs}
262 for x in ${old_multidirs}; do
265 *) multidirs="${multidirs} ${x}" ;;
269 if [ x"$enable_interwork" = xno ]
271 old_multidirs=${multidirs}
273 for x in ${old_multidirs}; do
276 *) multidirs="${multidirs} ${x}" ;;
280 if [ x$enable_biendian = xno ]
282 old_multidirs="${multidirs}"
284 for x in ${old_multidirs}; do
288 *) multidirs="${multidirs} ${x}" ;;
292 if [ x"$enable_nofmult" = xno ]
294 old_multidirs="${multidirs}"
296 for x in ${old_multidirs}; do
299 *) multidirs="${multidirs} ${x}" ;;
305 if [ x$enable_softfloat = xno ]
307 old_multidirs="${multidirs}"
309 for x in ${old_multidirs}; do
312 *) multidirs="${multidirs} ${x}" ;;
316 if [ x$enable_m68881 = xno ]
318 old_multidirs="${multidirs}"
320 for x in ${old_multidirs}; do
323 *) multidirs="${multidirs} ${x}" ;;
327 if [ x$enable_m68000 = xno ]
329 old_multidirs="${multidirs}"
331 for x in ${old_multidirs}; do
334 *) multidirs="${multidirs} ${x}" ;;
338 if [ x$enable_m68020 = xno ]
340 old_multidirs="${multidirs}"
342 for x in ${old_multidirs}; do
345 *) multidirs="${multidirs} ${x}" ;;
351 if [ x$enable_single_float = xno ]
353 old_multidirs="${multidirs}"
355 for x in ${old_multidirs}; do
358 *) multidirs="${multidirs} ${x}" ;;
362 if [ x$enable_biendian = xno ]
364 old_multidirs="${multidirs}"
366 for x in ${old_multidirs}; do
370 *) multidirs="${multidirs} ${x}" ;;
374 if [ x$enable_softfloat = xno ]
376 old_multidirs="${multidirs}"
378 for x in ${old_multidirs}; do
381 *) multidirs="${multidirs} ${x}" ;;
387 if [ x$enable_no_exceptions = xno ]
389 old_multidirs="${multidirs}"
391 for x in ${old_multidirs}; do
393 *no-exceptions* ) : ;;
394 *) multidirs="${multidirs} ${x}" ;;
399 powerpc*-*-* | rs6000*-*-*)
400 if [ x$enable_aix64 = xno ]
402 old_multidirs="${multidirs}"
404 for x in ${old_multidirs}; do
407 *) multidirs="${multidirs} ${x}" ;;
411 if [ x$enable_pthread = xno ]
413 old_multidirs="${multidirs}"
415 for x in ${old_multidirs}; do
418 *) multidirs="${multidirs} ${x}" ;;
422 if [ x$enable_softfloat = xno ]
424 old_multidirs="${multidirs}"
426 for x in ${old_multidirs}; do
429 *) multidirs="${multidirs} ${x}" ;;
433 if [ x$enable_powercpu = xno ]
435 old_multidirs="${multidirs}"
437 for x in ${old_multidirs}; do
439 power | */power | */power/* ) : ;;
440 *) multidirs="${multidirs} ${x}" ;;
444 if [ x$enable_powerpccpu = xno ]
446 old_multidirs="${multidirs}"
448 for x in ${old_multidirs}; do
451 *) multidirs="${multidirs} ${x}" ;;
455 if [ x$enable_powerpcos = xno ]
457 old_multidirs="${multidirs}"
459 for x in ${old_multidirs}; do
461 *mcall-linux* | *mcall-solaris* ) : ;;
462 *) multidirs="${multidirs} ${x}" ;;
466 if [ x$enable_biendian = xno ]
468 old_multidirs="${multidirs}"
470 for x in ${old_multidirs}; do
472 *mlittle* | *mbig* ) : ;;
473 *) multidirs="${multidirs} ${x}" ;;
477 if [ x$enable_sysv = xno ]
479 old_multidirs="${multidirs}"
481 for x in ${old_multidirs}; do
484 *) multidirs="${multidirs} ${x}" ;;
491 # Remove extraneous blanks from multidirs.
492 # Tests like `if [ -n "$multidirs" ]' require it.
493 multidirs=`echo "$multidirs" | sed -e 's/^[ ][ ]*//' -e 's/[ ][ ]*$//' -e 's/[ ][ ]*/ /g'`
495 # Add code to library's top level makefile to handle building the multilib
498 cat > Multi.tem <<\EOF
500 PWD_COMMAND=$${PWDCMD-pwd}
503 @if [ -z "$(MULTIDIRS)" ]; then \
506 rootpre=`${PWD_COMMAND}`/; export rootpre; \
507 srcrootpre=`cd $(srcdir); ${PWD_COMMAND}`/; export srcrootpre; \
508 lib=`echo "$${rootpre}" | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
510 for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
511 dir=`echo $$i | sed -e 's/;.*$$//'`; \
512 if [ "$${dir}" = "." ]; then \
515 if [ -d ../$${dir}/$${lib} ]; then \
516 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
517 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) \
518 CFLAGS="$(CFLAGS) $${flags}" \
519 CCASFLAGS="$(CCASFLAGS) $${flags}" \
520 FCFLAGS="$(FCFLAGS) $${flags}" \
521 FFLAGS="$(FFLAGS) $${flags}" \
522 ADAFLAGS="$(ADAFLAGS) $${flags}" \
524 exec_prefix="$(exec_prefix)" \
525 GOCFLAGS="$(GOCFLAGS) $${flags}" \
526 GDCFLAGS="$(GDCFLAGS) $${flags}" \
527 CXXFLAGS="$(CXXFLAGS) $${flags}" \
528 LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
529 LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
530 LDFLAGS="$(LDFLAGS) $${flags}" \
531 MULTIFLAGS="$${flags}" \
532 DESTDIR="$(DESTDIR)" \
533 INSTALL="$(INSTALL)" \
534 INSTALL_DATA="$(INSTALL_DATA)" \
535 INSTALL_PROGRAM="$(INSTALL_PROGRAM)" \
536 INSTALL_SCRIPT="$(INSTALL_SCRIPT)" \
549 @if [ -z "$(MULTIDIRS)" ]; then \
552 lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
553 for dir in : $(MULTIDIRS); do \
554 test $$dir != : || continue; \
556 cat >>Multi.tem <<EOF
557 if [ -f ../\$\${dir}/\$\${lib}/${Makefile} ]; then \\
559 cat >>Multi.tem <<\EOF
560 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
570 cat ${Makefile} Multi.tem > Makefile.tem
571 rm -f ${Makefile} Multi.tem
572 mv Makefile.tem ${Makefile}
574 fi # ${ml_toplevel_p} = yes
576 if [ "${ml_verbose}" = --verbose ]; then
577 echo "Adding multilib support to ${Makefile} in ${ml_realsrcdir}"
578 if [ "${ml_toplevel_p}" = yes ]; then
579 echo "multidirs=${multidirs}"
581 echo "with_multisubdir=${with_multisubdir}"
584 if [ "${srcdir}" = "." ]; then
585 if [ "${with_target_subdir}" != "." ]; then
594 if [ -z "${with_multisubdir}" ]; then
597 : # ml_srcdotdot= # already set
599 ml_subdir="/${with_multisubdir}"
600 # The '[^/][^/]*' appears that way to work around a SunOS sed bug.
601 ml_builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`/
602 if [ "$srcdir" = "." ]; then
603 ml_srcdotdot=${ml_srcdotdot}${ml_builddotdot}
605 : # ml_srcdotdot= # already set
609 if [ "${ml_toplevel_p}" = yes ]; then
617 # TOP is used by newlib and should not be used elsewhere for this purpose.
618 # MULTI{SRC,BUILD}TOP are the proper ones to use. MULTISRCTOP is empty
619 # when srcdir != builddir. MULTIBUILDTOP is always some number of ../'s.
620 # FIXME: newlib needs to be updated to use MULTI{SRC,BUILD}TOP so we can
621 # delete TOP. Newlib may wish to continue to use TOP for its own purposes
623 # MULTIDIRS is non-empty for the cpu top level Makefile (eg: newlib/Makefile)
624 # and lists the subdirectories to recurse into.
625 # MULTISUBDIR is non-empty in each cpu subdirectory's Makefile
626 # (eg: newlib/h8300h/Makefile) and is the installed subdirectory name with
628 # MULTIDO is used for targets like all, install, and check where
629 # $(FLAGS_TO_PASS) augmented with the subdir's compiler option is needed.
630 # MULTICLEAN is used for the *clean targets.
632 # ??? It is possible to merge MULTIDO and MULTICLEAN into one. They are
633 # currently kept separate because we don't want the *clean targets to require
634 # the existence of the compiler (which MULTIDO currently requires) and
635 # therefore we'd have to record the directory options as well as names
636 # (currently we just record the names and use --print-multi-lib to get the
639 sed -e "s:^TOP[ ]*=[ ]*\([./]*\)[ ]*$:TOP = ${ml_builddotdot}\1:" \
640 -e "s:^MULTISRCTOP[ ]*=.*$:MULTISRCTOP = ${ml_srcdotdot}:" \
641 -e "s:^MULTIBUILDTOP[ ]*=.*$:MULTIBUILDTOP = ${ml_builddotdot}:" \
642 -e "s:^MULTIDIRS[ ]*=.*$:MULTIDIRS = ${multidirs}:" \
643 -e "s:^MULTISUBDIR[ ]*=.*$:MULTISUBDIR = ${ml_subdir}:" \
644 -e "s:^MULTIDO[ ]*=.*$:MULTIDO = $ml_do:" \
645 -e "s:^MULTICLEAN[ ]*=.*$:MULTICLEAN = $ml_clean:" \
646 ${Makefile} > Makefile.tem
648 mv Makefile.tem ${Makefile}
650 # If this is the library's top level, configure each multilib subdir.
651 # This is done at the end because this is the loop that runs configure
652 # in each multilib subdir and it seemed reasonable to finish updating the
653 # Makefile before going on to configure the subdirs.
655 if [ "${ml_toplevel_p}" = yes ]; then
657 # We must freshly configure each subdirectory. This bit of code is
658 # actually partially stolen from the main configure script. FIXME.
660 if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
662 if [ "${ml_verbose}" = --verbose ]; then
663 echo "Running configure in multilib subdirs ${multidirs}"
664 echo "pwd: `${PWDCMD-pwd}`"
667 ml_origdir=`${PWDCMD-pwd}`
668 ml_libdir=`echo "$ml_origdir" | sed -e 's,^.*/,,'`
669 # cd to top-level-build-dir/${with_target_subdir}
672 for ml_dir in ${multidirs}; do
674 if [ "${ml_verbose}" = --verbose ]; then
675 echo "Running configure in multilib subdir ${ml_dir}"
676 echo "pwd: `${PWDCMD-pwd}`"
679 if [ -d ${ml_dir} ]; then true; else
680 # ``mkdir -p ${ml_dir}'' See also mkinstalldirs.
682 for d in `echo ":${ml_dir}" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`; do
683 pathcomp="$pathcomp$d"
685 -* ) pathcomp=./$pathcomp ;;
687 if test ! -d "$pathcomp"; then
688 echo "mkdir $pathcomp" 1>&2
689 mkdir "$pathcomp" > /dev/null 2>&1 || lasterr=$?
691 if test ! -d "$pathcomp"; then
694 pathcomp="$pathcomp/"
697 if [ -d ${ml_dir}/${ml_libdir} ]; then true; else mkdir ${ml_dir}/${ml_libdir}; fi
699 # Eg: if ${ml_dir} = m68000/m68881, dotdot = ../../
700 dotdot=../`echo ${ml_dir} | sed -e 's|[^/]||g' -e 's|/|../|g'`
704 echo "Building symlink tree in `${PWDCMD-pwd}`/${ml_dir}/${ml_libdir}"
705 if [ "${with_target_subdir}" != "." ]; then
710 (cd ${ml_dir}/${ml_libdir};
711 ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "")
712 if [ -f ${ml_dir}/${ml_libdir}/${Makefile} ]; then
713 if [ x"${MAKE}" = x ]; then
714 (cd ${ml_dir}/${ml_libdir}; make distclean)
716 (cd ${ml_dir}/${ml_libdir}; ${MAKE} distclean)
721 multisrctop=${dotdot}
725 /* | [A-Za-z]:[\\/]* ) # absolute path
726 ml_newsrcdir=${srcdir}
728 *) # otherwise relative
729 ml_newsrcdir=${dotdot}${srcdir}
732 ml_srcdiroption="-srcdir=${ml_newsrcdir}"
737 case "${progname}" in
738 /* | [A-Za-z]:[\\/]* ) ml_recprog=${progname} ;;
739 *) ml_recprog=${dotdot}${progname} ;;
742 # FIXME: POPDIR=${PWD=`pwd`} doesn't work here.
743 ML_POPDIR=`${PWDCMD-pwd}`
744 cd ${ml_dir}/${ml_libdir}
746 if [ -f ${ml_newsrcdir}/configure ]; then
747 ml_recprog="${ml_newsrcdir}/configure"
750 # find compiler flag corresponding to ${ml_dir}
751 for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
752 dir=`echo $i | sed -e 's/;.*$//'`
753 if [ "${dir}" = "${ml_dir}" ]; then
754 flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`
758 ml_config_env='CC="${CC_}$flags" CXX="${CXX_}$flags" F77="${F77_}$flags" GFORTRAN="${GFORTRAN_}$flags" GOC="${GOC_}$flags" GDC="${GDC_}$flags"'
760 if [ "${with_target_subdir}" = "." ]; then
764 GFORTRAN_=$GFORTRAN' '
768 # Create a regular expression that matches any string as long
770 popdir_rx=`echo "${ML_POPDIR}" | sed 's,.,.,g'`
774 -[BIL]"${ML_POPDIR}"/*)
775 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"`' ' ;;
777 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"`' ' ;;
779 CC_="${CC_}${arg} " ;;
784 for arg in ${CXX}; do
786 -[BIL]"${ML_POPDIR}"/*)
787 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"`' ' ;;
789 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"`' ' ;;
791 CXX_="${CXX_}${arg} " ;;
796 for arg in ${F77}; do
798 -[BIL]"${ML_POPDIR}"/*)
799 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"`' ' ;;
801 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"`' ' ;;
803 F77_="${F77_}${arg} " ;;
808 for arg in ${GFORTRAN}; do
810 -[BIL]"${ML_POPDIR}"/*)
811 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"`' ' ;;
813 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"`' ' ;;
815 GFORTRAN_="${GFORTRAN_}${arg} " ;;
820 for arg in ${GOC}; do
822 -[BIL]"${ML_POPDIR}"/*)
823 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"`' ' ;;
825 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"`' ' ;;
827 GOC_="${GOC_}${arg} " ;;
832 for arg in ${GDC}; do
834 -[BIL]"${ML_POPDIR}"/*)
835 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"`' ' ;;
837 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"`' ' ;;
839 GDC_="${GDC_}${arg} " ;;
843 if test "x${LD_LIBRARY_PATH+set}" = xset; then
845 for arg in `echo "$LD_LIBRARY_PATH" | tr ':' ' '`; do
848 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"`
851 if test "x$LD_LIBRARY_PATH_" != x; then
852 LD_LIBRARY_PATH_=$LD_LIBRARY_PATH_:$arg
854 LD_LIBRARY_PATH_=$arg
857 ml_config_env="$ml_config_env LD_LIBRARY_PATH=$LD_LIBRARY_PATH_"
860 if test "x${SHLIB_PATH+set}" = xset; then
862 for arg in `echo "$SHLIB_PATH" | tr ':' ' '`; do
865 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"`
868 if test "x$SHLIB_PATH_" != x; then
869 SHLIB_PATH_=$SHLIB_PATH_:$arg
874 ml_config_env="$ml_config_env SHLIB_PATH=$SHLIB_PATH_"
878 if eval ${ml_config_env} ${ml_config_shell} ${ml_recprog} \
879 --with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \
880 "${ac_configure_args}" ${ml_config_env} ${ml_srcdiroption} ; then
893 fi # ${ml_toplevel_p} = yes
894 fi # ${enable_multilib} = yes