Changeset 22538


Ignore:
Timestamp:
03/14/18 11:59:44 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: allow for --with-scalapack-lib option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/m4/issm_options.m4

    r22007 r22538  
    13021302        dnl }}}
    13031303        dnl scalapack{{{
     1304
     1305        dnl Here, either just the directory is provided, or the library, we handle both cases
    13041306        AC_ARG_WITH([scalapack-dir],
    13051307          AS_HELP_STRING([--with-scalapack-dir=DIR],[scalapack root directory]),
    13061308          [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"])
    13071313                         
    13081314        dnl Check whether scalapack is enabled
    13091315        AC_MSG_CHECKING([for scalapack])
    13101316        if test "x$SCALAPACK_ROOT" = "xno" ; then
    1311                 HAVE_SCALAPACK=no
     1317                if test "x$SCALAPACKLIB" = "xno" ; then
     1318                        HAVE_SCALAPACK=no
     1319                fi
    13121320        else
    13131321                HAVE_SCALAPACK=yes
     
    13151323                        AC_MSG_ERROR([scalapack directory provided ($SCALAPACK_ROOT) does not exist]);
    13161324                fi
     1325                SCALAPACKLIB=-L"$SCALAPACK_ROOT/ -lscalapack"
    13171326        fi
    13181327        AC_MSG_RESULT($HAVE_SCALAPACK)
     
    13201329        dnl scalapack headers and libraries
    13211330        if test "x$HAVE_SCALAPACK" == "xyes"; then
    1322                 SCALAPACKLIB=-L"$SCALAPACK_ROOT/ -lscalapack"
    13231331                AC_DEFINE([_HAVE_SCALAPACK_],[1],[with Scalapack in ISSM src])
    13241332                AC_SUBST([SCALAPACKLIB])
Note: See TracChangeset for help on using the changeset viewer.