Changeset 1516
- Timestamp:
- 08/03/09 14:49:02 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/qhull/install.sh
r22 r1516 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 qhull … … 26 26 ./configure --prefix="$ISSM_DIR/externalpackages/qhull/install" 27 27 28 #Compile qhull 29 make -j $NUMCPUS 30 31 #Install qhull 32 make install 28 #Compile qhull and install it 29 if [ -z $NUMCPUS ]; 30 then 31 make 32 make install 33 else 34 make -j $NUMCPUS 35 make -j $NUMCPUS install 36 fi
Note:
See TracChangeset
for help on using the changeset viewer.