Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorial_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ We will clone Spack and immediately check out the most recent release, v0.23.
:language: console

Next, add Spack to your path.
Spack has some nice command-line integration tools, so instead of simply prepending to your ``PATH`` variable, source the Spack setup script.
Spack has some nice command line integration tools, so instead of simply prepending to your ``PATH`` variable, source the Spack setup script.

.. code-block:: console

Expand Down
4 changes: 2 additions & 2 deletions tutorial_buildsystems.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Which is similar to invoking ``make`` in our Package

make("foo")

This is useful if we have packages that ignore environment variables and need a command-line argument.
This is useful if we have packages that ignore environment variables and need a command line argument.

Another thing to take note of is in the ``configure()`` method in ``AutotoolsPackage``.
Here we see that the ``--prefix`` argument is already included since it is a common pattern amongst packages using ``Autotools``.
Expand Down Expand Up @@ -273,7 +273,7 @@ Let's change the build and install phases of our package:
:linenos:

Here we demonstrate another strategy that we can use to manipulate our package's build.
We can provide command-line arguments to ``make()``.
We can provide command line arguments to ``make()``.
Since ``Bowtie`` can use ``tbb`` we can either add ``NO_TBB=1`` as a argument to prevent ``tbb`` support, or we can invoke ``make`` with no arguments if TBB is desired and found by its build system.

``Bowtie`` requires our ``install_target`` to provide a path to the install directory.
Expand Down
4 changes: 2 additions & 2 deletions tutorial_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ A partial list of some key configuration sections is provided below.
* - compilers
- Define the compilers that Spack can use (required and system specific)
* - Mirrors
- Locations where spack can look for stashed source or binary distributions
- Locations where spack can look for stashed source or binary distributions
* - Packages
- Specific settings and rules for packages
* - Modules
Expand Down Expand Up @@ -97,7 +97,7 @@ These scopes, in order of decreasing priority, are:
============ ===================================================
Scope Directory
============ ===================================================
Command-line N/A
Command Line N/A
Environment In environment base directory (in ``spack.yaml``)
Custom Custom directory, specified with ``--config-scope``
User ``~/.spack/``
Expand Down
2 changes: 1 addition & 1 deletion tutorial_scripting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can generate that output with the following command:

Note that ``name``, ``version``, and ``hash`` are attributes of Spack's internal ``Spec`` object and enclosing them in braces ensures they are output according to your format string.

Using ``spack find --format`` allows you to retrieve just the information you need to do things like pipe the output to typical UNIX command-line tools like ``sort`` or ``uniq``.
Using ``spack find --format`` allows you to retrieve just the information you need to do things like pipe the output to typical UNIX command line tools like ``sort`` or ``uniq``.

^^^^^^^^^^^^^^^^^^^^^
``spack find --json``
Expand Down