diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-11-11 23:10:05 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-11-11 23:10:05 -0600 |
commit | c227e1f02ea37f00506aa28debb483803e5db6f6 (patch) | |
tree | b0fad4d1bd5f318ef5a57a2a10f44dcb83b5e41b /etc | |
parent | dfd0e965084dfb8201262a4cac9e764f072f84c9 (diff) | |
download | spack-c227e1f02ea37f00506aa28debb483803e5db6f6.tar.gz spack-c227e1f02ea37f00506aa28debb483803e5db6f6.tar.bz2 spack-c227e1f02ea37f00506aa28debb483803e5db6f6.tar.xz spack-c227e1f02ea37f00506aa28debb483803e5db6f6.zip |
Minor changes to Basic Settings docs for SC18 (#9809)
Grammar/spelling issues
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/config.yaml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/etc/spack/defaults/config.yaml b/etc/spack/defaults/config.yaml index f032a64e34..8525947fbd 100644 --- a/etc/spack/defaults/config.yaml +++ b/etc/spack/defaults/config.yaml @@ -24,7 +24,7 @@ config: - $spack/share/spack/templates - # default directory layout + # Default directory layout install_path_scheme: "${ARCHITECTURE}/${COMPILERNAME}-${COMPILERVER}/${PACKAGE}-${VERSION}-${HASH}" @@ -52,7 +52,7 @@ config: - $spack/var/spack/stage - # Cache directory already downloaded source tarballs and archived + # Cache directory for already downloaded source tarballs and archived # repositories. This can be purged with `spack clean --downloads`. source_cache: $spack/var/spack/cache @@ -100,15 +100,17 @@ config: # build_jobs: 4 - # If set to true, spack will use ccache to cache c compiles. + # If set to true, Spack will use ccache to cache C compiles. ccache: false + # How long to wait to lock the Spack installation database. This lock is used - # when spack needs to manage its own package metadata and all operations are + # when Spack needs to manage its own package metadata and all operations are # expected to complete within the default time limit. The timeout should # therefore generally be left untouched. db_lock_timeout: 120 + # How long to wait when attempting to modify a package (e.g. to install it). # This value should typically be 'null' (never time out) unless the Spack # instance only ever has a single user at a time, and only if the user |