Skip to content

Commit b13323a

Browse files
committed
pearc26: fix small inconsistencies in configuration
Signed-off-by: Alec Scott <alec@llnl.gov>
1 parent 3143bba commit b13323a

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tutorial_configuration.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Finally, we will give some brief attention to more generalized Spack configurati
4848

4949
For all of these features, we will demonstrate how we build up a full configuration file.
5050
For some, we will then demonstrate how the configuration affects the install command, and for others we will use the ``spack spec`` command to demonstrate how the configuration changes have affected Spack's concretization algorithm.
51-
The provided output is all from a server running Ubuntu version 22.04.
51+
The provided output is all from a server running Ubuntu version 26.04.
5252

5353
-----------------------------------
5454
Configuration from the command line
@@ -89,7 +89,7 @@ Configuration Scopes
8989
--------------------
9090

9191
Depending on your use case, you may want to provide configuration settings common to everyone on your team, or you may want to set default behaviors specific to a single user account.
92-
Spack provides six configuration *scopes* to handle this customization.
92+
Spack provides seven configuration *scopes* to handle this customization.
9393
These scopes, in order of decreasing priority, are:
9494

9595
============ ===================================================
@@ -523,7 +523,7 @@ While we're editing the ``spack.yaml`` file, make sure to configure HDF5 to be a
523523
packages:
524524
curl:
525525
externals:
526-
- spec: curl@7.81.0 %gcc@11.4.0
526+
- spec: curl@8.18.0 %gcc@15.2.0
527527
prefix: /usr
528528
buildable: false
529529
c:
@@ -679,20 +679,20 @@ To limit the number of cores our build uses, set ``build_jobs`` like so:
679679
build_jobs: 2
680680
681681
682-
If we uninstall and reinstall zlib-ng, we see that it now uses only 2 cores:
682+
If we uninstall and reinstall zlib, we see that it now uses only 2 cores:
683683

684684
.. code-block:: spec
685685
686-
$ spack install --no-cache --verbose --overwrite --yes-to-all zlib-ng
686+
$ spack install --no-cache --verbose --overwrite --yes-to-all zlib
687687
==> Installing zlib
688688
==> Executing phase: 'install'
689-
==> './configure' '--prefix=/home/user/spack/opt/spack/linux-x86_64_v3...
689+
==> './configure' '--prefix=/home/user/spack/opt/spack/linux-x86_64_v3/gcc-15.2.0/zlib-1.3.2-tbcolosea5jpwtkur56rxvk352jipg7r'
690690
...
691691
==> 'make' '-j2'
692692
...
693693
==> 'make' '-j2' 'install'
694694
...
695-
[+] /home/user/spack/opt/spack/linux-ubuntu22.04...
695+
[+] /home/user/spack/opt/spack/linux-x86_64_v3/gcc-15.2.0/zlib-1.3.2-tbcolosea5jpwtkur56rxvk352jipg7r
696696
697697
698698
Obviously, if you want to build everything in serial for whatever reason, you would set ``build_jobs`` to 1.

0 commit comments

Comments
 (0)