Changeset 27563


Ignore:
Timestamp:
02/09/23 12:56:13 (2 years ago)
Author:
jdquinn
Message:

CHG: Updates to HDF5 standalone installation; suppression of warnings for Dakota

Location:
issm/trunk-jpl/externalpackages
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/dakota/install-6.2-mac-static.sh

    r27541 r27563  
    7373
    7474# Configure
     75#
     76# NOTE:
     77# - The -w option has been added to CMAKE_C_FLAGS, CMAKE_CXX_FLAGS, and
     78#       CMAKE_Fortran_FLAGS. This should be removed for more recent versions of
     79#       Dakota.
     80#
    7581cd ${DAK_BUILD}
    7682cmake \
     
    7884        -DBUILD_STATIC_LIBS=ON \
    7985        -DCMAKE_C_COMPILER=${MPI_HOME}/bin/mpicc \
    80         -DCMAKE_C_FLAGS="-fPIC -Wno-error=implicit-function-declaration" \
     86        -DCMAKE_C_FLAGS="-fPIC -Wno-error=implicit-function-declaration -w" \
    8187        -DCMAKE_CXX_COMPILER=${MPI_HOME}/bin/mpicxx \
    82         -DCMAKE_CXX_FLAGS="-fPIC -fdelayed-template-parsing" \
     88        -DCMAKE_CXX_FLAGS="-fPIC -fdelayed-template-parsing -w" \
    8389        -DCMAKE_CXX_STANDARD="11" \
    8490        -DCMAKE_Fortran_COMPILER=${MPI_HOME}/bin/mpif77 \
    85         -DCMAKE_Fortran_FLAGS="-fPIC -fallow-argument-mismatch" \
     91        -DCMAKE_Fortran_FLAGS="-fPIC -fallow-argument-mismatch -w" \
    8692        -DBoost_NO_BOOST_CMAKE=TRUE \
    8793        -DHAVE_ACRO=OFF \
  • issm/trunk-jpl/externalpackages/dakota/install-6.2-mac.sh

    r27541 r27563  
    5858
    5959# Configure
     60#
     61# NOTE:
     62# - The -w option has been added to CMAKE_C_FLAGS, CMAKE_CXX_FLAGS, and
     63#       CMAKE_Fortran_FLAGS. This should be removed for more recent versions of
     64#       Dakota.
     65#
    6066cd ${DAK_BUILD}
    6167cmake \
     
    6369        -DBUILD_STATIC_LIBS=OFF \
    6470        -DCMAKE_C_COMPILER=${MPI_HOME}/bin/mpicc \
     71        -DCMAKE_C_FLAGS="-w" \
    6572        -DCMAKE_CXX_COMPILER=${MPI_HOME}/bin/mpicxx \
    66         -DCMAKE_CXX_FLAGS="-fdelayed-template-parsing" \
     73        -DCMAKE_CXX_FLAGS="-fdelayed-template-parsing -w" \
    6774        -DCMAKE_CXX_STANDARD="11" \
    6875        -DCMAKE_Fortran_COMPILER=${MPI_HOME}/bin/mpif77 \
  • issm/trunk-jpl/externalpackages/hdf5/install-1-parallel-static.sh

    r27561 r27563  
    55# Constants
    66#
    7 VER="1.10.5"
     7VER="1.10.9"
    88
    99PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed
     
    3131./configure \
    3232        --prefix="${PREFIX}" \
     33        --disable-dependency-tracking \
     34        --disable-shared \
    3335        --enable-parallel \
    3436        --with-zlib="${ZLIB_ROOT}" \
  • issm/trunk-jpl/externalpackages/hdf5/install-1-parallel-with_tests.sh

    r26950 r27563  
    55# Constants
    66#
    7 VER="1.10.5"
     7VER="1.10.9"
    88
    99PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed
     
    3131./configure \
    3232        --prefix="${PREFIX}" \
     33        --disable-dependency-tracking \
     34        --disable-static \
    3335        --enable-parallel \
    3436        --with-zlib="${ZLIB_ROOT}" \
  • issm/trunk-jpl/externalpackages/hdf5/install-1-parallel.sh

    r26950 r27563  
    55# Constants
    66#
    7 VER="1.10.5"
     7VER="1.10.9"
    88
    99PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed
     
    3131./configure \
    3232        --prefix="${PREFIX}" \
     33        --disable-dependency-tracking \
     34        --disable-static \
    3335        --enable-parallel \
    3436        --with-zlib="${ZLIB_ROOT}" \
  • issm/trunk-jpl/externalpackages/hdf5/install-1-with_tests.sh

    r26950 r27563  
    55## Constants
    66#
    7 VER="1.10.5"
     7VER="1.10.9"
    88
    99PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed
     
    2727./configure \
    2828        --prefix="${PREFIX}" \
     29        --disable-dependency-tracking \
     30        --disable-static \
    2931        --with-zlib="${ZLIB_ROOT}" \
    3032        --enable-hl
  • issm/trunk-jpl/externalpackages/hdf5/install-1.sh

    r26950 r27563  
    55## Constants
    66#
    7 VER="1.10.5"
     7VER="1.10.9"
    88
    99PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed
     
    2727./configure \
    2828        --prefix="${PREFIX}" \
     29        --disable-dependency-tracking \
     30        --disable-static \
    2931        --with-zlib="${ZLIB_ROOT}" \
    3032        --enable-hl
Note: See TracChangeset for help on using the changeset viewer.