/usr/share/dune/aclocal/mpi-config.m4 is in libdune-common-dev 2.3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | AC_DEFUN([MPI_CONFIG_HELPER],[
mpi_trybuild () {
$MPICC ${1} > /dev/null 2>&1 || return 1
return 0
}
mpi_trybuild_run () {
mpi_trybuild "-o conftest ${1}" || return 1
./conftest 2>&1 || return 1
return 0
}
mpi_preprocess () {
$MPICC -E -c ${1} 2> /dev/null
}
mpi_getflags () {
# -- call mpiCC, remove compiler name
# compiler-name is first word in line _if_ it doesn't start with a dash!
# needed because mpiCC sometimes does not include compiler (newer LAM)
# the additional brackets keep m4 from interpreting the brackets
# in the sed-command...
retval=`$MPICC ${1} ${2} 2>/dev/null | head -1`
# remove compiler name
retval=`echo $retval | sed -e 's/^[[^-]][[^ ]][[^ ]]* //'`
# remove dummy-parameter (if existing)
retval=`echo $retval | sed -e "s/ ${1} / /"`
if test ${#} = 2 ; then
retval=`echo $retval | sed -e "s/ ${2} / /"`
fi
# remove optimization, warning, etc paramters
retval=`echo " $retval " | sed -e 's/ -g / /g' -e 's/ -W[[a-z0-9]]\+ / /g' -e 's/ -O[[0-9]]\+ / /g'`
# strip leading and trailing spaces
retval=`echo "$retval" | sed 's/^ *//g;s/ *$//g'`
}
# removes regexp $2 from string $1
mpi_remove () {
retval=`echo ${1} | sed -e "s/ ${2} / /"`
# string to remove might be on the beginning of the line
retval=`echo ${retval} | sed -e "s/^${2} / /"`
}
test_lam () {
AC_MSG_CHECKING([for lam])
cat >conftest.c <<_EOF
#include <mpi.h>
#include <stdio.h>
int main() {
printf ("%i%i\n", LAM_MAJOR_VERSION, LAM_MINOR_VERSION);
return 0;
}
_EOF
if mpi_trybuild "-c conftest.c"; then
# try new -showme:xxx function
mpi_getflags "-showme:compile"
if test x"$retval" != x ; then
# seems like LAM >= 7.1 which supports extraction of parameters without
# dummy files
dune_MPI_VERSION="LAM >= 7.1"
if test x"$DUNEMPICPPFLAGS" = x; then
DUNEMPICPPFLAGS="$retval"
fi
if test x"$DUNEMPILIBS" = x; then
mpi_getflags "-showme:link"
DUNEMPILIBS="$retval"
fi
else
dune_MPI_VERSION="LAM < 7.1"
# use -showme and dummy parameters to extract flags
if test x"$DUNEMPICPPFLAGS" = x; then
mpi_getflags "-showme" "-c $MPISOURCE"
DUNEMPICPPFLAGS="$retval"
fi
if test x"$DUNEMPILIBS" = x; then
mpi_getflags "-showme" "dummy.o -o dummy"
DUNEMPILIBS="$retval"
fi
fi
# hack in option to disable LAM-C++-bindings...
# we fake to have mpicxx.h read already
MPI_NOCXXFLAGS="-DMPIPP_H"
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
rm -f conftest*
AC_MSG_RESULT([no])
return 1
}
mpi_getmpichflags() {
if test x"$DUNEMPICPPFLAGS" = x; then
# use special commands to extract options
mpi_getflags "-compile_info"
DUNEMPICPPFLAGS="$retval"
# remove implicitly set -c
mpi_remove "$DUNEMPICPPFLAGS" '-c'
DUNEMPICPPFLAGS="$retval"
fi
if test x"$DUNEMPILIBS" = x; then
# get linker options
mpi_getflags "-link_info"
DUNEMPILIBS="$retval"
# strip -o option
mpi_remove "$DUNEMPILIBS" "-o"
DUNEMPILIBS="$retval"
#strip DUNEMPICPPFLAGS (which are included for mpich2 on jugene)
enc=`echo "$DUNEMPICPPFLAGS" | sed -e 's/\\//\\\\\\//g'`
DUNEMPILIBS=`echo "$retval" | sed -e "s/$enc / /"`
fi
# hack in option to disable MPICH-C++-bindings...
MPI_NOCXXFLAGS="-DMPICH_SKIP_MPICXX"
}
mpi_getmpich2flags() {
if test x"$DUNEMPICPPFLAGS" = x; then
# use special commands to extract options
mpi_getflags "-show" "-c"
DUNEMPICPPFLAGS="$retval"
# remove implicitly set -c
mpi_remove "$DUNEMPICPPFLAGS" '-c'
DUNEMPICPPFLAGS="$retval"
fi
if test x"$DUNEMPILIBS" = x; then
# get linker options
mpi_getflags "-show" "-o"
DUNEMPILIBS="$retval"
# strip -o option
mpi_remove "$DUNEMPILIBS" "-o"
DUNEMPILIBS="$retval"
#strip DUNEMPICPPFLAGS (which are included for mpich2 on jugene)
enc=`echo "$DUNEMPICPPFLAGS" | sed -e 's/\\//\\\\\\//g'`
DUNEMPILIBS=`echo "$retval" | sed -e "s/$enc / /"`
fi
# hack in option to disable MPICH-C++-bindings...
MPI_NOCXXFLAGS="-DMPICH_SKIP_MPICXX"
}
test_mpich () {
AC_MSG_CHECKING([for mpich])
cat >conftest.c <<_EOF
#include <mpi.h>
int main() { return 0; }
_EOF
if (mpi_preprocess conftest.c \
| grep -q MPICHX_PARALLELSOCKETS_PARAMETERS); then
dune_MPI_VERSION="MPICH"
mpi_getmpichflags
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
rm -f conftest*
AC_MSG_RESULT([no])
return 1
}
test_mpich2 () {
AC_MSG_CHECKING([for mpich2])
cat >conftest.c <<_EOF
#include <mpi.h>
#include <stdio.h>
int main() { printf ("%s\n", MPICH2_VERSION); return 0; }
_EOF
if mpi_trybuild "-c conftest.c"; then
dune_MPI_VERSION="MPICH2"
mpi_getmpich2flags
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
rm -f conftest*
AC_MSG_RESULT([no])
return 1
}
test_mpich3 () {
AC_MSG_CHECKING([for mpich 3.x])
cat >conftest.c <<_EOF
#include <mpi.h>
#include <stdio.h>
int main() { printf ("%s\n", MPICH_VERSION); return 0; }
_EOF
if (mpi_trybuild_run "conftest.c" | grep -q "^3\.") ; then
dune_MPI_VERSION="MPICH2"
mpi_getmpich2flags
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
rm -f conftest*
AC_MSG_RESULT([no])
return 1
}
test_openmpi () {
AC_MSG_CHECKING([for OpenMPI])
cat >conftest.c <<_EOF
#include <mpi.h>
int main() { return 0; }
_EOF
if (mpi_preprocess conftest.c | grep -q ompi_communicator_t); then
dune_MPI_VERSION="OpenMPI"
if test x"$DUNEMPICPPFLAGS" = x; then
mpi_getflags "-showme:compile"
DUNEMPICPPFLAGS="$retval"
fi
if test x"$DUNEMPILIBS" = x; then
mpi_getflags "-showme:link"
DUNEMPILIBS="$retval"
fi
MPI_NOCXXFLAGS="-DMPIPP_H"
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
rm -f conftest*
AC_MSG_RESULT([no])
return 1
}
test_mvapich() {
AC_MSG_CHECKING([for MVAPICH])
mpi_getflags "-v" "-c dummy.c"
if (echo $dune_MPI_VERSION | grep ^MVAPICH>/dev/null);then
get_mpichflags
AC_MSG_RESULT([yes])
return 0
fi
AC_MSG_RESULT([no])
return 1
}
test_mvapich2() {
AC_MSG_CHECKING([for MVAPICH2])
cat >conftest.c <<_EOF
#define _OSU_MVAPICH_
#include <mpi.h>
/* MVAPICH2_VERSION is only defined for MVAPICH2 1.4+
* MVAPICH_VERSION is only defined for MVAPICH2 1.2.*
* We can thus fall back to MVAPICH_VERSION if MVAPICH2_VERSION
* is not defined.
*/
#ifndef MVAPICH2_VERSION
#define MVAPICH2_VERSION MVAPICH_VERSION
#endif
#include <stdio.h>
int main() { printf("%s\n",MVAPICH2_VERSION); return 0; }
_EOF
if mpi_trybuild "-c conftest.c"; then
dune_MPI_VERSION="MVAPICH2"
mpi_getmpich2flags
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
rm -f conftest*
AC_MSG_RESULT([no])
return 1
}
test_ibmmpi() {
AC_MSG_CHECKING([for IBM MPI])
if $MPICC -v -c conftest.c > /dev/null 2>&1; then
mpi_getflags "-v" "-c dummy.c"
if (echo $retval | grep '^xl[[cC]]'); then
dune_MPI_VERSION="IBM MPI"
if test x"$DUNEMPICPPFLAGS" = x; then
DUNEMPICPPFLAGS="$retval"
fi
if test x"$DUNEMPILIBS" = x; then
mpi_getflags "-v" "dummy.o -o dummy"
DUNEMPILIBS="$retval"
fi
AC_MSG_RESULT([yes])
rm -f conftest*
return 0
fi
fi
AC_MSG_RESULT([no])
return 1
}
test_intelmpi() {
AC_MSG_CHECKING([for Intel MPI])
mpi_getflags "-v"
if (echo $retval | grep 'Intel(R) MPI Library'); then
dune_MPI_VERSION="Intel MPI"
mpi_getmpich2flags
AC_MSG_RESULT([yes])
return 0
fi
AC_MSG_RESULT([no])
return 1
}
get_mpiparameters() {
AC_MSG_NOTICE([Trying to identify the version of MPI compiler $MPICC])
if test x"$dune_MPI_VERSION" != x; then
return
fi
test_lam && return
test_mpich && return
test_openmpi && return
test_mvapich && return
test_mvapich2 && return
test_mpich2 && return
test_mpich3 && return
test_ibmmpi && return
test_intelmpi && return
dune_MPI_VERSION="unknown"
AC_MSG_ERROR([Could not identify MPI-package! Please send a bugreport and tell us what MPI-package you're using.])
}
])
AC_DEFUN([MPI_CONFIG],[
AC_REQUIRE([MPI_CONFIG_HELPER])
get_mpiparameters;
])
|