Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana University Research and Technology Corporation. All rights reserved. Copyright (c) 2004-2007 The University of Tennessee and The University of Tennessee Research Foundation. All rights reserved. Copyright (c) 2004-2008 High Performance Computing Center Stuttgart, University of Stuttgart. All rights reserved. Copyright (c) 2004-2007 The Regents of the University of California. All rights reserved. Copyright (c) 2006-2020 Cisco Systems, Inc. All rights reserved. Copyright (c) 2006-2011 Mellanox Technologies. All rights reserved. Copyright (c) 2006-2012 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2007 Myricom, Inc. All rights reserved. Copyright (c) 2008-2018 IBM Corporation. All rights reserved. Copyright (c) 2010 Oak Ridge National Labs. All rights reserved. Copyright (c) 2011 University of Houston. All rights reserved. Copyright (c) 2013-2019 Intel, Inc. All rights reserved. Copyright (c) 2015 NVIDIA Corporation. All rights reserved. Copyright (c) 2017-2018 Los Alamos National Security, LLC. All rights reserved. Copyright (c) 2017 Research Organization for Information Science and Technology (RIST). All rights reserved. $COPYRIGHT$ Additional copyrights may follow $HEADER$ =========================================================================== PRRTE is the PMIx Reference Run Time Environment. The project is formally referred to in documentation by "PRRTE", and the GitHub repository is "prrte". However, we have found that most users do not like typing the two consecutive "r"s in the name. Hence, all of the internal API symbols, environment variables, MCA frameworks, and CLI executables all use the abbreviated "prte" (one "r", not two) for convenience. =========================================================================== When submitting questions and problems, be sure to include as much extra information as possible. https://github.com/openpmix/prrte The best way to report bugs, send comments, or ask questions is to post them on the PRRTE GitHub issue tracker: https://github.com/openpmix/prrte/issues Thanks for your time. =========================================================================== Quick start ----------- In many cases, PRRTE can be built and installed by simply indicating the installation directory on the command line: $ tar xf prrte-<version>.tar.bz2 $ cd prrte-<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 environmnet; see below for desciptions 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: $ sudo make install |& tee install.out [sudo] password for jsquyres: <enter your password here> ...lots of output... Finally, note that VPATH builds are fully supported. For example: $ tar xf prrte-<version>.tar.bz2 $ cd prrte-<version> $ mkdir build $ cd build $ ../configure --prefix=<path> |& tee config.out ...etc. =========================================================================== Make today a PRRTE day!