Changeset 1062


Ignore:
Timestamp:
06/23/09 09:29:02 (15 years ago)
Author:
Eric.Larour
Message:

Modifications to code and build procedure to accomodate ia64 platform

File:
1 edited

Legend:

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

    r589 r1062  
    345345        AC_MSG_RESULT($HAVE_BLASLAPACK)
    346346
     347        dnl mkl directory
     348        AC_ARG_WITH([mkl-dir],
     349                          AS_HELP_STRING([--with-mkl-dir = DIR],
     350                                                         [mkl root directory]),
     351                          [MKL_ROOT=$withval],[MKL_ROOT=""])
     352                         
     353        AC_MSG_CHECKING(for mkl headers and libraries in $MKL_ROOT)
     354        if test -d "$MKL_ROOT"; then
     355
     356                dnl defaults
     357                HAVE_MKL=yes
     358                MKLINCL=""
     359                MKLLIB=-L"$MKL_ROOT -lmkl_lapack -lmkl -lguide"
     360
     361                AC_DEFINE([_HAVE_MKL_],[1],[with mkl in ISSM src])
     362                AC_SUBST([MKLLIB])
     363                AC_SUBST([MKLINCL])
     364        else
     365                HAVE_MKL=no
     366        fi
     367        AC_MSG_RESULT($HAVE_MKL)
    347368
    348369        dnl Plapack directory
Note: See TracChangeset for help on using the changeset viewer.