1 # Configure fragment invoked in the post-target section for subdirs
2 # wanting multilib support.
4 # It is advisable to support a few --enable/--disable options to let the
5 # user select which libraries s/he really wants.
7 # Subdirectories wishing to use multilib should put the following lines
8 # in the "post-target" section of configure.in.
10 # if [ "${srcdir}" = "." ] ; then
11 # if [ "${with_target_subdir}" != "." ] ; then
12 # . ${with_multisrctop}../../config-ml.in
14 # . ${with_multisrctop}../config-ml.in
17 # . ${srcdir}/../config-ml.in
20 # See librx/configure.in in the libg++ distribution for an example of how
21 # to handle autoconf'd libraries.
23 # Things are complicated because 6 separate cases must be handled:
24 # 2 (native, cross) x 3 (absolute-path, relative-not-dot, dot) = 6.
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
30 # The build tree is layed out as
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=.
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.
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).
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).
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.
72 # We have to handle being invoked by both Cygnus configure and Autoconf.
74 # Cygnus configure incoming variables:
75 # srcdir, subdir, target, arguments
77 # Autoconf incoming variables:
78 # srcdir, target, ac_configure_args
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
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}
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}
96 ml_realsrcdir=${srcdir}
100 # Scan all the arguments and set all the ones we need.
102 for option in ${ml_arguments}
106 -*) option=-$option ;;
111 optarg=`echo $option | sed -e 's/^[^=]*=//'`
117 enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
125 enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
126 eval $enableopt="$optarg"
128 --norecursion | --no*)
131 --verbose | --v | --verb*)
139 withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
140 eval $withopt="$optarg"
143 withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
149 # Only do this if --enable-multilib.
150 if [ "${enable_multilib}" = yes ]; then
152 # Compute whether this is the library's top level directory
153 # (ie: not a multilib subdirectory, and not a subdirectory like libg++/src).
154 # ${with_multisubdir} tells us we're in the right branch, but we could be
155 # in a subdir of that.
156 # ??? The previous version could void this test by separating the process into
157 # two files: one that only the library's toplevel configure.in ran (to
158 # configure the multilib subdirs), and another that all configure.in's ran to
159 # update the Makefile. It seemed reasonable to collapse all multilib support
160 # into one file, but it does leave us with having to perform this test.
162 if [ -z "${with_multisubdir}" ]; then
163 if [ "${srcdir}" = "." ]; then
164 # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
165 # ${with_target_subdir} = "." for native, otherwise target alias.
166 if [ "${with_target_subdir}" = "." ]; then
167 if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
171 if [ -f ${ml_realsrcdir}/../../config-ml.in ]; then
176 # Use ${ml_realsrcdir} instead of ${srcdir} here to account for ${subdir}.
177 if [ -f ${ml_realsrcdir}/../config-ml.in ]; then
183 # If this is the library's top level directory, set multidirs to the
184 # multilib subdirs to support. This lives at the top because we need
185 # `multidirs' set right away.
187 if [ "${ml_toplevel_p}" = yes ]; then
190 for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
191 dir=`echo $i | sed -e 's/;.*$//'`
192 if [ "${dir}" = "." ]; then
195 if [ -z "${multidirs}" ]; then
198 multidirs="${multidirs} ${dir}"
206 if [ x$enable_biendian != xyes ]
208 old_multidirs=${multidirs}
210 for x in ${old_multidirs}; do
213 *) if [ x"$multidirs" = x ]; then
216 multidirs="${multidirs} ${x}";
225 if [ x$enable_single_float = xno ]
227 old_multidirs="${multidirs}"
229 for x in ${old_multidirs}; do
232 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
236 if [ x$enable_biendian = xno ]
238 old_multidirs="${multidirs}"
240 for x in ${old_multidirs}; do
244 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
248 if [ x$enable_softfloat = xno ]
250 old_multidirs="${multidirs}"
252 for x in ${old_multidirs}; do
255 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
260 powerpc*-*-* | rs6000*-*-*)
261 if [ x$enable_softfloat = xno ]
263 old_multidirs="${multidirs}"
265 for x in ${old_multidirs}; do
268 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
272 if [ x$enable_commoncpu = xno ]
274 old_multidirs="${multidirs}"
276 for x in ${old_multidirs}; do
279 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
283 if [ x$enable_powercpu = xno ]
285 old_multidirs="${multidirs}"
287 for x in ${old_multidirs}; do
289 power | */power | */power/* ) : ;;
290 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
294 if [ x$enable_power2cpu = xno ]
296 old_multidirs="${multidirs}"
298 for x in ${old_multidirs}; do
301 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
305 if [ x$enable_powerpccpu = xno ]
307 old_multidirs="${multidirs}"
309 for x in ${old_multidirs}; do
312 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
316 if [ x$enable_601cpu = xno ]
318 old_multidirs="${multidirs}"
320 for x in ${old_multidirs}; do
323 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
327 if [ x$enable_biendian = xno ]
329 old_multidirs="${multidirs}"
331 for x in ${old_multidirs}; do
334 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
338 if [ x$enable_relocatable = xno ]
340 old_multidirs="${multidirs}"
342 for x in ${old_multidirs}; do
345 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
349 if [ x$enable_sysv = xno ]
351 old_multidirs="${multidirs}"
353 for x in ${old_multidirs}; do
356 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
360 if [ x$enable_aix = xno ]
362 old_multidirs="${multidirs}"
364 for x in ${old_multidirs}; do
367 *) if [ x"$multidirs" = x ]; then multidirs="$x"; else multidirs="${multidirs} ${x}"; fi ;;
374 # Add code to library's top level makefile to handle building the multilib
377 cat > Multi.tem <<\EOF
379 # FIXME: There should be an @-sign in front of the `if'.
380 # Leave out until this is tested a bit more.
382 if [ -z "$(MULTIDIRS)" ]; then \
385 rootpre=`pwd`/; export rootpre; \
386 srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
387 lib=`echo $${rootpre} | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
389 for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
390 dir=`echo $$i | sed -e 's/;.*$$//'`; \
391 if [ "$${dir}" = "." ]; then \
394 if [ -d ../$${dir}/$${lib} ]; then \
395 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
396 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) \
397 CFLAGS="$(CFLAGS) $${flags}" \
398 CXXFLAGS="$(CXXFLAGS) $${flags}" \
399 LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
400 LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
412 # FIXME: There should be an @-sign in front of the `if'.
413 # Leave out until this is tested a bit more.
415 if [ -z "$(MULTIDIRS)" ]; then \
418 lib=`pwd | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
419 for dir in Makefile $(MULTIDIRS); do \
420 if [ -f ../$${dir}/$${lib}/Makefile ]; then \
421 if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
431 cat ${Makefile} Multi.tem > Makefile.tem
432 rm -f ${Makefile} Multi.tem
433 mv Makefile.tem ${Makefile}
435 fi # ${ml_toplevel_p} = yes
437 if [ "${ml_verbose}" = --verbose ]; then
438 echo "Adding multilib support to Makefile in ${ml_realsrcdir}"
439 if [ "${ml_toplevel_p}" = yes ]; then
440 echo "multidirs=${multidirs}"
442 echo "with_multisubdir=${with_multisubdir}"
445 if [ "${srcdir}" = "." ]; then
446 if [ "${with_target_subdir}" != "." ]; then
455 if [ -z "${with_multisubdir}" ]; then
458 : # ml_srcdotdot= # already set
460 ml_subdir="/${with_multisubdir}"
461 # The '[^/][^/]*' appears that way to work around a SunOS sed bug.
462 ml_builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`/
463 if [ "$srcdir" = "." ]; then
464 ml_srcdotdot=${ml_srcdotdot}${ml_builddotdot}
466 : # ml_srcdotdot= # already set
470 if [ "${ml_toplevel_p}" = yes ]; then
478 # TOP is used by newlib and should not be used elsewhere for this purpose.
479 # MULTI{SRC,BUILD}TOP are the proper ones to use. MULTISRCTOP is empty
480 # when srcdir != builddir. MULTIBUILDTOP is always some number of ../'s.
481 # FIXME: newlib needs to be updated to use MULTI{SRC,BUILD}TOP so we can
482 # delete TOP. Newlib may wish to continue to use TOP for its own purposes
484 # MULTIDIRS is non-empty for the cpu top level Makefile (eg: newlib/Makefile)
485 # and lists the subdirectories to recurse into.
486 # MULTISUBDIR is non-empty in each cpu subdirectory's Makefile
487 # (eg: newlib/h8300h/Makefile) and is the installed subdirectory name with
489 # MULTIDO is used for targets like all, install, and check where
490 # $(FLAGS_TO_PASS) augmented with the subdir's compiler option is needed.
491 # MULTICLEAN is used for the *clean targets.
493 # ??? It is possible to merge MULTIDO and MULTICLEAN into one. They are
494 # currently kept separate because we don't want the *clean targets to require
495 # the existence of the compiler (which MULTIDO currently requires) and
496 # therefore we'd have to record the directory options as well as names
497 # (currently we just record the names and use --print-multi-lib to get the
500 sed -e "s:^TOP[ ]*=[ ]*\([./]*\)[ ]*$:TOP = ${ml_builddotdot}\1:" \
501 -e "s:^MULTISRCTOP[ ]*=.*$:MULTISRCTOP = ${ml_srcdotdot}:" \
502 -e "s:^MULTIBUILDTOP[ ]*=.*$:MULTIBUILDTOP = ${ml_builddotdot}:" \
503 -e "s:^MULTIDIRS[ ]*=.*$:MULTIDIRS = ${multidirs}:" \
504 -e "s:^MULTISUBDIR[ ]*=.*$:MULTISUBDIR = ${ml_subdir}:" \
505 -e "s:^MULTIDO[ ]*=.*$:MULTIDO = $ml_do:" \
506 -e "s:^MULTICLEAN[ ]*=.*$:MULTICLEAN = $ml_clean:" \
507 ${Makefile} > Makefile.tem
509 mv Makefile.tem ${Makefile}
511 # If this is the library's top level, configure each multilib subdir.
512 # This is done at the end because this is the loop that runs configure
513 # in each multilib subdir and it seemed reasonable to finish updating the
514 # Makefile before going on to configure the subdirs.
516 if [ "${ml_toplevel_p}" = yes ]; then
518 # We must freshly configure each subdirectory. This bit of code is
519 # actually partially stolen from the main configure script. FIXME.
521 if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
523 if [ "${ml_verbose}" = --verbose ]; then
524 echo "Running configure in multilib subdirs ${multidirs}"
529 ml_libdir=`echo $ml_origdir | sed -e 's,^.*/,,'`
530 # cd to top-level-build-dir/${with_target_subdir}
533 for ml_dir in ${multidirs}; do
535 if [ "${ml_verbose}" = --verbose ]; then
536 echo "Running configure in multilib subdir ${ml_dir}"
540 if [ -d ${ml_dir} ]; then true; else mkdir ${ml_dir}; fi
541 if [ -d ${ml_dir}/${ml_libdir} ]; then true; else mkdir ${ml_dir}/${ml_libdir}; fi
543 # Eg: if ${ml_dir} = m68000/m68881, dotdot = ../../
544 dotdot=../`echo ${ml_dir} | sed -e 's|[^/]||g' -e 's|/|../|g'`
548 echo Building symlink tree in `pwd`/${ml_dir}/${ml_libdir}
549 if [ "${with_target_subdir}" != "." ]; then
554 (cd ${ml_dir}/${ml_libdir};
555 ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "")
558 multisrctop=${dotdot}
563 ml_newsrcdir=${srcdir}
565 *) # otherwise relative
566 ml_newsrcdir=${dotdot}${srcdir}
569 ml_srcdiroption="-srcdir=${ml_newsrcdir}"
574 case "${progname}" in
575 /*) ml_recprog=${progname} ;;
576 *) ml_recprog=${dotdot}${progname} ;;
579 # FIXME: POPDIR=${PWD=`pwd`} doesn't work here.
581 cd ${ml_dir}/${ml_libdir}
583 if [ -f ${ml_newsrcdir}/configure ]; then
584 ml_recprog=${ml_newsrcdir}/configure
586 if eval ${ml_config_shell} ${ml_recprog} \
587 --with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \
588 ${ml_arguments} ${ml_srcdiroption} ; then
601 fi # ${ml_toplevel_p} = yes
602 fi # ${enable_multilib} = yes