Changeset 21177


Ignore:
Timestamp:
09/01/16 12:14:06 (9 years ago)
Author:
glperez
Message:

CHG: Python/Numpy installed on Jenkins machine is not working. We have to install the version in externalpackages.
CHG: HDF5 uses C code with C++ style comments. This causes problem when the C compiler's standard does not support that style of comments. Added CFLAG to take care of that.

Location:
issm/trunk-jpl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/hdf5/install.sh

    r13774 r21177  
    1717rm -rf hdf5-1.8.9
    1818
     19# This project uses C code with C++ style comment default C standard used by
     20# GNU's C compiler's default C standard  does not support C++ style comments.
     21# As such, we need to specify a standard that does.
     22export CFLAGS='-std=c99'
     23
    1924#Configure and compile
    2025cd src
  • issm/trunk-jpl/jenkins/linux64_ross

    r20582 r21177  
    1919        --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/ \
    2020        --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    21         --with-python-dir=/usr\
    22         --with-python-numpy-dir=/usr/lib/python2.7/dist-packages/numpy\
     21        --with-python-dir=$ISSM_DIR/externalpackages/python/install \
     22        --with-python-numpy-dir=$ISSM_DIR/externalpackages/python/install/lib/python2.7/site-packages/numpy \
    2323        --with-chaco-dir="$ISSM_DIR/externalpackages/chaco/install" \
    2424        --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9/ -lgfortran" \
     
    4343                                                chaco         install.sh
    4444                                                m1qn3         install.sh         
     45                  hdf5          install.sh
     46                                                netcdf        install.sh
     47                                                netcdf-cxx    install.sh
     48                                                netcdf-python install.sh
     49                                                python        install-2.7.3-linux64.sh
     50                  numpy         install-linux64.sh
    4551                                                shell2junit   install.sh"
    4652
Note: See TracChangeset for help on using the changeset viewer.