dnl -*- shell-script -*- dnl dnl $HEADER$ dnl AC_DEFUN([LAM_MCA],[ # Find which modules should be built as run-time loadable modules # Acceptable combinations: # # --with-modules # --with-modules=[.+,]*MODULE_TYPE[.+,]* # --with-modules=[.+,]*MODULE_TYPE-MODULE_NAME[.+,]* # --without-modules # AC_MSG_CHECKING([which modules should be run-time loadable]) AC_ARG_WITH(modules, AC_HELP_STRING([--with-modules=LIST], [comma-separated list of types and/or type-module pairs of modules that will be built as run-time loadable modules (as opposed to statically linked in LAM/MPI (if supported on this platform). This directly implies "--enable-shared=LIST and --disable-static=LIST".])) if test "$with_modules" = "" -o "$with_modules" = "no"; then LOADABLE_MODULE_all=0 msg=none elif test "$with_modules" = "yes"; then LOADABLE_MODULE_all=1 msg=all else LOADABLE_MODULE_all=0 ifs_save="$IFS" IFS="${IFS}$PATH_SEPARATOR," msg= for module in $with_modules; do str="`echo LOADABLE_MODULE_$module=1 | sed s/-/_/g`" eval $str msg="$module $msg" done IFS="$ifs_save" fi AC_MSG_RESULT([$msg]) unset msg # First, build a list of the types of MCAs that we have. This is more # of a sanity check than anything else -- the names of the various # types are regulated by LAM. types="lam/oob lam/pcm lam/registry mpi/coll mpi/io mpi/one mpi/pml mpi/ptl mpi/topo" AC_MSG_CHECKING([for MCA types]) file=conftest_mca_list.$$ rm -f $file touch $file for type in $types; do type_dir="$srcdir/src/mca/$type" found=0 for module in $type_dir/*; do if test -d $module -a -x $module/configure -a ! -f $module/.lam_ignore; then found=1 fi done if test "$found" = "1"; then echo $type >> $file fi done # m4 weirdness: must also do the echo after the sort, or we get a # string with newlines in it found_types="`sort $file`" found_types="`echo $found_types`" rm -f $file AC_MSG_RESULT([$found_types]) # Now determine the modules in each of the types. This is a little # redundant and could be combined into the loop above, but we separate # it out for clarity. The extern statements and array of pointers to # the module global structs are written to a file for each type that # is #include'd in the flue file for each type. for type in $found_types; do all_modules= static_modules= dynamic_modules= static_ltlibs= # Separate into subtypes library="`echo $type | cut -d/ -f1`" type="`echo $type | cut -d/ -f2`" # Ensure that the directory where the #include file is to live # exists. Need to do this for VPATH builds, because the directory # may not exist yet. outdir=src/mca/$library/$type/base total_dir="." for dir_part in `IFS='/\\'; set X $outdir; shift; echo "$[@]"`; do total_dir=$total_dir/$dir_part test -d "$total_dir" || mkdir "$total_dir" || AC_MSG_ERROR([cannot create $total_dir]) done # Also ensure that the dynamic-mca base directory exists total_dir="." dyndir=src/mca/dynamic-$library/$type for dir_part in `IFS='/\\'; set X $dyndir; shift; echo "$[@]"`; do total_dir=$total_dir/$dir_part test -d "$total_dir" || mkdir "$total_dir" || AC_MSG_ERROR([cannot create $total_dir]) done # Remove any previous generated #include files outfile=$outdir/static-modules.h rm -f $outfile $outfile.struct $outfile.extern \ $file.all $file.static $file.dyanmic touch $outfile.struct $outfile.extern \ $file.all $file.static $file.dynamic # Manual conversion of $type to its generic name (e.g., crmpi->cr, # crlam->cr). # JMS Fix this case "$type" in crmpi) generic_type="cr" ;; crlam) generic_type="cr" ;; *) generic_type="$type" ;; esac # Go through all the module directories and find valid modules for module in $srcdir/src/mca/$library/$type/*; do FOUND=0 HAPPY=0 m="`basename $module`" if test -d $module -a -x $module/configure -a \ ! -f $module/.lam_ignore; then # We found one! FOUND=1 # Remove any possible sym link in the mca-dynamic tree rm -f src/mca/dyanmica-$library/$type/$m # If we're skipping MCA, look at the results from last # time cachefile="src/mca/$library/$type/$m/.lam_configure_results_cache" if test "$skipmca" = "1"; then AC_MSG_WARN([Llama-specific function to skip configuring MCA module!]) if test -f "$cachefile"; then HAPPY="`grep SUCCESS $cachefile | cut -d= -f2`" else AC_MSG_WARN([Cannot find result of previous configure of]) AC_MSG_WARN([module $library/$type/$m.]) AC_MSG_WARN([You must run configure without skipmca at least once.]) AC_MSG_ERROR([Cannot continue.]) fi else LAM_CONFIG_SUBDIR([src/mca/$library/$type/$m], [$lam_subdir_args], [HAPPY=1], [HAPPY=0]) rm -f "$cachefile" echo "SUCCESS=$HAPPY" > "$cachefile" fi fi # See if it dropped an output file for us to pick up some # shell variables in. infile="src/mca/$library/$type/$m/post_configure.sh" # Did we find a valid module, and did its configure run # successfully? if test "$HAPPY" = "1"; then # Add this subdir to the mast list of all MCA module subdirs echo $m >> $file.all # Is this module going to built staic or shared? str="SHARED_TYPE=\$LOADABLE_MODULE_$type" eval $str str="SHARED_GENERIC_TYPE=\$LOADABLE_MODULE_$generic_type" eval $str str="SHARED_MODULE=\$LOADABLE_MODULE_${type}_$m" eval $str # If we're doing skipmca, then look at the results from # last time shared_mode_override=static if test "$skipmca" = "1"; then shared_mode_override="`grep COMPILE_MODE $cachefile | cut -d= -f2`" fi # Setup for either shared or static if test "$shared_mode_override" = "dynamic" -o \ "$SHARED_TYPE" = "1" -o \ "$SHARED_GENERIC_TYPE" = "1" -o \ "$SHARED_MODULE" = "1" -o \ "$LOADABLE_MODULE_all" = "1"; then compile_mode="dynamic" echo $m >> $file.dynamic $LN_S "$LAM_TOP_BUILDDIR/src/mca/$library/$type/$m" \ "src/mca/dynamic-$library/$type/$m" else static_ltlibs="$m/libmca_${library}_${type}_${m}.la $static_ltlibs" echo "extern const mca_base_module_t mca_${type}_${m}_module;" >> $outfile.extern echo " &mca_${type}_${m}_module, " >> $outfile.struct compile_mode="static" echo $m >> $file.static fi if test "$skipmca" != "1"; then echo "COMPILE_MODE=$compile_mode" >> "$cachefile" fi # Output pretty results AC_MSG_NOTICE([+++ MCA module $type:$m compile: yes]) AC_MSG_NOTICE([+++ MCA module $type:$m mode: $compile_mode]) # If there's an output file, add the values to # scope_EXTRA_flags. if test -f $infile; then # First check for the ABORT tag line="`grep ABORT= $infile | cut -d= -f2-`" if test -n "$line" -a "$line" != "no"; then AC_MSG_WARN([MCA module configure script told me to abort]) AC_MSG_ERROR([cannot continue]) fi # Now check for the rest of the tags for scope in LIBLAM LIBMPI WRAPPER; do for flags in CFLAGS CXXFLAGS FFLAGS LDFLAGS LIBS; do var="${scope}_EXTRA_${flags}" line="`grep $var= $infile | cut -d= -f2-`" if test -n "$line"; then str="$var="'"$'"$var $line"'"' eval $str fi done done fi echo "" elif test "$FOUND" = "1"; then AC_MSG_NOTICE([--- MCA module $type:$m compile: no]) echo "" # If this module was requested as the default for this # type, then abort. str="foo="'"$'"with_$type"'"' eval $str str="bar="'"$'"with_$generic_type"'"' eval $str if test "$foo" = "$m" -o "$bar" = "$m"; then AC_MSG_WARN([MCA module "$m" failed to configure properly]) AC_MSG_WARN([This module was selected as the default]) AC_MSG_ERROR([Cannot continue]) exit 1 fi fi done # m4 weirdness: must also do the echo after the sort, or we get a # string with newlines in it all_modules="`sort $file.all`" all_modules="`echo $all_modules`" static_modules="`sort $file.static`" static_modules="`echo $static_modules`" dynamic_modules="`sort $file.dynamic`" dynamic_modules="`echo $dynamic_modules`" rm -f $file $file.all $file.static $file.dynamic # Create the final .h file that will be included in the type's # top-level glue. This lists all the static modules. cat > $outfile <