Changeset 22549
- Timestamp:
- 03/16/18 14:29:55 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/m4/issm_options.m4
r22548 r22549 1310 1310 AC_ARG_WITH([scalapack-lib], 1311 1311 AS_HELP_STRING([--with-scalapack-lib=LIBS],[scalapack libraries to include]), 1312 [SCALAPACKLIB=$withval],[SCALAPACKLIB=" "])1312 [SCALAPACKLIB=$withval],[SCALAPACKLIB="no"]) 1313 1313 1314 1314 dnl Check whether scalapack is enabled 1315 1315 AC_MSG_CHECKING([for scalapack]) 1316 if test "x$SCALAPACK_ROOT" = "xno" ; then 1317 if test "x$SCALAPACKLIB" = "xno" ; then 1316 if test "x$SCALAPACK_ROOT" = "xno" && test "x$SCALAPACKLIB" = "xno"; then 1318 1317 HAVE_SCALAPACK=no 1319 fi 1320 else 1318 else if test "x$SCALAPACK_ROOT" != "xno"; then 1319 if ! test -d "$SCALAPACK_ROOT"; then 1320 AC_MSG_ERROR([scalapack directory provided ($SCALAPACK_ROOT) does not exist]); 1321 fi 1321 1322 HAVE_SCALAPACK=yes 1322 if ! test -d "$SCALAPACK_ROOT"; then1323 AC_MSG_ERROR([scalapack directory provided ($SCALAPACK_ROOT) does not exist]);1324 fi1325 1323 SCALAPACKLIB=-L"$SCALAPACK_ROOT/ -lscalapack" 1324 else if test "x$SCALAPACKLIB" != "xno"; then 1325 HAVE_SCALAPACK=yes 1326 else 1327 AC_MSG_ERROR([cannot provide both scalapack dir and scalapack-lib]) 1326 1328 fi 1327 1329 AC_MSG_RESULT($HAVE_SCALAPACK) 1328 1330 1329 1331 dnl scalapack headers and libraries 1330 if test "x$HAVE_SCALAPACK" = ="xyes"; then1332 if test "x$HAVE_SCALAPACK" = "xyes"; then 1331 1333 AC_DEFINE([_HAVE_SCALAPACK_],[1],[with Scalapack in ISSM src]) 1332 1334 AC_SUBST([SCALAPACKLIB])
Note:
See TracChangeset
for help on using the changeset viewer.