Skip to content

Commit

Permalink
Fix scripts installing I/O libraries
Browse files Browse the repository at this point in the history
NCAR ParallelIO 2.5.1 does not compile using GCC 10, so we use the master branch for now.
  • Loading branch information
ckhroulev committed Dec 16, 2020
1 parent 7752677 commit 7eb6213
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions doc/sphinx/installation/code/io_libraries.sh
@@ -1,5 +1,8 @@
#!/bin/bash

set -u
set -e

# Install all parallel I/O libraries PISM can use.

. hdf5.sh
Expand Down
3 changes: 2 additions & 1 deletion doc/sphinx/installation/code/parallelio.sh
Expand Up @@ -13,13 +13,14 @@ netcdf_prefix=~/local/netcdf
pnetcdf_prefix=~/local/pnetcdf

url=https://github.com/NCAR/ParallelIO.git
branch=master
build=~/local/build/parallelio
prefix=$HOME/local/parallelio

rm -rf ${build}
mkdir -p ${build}/build ${build}/sources

git clone --depth=1 -b pio_2_5_1 ${url} ${build}/sources
git clone --depth=1 -b ${branch} ${url} ${build}/sources

pushd ${build}/build

Expand Down

0 comments on commit 7eb6213

Please sign in to comment.