Changeset 1519
- Timestamp:
- 08/03/09 14:53:32 (16 years ago)
- Location:
- issm/trunk/externalpackages/petsc
- Files:
-
- 1 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/petsc/install.sh
r1060 r1519 2 2 3 3 #Get number of cpus on current platform 4 NUMCPUS= `grep -c processor /proc/cpuinfo`;4 NUMCPUS=$1; 5 5 6 6 #version of petsc … … 25 25 ../configure.sh 26 26 27 #Compile petsc 28 make -j $NUMCPUS 29 30 #Install 31 make install 27 #Compile petsc and install it 28 if [ -z $NUMCPUS ]; 29 then 30 make 31 make install 32 else 33 make -j $NUMCPUS 34 make -j $NUMCPUS install 35 fi
Note:
See TracChangeset
for help on using the changeset viewer.