diff --git a/docs/source/developers.rst b/docs/source/developers.rst index d4e9570a8d..56ce5e14ad 100644 --- a/docs/source/developers.rst +++ b/docs/source/developers.rst @@ -12,6 +12,7 @@ Active development of the OpenMC Monte Carlo code is currently led by: * `Adam Nelson `_ * `Jon Walsh `_ * `Sterling Harper `_ +* `Will Boyd `_ * `Benoit Forget `_ * `Kord Smith `_ * `Andrew Siegel `_ diff --git a/docs/source/quickinstall.rst b/docs/source/quickinstall.rst index 3fb9036d39..38beb6cca5 100644 --- a/docs/source/quickinstall.rst +++ b/docs/source/quickinstall.rst @@ -42,18 +42,21 @@ the following commands in a terminal: .. code-block:: sh git clone git://github.com/mit-crpg/openmc.git - cd openmc/src + cd openmc git checkout -b master origin/master + mkdir src/build + cd src/build + cmake .. make sudo make install This will build an executable named ``openmc`` and install it (by default in -/usr/local/bin). If you do not have administrator privileges, the last command -can be replaced with a local install, e.g. +/usr/local/bin). If you do not have administrator privileges, the cmake command +should specify an installation directory where you have write access, e.g. .. code-block:: sh - make install -e prefix=$HOME/.local + cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local .. .. _GitHub: https://github.com/mit-crpg/openmc .. _git: http://git-scm.com