Changeset 27400


Ignore:
Timestamp:
11/21/22 01:09:29 (2 years ago)
Author:
jdquinn
Message:

BUG: Need to exclude i386 directory when discovering libgfortran on Pine Island

Location:
issm/trunk-jpl/externalpackages/dakota
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/externalpackages/dakota/install-6.2-mac-static.sh

    r27397 r27400  
    1616# - Otherwise, refactor this to work with other gfortran installations.
    1717#
    18 LIBGFORTRAN=$(find /usr -name libgfortran* 2>/dev/null | egrep -n libgfortran.a | sed "s/[0-9]*://g" | head -1)
     18LIBGFORTRAN=$(find /usr -name libgfortran* 2>/dev/null | egrep -n libgfortran.a | egrep -v i386 | sed "s/[0-9]*://g" | head -1)
    1919LIBGFORTRAN_ROOT=${LIBGFORTRAN%/*}
    20 LIBGCC=$(find ${LIBGFORTRAN_ROOT} -name libgcc* 2>/dev/null | egrep -n libgcc.a | sed "s/[0-9]*://g" | head -1)
     20LIBGCC=$(find ${LIBGFORTRAN_ROOT} -name libgcc* 2>/dev/null | egrep -n libgcc.a | egrep -v i386 | sed "s/[0-9]*://g" | head -1)
    2121
    2222## Environment
  • TabularUnified issm/trunk-jpl/externalpackages/dakota/install-6.2-mac.sh

    r27397 r27400  
    1414# - Move this to etc/environment.sh
    1515#
    16 LIBGFORTRAN=$(find /usr -name libgfortran* 2>/dev/null | egrep -n libgfortran.a | sed "s/[0-9]*://g" | head -1)
     16LIBGFORTRAN=$(find /usr -name libgfortran* 2>/dev/null | egrep -n libgfortran.a | egrep -v i386 | sed "s/[0-9]*://g" | head -1)
    1717LIBGFORTRAN_ROOT=${LIBGFORTRAN%/*}
    1818
Note: See TracChangeset for help on using the changeset viewer.