Changeset 22538
- Timestamp:
- 03/14/18 11:59:44 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/m4/issm_options.m4
r22007 r22538 1302 1302 dnl }}} 1303 1303 dnl scalapack{{{ 1304 1305 dnl Here, either just the directory is provided, or the library, we handle both cases 1304 1306 AC_ARG_WITH([scalapack-dir], 1305 1307 AS_HELP_STRING([--with-scalapack-dir=DIR],[scalapack root directory]), 1306 1308 [SCALAPACK_ROOT=$withval],[SCALAPACK_ROOT="no"]) 1309 1310 AC_ARG_WITH([scalapack-lib], 1311 AS_HELP_STRING([--with-scalapack-lib=LIBS],[scalapack libraries to include]), 1312 [SCALAPACKLIB=$withval],[SCALAPACKLIB="no"]) 1307 1313 1308 1314 dnl Check whether scalapack is enabled 1309 1315 AC_MSG_CHECKING([for scalapack]) 1310 1316 if test "x$SCALAPACK_ROOT" = "xno" ; then 1311 HAVE_SCALAPACK=no 1317 if test "x$SCALAPACKLIB" = "xno" ; then 1318 HAVE_SCALAPACK=no 1319 fi 1312 1320 else 1313 1321 HAVE_SCALAPACK=yes … … 1315 1323 AC_MSG_ERROR([scalapack directory provided ($SCALAPACK_ROOT) does not exist]); 1316 1324 fi 1325 SCALAPACKLIB=-L"$SCALAPACK_ROOT/ -lscalapack" 1317 1326 fi 1318 1327 AC_MSG_RESULT($HAVE_SCALAPACK) … … 1320 1329 dnl scalapack headers and libraries 1321 1330 if test "x$HAVE_SCALAPACK" == "xyes"; then 1322 SCALAPACKLIB=-L"$SCALAPACK_ROOT/ -lscalapack"1323 1331 AC_DEFINE([_HAVE_SCALAPACK_],[1],[with Scalapack in ISSM src]) 1324 1332 AC_SUBST([SCALAPACKLIB])
Note:
See TracChangeset
for help on using the changeset viewer.