Changeset 1516


Ignore:
Timestamp:
08/03/09 14:49:02 (16 years ago)
Author:
seroussi
Message:

numcpus in qhull

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/externalpackages/qhull/install.sh

    r22 r1516  
    22
    33#Get number of cpus on current platform
    4 NUMCPUS=`grep -c processor /proc/cpuinfo`;
     4NUMCPUS=$1;
    55
    66#version of qhull
     
    2626./configure --prefix="$ISSM_DIR/externalpackages/qhull/install"
    2727
    28 #Compile qhull
    29 make  -j $NUMCPUS
    30 
    31 #Install qhull
    32 make  install
     28#Compile qhull and install it
     29if [ -z $NUMCPUS ];
     30then
     31          make
     32          make install
     33else
     34          make  -j $NUMCPUS
     35          make  -j $NUMCPUS install
     36fi
Note: See TracChangeset for help on using the changeset viewer.