How can I install Boost.MPI in my home directory without having any administrative privileges on the Unix system I am working on?

link|improve this question

59% accept rate
feedback

1 Answer

As explicitly mentioned in the Boost Getting Started Guide, pass --prefix when invoking bootstrap.sh to specify your intended installation destination:

Unless you have write permission in your system's /usr/local/ directory, you'll probably want to at least use

$ ./bootstrap.sh --prefix=path/to/installation/prefix

to install somewhere else.

link|improve this answer
Thanks ildjarn. Building this way couldn't install Boost.MPI. whenever I compile any program with mpi I get errors like: undefined reference to `boost::mpi::communicator::communicator()' – Tarek Sep 7 '11 at 19:55
"Building this way couldn't install Boost.MPI" What was b2/bjam's output? Why didn't it build? – ildjarn Sep 7 '11 at 20:17
here is a sample error from bjam: In file included from ./boost/mpi/allocator.hpp:15:0, from ./boost/mpi.hpp:22, from ./boost/graph/distributed/mpi_process_group.hpp:30, from libs/graph_parallel/src/mpi_process_group.cpp:14: ./boost/mpi/config.hpp:20:17: schwerwiegender Fehler: mpi.h: Datei oder Verzeichnis nicht gefunden Kompilierung beendet. translation: mpi.h not found, compilation terminated – Tarek Sep 7 '11 at 21:11
@Tarek : That means your MPI compiler wasn't found. I assume you have LAM/MPI, MPICH, or OpenMPI installed? If so, then follow the configuration instructions from the documentation; if not, then you need to install an MPI compiler before building Boost.MPI. – ildjarn Sep 7 '11 at 21:14
I do have OpenMPI, and its module is already loaded. I don't have bjam installed and I am stuck at this step: Information about building Boost.Jam is available here. However, most users need only run build.sh in the tools/build/jam_src subdirectory of Boost. Then, copy the resulting bjam executable some place convenient – Tarek Sep 7 '11 at 22:08
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.