Changeset 1514
- Timestamp:
- 08/03/09 14:46:50 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/slepc/install.sh
r1 r1514 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 slepc … … 23 23 cd install 24 24 ./config/configure.py 25 make -j $NUMCPUS 25 if [ -z $NUMCPUS ]; 26 then 27 make 28 else 29 make -j $NUMCPUS 30 fi
Note:
See TracChangeset
for help on using the changeset viewer.