Changeset 24369


Ignore:
Timestamp:
11/20/19 10:13:58 (5 years ago)
Author:
jdquinn
Message:

CHG: Checking for existence of fblaslapack libs rather than comparing paths (which may be empty) when adding blaslapack libs.

File:
1 edited

Legend:

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

    r24350 r24369  
    14981498                *linux*)
    14991499                        BLASLAPACKLIB="-L${BLASLAPACK_ROOT}/lib"
    1500                         if test "x${BLASLAPACK_ROOT}" = "x${PETSC_ROOT}"; then
     1500                        if test -f "${BLASLAPACKLIB}/libflapack.*"; then
    15011501                                BLASLAPACKLIB+=" -lflapack -lfblas"
    15021502                        else
     
    15061506                *darwin*)
    15071507                        BLASLAPACKLIB="-L${BLASLAPACK_ROOT}/lib"
    1508                         if test "x${BLASLAPACK_ROOT}" = "x${PETSC_ROOT}"; then
     1508                        if test -f "${BLASLAPACKLIB}/libflapack.*"; then
    15091509                                BLASLAPACKLIB+=" -lflapack -lfblas"
    15101510                        else
Note: See TracChangeset for help on using the changeset viewer.