File: quickstart.rst

package info (click to toggle)
pmix 6.0.0%2Breally5.0.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,764 kB
  • sloc: ansic: 125,921; sh: 4,265; python: 2,530; makefile: 2,109; xml: 1,611; perl: 1,151; lex: 138
file content (44 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.. _label-quickstart:

Quick start
===========

In many cases, OpenPMIx can be built and installed by simply
indicating the installation directory on the command line:

.. code-block:: sh

   $ tar xf pmix-<version>.tar.bz2
   $ cd pmix-<version>
   $ ./configure --prefix=<path> |& tee config.out
   ...lots of output...
   $ make -j 8 |& tee make.out
   ...lots of output...
   $ make install |& tee install.out
   ...lots of output...

Note that there are many, many configuration options to the
``./configure`` step.  Some of them may be needed for your particular
environment; see below for descriptions of the options available.

If your installation prefix path is not writable by a regular user,
you may need to use ``sudo`` or ``su`` to run the ``make install``
step.  For example:

.. code-block:: sh

   $ sudo make install |& tee install.out
   [sudo] password for builduser: <enter your password here>
   ...lots of output...

Finally, note that VPATH builds are fully supported.  For example:

.. code-block:: sh

   $ tar xf pmix-<version>.tar.bz2
   $ cd pmix-<version>
   $ mkdir build
   $ cd build
   $ ../configure --prefix=<path> |& tee config.out
   ...etc.