0

I am following these instructions trying to build Boost MPI .lib files, but I encountered one problem: I do not have mpic++.

Looking at the MPI implementation files such as MPICH and Open MPI, I see no mpic++ included at all.

Where can I find mpic++?

hopper
  • 13,060
  • 7
  • 49
  • 53
Karl
  • 5,613
  • 13
  • 73
  • 107

2 Answers2

3

MPICH2 uses "mpicxx" as its C++ compiler wrapper name.

Dave Goodell
  • 2,143
  • 16
  • 18
2

What is your distribution or OS?

My Debian / Ubuntu systems have it as a softlink to mpic++.openmpi (which comes from the libopenmpi-dev package). So I use Open MPI; the MPICH2 packages provide the same softlink.

Dirk Eddelbuettel
  • 360,940
  • 56
  • 644
  • 725