Changeset 27654


Ignore:
Timestamp:
03/23/23 12:30:48 (2 years ago)
Author:
dmenemen
Message:

adding arm64 modifications to remaining 2 build commands

Location:
issm/trunk-jpl/test/MITgcm
Files:
2 edited

Legend:

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

    r26614 r27654  
    4242    make depend
    4343fi
    44 make -j 4 &> Makefile.log
     44
     45#run make command
     46STR=`uname -v`
     47SUB='ARM64'
     48if [[ "$STR" == *"$SUB"* ]]; then
     49    arch -arm64 make -j &> Makefile.log
     50else
     51    make -j 4 &> Makefile.log   
     52fi
  • issm/trunk-jpl/test/MITgcm/build_remesh.sh

    r27597 r27654  
    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.