Changeset 27653


Ignore:
Timestamp:
03/23/23 01:42:18 (2 years ago)
Author:
dmenemen
Message:

changing MITgcm/build.sh to make compatible with Apple silicon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/MITgcm/build.sh

    r27534 r27653  
    4646    make depend
    4747fi
    48 make -j 4 &> Makefile.log
     48
     49#run make command
     50STR=`uname -v`
     51SUB='ARM64'
     52if [[ "$STR" == *"$SUB"* ]]; then
     53    arch -arm64 make -j &> Makefile.log
     54else
     55    make -j 4 &> Makefile.log   
     56fi
Note: See TracChangeset for help on using the changeset viewer.