summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJonathon Anderson <jonathon.anderson@colorado.edu>2020-06-01 16:33:24 -0600
committerGitHub <noreply@github.com>2020-06-01 15:33:24 -0700
commitfeda2a3073e80ca3a31419ecdb168c5d29563a47 (patch)
treee676a9632a7c047496939a49671b34467fbba9fb /lib
parentab6905d5fa6c3d7380600b768644fdfcc6cffe31 (diff)
downloadspack-feda2a3073e80ca3a31419ecdb168c5d29563a47.tar.gz
spack-feda2a3073e80ca3a31419ecdb168c5d29563a47.tar.bz2
spack-feda2a3073e80ca3a31419ecdb168c5d29563a47.tar.xz
spack-feda2a3073e80ca3a31419ecdb168c5d29563a47.zip
openmpi: add opa-psm2 dependency (#16873)
Also document with_or_without and enable_or_disable, (which are used to configure the opa-psm2 dependency).
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/docs/build_systems/autotoolspackage.rst119
1 files changed, 118 insertions, 1 deletions
diff --git a/lib/spack/docs/build_systems/autotoolspackage.rst b/lib/spack/docs/build_systems/autotoolspackage.rst
index a2baedd576..a4c15e5155 100644
--- a/lib/spack/docs/build_systems/autotoolspackage.rst
+++ b/lib/spack/docs/build_systems/autotoolspackage.rst
@@ -233,7 +233,124 @@ You may have noticed that most of the Autotools flags are of the form
``--without-baz``. Since these flags are so common, Spack provides a
couple of helper functions to make your life easier.
-TODO: document ``with_or_without`` and ``enable_or_disable``.
+"""""""""""""""""
+enable_or_disable
+"""""""""""""""""
+
+Autotools flags for simple boolean variants can be automatically
+generated by calling the ``enable_or_disable`` method. This is
+typically used to enable or disable some feature within the package.
+
+.. code-block:: python
+
+ variant(
+ 'memchecker',
+ default=False,
+ description='Memchecker support for debugging [degrades performance]'
+ )
+ config_args.extend(self.enable_or_disable('memchecker'))
+
+In this example, specifying the variant ``+memchecker`` will generate
+the following configuration options:
+
+.. code-block:: console
+
+ --enable-memchecker
+
+"""""""""""""""
+with_or_without
+"""""""""""""""
+
+Autotools flags for more complex variants, including boolean variants
+and multi-valued variants, can be automatically generated by calling
+the ``with_or_without`` method.
+
+.. code-block:: python
+
+ variant(
+ 'schedulers',
+ values=disjoint_sets(
+ ('auto',), ('alps', 'lsf', 'tm', 'slurm', 'sge', 'loadleveler')
+ ).with_non_feature_values('auto', 'none'),
+ description="List of schedulers for which support is enabled; "
+ "'auto' lets openmpi determine",
+ )
+ if 'schedulers=auto' not in spec:
+ config_args.extend(self.with_or_without('schedulers'))
+
+In this example, specifying the variant ``schedulers=slurm,sge`` will
+generate the following configuration options:
+
+.. code-block:: console
+
+ --with-slurm --with-sge
+
+``enable_or_disable`` is actually functionally equivalent with
+``with_or_without``, and accepts the same arguments and variant types;
+but idiomatic autotools packages often follow these naming
+conventions.
+
+""""""""""""""""
+activation_value
+""""""""""""""""
+
+Autotools parameters that require an option can still be automatically
+generated, using the ``activation_value`` argument to
+``with_or_without`` (or, rarely, ``enable_or_disable``).
+
+.. code-block:: python
+
+ variant(
+ 'fabrics',
+ values=disjoint_sets(
+ ('auto',), ('psm', 'psm2', 'verbs', 'mxm', 'ucx', 'libfabric')
+ ).with_non_feature_values('auto', 'none'),
+ description="List of fabrics that are enabled; "
+ "'auto' lets openmpi determine",
+ )
+ if 'fabrics=auto' not in spec:
+ config_args.extend(self.with_or_without('fabrics',
+ activation_value='prefix'))
+
+``activation_value`` accepts a callable that generates the configure
+parameter value given the variant value; but the special value
+``prefix`` tells Spack to automatically use the dependenency's
+installation prefix, which is the most common use for such
+parameters. In this example, specifying the variant
+``fabrics=libfabric`` will generate the following configuration
+options:
+
+.. code-block:: console
+
+ --with-libfabric=</path/to/libfabric>
+
+""""""""""""""""""""
+activation overrides
+""""""""""""""""""""
+
+Finally, the behavior of either ``with_or_without`` or
+``enable_or_disable`` can be overridden for specific variant
+values. This is most useful for multi-values variants where some of
+the variant values require atypical behavior.
+
+.. code-block:: python
+
+ def with_or_without_verbs(self, activated):
+ # Up through version 1.6, this option was named --with-openib.
+ # In version 1.7, it was renamed to be --with-verbs.
+ opt = 'verbs' if self.spec.satisfies('@1.7:') else 'openib'
+ if not activated:
+ return '--without-{0}'.format(opt)
+ return '--with-{0}={1}'.format(opt, self.spec['rdma-core'].prefix)
+
+Defining ``with_or_without_verbs`` overrides the behavior of a
+``fabrics=verbs`` variant, changing the configure-time option to
+``--with-openib`` for older versions of the package and specifying an
+alternative dependency name:
+
+.. code-block::
+
+ --with-openib=</path/to/rdma-core>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Configure script in a sub-directory