From 355d7b777956861730aa9ef5fbbb827a2ac028f9 Mon Sep 17 00:00:00 2001 From: Adam Moody Date: Thu, 23 Jan 2020 14:33:46 -0800 Subject: [PATCH] docs: update to libcircle-v0.3, move design goals to front Signed-off-by: Adam Moody --- doc/rst/build.rst | 14 +++++++------- doc/rst/index.rst | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/rst/build.rst b/doc/rst/build.rst index 39fb72004..99a8ad90f 100644 --- a/doc/rst/build.rst +++ b/doc/rst/build.rst @@ -45,12 +45,12 @@ Then to install the dependencies, run the following commands: mkdir deps cd deps - wget https://github.com/hpc/libcircle/releases/download/0.2.1-rc.1/libcircle-0.2.1-rc.1.tar.gz + wget https://github.com/hpc/libcircle/releases/download/v0.3/libcircle-0.3.0.tar.gz wget https://github.com/llnl/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz wget https://github.com/llnl/dtcmp/releases/download/v1.1.0/dtcmp-1.1.0.tar.gz - tar -zxf libcircle-0.2.1-rc.1.tar.gz - cd libcircle-0.2.1-rc.1 + tar -zxf libcircle-0.3.0.tar.gz + cd libcircle-0.3.0 ./configure --prefix=$installdir make install cd .. @@ -72,15 +72,15 @@ To build on PowerPC, one may need to add :code:`--build=powerpc64le-redhat-linux to the configure commands. Assuming the dependencies have been placed in -an `install` directory as shown above, build mpiFileUtils from a release like v0.9: +an `install` directory as shown above, build mpiFileUtils from a release like v0.10: .. code-block:: Bash - wget https://github.com/hpc/mpifileutils/archive/v0.9.tar.gz - tar -zxf v0.9.tar.gz + wget https://github.com/hpc/mpifileutils/archive/v0.10.tar.gz + tar -zxf v0.10.tar.gz mkdir build install cd build - cmake ../mpifileutils-0.9 \ + cmake ../mpifileutils-0.10 \ -DWITH_DTCMP_PREFIX=../install \ -DWITH_LibCircle_PREFIX=../install \ -DCMAKE_INSTALL_PREFIX=../install diff --git a/doc/rst/index.rst b/doc/rst/index.rst index 7d8bded24..a7d77297e 100644 --- a/doc/rst/index.rst +++ b/doc/rst/index.rst @@ -26,10 +26,10 @@ User Guide .. toctree:: :maxdepth: 3 + proj-design.rst tools.rst libmfu.rst build.rst - proj-design.rst Man Pages ***************************