pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

*mpi*: get rid of INSTALLATION_PREFIX



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Sun Jun 19 22:00:58 2016 +0200
Changeset:	239ac4c4fb5dcc2101573c231ebd3c88c99b2505

Modified Files:
	fftw-mpich/Makefile
	fftw-mpich/PLIST
	fftw-openmpi/Makefile
	fftw-openmpi/PLIST
	mpi-ch/Makefile
	mpi-ch/PLIST
	mpi-ch/buildlink3.mk
	openmpi/Makefile
	openmpi/PLIST
	openmpi/buildlink3.mk
	openmpi163/Makefile
	openmpi163/PLIST.Darwin
	openmpi163/PLIST.Linux
	openmpi163/PLIST.Linux.noib
	openmpi163/buildlink3.mk

Log Message:
*mpi*: get rid of INSTALLATION_PREFIX

openmpi distfile not fetchable, other packages still build

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=239ac4c4fb5dcc2101573c231ebd3c88c99b2505

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 fftw-mpich/Makefile         |   17 +-
 fftw-mpich/PLIST            |   26 +-
 fftw-openmpi/Makefile       |   16 +-
 fftw-openmpi/PLIST          |   26 +-
 mpi-ch/Makefile             |   11 +-
 mpi-ch/PLIST                |  846 ++++++++++++++--------------
 mpi-ch/buildlink3.mk        |    2 +
 openmpi/Makefile            |    1 -
 openmpi/PLIST               | 1296 +++++++++++++++++++++----------------------
 openmpi/buildlink3.mk       |    2 +
 openmpi163/Makefile         |    1 -
 openmpi163/PLIST.Darwin     | 1130 ++++++++++++++++++-------------------
 openmpi163/PLIST.Linux      | 1174 +++++++++++++++++++--------------------
 openmpi163/PLIST.Linux.noib | 1160 +++++++++++++++++++-------------------
 openmpi163/buildlink3.mk    |    2 +
 15 files changed, 2860 insertions(+), 2850 deletions(-)

diffs:
diff --git a/fftw-mpich/Makefile b/fftw-mpich/Makefile
index e62fca5..7d57202 100644
--- a/fftw-mpich/Makefile
+++ b/fftw-mpich/Makefile
@@ -11,27 +11,30 @@ HOMEPAGE=		http://www.fftw.org/
 COMMENT=		Collection of fast C routines to compute DFTs
 LICENSE=		gnu-gpl-v2
 
-INSTALLATION_PREFIX=	$(BUILDLINK_PREFIX.mpich:Q)
-
 USE_LANGUAGES=		c fortran77
 USE_LIBTOOL=		yes
 USE_TOOLS+=		gmake
-HAS_CONFIGURE=		yes
+GNU_CONFIGURE=		yes
+GNU_CONFIGURE_PREFIX=	${PREFIX}/mpich
 
 PKGCONFIG_OVERRIDE+=	fftw.pc.in
 INFO_FILES=		yes
 
 TEST_TARGET=		check
 
-CONFIGURE_ARGS+=	--enable-shared \
-			--enable-mpi \
-			--prefix=$(INSTALLATION_PREFIX)
+# for finding mpi-ch
+CPPFLAGS+=		-I${BUILDLINK_PREFIX.mpich}/mpich/include
+LDFLAGS+=		-L${BUILDLINK_PREFIX.mpich}/mpich/lib
+LDFLAGS+=		${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.mpich}/mpich/lib
+
+CONFIGURE_ARGS+=	--enable-shared
+CONFIGURE_ARGS+=	--enable-mpi
 
 .include "../../mk/bsd.prefs.mk"
 
 .if defined(PKGSRC_RUN_TEST) && !empty(PKGSRC_RUN_TEST:M[Yy][Ee][Ss])
 USE_TOOLS+=		perl
-TEST_MAKE_FLAGS+=	MPIRUN=$(BUILDLINK_PREFIX.mpich:Q)/bin/mpirun
+TEST_MAKE_FLAGS+=	MPIRUN=$(PREFIX}/mpich/bin/mpirun
 .endif
 
 .include "../../wip/mpi-ch/buildlink3.mk"
diff --git a/fftw-mpich/PLIST b/fftw-mpich/PLIST
index e6ebfbc..6eca86c 100644
--- a/fftw-mpich/PLIST
+++ b/fftw-mpich/PLIST
@@ -1,14 +1,14 @@
 @comment $NetBSD: PLIST,v 1.1 2013/06/23 18:22:25 outpaddling Exp $
-bin/fftw-wisdom
-bin/fftw-wisdom-to-conf
-include/fftw3.f
-include/fftw3.f03
-include/fftw3.h
-include/fftw3-mpi.f03
-include/fftw3-mpi.h
-lib/libfftw3.la
-lib/libfftw3_mpi.la
-lib/pkgconfig/fftw3.pc
-share/info/fftw3.info
-share/man/man1/fftw-wisdom.1
-share/man/man1/fftw-wisdom-to-conf.1
+mpich/bin/fftw-wisdom
+mpich/bin/fftw-wisdom-to-conf
+mpich/include/fftw3.f
+mpich/include/fftw3.f03
+mpich/include/fftw3.h
+mpich/include/fftw3-mpi.f03
+mpich/include/fftw3-mpi.h
+mpich/lib/libfftw3.la
+mpich/lib/libfftw3_mpi.la
+mpich/lib/pkgconfig/fftw3.pc
+mpich/info/fftw3.info
+mpich/man/man1/fftw-wisdom.1
+mpich/man/man1/fftw-wisdom-to-conf.1
diff --git a/fftw-openmpi/Makefile b/fftw-openmpi/Makefile
index bee4cf3..52b1a55 100644
--- a/fftw-openmpi/Makefile
+++ b/fftw-openmpi/Makefile
@@ -11,21 +11,24 @@ HOMEPAGE=		http://www.fftw.org/
 COMMENT=		Collection of fast C routines to compute DFTs
 LICENSE=		gnu-gpl-v2
 
-INSTALLATION_PREFIX=	$(BUILDLINK_PREFIX.openmpi:Q)
-
 USE_LANGUAGES=		c fortran77
 USE_LIBTOOL=		yes
 USE_TOOLS+=		gmake
-HAS_CONFIGURE=		yes
+GNU_CONFIGURE=		yes
+GNU_CONFIGURE_PREFIX=	${PREFIX}/openmpi
 
 PKGCONFIG_OVERRIDE+=	fftw.pc.in
 INFO_FILES=		yes
 
 TEST_TARGET=		check
 
-CONFIGURE_ARGS+=	--enable-shared \
-			--enable-mpi \
-			--prefix=$(INSTALLATION_PREFIX)
+# for finding openmpi
+CPPFLAGS+=		-I${BUILDLINK_PREFIX.openmpi}/openmpi/include
+LDFLAGS+=		-L${BUILDLINK_PREFIX.openmpi}/openmpi/lib
+LDFLAGS+=		${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.openmpi}/openmpi/lib
+
+CONFIGURE_ARGS+=	--enable-shared
+CONFIGURE_ARGS+=	--enable-mpi
 
 .include "../../mk/bsd.prefs.mk"
 
@@ -34,5 +37,6 @@ USE_TOOLS+=		perl
 TEST_MAKE_FLAGS+=	MPIRUN=$(MPI_PREFIX)/bin/mpirun
 .endif
 
+.include "../../devel/libltdl/buildlink3.mk"
 .include "../../wip/openmpi163/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff --git a/fftw-openmpi/PLIST b/fftw-openmpi/PLIST
index 69b3916..0a8684e 100644
--- a/fftw-openmpi/PLIST
+++ b/fftw-openmpi/PLIST
@@ -1,14 +1,14 @@
 @comment $NetBSD: PLIST,v 1.2 2013/03/08 06:24:49 asau Exp $
-bin/fftw-wisdom
-bin/fftw-wisdom-to-conf
-include/fftw3.f
-include/fftw3.f03
-include/fftw3.h
-include/fftw3-mpi.f03
-include/fftw3-mpi.h
-lib/libfftw3.la
-lib/libfftw3_mpi.la
-lib/pkgconfig/fftw3.pc
-share/info/fftw3.info
-share/man/man1/fftw-wisdom.1
-share/man/man1/fftw-wisdom-to-conf.1
+openmpi/bin/fftw-wisdom
+openmpi/bin/fftw-wisdom-to-conf
+openmpi/include/fftw3-mpi.f03
+openmpi/include/fftw3-mpi.h
+openmpi/include/fftw3.f
+openmpi/include/fftw3.f03
+openmpi/include/fftw3.h
+openmpi/info/fftw3.info
+openmpi/lib/libfftw3.la
+openmpi/lib/libfftw3_mpi.la
+openmpi/lib/pkgconfig/fftw3.pc
+openmpi/man/man1/fftw-wisdom-to-conf.1
+openmpi/man/man1/fftw-wisdom.1
diff --git a/mpi-ch/Makefile b/mpi-ch/Makefile
index ebc53b5..5184901 100644
--- a/mpi-ch/Makefile
+++ b/mpi-ch/Makefile
@@ -8,13 +8,12 @@ MAINTAINER=	asau%inbox.ru@localhost
 HOMEPAGE=	http://www.mpich.org/
 COMMENT=	Open source MPI, MPI-2, and MPI-3 implementation from Univ. of Chicago
 
-MAKE_JOBS_SAFE=		no
-
 DEPENDS+=	bash-[0-9]*:../../shells/bash
 
+MAKE_JOBS_SAFE=		no
+
 MPI_SUBPREFIX=		mpich
 MPI_PREFIX=		$(LOCALBASE)/$(MPI_SUBPREFIX)
-INSTALLATION_PREFIX=	$(MPI_PREFIX)
 
 GNU_CONFIGURE=		yes
 USE_LIBTOOL=		yes
@@ -37,11 +36,11 @@ USE_TOOLS+=		perl:run
 
 BUILDLINK_PASSTHRU_RPATHDIRS+=	$(MPI_PREFIX)/lib
 
-CONF_FILES+=		share/$(PKGBASE)/examples/mpicc.conf \
+CONF_FILES+=		${MPI_SUBPREFIX}/share/$(PKGBASE)/examples/mpicc.conf \
 			$(PKG_SYSCONFDIR)/mpicc.conf
-CONF_FILES+=		share/$(PKGBASE)/examples/mpicxx.conf \
+CONF_FILES+=		${MPI_SUBPREFIX}/share/$(PKGBASE)/examples/mpicxx.conf \
 			$(PKG_SYSCONFDIR)/mpicxx.conf
-CONF_FILES+=		share/$(PKGBASE)/examples/mpif77.conf \
+CONF_FILES+=		${MPI_SUBPREFIX}/share/$(PKGBASE)/examples/mpif77.conf \
 			$(PKG_SYSCONFDIR)/mpif77.conf
 
 # FreeBSD 6 hack:
diff --git a/mpi-ch/PLIST b/mpi-ch/PLIST
index e9adcd5..c2c9dca 100644
--- a/mpi-ch/PLIST
+++ b/mpi-ch/PLIST
@@ -1,424 +1,424 @@
 @comment $NetBSD: PLIST,v 1.19 2013/03/07 19:05:41 asau Exp $
-bin/hydra_nameserver
-bin/hydra_persist
-bin/hydra_pmi_proxy
-bin/mpic++
-bin/mpicc
-bin/mpichversion
-bin/mpicxx
-bin/mpiexec
-bin/mpiexec.gforker
-bin/mpiexec.hydra
-bin/mpif77
-bin/mpirun
-bin/parkill
-include/mpi.h
-include/mpicxx.h
-include/mpif.h
-include/mpio.h
-include/mpiof.h
-lib/libfmpich.la
-lib/libmpich.la
-lib/libmpichcxx.la
-lib/libmpl.la
-lib/pkgconfig/mpich.pc
-man/man1/mpicc.1
-man/man1/mpicxx.1
-man/man1/mpiexec.1
-man/man1/mpif77.1
-man/man1/mpif90.1
-man/man3/MPIX_Comm_group_failed.3
-man/man3/MPIX_Comm_reenable_anysource.3
-man/man3/MPIX_Comm_remote_group_failed.3
-man/man3/MPI_Abort.3
-man/man3/MPI_Accumulate.3
-man/man3/MPI_Add_error_class.3
-man/man3/MPI_Add_error_code.3
-man/man3/MPI_Add_error_string.3
-man/man3/MPI_Address.3
-man/man3/MPI_Allgather.3
-man/man3/MPI_Allgatherv.3
-man/man3/MPI_Alloc_mem.3
-man/man3/MPI_Allreduce.3
-man/man3/MPI_Alltoall.3
-man/man3/MPI_Alltoallv.3
-man/man3/MPI_Alltoallw.3
-man/man3/MPI_Attr_delete.3
-man/man3/MPI_Attr_get.3
-man/man3/MPI_Attr_put.3
-man/man3/MPI_Barrier.3
-man/man3/MPI_Bcast.3
-man/man3/MPI_Bsend.3
-man/man3/MPI_Bsend_init.3
-man/man3/MPI_Buffer_attach.3
-man/man3/MPI_Buffer_detach.3
-man/man3/MPI_Cancel.3
-man/man3/MPI_Cart_coords.3
-man/man3/MPI_Cart_create.3
-man/man3/MPI_Cart_get.3
-man/man3/MPI_Cart_map.3
-man/man3/MPI_Cart_rank.3
-man/man3/MPI_Cart_shift.3
-man/man3/MPI_Cart_sub.3
-man/man3/MPI_Cartdim_get.3
-man/man3/MPI_Close_port.3
-man/man3/MPI_Comm_accept.3
-man/man3/MPI_Comm_call_errhandler.3
-man/man3/MPI_Comm_compare.3
-man/man3/MPI_Comm_connect.3
-man/man3/MPI_Comm_create.3
-man/man3/MPI_Comm_create_errhandler.3
-man/man3/MPI_Comm_create_group.3
-man/man3/MPI_Comm_create_keyval.3
-man/man3/MPI_Comm_delete_attr.3
-man/man3/MPI_Comm_disconnect.3
-man/man3/MPI_Comm_dup.3
-man/man3/MPI_Comm_dup_with_info.3
-man/man3/MPI_Comm_free.3
-man/man3/MPI_Comm_free_keyval.3
-man/man3/MPI_Comm_get_attr.3
-man/man3/MPI_Comm_get_errhandler.3
-man/man3/MPI_Comm_get_info.3
-man/man3/MPI_Comm_get_name.3
-man/man3/MPI_Comm_get_parent.3
-man/man3/MPI_Comm_group.3
-man/man3/MPI_Comm_idup.3
-man/man3/MPI_Comm_join.3
-man/man3/MPI_Comm_rank.3
-man/man3/MPI_Comm_remote_group.3
-man/man3/MPI_Comm_remote_size.3
-man/man3/MPI_Comm_set_attr.3
-man/man3/MPI_Comm_set_errhandler.3
-man/man3/MPI_Comm_set_info.3
-man/man3/MPI_Comm_set_name.3
-man/man3/MPI_Comm_size.3
-man/man3/MPI_Comm_spawn.3
-man/man3/MPI_Comm_spawn_multiple.3
-man/man3/MPI_Comm_split.3
-man/man3/MPI_Comm_split_type.3
-man/man3/MPI_Comm_test_inter.3
-man/man3/MPI_Compare_and_swap.3
-man/man3/MPI_Dims_create.3
-man/man3/MPI_Dist_graph_create.3
-man/man3/MPI_Dist_graph_create_adjacent.3
-man/man3/MPI_Dist_graph_neighbors.3
-man/man3/MPI_Dist_graph_neighbors_count.3
-man/man3/MPI_Errhandler_create.3
-man/man3/MPI_Errhandler_free.3
-man/man3/MPI_Errhandler_get.3
-man/man3/MPI_Errhandler_set.3
-man/man3/MPI_Error_class.3
-man/man3/MPI_Error_string.3
-man/man3/MPI_Exscan.3
-man/man3/MPI_Fetch_and_op.3
-man/man3/MPI_File_c2f.3
-man/man3/MPI_File_call_errhandler.3
-man/man3/MPI_File_close.3
-man/man3/MPI_File_create_errhandler.3
-man/man3/MPI_File_delete.3
-man/man3/MPI_File_f2c.3
-man/man3/MPI_File_get_amode.3
-man/man3/MPI_File_get_atomicity.3
-man/man3/MPI_File_get_byte_offset.3
-man/man3/MPI_File_get_errhandler.3
-man/man3/MPI_File_get_group.3
-man/man3/MPI_File_get_info.3
-man/man3/MPI_File_get_position.3
-man/man3/MPI_File_get_position_shared.3
-man/man3/MPI_File_get_size.3
-man/man3/MPI_File_get_type_extent.3
-man/man3/MPI_File_get_view.3
-man/man3/MPI_File_iread.3
-man/man3/MPI_File_iread_at.3
-man/man3/MPI_File_iread_shared.3
-man/man3/MPI_File_iwrite.3
-man/man3/MPI_File_iwrite_at.3
-man/man3/MPI_File_iwrite_shared.3
-man/man3/MPI_File_open.3
-man/man3/MPI_File_preallocate.3
-man/man3/MPI_File_read.3
-man/man3/MPI_File_read_all.3
-man/man3/MPI_File_read_all_begin.3
-man/man3/MPI_File_read_all_end.3
-man/man3/MPI_File_read_at.3
-man/man3/MPI_File_read_at_all.3
-man/man3/MPI_File_read_at_all_begin.3
-man/man3/MPI_File_read_at_all_end.3
-man/man3/MPI_File_read_ordered.3
-man/man3/MPI_File_read_ordered_begin.3
-man/man3/MPI_File_read_ordered_end.3
-man/man3/MPI_File_read_shared.3
-man/man3/MPI_File_seek.3
-man/man3/MPI_File_seek_shared.3
-man/man3/MPI_File_set_atomicity.3
-man/man3/MPI_File_set_errhandler.3
-man/man3/MPI_File_set_info.3
-man/man3/MPI_File_set_size.3
-man/man3/MPI_File_set_view.3
-man/man3/MPI_File_sync.3
-man/man3/MPI_File_write.3
-man/man3/MPI_File_write_all.3
-man/man3/MPI_File_write_all_begin.3
-man/man3/MPI_File_write_all_end.3
-man/man3/MPI_File_write_at.3
-man/man3/MPI_File_write_at_all.3
-man/man3/MPI_File_write_at_all_begin.3
-man/man3/MPI_File_write_at_all_end.3
-man/man3/MPI_File_write_ordered.3
-man/man3/MPI_File_write_ordered_begin.3
-man/man3/MPI_File_write_ordered_end.3
-man/man3/MPI_File_write_shared.3
-man/man3/MPI_Finalize.3
-man/man3/MPI_Finalized.3
-man/man3/MPI_Free_mem.3
-man/man3/MPI_Gather.3
-man/man3/MPI_Gatherv.3
-man/man3/MPI_Get.3
-man/man3/MPI_Get_accumulate.3
-man/man3/MPI_Get_address.3
-man/man3/MPI_Get_count.3
-man/man3/MPI_Get_elements.3
-man/man3/MPI_Get_elements_x.3
-man/man3/MPI_Get_library_version.3
-man/man3/MPI_Get_processor_name.3
-man/man3/MPI_Get_version.3
-man/man3/MPI_Graph_create.3
-man/man3/MPI_Graph_get.3
-man/man3/MPI_Graph_map.3
-man/man3/MPI_Graph_neighbors.3
-man/man3/MPI_Graph_neighbors_count.3
-man/man3/MPI_Graphdims_get.3
-man/man3/MPI_Grequest_complete.3
-man/man3/MPI_Grequest_start.3
-man/man3/MPI_Group_compare.3
-man/man3/MPI_Group_difference.3
-man/man3/MPI_Group_excl.3
-man/man3/MPI_Group_free.3
-man/man3/MPI_Group_incl.3
-man/man3/MPI_Group_intersection.3
-man/man3/MPI_Group_range_excl.3
-man/man3/MPI_Group_range_incl.3
-man/man3/MPI_Group_rank.3
-man/man3/MPI_Group_size.3
-man/man3/MPI_Group_translate_ranks.3
-man/man3/MPI_Group_union.3
-man/man3/MPI_Iallgather.3
-man/man3/MPI_Iallgatherv.3
-man/man3/MPI_Iallreduce.3
-man/man3/MPI_Ialltoall.3
-man/man3/MPI_Ialltoallv.3
-man/man3/MPI_Ialltoallw.3
-man/man3/MPI_Ibarrier.3
-man/man3/MPI_Ibcast.3
-man/man3/MPI_Ibsend.3
-man/man3/MPI_Iexscan.3
-man/man3/MPI_Igather.3
-man/man3/MPI_Igatherv.3
-man/man3/MPI_Improbe.3
-man/man3/MPI_Imrecv.3
-man/man3/MPI_Ineighbor_allgather.3
-man/man3/MPI_Ineighbor_allgatherv.3
-man/man3/MPI_Ineighbor_alltoall.3
-man/man3/MPI_Ineighbor_alltoallv.3
-man/man3/MPI_Ineighbor_alltoallw.3
-man/man3/MPI_Info_create.3
-man/man3/MPI_Info_delete.3
-man/man3/MPI_Info_dup.3
-man/man3/MPI_Info_free.3
-man/man3/MPI_Info_get.3
-man/man3/MPI_Info_get_nkeys.3
-man/man3/MPI_Info_get_nthkey.3
-man/man3/MPI_Info_get_valuelen.3
-man/man3/MPI_Info_set.3
-man/man3/MPI_Init.3
-man/man3/MPI_Init_thread.3
-man/man3/MPI_Initialized.3
-man/man3/MPI_Intercomm_create.3
-man/man3/MPI_Intercomm_merge.3
-man/man3/MPI_Iprobe.3
-man/man3/MPI_Irecv.3
-man/man3/MPI_Ireduce.3
-man/man3/MPI_Ireduce_scatter.3
-man/man3/MPI_Ireduce_scatter_block.3
-man/man3/MPI_Irsend.3
-man/man3/MPI_Is_thread_main.3
-man/man3/MPI_Iscan.3
-man/man3/MPI_Iscatter.3
-man/man3/MPI_Iscatterv.3
-man/man3/MPI_Isend.3
-man/man3/MPI_Issend.3
-man/man3/MPI_Keyval_create.3
-man/man3/MPI_Keyval_free.3
-man/man3/MPI_Lookup_name.3
-man/man3/MPI_Mprobe.3
-man/man3/MPI_Mrecv.3
-man/man3/MPI_Neighbor_allgather.3
-man/man3/MPI_Neighbor_allgatherv.3
-man/man3/MPI_Neighbor_alltoall.3
-man/man3/MPI_Neighbor_alltoallv.3
-man/man3/MPI_Neighbor_alltoallw.3
-man/man3/MPI_Op_commute.3
-man/man3/MPI_Op_create.3
-man/man3/MPI_Op_free.3
-man/man3/MPI_Open_port.3
-man/man3/MPI_Pack.3
-man/man3/MPI_Pack_external.3
-man/man3/MPI_Pack_external_size.3
-man/man3/MPI_Pack_size.3
-man/man3/MPI_Pcontrol.3
-man/man3/MPI_Probe.3
-man/man3/MPI_Publish_name.3
-man/man3/MPI_Put.3
-man/man3/MPI_Query_thread.3
-man/man3/MPI_Raccumulate.3
-man/man3/MPI_Recv.3
-man/man3/MPI_Recv_init.3
-man/man3/MPI_Reduce.3
-man/man3/MPI_Reduce_local.3
-man/man3/MPI_Reduce_scatter.3
-man/man3/MPI_Reduce_scatter_block.3
-man/man3/MPI_Register_datarep.3
-man/man3/MPI_Request_free.3
-man/man3/MPI_Request_get_status.3
-man/man3/MPI_Rget.3
-man/man3/MPI_Rget_accumulate.3
-man/man3/MPI_Rput.3
-man/man3/MPI_Rsend.3
-man/man3/MPI_Rsend_init.3
-man/man3/MPI_Scan.3
-man/man3/MPI_Scatter.3
-man/man3/MPI_Scatterv.3
-man/man3/MPI_Send.3
-man/man3/MPI_Send_init.3
-man/man3/MPI_Sendrecv.3
-man/man3/MPI_Sendrecv_replace.3
-man/man3/MPI_Ssend.3
-man/man3/MPI_Ssend_init.3
-man/man3/MPI_Start.3
-man/man3/MPI_Startall.3
-man/man3/MPI_Status_set_cancelled.3
-man/man3/MPI_Status_set_elements.3
-man/man3/MPI_Status_set_elements_x.3
-man/man3/MPI_T_category_changed.3
-man/man3/MPI_T_category_get_categories.3
-man/man3/MPI_T_category_get_cvars.3
-man/man3/MPI_T_category_get_info.3
-man/man3/MPI_T_category_get_num.3
-man/man3/MPI_T_category_get_pvars.3
-man/man3/MPI_T_cvar_get_info.3
-man/man3/MPI_T_cvar_get_num.3
-man/man3/MPI_T_cvar_handle_alloc.3
-man/man3/MPI_T_cvar_handle_free.3
-man/man3/MPI_T_cvar_read.3
-man/man3/MPI_T_cvar_write.3
-man/man3/MPI_T_enum_get_info.3
-man/man3/MPI_T_enum_get_item.3
-man/man3/MPI_T_finalize.3
-man/man3/MPI_T_init_thread.3
-man/man3/MPI_T_pvar_get_info.3
-man/man3/MPI_T_pvar_get_num.3
-man/man3/MPI_T_pvar_handle_alloc.3
-man/man3/MPI_T_pvar_handle_free.3
-man/man3/MPI_T_pvar_read.3
-man/man3/MPI_T_pvar_readreset.3
-man/man3/MPI_T_pvar_reset.3
-man/man3/MPI_T_pvar_session_create.3
-man/man3/MPI_T_pvar_session_free.3
-man/man3/MPI_T_pvar_start.3
-man/man3/MPI_T_pvar_stop.3
-man/man3/MPI_T_pvar_write.3
-man/man3/MPI_Test.3
-man/man3/MPI_Test_cancelled.3
-man/man3/MPI_Testall.3
-man/man3/MPI_Testany.3
-man/man3/MPI_Testsome.3
-man/man3/MPI_Topo_test.3
-man/man3/MPI_Type_commit.3
-man/man3/MPI_Type_contiguous.3
-man/man3/MPI_Type_create_darray.3
-man/man3/MPI_Type_create_hindexed.3
-man/man3/MPI_Type_create_hindexed_block.3
-man/man3/MPI_Type_create_hvector.3
-man/man3/MPI_Type_create_indexed_block.3
-man/man3/MPI_Type_create_keyval.3
-man/man3/MPI_Type_create_resized.3
-man/man3/MPI_Type_create_struct.3
-man/man3/MPI_Type_create_subarray.3
-man/man3/MPI_Type_delete_attr.3
-man/man3/MPI_Type_dup.3
-man/man3/MPI_Type_extent.3
-man/man3/MPI_Type_free.3
-man/man3/MPI_Type_free_keyval.3
-man/man3/MPI_Type_get_attr.3
-man/man3/MPI_Type_get_contents.3
-man/man3/MPI_Type_get_envelope.3
-man/man3/MPI_Type_get_extent.3
-man/man3/MPI_Type_get_extent_x.3
-man/man3/MPI_Type_get_name.3
-man/man3/MPI_Type_get_true_extent.3
-man/man3/MPI_Type_get_true_extent_x.3
-man/man3/MPI_Type_hindexed.3
-man/man3/MPI_Type_hvector.3
-man/man3/MPI_Type_indexed.3
-man/man3/MPI_Type_lb.3
-man/man3/MPI_Type_match_size.3
-man/man3/MPI_Type_set_attr.3
-man/man3/MPI_Type_set_name.3
-man/man3/MPI_Type_size.3
-man/man3/MPI_Type_size_x.3
-man/man3/MPI_Type_struct.3
-man/man3/MPI_Type_ub.3
-man/man3/MPI_Type_vector.3
-man/man3/MPI_Unpack.3
-man/man3/MPI_Unpack_external.3
-man/man3/MPI_Unpublish_name.3
-man/man3/MPI_Wait.3
-man/man3/MPI_Waitall.3
-man/man3/MPI_Waitany.3
-man/man3/MPI_Waitsome.3
-man/man3/MPI_Win_allocate.3
-man/man3/MPI_Win_allocate_shared.3
-man/man3/MPI_Win_attach.3
-man/man3/MPI_Win_call_errhandler.3
-man/man3/MPI_Win_complete.3
-man/man3/MPI_Win_create.3
-man/man3/MPI_Win_create_dynamic.3
-man/man3/MPI_Win_create_errhandler.3
-man/man3/MPI_Win_create_keyval.3
-man/man3/MPI_Win_delete_attr.3
-man/man3/MPI_Win_detach.3
-man/man3/MPI_Win_fence.3
-man/man3/MPI_Win_flush.3
-man/man3/MPI_Win_flush_all.3
-man/man3/MPI_Win_flush_local.3
-man/man3/MPI_Win_flush_local_all.3
-man/man3/MPI_Win_free.3
-man/man3/MPI_Win_free_keyval.3
-man/man3/MPI_Win_get_attr.3
-man/man3/MPI_Win_get_errhandler.3
-man/man3/MPI_Win_get_group.3
-man/man3/MPI_Win_get_info.3
-man/man3/MPI_Win_get_name.3
-man/man3/MPI_Win_lock.3
-man/man3/MPI_Win_lock_all.3
-man/man3/MPI_Win_post.3
-man/man3/MPI_Win_set_attr.3
-man/man3/MPI_Win_set_errhandler.3
-man/man3/MPI_Win_set_info.3
-man/man3/MPI_Win_set_name.3
-man/man3/MPI_Win_shared_query.3
-man/man3/MPI_Win_start.3
-man/man3/MPI_Win_sync.3
-man/man3/MPI_Win_test.3
-man/man3/MPI_Win_unlock.3
-man/man3/MPI_Win_unlock_all.3
-man/man3/MPI_Win_wait.3
-man/man3/MPI_Wtick.3
-man/man3/MPI_Wtime.3
-share/doc/mpich/install.pdf
-share/doc/mpich/logging.pdf
-share/doc/mpich/smpd_pmi.pdf
-share/doc/mpich/user.pdf
-share/mpich/examples/mpicc.conf
-share/mpich/examples/mpicxx.conf
-share/mpich/examples/mpif77.conf
+mpich/bin/hydra_nameserver
+mpich/bin/hydra_persist
+mpich/bin/hydra_pmi_proxy
+mpich/bin/mpic++
+mpich/bin/mpicc
+mpich/bin/mpichversion
+mpich/bin/mpicxx
+mpich/bin/mpiexec
+mpich/bin/mpiexec.gforker
+mpich/bin/mpiexec.hydra
+mpich/bin/mpif77
+mpich/bin/mpirun
+mpich/bin/parkill
+mpich/include/mpi.h
+mpich/include/mpicxx.h
+mpich/include/mpif.h
+mpich/include/mpio.h
+mpich/include/mpiof.h
+mpich/lib/libfmpich.la
+mpich/lib/libmpich.la
+mpich/lib/libmpichcxx.la
+mpich/lib/libmpl.la
+mpich/lib/pkgconfig/mpich.pc
+mpich/man/man1/mpicc.1
+mpich/man/man1/mpicxx.1
+mpich/man/man1/mpiexec.1
+mpich/man/man1/mpif77.1
+mpich/man/man1/mpif90.1
+mpich/man/man3/MPIX_Comm_group_failed.3
+mpich/man/man3/MPIX_Comm_reenable_anysource.3
+mpich/man/man3/MPIX_Comm_remote_group_failed.3
+mpich/man/man3/MPI_Abort.3
+mpich/man/man3/MPI_Accumulate.3
+mpich/man/man3/MPI_Add_error_class.3
+mpich/man/man3/MPI_Add_error_code.3
+mpich/man/man3/MPI_Add_error_string.3
+mpich/man/man3/MPI_Address.3
+mpich/man/man3/MPI_Allgather.3
+mpich/man/man3/MPI_Allgatherv.3
+mpich/man/man3/MPI_Alloc_mem.3
+mpich/man/man3/MPI_Allreduce.3
+mpich/man/man3/MPI_Alltoall.3
+mpich/man/man3/MPI_Alltoallv.3
+mpich/man/man3/MPI_Alltoallw.3
+mpich/man/man3/MPI_Attr_delete.3
+mpich/man/man3/MPI_Attr_get.3
+mpich/man/man3/MPI_Attr_put.3
+mpich/man/man3/MPI_Barrier.3
+mpich/man/man3/MPI_Bcast.3
+mpich/man/man3/MPI_Bsend.3
+mpich/man/man3/MPI_Bsend_init.3
+mpich/man/man3/MPI_Buffer_attach.3
+mpich/man/man3/MPI_Buffer_detach.3
+mpich/man/man3/MPI_Cancel.3
+mpich/man/man3/MPI_Cart_coords.3
+mpich/man/man3/MPI_Cart_create.3
+mpich/man/man3/MPI_Cart_get.3
+mpich/man/man3/MPI_Cart_map.3
+mpich/man/man3/MPI_Cart_rank.3
+mpich/man/man3/MPI_Cart_shift.3
+mpich/man/man3/MPI_Cart_sub.3
+mpich/man/man3/MPI_Cartdim_get.3
+mpich/man/man3/MPI_Close_port.3
+mpich/man/man3/MPI_Comm_accept.3
+mpich/man/man3/MPI_Comm_call_errhandler.3
+mpich/man/man3/MPI_Comm_compare.3
+mpich/man/man3/MPI_Comm_connect.3
+mpich/man/man3/MPI_Comm_create.3
+mpich/man/man3/MPI_Comm_create_errhandler.3
+mpich/man/man3/MPI_Comm_create_group.3
+mpich/man/man3/MPI_Comm_create_keyval.3
+mpich/man/man3/MPI_Comm_delete_attr.3
+mpich/man/man3/MPI_Comm_disconnect.3
+mpich/man/man3/MPI_Comm_dup.3
+mpich/man/man3/MPI_Comm_dup_with_info.3
+mpich/man/man3/MPI_Comm_free.3
+mpich/man/man3/MPI_Comm_free_keyval.3
+mpich/man/man3/MPI_Comm_get_attr.3
+mpich/man/man3/MPI_Comm_get_errhandler.3
+mpich/man/man3/MPI_Comm_get_info.3
+mpich/man/man3/MPI_Comm_get_name.3
+mpich/man/man3/MPI_Comm_get_parent.3
+mpich/man/man3/MPI_Comm_group.3
+mpich/man/man3/MPI_Comm_idup.3
+mpich/man/man3/MPI_Comm_join.3
+mpich/man/man3/MPI_Comm_rank.3
+mpich/man/man3/MPI_Comm_remote_group.3
+mpich/man/man3/MPI_Comm_remote_size.3
+mpich/man/man3/MPI_Comm_set_attr.3
+mpich/man/man3/MPI_Comm_set_errhandler.3
+mpich/man/man3/MPI_Comm_set_info.3
+mpich/man/man3/MPI_Comm_set_name.3
+mpich/man/man3/MPI_Comm_size.3
+mpich/man/man3/MPI_Comm_spawn.3
+mpich/man/man3/MPI_Comm_spawn_multiple.3
+mpich/man/man3/MPI_Comm_split.3
+mpich/man/man3/MPI_Comm_split_type.3
+mpich/man/man3/MPI_Comm_test_inter.3
+mpich/man/man3/MPI_Compare_and_swap.3
+mpich/man/man3/MPI_Dims_create.3
+mpich/man/man3/MPI_Dist_graph_create.3
+mpich/man/man3/MPI_Dist_graph_create_adjacent.3
+mpich/man/man3/MPI_Dist_graph_neighbors.3
+mpich/man/man3/MPI_Dist_graph_neighbors_count.3
+mpich/man/man3/MPI_Errhandler_create.3
+mpich/man/man3/MPI_Errhandler_free.3
+mpich/man/man3/MPI_Errhandler_get.3
+mpich/man/man3/MPI_Errhandler_set.3
+mpich/man/man3/MPI_Error_class.3
+mpich/man/man3/MPI_Error_string.3
+mpich/man/man3/MPI_Exscan.3
+mpich/man/man3/MPI_Fetch_and_op.3
+mpich/man/man3/MPI_File_c2f.3
+mpich/man/man3/MPI_File_call_errhandler.3
+mpich/man/man3/MPI_File_close.3
+mpich/man/man3/MPI_File_create_errhandler.3
+mpich/man/man3/MPI_File_delete.3
+mpich/man/man3/MPI_File_f2c.3
+mpich/man/man3/MPI_File_get_amode.3
+mpich/man/man3/MPI_File_get_atomicity.3
+mpich/man/man3/MPI_File_get_byte_offset.3
+mpich/man/man3/MPI_File_get_errhandler.3
+mpich/man/man3/MPI_File_get_group.3
+mpich/man/man3/MPI_File_get_info.3
+mpich/man/man3/MPI_File_get_position.3
+mpich/man/man3/MPI_File_get_position_shared.3
+mpich/man/man3/MPI_File_get_size.3
+mpich/man/man3/MPI_File_get_type_extent.3
+mpich/man/man3/MPI_File_get_view.3
+mpich/man/man3/MPI_File_iread.3
+mpich/man/man3/MPI_File_iread_at.3
+mpich/man/man3/MPI_File_iread_shared.3
+mpich/man/man3/MPI_File_iwrite.3
+mpich/man/man3/MPI_File_iwrite_at.3
+mpich/man/man3/MPI_File_iwrite_shared.3
+mpich/man/man3/MPI_File_open.3
+mpich/man/man3/MPI_File_preallocate.3
+mpich/man/man3/MPI_File_read.3
+mpich/man/man3/MPI_File_read_all.3
+mpich/man/man3/MPI_File_read_all_begin.3
+mpich/man/man3/MPI_File_read_all_end.3
+mpich/man/man3/MPI_File_read_at.3
+mpich/man/man3/MPI_File_read_at_all.3
+mpich/man/man3/MPI_File_read_at_all_begin.3
+mpich/man/man3/MPI_File_read_at_all_end.3
+mpich/man/man3/MPI_File_read_ordered.3
+mpich/man/man3/MPI_File_read_ordered_begin.3
+mpich/man/man3/MPI_File_read_ordered_end.3
+mpich/man/man3/MPI_File_read_shared.3
+mpich/man/man3/MPI_File_seek.3
+mpich/man/man3/MPI_File_seek_shared.3
+mpich/man/man3/MPI_File_set_atomicity.3
+mpich/man/man3/MPI_File_set_errhandler.3
+mpich/man/man3/MPI_File_set_info.3
+mpich/man/man3/MPI_File_set_size.3
+mpich/man/man3/MPI_File_set_view.3
+mpich/man/man3/MPI_File_sync.3
+mpich/man/man3/MPI_File_write.3
+mpich/man/man3/MPI_File_write_all.3
+mpich/man/man3/MPI_File_write_all_begin.3
+mpich/man/man3/MPI_File_write_all_end.3
+mpich/man/man3/MPI_File_write_at.3
+mpich/man/man3/MPI_File_write_at_all.3
+mpich/man/man3/MPI_File_write_at_all_begin.3
+mpich/man/man3/MPI_File_write_at_all_end.3
+mpich/man/man3/MPI_File_write_ordered.3
+mpich/man/man3/MPI_File_write_ordered_begin.3
+mpich/man/man3/MPI_File_write_ordered_end.3
+mpich/man/man3/MPI_File_write_shared.3
+mpich/man/man3/MPI_Finalize.3
+mpich/man/man3/MPI_Finalized.3
+mpich/man/man3/MPI_Free_mem.3
+mpich/man/man3/MPI_Gather.3
+mpich/man/man3/MPI_Gatherv.3
+mpich/man/man3/MPI_Get.3
+mpich/man/man3/MPI_Get_accumulate.3
+mpich/man/man3/MPI_Get_address.3
+mpich/man/man3/MPI_Get_count.3
+mpich/man/man3/MPI_Get_elements.3
+mpich/man/man3/MPI_Get_elements_x.3
+mpich/man/man3/MPI_Get_library_version.3
+mpich/man/man3/MPI_Get_processor_name.3
+mpich/man/man3/MPI_Get_version.3
+mpich/man/man3/MPI_Graph_create.3
+mpich/man/man3/MPI_Graph_get.3
+mpich/man/man3/MPI_Graph_map.3
+mpich/man/man3/MPI_Graph_neighbors.3
+mpich/man/man3/MPI_Graph_neighbors_count.3
+mpich/man/man3/MPI_Graphdims_get.3
+mpich/man/man3/MPI_Grequest_complete.3
+mpich/man/man3/MPI_Grequest_start.3
+mpich/man/man3/MPI_Group_compare.3
+mpich/man/man3/MPI_Group_difference.3
+mpich/man/man3/MPI_Group_excl.3
+mpich/man/man3/MPI_Group_free.3
+mpich/man/man3/MPI_Group_incl.3
+mpich/man/man3/MPI_Group_intersection.3
+mpich/man/man3/MPI_Group_range_excl.3
+mpich/man/man3/MPI_Group_range_incl.3
+mpich/man/man3/MPI_Group_rank.3
+mpich/man/man3/MPI_Group_size.3
+mpich/man/man3/MPI_Group_translate_ranks.3
+mpich/man/man3/MPI_Group_union.3
+mpich/man/man3/MPI_Iallgather.3
+mpich/man/man3/MPI_Iallgatherv.3
+mpich/man/man3/MPI_Iallreduce.3
+mpich/man/man3/MPI_Ialltoall.3
+mpich/man/man3/MPI_Ialltoallv.3
+mpich/man/man3/MPI_Ialltoallw.3
+mpich/man/man3/MPI_Ibarrier.3
+mpich/man/man3/MPI_Ibcast.3
+mpich/man/man3/MPI_Ibsend.3
+mpich/man/man3/MPI_Iexscan.3
+mpich/man/man3/MPI_Igather.3
+mpich/man/man3/MPI_Igatherv.3
+mpich/man/man3/MPI_Improbe.3
+mpich/man/man3/MPI_Imrecv.3
+mpich/man/man3/MPI_Ineighbor_allgather.3
+mpich/man/man3/MPI_Ineighbor_allgatherv.3
+mpich/man/man3/MPI_Ineighbor_alltoall.3
+mpich/man/man3/MPI_Ineighbor_alltoallv.3
+mpich/man/man3/MPI_Ineighbor_alltoallw.3
+mpich/man/man3/MPI_Info_create.3
+mpich/man/man3/MPI_Info_delete.3
+mpich/man/man3/MPI_Info_dup.3
+mpich/man/man3/MPI_Info_free.3
+mpich/man/man3/MPI_Info_get.3
+mpich/man/man3/MPI_Info_get_nkeys.3
+mpich/man/man3/MPI_Info_get_nthkey.3
+mpich/man/man3/MPI_Info_get_valuelen.3
+mpich/man/man3/MPI_Info_set.3
+mpich/man/man3/MPI_Init.3
+mpich/man/man3/MPI_Init_thread.3
+mpich/man/man3/MPI_Initialized.3
+mpich/man/man3/MPI_Intercomm_create.3
+mpich/man/man3/MPI_Intercomm_merge.3
+mpich/man/man3/MPI_Iprobe.3
+mpich/man/man3/MPI_Irecv.3
+mpich/man/man3/MPI_Ireduce.3
+mpich/man/man3/MPI_Ireduce_scatter.3
+mpich/man/man3/MPI_Ireduce_scatter_block.3
+mpich/man/man3/MPI_Irsend.3
+mpich/man/man3/MPI_Is_thread_main.3
+mpich/man/man3/MPI_Iscan.3
+mpich/man/man3/MPI_Iscatter.3
+mpich/man/man3/MPI_Iscatterv.3
+mpich/man/man3/MPI_Isend.3
+mpich/man/man3/MPI_Issend.3
+mpich/man/man3/MPI_Keyval_create.3
+mpich/man/man3/MPI_Keyval_free.3
+mpich/man/man3/MPI_Lookup_name.3
+mpich/man/man3/MPI_Mprobe.3
+mpich/man/man3/MPI_Mrecv.3
+mpich/man/man3/MPI_Neighbor_allgather.3
+mpich/man/man3/MPI_Neighbor_allgatherv.3
+mpich/man/man3/MPI_Neighbor_alltoall.3
+mpich/man/man3/MPI_Neighbor_alltoallv.3
+mpich/man/man3/MPI_Neighbor_alltoallw.3
+mpich/man/man3/MPI_Op_commute.3
+mpich/man/man3/MPI_Op_create.3
+mpich/man/man3/MPI_Op_free.3
+mpich/man/man3/MPI_Open_port.3
+mpich/man/man3/MPI_Pack.3
+mpich/man/man3/MPI_Pack_external.3
+mpich/man/man3/MPI_Pack_external_size.3
+mpich/man/man3/MPI_Pack_size.3
+mpich/man/man3/MPI_Pcontrol.3
+mpich/man/man3/MPI_Probe.3
+mpich/man/man3/MPI_Publish_name.3
+mpich/man/man3/MPI_Put.3
+mpich/man/man3/MPI_Query_thread.3
+mpich/man/man3/MPI_Raccumulate.3
+mpich/man/man3/MPI_Recv.3
+mpich/man/man3/MPI_Recv_init.3
+mpich/man/man3/MPI_Reduce.3
+mpich/man/man3/MPI_Reduce_local.3
+mpich/man/man3/MPI_Reduce_scatter.3
+mpich/man/man3/MPI_Reduce_scatter_block.3
+mpich/man/man3/MPI_Register_datarep.3
+mpich/man/man3/MPI_Request_free.3
+mpich/man/man3/MPI_Request_get_status.3
+mpich/man/man3/MPI_Rget.3
+mpich/man/man3/MPI_Rget_accumulate.3
+mpich/man/man3/MPI_Rput.3
+mpich/man/man3/MPI_Rsend.3
+mpich/man/man3/MPI_Rsend_init.3
+mpich/man/man3/MPI_Scan.3
+mpich/man/man3/MPI_Scatter.3
+mpich/man/man3/MPI_Scatterv.3
+mpich/man/man3/MPI_Send.3
+mpich/man/man3/MPI_Send_init.3
+mpich/man/man3/MPI_Sendrecv.3
+mpich/man/man3/MPI_Sendrecv_replace.3
+mpich/man/man3/MPI_Ssend.3
+mpich/man/man3/MPI_Ssend_init.3
+mpich/man/man3/MPI_Start.3
+mpich/man/man3/MPI_Startall.3
+mpich/man/man3/MPI_Status_set_cancelled.3
+mpich/man/man3/MPI_Status_set_elements.3
+mpich/man/man3/MPI_Status_set_elements_x.3
+mpich/man/man3/MPI_T_category_changed.3
+mpich/man/man3/MPI_T_category_get_categories.3
+mpich/man/man3/MPI_T_category_get_cvars.3
+mpich/man/man3/MPI_T_category_get_info.3
+mpich/man/man3/MPI_T_category_get_num.3
+mpich/man/man3/MPI_T_category_get_pvars.3
+mpich/man/man3/MPI_T_cvar_get_info.3
+mpich/man/man3/MPI_T_cvar_get_num.3
+mpich/man/man3/MPI_T_cvar_handle_alloc.3
+mpich/man/man3/MPI_T_cvar_handle_free.3
+mpich/man/man3/MPI_T_cvar_read.3
+mpich/man/man3/MPI_T_cvar_write.3
+mpich/man/man3/MPI_T_enum_get_info.3
+mpich/man/man3/MPI_T_enum_get_item.3
+mpich/man/man3/MPI_T_finalize.3
+mpich/man/man3/MPI_T_init_thread.3
+mpich/man/man3/MPI_T_pvar_get_info.3
+mpich/man/man3/MPI_T_pvar_get_num.3
+mpich/man/man3/MPI_T_pvar_handle_alloc.3
+mpich/man/man3/MPI_T_pvar_handle_free.3
+mpich/man/man3/MPI_T_pvar_read.3
+mpich/man/man3/MPI_T_pvar_readreset.3
+mpich/man/man3/MPI_T_pvar_reset.3
+mpich/man/man3/MPI_T_pvar_session_create.3
+mpich/man/man3/MPI_T_pvar_session_free.3
+mpich/man/man3/MPI_T_pvar_start.3
+mpich/man/man3/MPI_T_pvar_stop.3
+mpich/man/man3/MPI_T_pvar_write.3
+mpich/man/man3/MPI_Test.3
+mpich/man/man3/MPI_Test_cancelled.3
+mpich/man/man3/MPI_Testall.3
+mpich/man/man3/MPI_Testany.3
+mpich/man/man3/MPI_Testsome.3
+mpich/man/man3/MPI_Topo_test.3
+mpich/man/man3/MPI_Type_commit.3
+mpich/man/man3/MPI_Type_contiguous.3
+mpich/man/man3/MPI_Type_create_darray.3
+mpich/man/man3/MPI_Type_create_hindexed.3
+mpich/man/man3/MPI_Type_create_hindexed_block.3
+mpich/man/man3/MPI_Type_create_hvector.3
+mpich/man/man3/MPI_Type_create_indexed_block.3
+mpich/man/man3/MPI_Type_create_keyval.3
+mpich/man/man3/MPI_Type_create_resized.3
+mpich/man/man3/MPI_Type_create_struct.3
+mpich/man/man3/MPI_Type_create_subarray.3
+mpich/man/man3/MPI_Type_delete_attr.3
+mpich/man/man3/MPI_Type_dup.3
+mpich/man/man3/MPI_Type_extent.3
+mpich/man/man3/MPI_Type_free.3
+mpich/man/man3/MPI_Type_free_keyval.3
+mpich/man/man3/MPI_Type_get_attr.3
+mpich/man/man3/MPI_Type_get_contents.3
+mpich/man/man3/MPI_Type_get_envelope.3
+mpich/man/man3/MPI_Type_get_extent.3
+mpich/man/man3/MPI_Type_get_extent_x.3
+mpich/man/man3/MPI_Type_get_name.3
+mpich/man/man3/MPI_Type_get_true_extent.3
+mpich/man/man3/MPI_Type_get_true_extent_x.3
+mpich/man/man3/MPI_Type_hindexed.3
+mpich/man/man3/MPI_Type_hvector.3
+mpich/man/man3/MPI_Type_indexed.3
+mpich/man/man3/MPI_Type_lb.3
+mpich/man/man3/MPI_Type_match_size.3
+mpich/man/man3/MPI_Type_set_attr.3
+mpich/man/man3/MPI_Type_set_name.3
+mpich/man/man3/MPI_Type_size.3
+mpich/man/man3/MPI_Type_size_x.3
+mpich/man/man3/MPI_Type_struct.3
+mpich/man/man3/MPI_Type_ub.3
+mpich/man/man3/MPI_Type_vector.3
+mpich/man/man3/MPI_Unpack.3
+mpich/man/man3/MPI_Unpack_external.3
+mpich/man/man3/MPI_Unpublish_name.3
+mpich/man/man3/MPI_Wait.3
+mpich/man/man3/MPI_Waitall.3
+mpich/man/man3/MPI_Waitany.3
+mpich/man/man3/MPI_Waitsome.3
+mpich/man/man3/MPI_Win_allocate.3
+mpich/man/man3/MPI_Win_allocate_shared.3
+mpich/man/man3/MPI_Win_attach.3
+mpich/man/man3/MPI_Win_call_errhandler.3
+mpich/man/man3/MPI_Win_complete.3
+mpich/man/man3/MPI_Win_create.3
+mpich/man/man3/MPI_Win_create_dynamic.3
+mpich/man/man3/MPI_Win_create_errhandler.3
+mpich/man/man3/MPI_Win_create_keyval.3
+mpich/man/man3/MPI_Win_delete_attr.3
+mpich/man/man3/MPI_Win_detach.3
+mpich/man/man3/MPI_Win_fence.3
+mpich/man/man3/MPI_Win_flush.3
+mpich/man/man3/MPI_Win_flush_all.3
+mpich/man/man3/MPI_Win_flush_local.3
+mpich/man/man3/MPI_Win_flush_local_all.3
+mpich/man/man3/MPI_Win_free.3
+mpich/man/man3/MPI_Win_free_keyval.3
+mpich/man/man3/MPI_Win_get_attr.3
+mpich/man/man3/MPI_Win_get_errhandler.3
+mpich/man/man3/MPI_Win_get_group.3
+mpich/man/man3/MPI_Win_get_info.3
+mpich/man/man3/MPI_Win_get_name.3
+mpich/man/man3/MPI_Win_lock.3
+mpich/man/man3/MPI_Win_lock_all.3
+mpich/man/man3/MPI_Win_post.3
+mpich/man/man3/MPI_Win_set_attr.3
+mpich/man/man3/MPI_Win_set_errhandler.3
+mpich/man/man3/MPI_Win_set_info.3
+mpich/man/man3/MPI_Win_set_name.3
+mpich/man/man3/MPI_Win_shared_query.3
+mpich/man/man3/MPI_Win_start.3
+mpich/man/man3/MPI_Win_sync.3
+mpich/man/man3/MPI_Win_test.3
+mpich/man/man3/MPI_Win_unlock.3
+mpich/man/man3/MPI_Win_unlock_all.3
+mpich/man/man3/MPI_Win_wait.3
+mpich/man/man3/MPI_Wtick.3
+mpich/man/man3/MPI_Wtime.3
+mpich/share/doc/mpich/install.pdf
+mpich/share/doc/mpich/logging.pdf
+mpich/share/doc/mpich/smpd_pmi.pdf
+mpich/share/doc/mpich/user.pdf
+mpich/share/mpich/examples/mpicc.conf
+mpich/share/mpich/examples/mpicxx.conf
+mpich/share/mpich/examples/mpif77.conf
diff --git a/mpi-ch/buildlink3.mk b/mpi-ch/buildlink3.mk
index b66ab7d..b894571 100644
--- a/mpi-ch/buildlink3.mk
+++ b/mpi-ch/buildlink3.mk
@@ -7,6 +7,8 @@ MPICH_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.mpich+=	mpich>=3
 BUILDLINK_PKGSRCDIR.mpich?=	../../wip/mpi-ch
+BUILDLINK_PASSTHRU_DIRS+=       ${PREFIX}/mpich/lib
+BUILDLINK_PASSTHRU_RPATHDIRS+=  ${PREFIX}/mpich/lib
 
 .include "../../parallel/openpa/buildlink3.mk"
 .endif	# MPICH_BUILDLINK3_MK
diff --git a/openmpi/Makefile b/openmpi/Makefile
index 30ac73e..2c3df96 100644
--- a/openmpi/Makefile
+++ b/openmpi/Makefile
@@ -14,7 +14,6 @@ COMMENT=	Open source MPI-2 implementation
 MPI_SUBPREFIX=		openmpi
 MPI_PREFIX=		$(LOCALBASE)/$(MPI_SUBPREFIX)
 #MPI_PREFIX=		$(LOCALBASE)
-INSTALLATION_PREFIX=	$(MPI_PREFIX)
 
 .include "../../mk/bsd.prefs.mk"
 
diff --git a/openmpi/PLIST b/openmpi/PLIST
index e7e4ff6..b20befe 100644
--- a/openmpi/PLIST
+++ b/openmpi/PLIST
@@ -1,649 +1,649 @@
 @comment $NetBSD: PLIST,v 1.26 2013/11/05 22:34:15 asau Exp $
-bin/mpic++
-bin/mpicc
-bin/mpicxx
-bin/mpiexec
-bin/mpif77
-bin/mpif90
-bin/mpifort
-bin/mpirun
-bin/ompi-clean
-bin/ompi-ps
-bin/ompi-server
-bin/ompi-top
-bin/ompi_info
-bin/opal_wrapper
-bin/orte-clean
-bin/orte-info
-bin/orte-ps
-bin/orte-server
-bin/orte-top
-bin/ortec++
-bin/ortecc
-bin/orted
-bin/orterun
-include/event2/buffer.h
-include/event2/buffer_compat.h
-include/event2/bufferevent.h
-include/event2/bufferevent_compat.h
-include/event2/bufferevent_ssl.h
-include/event2/bufferevent_struct.h
-include/event2/dns.h
-include/event2/dns_compat.h
-include/event2/dns_struct.h
-include/event2/event-config.h
-include/event2/event.h
-include/event2/event_compat.h
-include/event2/event_struct.h
-include/event2/http.h
-include/event2/http_compat.h
-include/event2/http_struct.h
-include/event2/keyvalq_struct.h
-include/event2/listener.h
-include/event2/rpc.h
-include/event2/rpc_compat.h
-include/event2/rpc_struct.h
-include/event2/tag.h
-include/event2/tag_compat.h
-include/event2/thread.h
-include/event2/util.h
-include/mpi-ext.h
-include/mpi.h
-include/mpi_portable_platform.h
-include/mpif-ext.h
-include/openmpi/ompi/mpi/cxx/comm.h
-include/openmpi/ompi/mpi/cxx/comm_inln.h
-include/openmpi/ompi/mpi/cxx/constants.h
-include/openmpi/ompi/mpi/cxx/datatype.h
-include/openmpi/ompi/mpi/cxx/datatype_inln.h
-include/openmpi/ompi/mpi/cxx/errhandler.h
-include/openmpi/ompi/mpi/cxx/errhandler_inln.h
-include/openmpi/ompi/mpi/cxx/exception.h
-include/openmpi/ompi/mpi/cxx/file.h
-include/openmpi/ompi/mpi/cxx/file_inln.h
-include/openmpi/ompi/mpi/cxx/functions.h
-include/openmpi/ompi/mpi/cxx/functions_inln.h
-include/openmpi/ompi/mpi/cxx/group.h
-include/openmpi/ompi/mpi/cxx/group_inln.h
-include/openmpi/ompi/mpi/cxx/info.h
-include/openmpi/ompi/mpi/cxx/info_inln.h
-include/openmpi/ompi/mpi/cxx/intercomm.h
-include/openmpi/ompi/mpi/cxx/intercomm_inln.h
-include/openmpi/ompi/mpi/cxx/intracomm.h
-include/openmpi/ompi/mpi/cxx/intracomm_inln.h
-include/openmpi/ompi/mpi/cxx/mpicxx.h
-include/openmpi/ompi/mpi/cxx/op.h
-include/openmpi/ompi/mpi/cxx/op_inln.h
-include/openmpi/ompi/mpi/cxx/request.h
-include/openmpi/ompi/mpi/cxx/request_inln.h
-include/openmpi/ompi/mpi/cxx/status.h
-include/openmpi/ompi/mpi/cxx/status_inln.h
-include/openmpi/ompi/mpi/cxx/topology.h
-include/openmpi/ompi/mpi/cxx/topology_inln.h
-include/openmpi/ompi/mpi/cxx/win.h
-include/openmpi/ompi/mpi/cxx/win_inln.h
-lib/libmca_common_sm.la
-lib/libmpi.la
-lib/libmpi_cxx.la
-lib/libompitrace.la
-lib/libopen-pal.la
-lib/libopen-rte.la
-lib/openmpi/libompi_dbg_msgq.la
-lib/openmpi/mca_allocator_basic.la
-lib/openmpi/mca_allocator_bucket.la
-lib/openmpi/mca_bcol_basesmuma.la
-lib/openmpi/mca_bcol_ptpcoll.la
-lib/openmpi/mca_bml_r2.la
-lib/openmpi/mca_btl_self.la
-lib/openmpi/mca_btl_sm.la
-lib/openmpi/mca_btl_tcp.la
-lib/openmpi/mca_coll_basic.la
-lib/openmpi/mca_coll_hierarch.la
-lib/openmpi/mca_coll_inter.la
-lib/openmpi/mca_coll_libnbc.la
-lib/openmpi/mca_coll_ml.la
-lib/openmpi/mca_coll_self.la
-lib/openmpi/mca_coll_sm.la
-lib/openmpi/mca_coll_tuned.la
-lib/openmpi/mca_compress_bzip.la
-lib/openmpi/mca_compress_gzip.la
-lib/openmpi/mca_crs_none.la
-lib/openmpi/mca_db_hash.la
-lib/openmpi/mca_db_print.la
-lib/openmpi/mca_dfs_app.la
-lib/openmpi/mca_dfs_orted.la
-lib/openmpi/mca_dfs_test.la
-lib/openmpi/mca_dpm_orte.la
-lib/openmpi/mca_errmgr_default_app.la
-lib/openmpi/mca_errmgr_default_hnp.la
-lib/openmpi/mca_errmgr_default_orted.la
-lib/openmpi/mca_ess_env.la
-lib/openmpi/mca_ess_hnp.la
-lib/openmpi/mca_ess_singleton.la
-lib/openmpi/mca_ess_tool.la
-lib/openmpi/mca_fbtl_posix.la
-lib/openmpi/mca_fcoll_dynamic.la
-lib/openmpi/mca_fcoll_individual.la
-lib/openmpi/mca_fcoll_static.la
-lib/openmpi/mca_fcoll_two_phase.la
-lib/openmpi/mca_fcoll_ylib.la
-lib/openmpi/mca_filem_raw.la
-lib/openmpi/mca_fs_ufs.la
-lib/openmpi/mca_grpcomm_bad.la
-lib/openmpi/mca_io_ompio.la
-lib/openmpi/mca_io_romio.la
-lib/openmpi/mca_iof_hnp.la
-lib/openmpi/mca_iof_mr_hnp.la
-lib/openmpi/mca_iof_mr_orted.la
-lib/openmpi/mca_iof_orted.la
-lib/openmpi/mca_iof_tool.la
-lib/openmpi/mca_mpool_grdma.la
-lib/openmpi/mca_mpool_sm.la
-lib/openmpi/mca_odls_default.la
-lib/openmpi/mca_oob_tcp.la
-lib/openmpi/mca_osc_pt2pt.la
-lib/openmpi/mca_osc_rdma.la
-lib/openmpi/mca_plm_rsh.la
-lib/openmpi/mca_pml_bfo.la
-lib/openmpi/mca_pml_cm.la
-lib/openmpi/mca_pml_ob1.la
-lib/openmpi/mca_pstat_test.la
-lib/openmpi/mca_pubsub_orte.la
-lib/openmpi/mca_ras_simulator.la
-lib/openmpi/mca_rcache_vma.la
-lib/openmpi/mca_rmaps_lama.la
-lib/openmpi/mca_rmaps_mindist.la
-lib/openmpi/mca_rmaps_ppr.la
-lib/openmpi/mca_rmaps_rank_file.la
-lib/openmpi/mca_rmaps_resilient.la
-lib/openmpi/mca_rmaps_round_robin.la
-lib/openmpi/mca_rmaps_seq.la
-lib/openmpi/mca_rmaps_staged.la
-lib/openmpi/mca_rml_oob.la
-lib/openmpi/mca_routed_binomial.la
-lib/openmpi/mca_routed_debruijn.la
-lib/openmpi/mca_routed_direct.la
-lib/openmpi/mca_routed_radix.la
-lib/openmpi/mca_sbgp_basesmsocket.la
-lib/openmpi/mca_sbgp_basesmuma.la
-lib/openmpi/mca_sbgp_p2p.la
-lib/openmpi/mca_sharedfp_dummy.la
-lib/openmpi/mca_shmem_mmap.la
-lib/openmpi/mca_shmem_sysv.la
-lib/openmpi/mca_state_app.la
-lib/openmpi/mca_state_hnp.la
-lib/openmpi/mca_state_novm.la
-lib/openmpi/mca_state_orted.la
-lib/openmpi/mca_state_staged_hnp.la
-lib/openmpi/mca_state_staged_orted.la
-lib/openmpi/mca_topo_basic.la
-lib/openmpi/mca_vprotocol_pessimist.la
-lib/pkgconfig/ompi-c.pc
-lib/pkgconfig/ompi-cxx.pc
-lib/pkgconfig/ompi-f77.pc
-lib/pkgconfig/ompi-f90.pc
-lib/pkgconfig/ompi-fort.pc
-lib/pkgconfig/ompi.pc
-lib/pkgconfig/orte.pc
-man/man1/mpic++.1
-man/man1/mpicc.1
-man/man1/mpicxx.1
-man/man1/mpiexec.1
-man/man1/mpif77.1
-man/man1/mpif90.1
-man/man1/mpifort.1
-man/man1/mpirun.1
-man/man1/ompi-clean.1
-man/man1/ompi-ps.1
-man/man1/ompi-server.1
-man/man1/ompi-top.1
-man/man1/ompi_info.1
-man/man1/opal_wrapper.1
-man/man1/orte-clean.1
-man/man1/orte-info.1
-man/man1/orte-ps.1
-man/man1/orte-server.1
-man/man1/orte-top.1
-man/man1/orted.1
-man/man1/orterun.1
-man/man3/MPI.3
-man/man3/MPI_Abort.3
-man/man3/MPI_Accumulate.3
-man/man3/MPI_Add_error_class.3
-man/man3/MPI_Add_error_code.3
-man/man3/MPI_Add_error_string.3
-man/man3/MPI_Address.3
-man/man3/MPI_Allgather.3
-man/man3/MPI_Allgatherv.3
-man/man3/MPI_Alloc_mem.3
-man/man3/MPI_Allreduce.3
-man/man3/MPI_Alltoall.3
-man/man3/MPI_Alltoallv.3
-man/man3/MPI_Alltoallw.3
-man/man3/MPI_Attr_delete.3
-man/man3/MPI_Attr_get.3
-man/man3/MPI_Attr_put.3
-man/man3/MPI_Barrier.3
-man/man3/MPI_Bcast.3
-man/man3/MPI_Bsend.3
-man/man3/MPI_Bsend_init.3
-man/man3/MPI_Buffer_attach.3
-man/man3/MPI_Buffer_detach.3
-man/man3/MPI_Cancel.3
-man/man3/MPI_Cart_coords.3
-man/man3/MPI_Cart_create.3
-man/man3/MPI_Cart_get.3
-man/man3/MPI_Cart_map.3
-man/man3/MPI_Cart_rank.3
-man/man3/MPI_Cart_shift.3
-man/man3/MPI_Cart_sub.3
-man/man3/MPI_Cartdim_get.3
-man/man3/MPI_Close_port.3
-man/man3/MPI_Comm_accept.3
-man/man3/MPI_Comm_c2f.3
-man/man3/MPI_Comm_call_errhandler.3
-man/man3/MPI_Comm_compare.3
-man/man3/MPI_Comm_connect.3
-man/man3/MPI_Comm_create.3
-man/man3/MPI_Comm_create_errhandler.3
-man/man3/MPI_Comm_create_group.3
-man/man3/MPI_Comm_create_keyval.3
-man/man3/MPI_Comm_delete_attr.3
-man/man3/MPI_Comm_disconnect.3
-man/man3/MPI_Comm_dup.3
-man/man3/MPI_Comm_dup_with_info.3
-man/man3/MPI_Comm_f2c.3
-man/man3/MPI_Comm_free.3
-man/man3/MPI_Comm_free_keyval.3
-man/man3/MPI_Comm_get_attr.3
-man/man3/MPI_Comm_get_errhandler.3
-man/man3/MPI_Comm_get_name.3
-man/man3/MPI_Comm_get_parent.3
-man/man3/MPI_Comm_group.3
-man/man3/MPI_Comm_idup.3
-man/man3/MPI_Comm_join.3
-man/man3/MPI_Comm_rank.3
-man/man3/MPI_Comm_remote_group.3
-man/man3/MPI_Comm_remote_size.3
-man/man3/MPI_Comm_set_attr.3
-man/man3/MPI_Comm_set_errhandler.3
-man/man3/MPI_Comm_set_name.3
-man/man3/MPI_Comm_size.3
-man/man3/MPI_Comm_spawn.3
-man/man3/MPI_Comm_spawn_multiple.3
-man/man3/MPI_Comm_split.3
-man/man3/MPI_Comm_split_type.3
-man/man3/MPI_Comm_test_inter.3
-man/man3/MPI_Dims_create.3
-man/man3/MPI_Dist_graph_create.3
-man/man3/MPI_Dist_graph_create_adjacent.3
-man/man3/MPI_Dist_graph_neighbors.3
-man/man3/MPI_Dist_graph_neighbors_count.3
-man/man3/MPI_Errhandler_create.3
-man/man3/MPI_Errhandler_free.3
-man/man3/MPI_Errhandler_get.3
-man/man3/MPI_Errhandler_set.3
-man/man3/MPI_Error_class.3
-man/man3/MPI_Error_string.3
-man/man3/MPI_Exscan.3
-man/man3/MPI_File_c2f.3
-man/man3/MPI_File_call_errhandler.3
-man/man3/MPI_File_close.3
-man/man3/MPI_File_create_errhandler.3
-man/man3/MPI_File_delete.3
-man/man3/MPI_File_f2c.3
-man/man3/MPI_File_get_amode.3
-man/man3/MPI_File_get_atomicity.3
-man/man3/MPI_File_get_byte_offset.3
-man/man3/MPI_File_get_errhandler.3
-man/man3/MPI_File_get_group.3
-man/man3/MPI_File_get_info.3
-man/man3/MPI_File_get_position.3
-man/man3/MPI_File_get_position_shared.3
-man/man3/MPI_File_get_size.3
-man/man3/MPI_File_get_type_extent.3
-man/man3/MPI_File_get_view.3
-man/man3/MPI_File_iread.3
-man/man3/MPI_File_iread_at.3
-man/man3/MPI_File_iread_shared.3
-man/man3/MPI_File_iwrite.3
-man/man3/MPI_File_iwrite_at.3
-man/man3/MPI_File_iwrite_shared.3
-man/man3/MPI_File_open.3
-man/man3/MPI_File_preallocate.3
-man/man3/MPI_File_read.3
-man/man3/MPI_File_read_all.3
-man/man3/MPI_File_read_all_begin.3
-man/man3/MPI_File_read_all_end.3
-man/man3/MPI_File_read_at.3
-man/man3/MPI_File_read_at_all.3
-man/man3/MPI_File_read_at_all_begin.3
-man/man3/MPI_File_read_at_all_end.3
-man/man3/MPI_File_read_ordered.3
-man/man3/MPI_File_read_ordered_begin.3
-man/man3/MPI_File_read_ordered_end.3
-man/man3/MPI_File_read_shared.3
-man/man3/MPI_File_seek.3
-man/man3/MPI_File_seek_shared.3
-man/man3/MPI_File_set_atomicity.3
-man/man3/MPI_File_set_errhandler.3
-man/man3/MPI_File_set_info.3
-man/man3/MPI_File_set_size.3
-man/man3/MPI_File_set_view.3
-man/man3/MPI_File_sync.3
-man/man3/MPI_File_write.3
-man/man3/MPI_File_write_all.3
-man/man3/MPI_File_write_all_begin.3
-man/man3/MPI_File_write_all_end.3
-man/man3/MPI_File_write_at.3
-man/man3/MPI_File_write_at_all.3
-man/man3/MPI_File_write_at_all_begin.3
-man/man3/MPI_File_write_at_all_end.3
-man/man3/MPI_File_write_ordered.3
-man/man3/MPI_File_write_ordered_begin.3
-man/man3/MPI_File_write_ordered_end.3
-man/man3/MPI_File_write_shared.3
-man/man3/MPI_Finalize.3
-man/man3/MPI_Finalized.3
-man/man3/MPI_Free_mem.3
-man/man3/MPI_Gather.3
-man/man3/MPI_Gatherv.3
-man/man3/MPI_Get.3
-man/man3/MPI_Get_address.3
-man/man3/MPI_Get_count.3
-man/man3/MPI_Get_elements.3
-man/man3/MPI_Get_elements_x.3
-man/man3/MPI_Get_library_version.3
-man/man3/MPI_Get_processor_name.3
-man/man3/MPI_Get_version.3
-man/man3/MPI_Graph_create.3
-man/man3/MPI_Graph_get.3
-man/man3/MPI_Graph_map.3
-man/man3/MPI_Graph_neighbors.3
-man/man3/MPI_Graph_neighbors_count.3
-man/man3/MPI_Graphdims_get.3
-man/man3/MPI_Grequest_complete.3
-man/man3/MPI_Grequest_start.3
-man/man3/MPI_Group_c2f.3
-man/man3/MPI_Group_compare.3
-man/man3/MPI_Group_difference.3
-man/man3/MPI_Group_excl.3
-man/man3/MPI_Group_f2c.3
-man/man3/MPI_Group_free.3
-man/man3/MPI_Group_incl.3
-man/man3/MPI_Group_intersection.3
-man/man3/MPI_Group_range_excl.3
-man/man3/MPI_Group_range_incl.3
-man/man3/MPI_Group_rank.3
-man/man3/MPI_Group_size.3
-man/man3/MPI_Group_translate_ranks.3
-man/man3/MPI_Group_union.3
-man/man3/MPI_Iallgather.3
-man/man3/MPI_Iallgatherv.3
-man/man3/MPI_Iallreduce.3
-man/man3/MPI_Ialltoall.3
-man/man3/MPI_Ialltoallv.3
-man/man3/MPI_Ialltoallw.3
-man/man3/MPI_Ibcast.3
-man/man3/MPI_Ibsend.3
-man/man3/MPI_Iexscan.3
-man/man3/MPI_Igather.3
-man/man3/MPI_Igatherv.3
-man/man3/MPI_Improbe.3
-man/man3/MPI_Imrecv.3
-man/man3/MPI_Ineighbor_allgather.3
-man/man3/MPI_Ineighbor_allgatherv.3
-man/man3/MPI_Ineighbor_alltoall.3
-man/man3/MPI_Ineighbor_alltoallv.3
-man/man3/MPI_Ineighbor_alltoallw.3
-man/man3/MPI_Info_c2f.3
-man/man3/MPI_Info_create.3
-man/man3/MPI_Info_delete.3
-man/man3/MPI_Info_dup.3
-man/man3/MPI_Info_env.3
-man/man3/MPI_Info_f2c.3
-man/man3/MPI_Info_free.3
-man/man3/MPI_Info_get.3
-man/man3/MPI_Info_get_nkeys.3
-man/man3/MPI_Info_get_nthkey.3
-man/man3/MPI_Info_get_valuelen.3
-man/man3/MPI_Info_set.3
-man/man3/MPI_Init.3
-man/man3/MPI_Init_thread.3
-man/man3/MPI_Initialized.3
-man/man3/MPI_Intercomm_create.3
-man/man3/MPI_Intercomm_merge.3
-man/man3/MPI_Iprobe.3
-man/man3/MPI_Irecv.3
-man/man3/MPI_Ireduce.3
-man/man3/MPI_Ireduce_scatter.3
-man/man3/MPI_Ireduce_scatter_block.3
-man/man3/MPI_Irsend.3
-man/man3/MPI_Is_thread_main.3
-man/man3/MPI_Iscan.3
-man/man3/MPI_Iscatter.3
-man/man3/MPI_Iscatterv.3
-man/man3/MPI_Isend.3
-man/man3/MPI_Issend.3
-man/man3/MPI_Keyval_create.3
-man/man3/MPI_Keyval_free.3
-man/man3/MPI_Lookup_name.3
-man/man3/MPI_Mprobe.3
-man/man3/MPI_Mrecv.3
-man/man3/MPI_Neighbor_allgather.3
-man/man3/MPI_Neighbor_allgatherv.3
-man/man3/MPI_Neighbor_alltoall.3
-man/man3/MPI_Neighbor_alltoallv.3
-man/man3/MPI_Neighbor_alltoallw.3
-man/man3/MPI_Op_c2f.3
-man/man3/MPI_Op_create.3
-man/man3/MPI_Op_f2c.3
-man/man3/MPI_Op_free.3
-man/man3/MPI_Open_port.3
-man/man3/MPI_Pack.3
-man/man3/MPI_Pack_external.3
-man/man3/MPI_Pack_external_size.3
-man/man3/MPI_Pack_size.3
-man/man3/MPI_Pcontrol.3
-man/man3/MPI_Probe.3
-man/man3/MPI_Publish_name.3
-man/man3/MPI_Put.3
-man/man3/MPI_Query_thread.3
-man/man3/MPI_Recv.3
-man/man3/MPI_Recv_init.3
-man/man3/MPI_Reduce.3
-man/man3/MPI_Reduce_local.3
-man/man3/MPI_Reduce_scatter.3
-man/man3/MPI_Reduce_scatter_block.3
-man/man3/MPI_Register_datarep.3
-man/man3/MPI_Request_c2f.3
-man/man3/MPI_Request_f2c.3
-man/man3/MPI_Request_free.3
-man/man3/MPI_Request_get_status.3
-man/man3/MPI_Rsend.3
-man/man3/MPI_Rsend_init.3
-man/man3/MPI_Scan.3
-man/man3/MPI_Scatter.3
-man/man3/MPI_Scatterv.3
-man/man3/MPI_Send.3
-man/man3/MPI_Send_init.3
-man/man3/MPI_Sendrecv.3
-man/man3/MPI_Sendrecv_replace.3
-man/man3/MPI_Sizeof.3
-man/man3/MPI_Ssend.3
-man/man3/MPI_Ssend_init.3
-man/man3/MPI_Start.3
-man/man3/MPI_Startall.3
-man/man3/MPI_Status_c2f.3
-man/man3/MPI_Status_f2c.3
-man/man3/MPI_Status_set_cancelled.3
-man/man3/MPI_Status_set_elements.3
-man/man3/MPI_Status_set_elements_x.3
-man/man3/MPI_Test.3
-man/man3/MPI_Test_cancelled.3
-man/man3/MPI_Testall.3
-man/man3/MPI_Testany.3
-man/man3/MPI_Testsome.3
-man/man3/MPI_Topo_test.3
-man/man3/MPI_Type_c2f.3
-man/man3/MPI_Type_commit.3
-man/man3/MPI_Type_contiguous.3
-man/man3/MPI_Type_create_darray.3
-man/man3/MPI_Type_create_f90_complex.3
-man/man3/MPI_Type_create_f90_integer.3
-man/man3/MPI_Type_create_f90_real.3
-man/man3/MPI_Type_create_hindexed.3
-man/man3/MPI_Type_create_hindexed_block.3
-man/man3/MPI_Type_create_hvector.3
-man/man3/MPI_Type_create_indexed_block.3
-man/man3/MPI_Type_create_keyval.3
-man/man3/MPI_Type_create_resized.3
-man/man3/MPI_Type_create_struct.3
-man/man3/MPI_Type_create_subarray.3
-man/man3/MPI_Type_delete_attr.3
-man/man3/MPI_Type_dup.3
-man/man3/MPI_Type_extent.3
-man/man3/MPI_Type_f2c.3
-man/man3/MPI_Type_free.3
-man/man3/MPI_Type_free_keyval.3
-man/man3/MPI_Type_get_attr.3
-man/man3/MPI_Type_get_contents.3
-man/man3/MPI_Type_get_envelope.3
-man/man3/MPI_Type_get_extent.3
-man/man3/MPI_Type_get_extent_x.3
-man/man3/MPI_Type_get_name.3
-man/man3/MPI_Type_get_true_extent.3
-man/man3/MPI_Type_get_true_extent_x.3
-man/man3/MPI_Type_hindexed.3
-man/man3/MPI_Type_hvector.3
-man/man3/MPI_Type_indexed.3
-man/man3/MPI_Type_lb.3
-man/man3/MPI_Type_match_size.3
-man/man3/MPI_Type_set_attr.3
-man/man3/MPI_Type_set_name.3
-man/man3/MPI_Type_size.3
-man/man3/MPI_Type_size_x.3
-man/man3/MPI_Type_struct.3
-man/man3/MPI_Type_ub.3
-man/man3/MPI_Type_vector.3
-man/man3/MPI_Unpack.3
-man/man3/MPI_Unpack_external.3
-man/man3/MPI_Unpublish_name.3
-man/man3/MPI_Wait.3
-man/man3/MPI_Waitall.3
-man/man3/MPI_Waitany.3
-man/man3/MPI_Waitsome.3
-man/man3/MPI_Win_c2f.3
-man/man3/MPI_Win_call_errhandler.3
-man/man3/MPI_Win_complete.3
-man/man3/MPI_Win_create.3
-man/man3/MPI_Win_create_errhandler.3
-man/man3/MPI_Win_create_keyval.3
-man/man3/MPI_Win_delete_attr.3
-man/man3/MPI_Win_f2c.3
-man/man3/MPI_Win_fence.3
-man/man3/MPI_Win_free.3
-man/man3/MPI_Win_free_keyval.3
-man/man3/MPI_Win_get_attr.3
-man/man3/MPI_Win_get_errhandler.3
-man/man3/MPI_Win_get_group.3
-man/man3/MPI_Win_get_name.3
-man/man3/MPI_Win_lock.3
-man/man3/MPI_Win_post.3
-man/man3/MPI_Win_set_attr.3
-man/man3/MPI_Win_set_errhandler.3
-man/man3/MPI_Win_set_name.3
-man/man3/MPI_Win_start.3
-man/man3/MPI_Win_test.3
-man/man3/MPI_Win_unlock.3
-man/man3/MPI_Win_wait.3
-man/man3/MPI_Wtick.3
-man/man3/MPI_Wtime.3
-man/man3/OpenMPI.3
-man/man7/ompi_crcp.7
-man/man7/opal_crs.7
-man/man7/orte_filem.7
-man/man7/orte_hosts.7
-man/man7/orte_snapc.7
-man/man7/orte_sstore.7
-share/examples/openmpi/cshrc
-share/examples/openmpi/shrc
-share/openmpi/amca-param-sets/example.conf
-share/openmpi/examples/openmpi-default-hostfile
-share/openmpi/examples/openmpi-mca-params.conf
-share/openmpi/examples/openmpi-totalview.tcl
-share/openmpi/help-dash-host.txt
-share/openmpi/help-db-base.txt
-share/openmpi/help-errmgr-base.txt
-share/openmpi/help-ess-base.txt
-share/openmpi/help-hostfile.txt
-share/openmpi/help-mca-base.txt
-share/openmpi/help-mca-bml-r2.txt
-share/openmpi/help-mca-coll-base.txt
-share/openmpi/help-mca-op-base.txt
-share/openmpi/help-mca-var.txt
-share/openmpi/help-mpi-api.txt
-share/openmpi/help-mpi-btl-base.txt
-share/openmpi/help-mpi-btl-sm.txt
-share/openmpi/help-mpi-btl-tcp.txt
-share/openmpi/help-mpi-coll-sm.txt
-share/openmpi/help-mpi-common-sm.txt
-share/openmpi/help-mpi-errors.txt
-share/openmpi/help-mpi-pml-bfo.txt
-share/openmpi/help-mpi-pml-ob1.txt
-share/openmpi/help-mpi-runtime.txt
-share/openmpi/help-mpool-base.txt
-share/openmpi/help-ompi-crcp-base.txt
-share/openmpi/help-ompi-dpm-base.txt
-share/openmpi/help-ompi-dpm-orte.txt
-share/openmpi/help-ompi-pubsub-orte.txt
-share/openmpi/help-opal-compress-base.txt
-share/openmpi/help-opal-compress-bzip.txt
-share/openmpi/help-opal-compress-gzip.txt
-share/openmpi/help-opal-crs-base.txt
-share/openmpi/help-opal-crs-none.txt
-share/openmpi/help-opal-hwloc-base.txt
-share/openmpi/help-opal-runtime.txt
-share/openmpi/help-opal-shmem-mmap.txt
-share/openmpi/help-opal-shmem-sysv.txt
-share/openmpi/help-opal-util.txt
-share/openmpi/help-opal-wrapper.txt
-share/openmpi/help-opal_info.txt
-share/openmpi/help-orte-clean.txt
-share/openmpi/help-orte-filem-base.txt
-share/openmpi/help-orte-filem-raw.txt
-share/openmpi/help-orte-info.txt
-share/openmpi/help-orte-odls-base.txt
-share/openmpi/help-orte-odls-default.txt
-share/openmpi/help-orte-ps.txt
-share/openmpi/help-orte-rmaps-base.txt
-share/openmpi/help-orte-rmaps-lama.txt
-share/openmpi/help-orte-rmaps-md.txt
-share/openmpi/help-orte-rmaps-ppr.txt
-share/openmpi/help-orte-rmaps-resilient.txt
-share/openmpi/help-orte-rmaps-rr.txt
-share/openmpi/help-orte-rmaps-seq.txt
-share/openmpi/help-orte-runtime.txt
-share/openmpi/help-orte-server.txt
-share/openmpi/help-orte-snapc-base.txt
-share/openmpi/help-orte-sstore-base.txt
-share/openmpi/help-orte-top.txt
-share/openmpi/help-orted.txt
-share/openmpi/help-orterun.txt
-share/openmpi/help-plm-base.txt
-share/openmpi/help-plm-rsh.txt
-share/openmpi/help-ras-base.txt
-share/openmpi/help-ras-simulator.txt
-share/openmpi/help-regex.txt
-share/openmpi/help-rmaps_rank_file.txt
-share/openmpi/help-state-staged-hnp.txt
-share/openmpi/mca-coll-ml.config
-share/openmpi/mpic++-wrapper-data.txt
-share/openmpi/mpicc-wrapper-data.txt
-share/openmpi/mpicxx-wrapper-data.txt
-share/openmpi/mpif77-wrapper-data.txt
-share/openmpi/mpif90-wrapper-data.txt
-share/openmpi/mpifort-wrapper-data.txt
-share/openmpi/openmpi-valgrind.supp
-share/openmpi/ortec++-wrapper-data.txt
-share/openmpi/ortecc-wrapper-data.txt
+openmpi/bin/mpic++
+openmpi/bin/mpicc
+openmpi/bin/mpicxx
+openmpi/bin/mpiexec
+openmpi/bin/mpif77
+openmpi/bin/mpif90
+openmpi/bin/mpifort
+openmpi/bin/mpirun
+openmpi/bin/ompi-clean
+openmpi/bin/ompi-ps
+openmpi/bin/ompi-server
+openmpi/bin/ompi-top
+openmpi/bin/ompi_info
+openmpi/bin/opal_wrapper
+openmpi/bin/orte-clean
+openmpi/bin/orte-info
+openmpi/bin/orte-ps
+openmpi/bin/orte-server
+openmpi/bin/orte-top
+openmpi/bin/ortec++
+openmpi/bin/ortecc
+openmpi/bin/orted
+openmpi/bin/orterun
+openmpi/include/event2/buffer.h
+openmpi/include/event2/buffer_compat.h
+openmpi/include/event2/bufferevent.h
+openmpi/include/event2/bufferevent_compat.h
+openmpi/include/event2/bufferevent_ssl.h
+openmpi/include/event2/bufferevent_struct.h
+openmpi/include/event2/dns.h
+openmpi/include/event2/dns_compat.h
+openmpi/include/event2/dns_struct.h
+openmpi/include/event2/event-config.h
+openmpi/include/event2/event.h
+openmpi/include/event2/event_compat.h
+openmpi/include/event2/event_struct.h
+openmpi/include/event2/http.h
+openmpi/include/event2/http_compat.h
+openmpi/include/event2/http_struct.h
+openmpi/include/event2/keyvalq_struct.h
+openmpi/include/event2/listener.h
+openmpi/include/event2/rpc.h
+openmpi/include/event2/rpc_compat.h
+openmpi/include/event2/rpc_struct.h
+openmpi/include/event2/tag.h
+openmpi/include/event2/tag_compat.h
+openmpi/include/event2/thread.h
+openmpi/include/event2/util.h
+openmpi/include/mpi-ext.h
+openmpi/include/mpi.h
+openmpi/include/mpi_portable_platform.h
+openmpi/include/mpif-ext.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/constants.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/exception.h
+openmpi/include/openmpi/ompi/mpi/cxx/file.h
+openmpi/include/openmpi/ompi/mpi/cxx/file_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/group.h
+openmpi/include/openmpi/ompi/mpi/cxx/group_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/info.h
+openmpi/include/openmpi/ompi/mpi/cxx/info_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/mpicxx.h
+openmpi/include/openmpi/ompi/mpi/cxx/op.h
+openmpi/include/openmpi/ompi/mpi/cxx/op_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/request.h
+openmpi/include/openmpi/ompi/mpi/cxx/request_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/status.h
+openmpi/include/openmpi/ompi/mpi/cxx/status_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/win.h
+openmpi/include/openmpi/ompi/mpi/cxx/win_inln.h
+openmpi/lib/libmca_common_sm.la
+openmpi/lib/libmpi.la
+openmpi/lib/libmpi_cxx.la
+openmpi/lib/libompitrace.la
+openmpi/lib/libopen-pal.la
+openmpi/lib/libopen-rte.la
+openmpi/lib/openmpi/libompi_dbg_msgq.la
+openmpi/lib/openmpi/mca_allocator_basic.la
+openmpi/lib/openmpi/mca_allocator_bucket.la
+openmpi/lib/openmpi/mca_bcol_basesmuma.la
+openmpi/lib/openmpi/mca_bcol_ptpcoll.la
+openmpi/lib/openmpi/mca_bml_r2.la
+openmpi/lib/openmpi/mca_btl_self.la
+openmpi/lib/openmpi/mca_btl_sm.la
+openmpi/lib/openmpi/mca_btl_tcp.la
+openmpi/lib/openmpi/mca_coll_basic.la
+openmpi/lib/openmpi/mca_coll_hierarch.la
+openmpi/lib/openmpi/mca_coll_inter.la
+openmpi/lib/openmpi/mca_coll_libnbc.la
+openmpi/lib/openmpi/mca_coll_ml.la
+openmpi/lib/openmpi/mca_coll_self.la
+openmpi/lib/openmpi/mca_coll_sm.la
+openmpi/lib/openmpi/mca_coll_tuned.la
+openmpi/lib/openmpi/mca_compress_bzip.la
+openmpi/lib/openmpi/mca_compress_gzip.la
+openmpi/lib/openmpi/mca_crs_none.la
+openmpi/lib/openmpi/mca_db_hash.la
+openmpi/lib/openmpi/mca_db_print.la
+openmpi/lib/openmpi/mca_dfs_app.la
+openmpi/lib/openmpi/mca_dfs_orted.la
+openmpi/lib/openmpi/mca_dfs_test.la
+openmpi/lib/openmpi/mca_dpm_orte.la
+openmpi/lib/openmpi/mca_errmgr_default_app.la
+openmpi/lib/openmpi/mca_errmgr_default_hnp.la
+openmpi/lib/openmpi/mca_errmgr_default_orted.la
+openmpi/lib/openmpi/mca_ess_env.la
+openmpi/lib/openmpi/mca_ess_hnp.la
+openmpi/lib/openmpi/mca_ess_singleton.la
+openmpi/lib/openmpi/mca_ess_tool.la
+openmpi/lib/openmpi/mca_fbtl_posix.la
+openmpi/lib/openmpi/mca_fcoll_dynamic.la
+openmpi/lib/openmpi/mca_fcoll_individual.la
+openmpi/lib/openmpi/mca_fcoll_static.la
+openmpi/lib/openmpi/mca_fcoll_two_phase.la
+openmpi/lib/openmpi/mca_fcoll_ylib.la
+openmpi/lib/openmpi/mca_filem_raw.la
+openmpi/lib/openmpi/mca_fs_ufs.la
+openmpi/lib/openmpi/mca_grpcomm_bad.la
+openmpi/lib/openmpi/mca_io_ompio.la
+openmpi/lib/openmpi/mca_io_romio.la
+openmpi/lib/openmpi/mca_iof_hnp.la
+openmpi/lib/openmpi/mca_iof_mr_hnp.la
+openmpi/lib/openmpi/mca_iof_mr_orted.la
+openmpi/lib/openmpi/mca_iof_orted.la
+openmpi/lib/openmpi/mca_iof_tool.la
+openmpi/lib/openmpi/mca_mpool_grdma.la
+openmpi/lib/openmpi/mca_mpool_sm.la
+openmpi/lib/openmpi/mca_odls_default.la
+openmpi/lib/openmpi/mca_oob_tcp.la
+openmpi/lib/openmpi/mca_osc_pt2pt.la
+openmpi/lib/openmpi/mca_osc_rdma.la
+openmpi/lib/openmpi/mca_plm_rsh.la
+openmpi/lib/openmpi/mca_pml_bfo.la
+openmpi/lib/openmpi/mca_pml_cm.la
+openmpi/lib/openmpi/mca_pml_ob1.la
+openmpi/lib/openmpi/mca_pstat_test.la
+openmpi/lib/openmpi/mca_pubsub_orte.la
+openmpi/lib/openmpi/mca_ras_simulator.la
+openmpi/lib/openmpi/mca_rcache_vma.la
+openmpi/lib/openmpi/mca_rmaps_lama.la
+openmpi/lib/openmpi/mca_rmaps_mindist.la
+openmpi/lib/openmpi/mca_rmaps_ppr.la
+openmpi/lib/openmpi/mca_rmaps_rank_file.la
+openmpi/lib/openmpi/mca_rmaps_resilient.la
+openmpi/lib/openmpi/mca_rmaps_round_robin.la
+openmpi/lib/openmpi/mca_rmaps_seq.la
+openmpi/lib/openmpi/mca_rmaps_staged.la
+openmpi/lib/openmpi/mca_rml_oob.la
+openmpi/lib/openmpi/mca_routed_binomial.la
+openmpi/lib/openmpi/mca_routed_debruijn.la
+openmpi/lib/openmpi/mca_routed_direct.la
+openmpi/lib/openmpi/mca_routed_radix.la
+openmpi/lib/openmpi/mca_sbgp_basesmsocket.la
+openmpi/lib/openmpi/mca_sbgp_basesmuma.la
+openmpi/lib/openmpi/mca_sbgp_p2p.la
+openmpi/lib/openmpi/mca_sharedfp_dummy.la
+openmpi/lib/openmpi/mca_shmem_mmap.la
+openmpi/lib/openmpi/mca_shmem_sysv.la
+openmpi/lib/openmpi/mca_state_app.la
+openmpi/lib/openmpi/mca_state_hnp.la
+openmpi/lib/openmpi/mca_state_novm.la
+openmpi/lib/openmpi/mca_state_orted.la
+openmpi/lib/openmpi/mca_state_staged_hnp.la
+openmpi/lib/openmpi/mca_state_staged_orted.la
+openmpi/lib/openmpi/mca_topo_basic.la
+openmpi/lib/openmpi/mca_vprotocol_pessimist.la
+openmpi/lib/pkgconfig/ompi-c.pc
+openmpi/lib/pkgconfig/ompi-cxx.pc
+openmpi/lib/pkgconfig/ompi-f77.pc
+openmpi/lib/pkgconfig/ompi-f90.pc
+openmpi/lib/pkgconfig/ompi-fort.pc
+openmpi/lib/pkgconfig/ompi.pc
+openmpi/lib/pkgconfig/orte.pc
+openmpi/man/man1/mpic++.1
+openmpi/man/man1/mpicc.1
+openmpi/man/man1/mpicxx.1
+openmpi/man/man1/mpiexec.1
+openmpi/man/man1/mpif77.1
+openmpi/man/man1/mpif90.1
+openmpi/man/man1/mpifort.1
+openmpi/man/man1/mpirun.1
+openmpi/man/man1/ompi-clean.1
+openmpi/man/man1/ompi-ps.1
+openmpi/man/man1/ompi-server.1
+openmpi/man/man1/ompi-top.1
+openmpi/man/man1/ompi_info.1
+openmpi/man/man1/opal_wrapper.1
+openmpi/man/man1/orte-clean.1
+openmpi/man/man1/orte-info.1
+openmpi/man/man1/orte-ps.1
+openmpi/man/man1/orte-server.1
+openmpi/man/man1/orte-top.1
+openmpi/man/man1/orted.1
+openmpi/man/man1/orterun.1
+openmpi/man/man3/MPI.3
+openmpi/man/man3/MPI_Abort.3
+openmpi/man/man3/MPI_Accumulate.3
+openmpi/man/man3/MPI_Add_error_class.3
+openmpi/man/man3/MPI_Add_error_code.3
+openmpi/man/man3/MPI_Add_error_string.3
+openmpi/man/man3/MPI_Address.3
+openmpi/man/man3/MPI_Allgather.3
+openmpi/man/man3/MPI_Allgatherv.3
+openmpi/man/man3/MPI_Alloc_mem.3
+openmpi/man/man3/MPI_Allreduce.3
+openmpi/man/man3/MPI_Alltoall.3
+openmpi/man/man3/MPI_Alltoallv.3
+openmpi/man/man3/MPI_Alltoallw.3
+openmpi/man/man3/MPI_Attr_delete.3
+openmpi/man/man3/MPI_Attr_get.3
+openmpi/man/man3/MPI_Attr_put.3
+openmpi/man/man3/MPI_Barrier.3
+openmpi/man/man3/MPI_Bcast.3
+openmpi/man/man3/MPI_Bsend.3
+openmpi/man/man3/MPI_Bsend_init.3
+openmpi/man/man3/MPI_Buffer_attach.3
+openmpi/man/man3/MPI_Buffer_detach.3
+openmpi/man/man3/MPI_Cancel.3
+openmpi/man/man3/MPI_Cart_coords.3
+openmpi/man/man3/MPI_Cart_create.3
+openmpi/man/man3/MPI_Cart_get.3
+openmpi/man/man3/MPI_Cart_map.3
+openmpi/man/man3/MPI_Cart_rank.3
+openmpi/man/man3/MPI_Cart_shift.3
+openmpi/man/man3/MPI_Cart_sub.3
+openmpi/man/man3/MPI_Cartdim_get.3
+openmpi/man/man3/MPI_Close_port.3
+openmpi/man/man3/MPI_Comm_accept.3
+openmpi/man/man3/MPI_Comm_c2f.3
+openmpi/man/man3/MPI_Comm_call_errhandler.3
+openmpi/man/man3/MPI_Comm_compare.3
+openmpi/man/man3/MPI_Comm_connect.3
+openmpi/man/man3/MPI_Comm_create.3
+openmpi/man/man3/MPI_Comm_create_errhandler.3
+openmpi/man/man3/MPI_Comm_create_group.3
+openmpi/man/man3/MPI_Comm_create_keyval.3
+openmpi/man/man3/MPI_Comm_delete_attr.3
+openmpi/man/man3/MPI_Comm_disconnect.3
+openmpi/man/man3/MPI_Comm_dup.3
+openmpi/man/man3/MPI_Comm_dup_with_info.3
+openmpi/man/man3/MPI_Comm_f2c.3
+openmpi/man/man3/MPI_Comm_free.3
+openmpi/man/man3/MPI_Comm_free_keyval.3
+openmpi/man/man3/MPI_Comm_get_attr.3
+openmpi/man/man3/MPI_Comm_get_errhandler.3
+openmpi/man/man3/MPI_Comm_get_name.3
+openmpi/man/man3/MPI_Comm_get_parent.3
+openmpi/man/man3/MPI_Comm_group.3
+openmpi/man/man3/MPI_Comm_idup.3
+openmpi/man/man3/MPI_Comm_join.3
+openmpi/man/man3/MPI_Comm_rank.3
+openmpi/man/man3/MPI_Comm_remote_group.3
+openmpi/man/man3/MPI_Comm_remote_size.3
+openmpi/man/man3/MPI_Comm_set_attr.3
+openmpi/man/man3/MPI_Comm_set_errhandler.3
+openmpi/man/man3/MPI_Comm_set_name.3
+openmpi/man/man3/MPI_Comm_size.3
+openmpi/man/man3/MPI_Comm_spawn.3
+openmpi/man/man3/MPI_Comm_spawn_multiple.3
+openmpi/man/man3/MPI_Comm_split.3
+openmpi/man/man3/MPI_Comm_split_type.3
+openmpi/man/man3/MPI_Comm_test_inter.3
+openmpi/man/man3/MPI_Dims_create.3
+openmpi/man/man3/MPI_Dist_graph_create.3
+openmpi/man/man3/MPI_Dist_graph_create_adjacent.3
+openmpi/man/man3/MPI_Dist_graph_neighbors.3
+openmpi/man/man3/MPI_Dist_graph_neighbors_count.3
+openmpi/man/man3/MPI_Errhandler_create.3
+openmpi/man/man3/MPI_Errhandler_free.3
+openmpi/man/man3/MPI_Errhandler_get.3
+openmpi/man/man3/MPI_Errhandler_set.3
+openmpi/man/man3/MPI_Error_class.3
+openmpi/man/man3/MPI_Error_string.3
+openmpi/man/man3/MPI_Exscan.3
+openmpi/man/man3/MPI_File_c2f.3
+openmpi/man/man3/MPI_File_call_errhandler.3
+openmpi/man/man3/MPI_File_close.3
+openmpi/man/man3/MPI_File_create_errhandler.3
+openmpi/man/man3/MPI_File_delete.3
+openmpi/man/man3/MPI_File_f2c.3
+openmpi/man/man3/MPI_File_get_amode.3
+openmpi/man/man3/MPI_File_get_atomicity.3
+openmpi/man/man3/MPI_File_get_byte_offset.3
+openmpi/man/man3/MPI_File_get_errhandler.3
+openmpi/man/man3/MPI_File_get_group.3
+openmpi/man/man3/MPI_File_get_info.3
+openmpi/man/man3/MPI_File_get_position.3
+openmpi/man/man3/MPI_File_get_position_shared.3
+openmpi/man/man3/MPI_File_get_size.3
+openmpi/man/man3/MPI_File_get_type_extent.3
+openmpi/man/man3/MPI_File_get_view.3
+openmpi/man/man3/MPI_File_iread.3
+openmpi/man/man3/MPI_File_iread_at.3
+openmpi/man/man3/MPI_File_iread_shared.3
+openmpi/man/man3/MPI_File_iwrite.3
+openmpi/man/man3/MPI_File_iwrite_at.3
+openmpi/man/man3/MPI_File_iwrite_shared.3
+openmpi/man/man3/MPI_File_open.3
+openmpi/man/man3/MPI_File_preallocate.3
+openmpi/man/man3/MPI_File_read.3
+openmpi/man/man3/MPI_File_read_all.3
+openmpi/man/man3/MPI_File_read_all_begin.3
+openmpi/man/man3/MPI_File_read_all_end.3
+openmpi/man/man3/MPI_File_read_at.3
+openmpi/man/man3/MPI_File_read_at_all.3
+openmpi/man/man3/MPI_File_read_at_all_begin.3
+openmpi/man/man3/MPI_File_read_at_all_end.3
+openmpi/man/man3/MPI_File_read_ordered.3
+openmpi/man/man3/MPI_File_read_ordered_begin.3
+openmpi/man/man3/MPI_File_read_ordered_end.3
+openmpi/man/man3/MPI_File_read_shared.3
+openmpi/man/man3/MPI_File_seek.3
+openmpi/man/man3/MPI_File_seek_shared.3
+openmpi/man/man3/MPI_File_set_atomicity.3
+openmpi/man/man3/MPI_File_set_errhandler.3
+openmpi/man/man3/MPI_File_set_info.3
+openmpi/man/man3/MPI_File_set_size.3
+openmpi/man/man3/MPI_File_set_view.3
+openmpi/man/man3/MPI_File_sync.3
+openmpi/man/man3/MPI_File_write.3
+openmpi/man/man3/MPI_File_write_all.3
+openmpi/man/man3/MPI_File_write_all_begin.3
+openmpi/man/man3/MPI_File_write_all_end.3
+openmpi/man/man3/MPI_File_write_at.3
+openmpi/man/man3/MPI_File_write_at_all.3
+openmpi/man/man3/MPI_File_write_at_all_begin.3
+openmpi/man/man3/MPI_File_write_at_all_end.3
+openmpi/man/man3/MPI_File_write_ordered.3
+openmpi/man/man3/MPI_File_write_ordered_begin.3
+openmpi/man/man3/MPI_File_write_ordered_end.3
+openmpi/man/man3/MPI_File_write_shared.3
+openmpi/man/man3/MPI_Finalize.3
+openmpi/man/man3/MPI_Finalized.3
+openmpi/man/man3/MPI_Free_mem.3
+openmpi/man/man3/MPI_Gather.3
+openmpi/man/man3/MPI_Gatherv.3
+openmpi/man/man3/MPI_Get.3
+openmpi/man/man3/MPI_Get_address.3
+openmpi/man/man3/MPI_Get_count.3
+openmpi/man/man3/MPI_Get_elements.3
+openmpi/man/man3/MPI_Get_elements_x.3
+openmpi/man/man3/MPI_Get_library_version.3
+openmpi/man/man3/MPI_Get_processor_name.3
+openmpi/man/man3/MPI_Get_version.3
+openmpi/man/man3/MPI_Graph_create.3
+openmpi/man/man3/MPI_Graph_get.3
+openmpi/man/man3/MPI_Graph_map.3
+openmpi/man/man3/MPI_Graph_neighbors.3
+openmpi/man/man3/MPI_Graph_neighbors_count.3
+openmpi/man/man3/MPI_Graphdims_get.3
+openmpi/man/man3/MPI_Grequest_complete.3
+openmpi/man/man3/MPI_Grequest_start.3
+openmpi/man/man3/MPI_Group_c2f.3
+openmpi/man/man3/MPI_Group_compare.3
+openmpi/man/man3/MPI_Group_difference.3
+openmpi/man/man3/MPI_Group_excl.3
+openmpi/man/man3/MPI_Group_f2c.3
+openmpi/man/man3/MPI_Group_free.3
+openmpi/man/man3/MPI_Group_incl.3
+openmpi/man/man3/MPI_Group_intersection.3
+openmpi/man/man3/MPI_Group_range_excl.3
+openmpi/man/man3/MPI_Group_range_incl.3
+openmpi/man/man3/MPI_Group_rank.3
+openmpi/man/man3/MPI_Group_size.3
+openmpi/man/man3/MPI_Group_translate_ranks.3
+openmpi/man/man3/MPI_Group_union.3
+openmpi/man/man3/MPI_Iallgather.3
+openmpi/man/man3/MPI_Iallgatherv.3
+openmpi/man/man3/MPI_Iallreduce.3
+openmpi/man/man3/MPI_Ialltoall.3
+openmpi/man/man3/MPI_Ialltoallv.3
+openmpi/man/man3/MPI_Ialltoallw.3
+openmpi/man/man3/MPI_Ibcast.3
+openmpi/man/man3/MPI_Ibsend.3
+openmpi/man/man3/MPI_Iexscan.3
+openmpi/man/man3/MPI_Igather.3
+openmpi/man/man3/MPI_Igatherv.3
+openmpi/man/man3/MPI_Improbe.3
+openmpi/man/man3/MPI_Imrecv.3
+openmpi/man/man3/MPI_Ineighbor_allgather.3
+openmpi/man/man3/MPI_Ineighbor_allgatherv.3
+openmpi/man/man3/MPI_Ineighbor_alltoall.3
+openmpi/man/man3/MPI_Ineighbor_alltoallv.3
+openmpi/man/man3/MPI_Ineighbor_alltoallw.3
+openmpi/man/man3/MPI_Info_c2f.3
+openmpi/man/man3/MPI_Info_create.3
+openmpi/man/man3/MPI_Info_delete.3
+openmpi/man/man3/MPI_Info_dup.3
+openmpi/man/man3/MPI_Info_env.3
+openmpi/man/man3/MPI_Info_f2c.3
+openmpi/man/man3/MPI_Info_free.3
+openmpi/man/man3/MPI_Info_get.3
+openmpi/man/man3/MPI_Info_get_nkeys.3
+openmpi/man/man3/MPI_Info_get_nthkey.3
+openmpi/man/man3/MPI_Info_get_valuelen.3
+openmpi/man/man3/MPI_Info_set.3
+openmpi/man/man3/MPI_Init.3
+openmpi/man/man3/MPI_Init_thread.3
+openmpi/man/man3/MPI_Initialized.3
+openmpi/man/man3/MPI_Intercomm_create.3
+openmpi/man/man3/MPI_Intercomm_merge.3
+openmpi/man/man3/MPI_Iprobe.3
+openmpi/man/man3/MPI_Irecv.3
+openmpi/man/man3/MPI_Ireduce.3
+openmpi/man/man3/MPI_Ireduce_scatter.3
+openmpi/man/man3/MPI_Ireduce_scatter_block.3
+openmpi/man/man3/MPI_Irsend.3
+openmpi/man/man3/MPI_Is_thread_main.3
+openmpi/man/man3/MPI_Iscan.3
+openmpi/man/man3/MPI_Iscatter.3
+openmpi/man/man3/MPI_Iscatterv.3
+openmpi/man/man3/MPI_Isend.3
+openmpi/man/man3/MPI_Issend.3
+openmpi/man/man3/MPI_Keyval_create.3
+openmpi/man/man3/MPI_Keyval_free.3
+openmpi/man/man3/MPI_Lookup_name.3
+openmpi/man/man3/MPI_Mprobe.3
+openmpi/man/man3/MPI_Mrecv.3
+openmpi/man/man3/MPI_Neighbor_allgather.3
+openmpi/man/man3/MPI_Neighbor_allgatherv.3
+openmpi/man/man3/MPI_Neighbor_alltoall.3
+openmpi/man/man3/MPI_Neighbor_alltoallv.3
+openmpi/man/man3/MPI_Neighbor_alltoallw.3
+openmpi/man/man3/MPI_Op_c2f.3
+openmpi/man/man3/MPI_Op_create.3
+openmpi/man/man3/MPI_Op_f2c.3
+openmpi/man/man3/MPI_Op_free.3
+openmpi/man/man3/MPI_Open_port.3
+openmpi/man/man3/MPI_Pack.3
+openmpi/man/man3/MPI_Pack_external.3
+openmpi/man/man3/MPI_Pack_external_size.3
+openmpi/man/man3/MPI_Pack_size.3
+openmpi/man/man3/MPI_Pcontrol.3
+openmpi/man/man3/MPI_Probe.3
+openmpi/man/man3/MPI_Publish_name.3
+openmpi/man/man3/MPI_Put.3
+openmpi/man/man3/MPI_Query_thread.3
+openmpi/man/man3/MPI_Recv.3
+openmpi/man/man3/MPI_Recv_init.3
+openmpi/man/man3/MPI_Reduce.3
+openmpi/man/man3/MPI_Reduce_local.3
+openmpi/man/man3/MPI_Reduce_scatter.3
+openmpi/man/man3/MPI_Reduce_scatter_block.3
+openmpi/man/man3/MPI_Register_datarep.3
+openmpi/man/man3/MPI_Request_c2f.3
+openmpi/man/man3/MPI_Request_f2c.3
+openmpi/man/man3/MPI_Request_free.3
+openmpi/man/man3/MPI_Request_get_status.3
+openmpi/man/man3/MPI_Rsend.3
+openmpi/man/man3/MPI_Rsend_init.3
+openmpi/man/man3/MPI_Scan.3
+openmpi/man/man3/MPI_Scatter.3
+openmpi/man/man3/MPI_Scatterv.3
+openmpi/man/man3/MPI_Send.3
+openmpi/man/man3/MPI_Send_init.3
+openmpi/man/man3/MPI_Sendrecv.3
+openmpi/man/man3/MPI_Sendrecv_replace.3
+openmpi/man/man3/MPI_Sizeof.3
+openmpi/man/man3/MPI_Ssend.3
+openmpi/man/man3/MPI_Ssend_init.3
+openmpi/man/man3/MPI_Start.3
+openmpi/man/man3/MPI_Startall.3
+openmpi/man/man3/MPI_Status_c2f.3
+openmpi/man/man3/MPI_Status_f2c.3
+openmpi/man/man3/MPI_Status_set_cancelled.3
+openmpi/man/man3/MPI_Status_set_elements.3
+openmpi/man/man3/MPI_Status_set_elements_x.3
+openmpi/man/man3/MPI_Test.3
+openmpi/man/man3/MPI_Test_cancelled.3
+openmpi/man/man3/MPI_Testall.3
+openmpi/man/man3/MPI_Testany.3
+openmpi/man/man3/MPI_Testsome.3
+openmpi/man/man3/MPI_Topo_test.3
+openmpi/man/man3/MPI_Type_c2f.3
+openmpi/man/man3/MPI_Type_commit.3
+openmpi/man/man3/MPI_Type_contiguous.3
+openmpi/man/man3/MPI_Type_create_darray.3
+openmpi/man/man3/MPI_Type_create_f90_complex.3
+openmpi/man/man3/MPI_Type_create_f90_integer.3
+openmpi/man/man3/MPI_Type_create_f90_real.3
+openmpi/man/man3/MPI_Type_create_hindexed.3
+openmpi/man/man3/MPI_Type_create_hindexed_block.3
+openmpi/man/man3/MPI_Type_create_hvector.3
+openmpi/man/man3/MPI_Type_create_indexed_block.3
+openmpi/man/man3/MPI_Type_create_keyval.3
+openmpi/man/man3/MPI_Type_create_resized.3
+openmpi/man/man3/MPI_Type_create_struct.3
+openmpi/man/man3/MPI_Type_create_subarray.3
+openmpi/man/man3/MPI_Type_delete_attr.3
+openmpi/man/man3/MPI_Type_dup.3
+openmpi/man/man3/MPI_Type_extent.3
+openmpi/man/man3/MPI_Type_f2c.3
+openmpi/man/man3/MPI_Type_free.3
+openmpi/man/man3/MPI_Type_free_keyval.3
+openmpi/man/man3/MPI_Type_get_attr.3
+openmpi/man/man3/MPI_Type_get_contents.3
+openmpi/man/man3/MPI_Type_get_envelope.3
+openmpi/man/man3/MPI_Type_get_extent.3
+openmpi/man/man3/MPI_Type_get_extent_x.3
+openmpi/man/man3/MPI_Type_get_name.3
+openmpi/man/man3/MPI_Type_get_true_extent.3
+openmpi/man/man3/MPI_Type_get_true_extent_x.3
+openmpi/man/man3/MPI_Type_hindexed.3
+openmpi/man/man3/MPI_Type_hvector.3
+openmpi/man/man3/MPI_Type_indexed.3
+openmpi/man/man3/MPI_Type_lb.3
+openmpi/man/man3/MPI_Type_match_size.3
+openmpi/man/man3/MPI_Type_set_attr.3
+openmpi/man/man3/MPI_Type_set_name.3
+openmpi/man/man3/MPI_Type_size.3
+openmpi/man/man3/MPI_Type_size_x.3
+openmpi/man/man3/MPI_Type_struct.3
+openmpi/man/man3/MPI_Type_ub.3
+openmpi/man/man3/MPI_Type_vector.3
+openmpi/man/man3/MPI_Unpack.3
+openmpi/man/man3/MPI_Unpack_external.3
+openmpi/man/man3/MPI_Unpublish_name.3
+openmpi/man/man3/MPI_Wait.3
+openmpi/man/man3/MPI_Waitall.3
+openmpi/man/man3/MPI_Waitany.3
+openmpi/man/man3/MPI_Waitsome.3
+openmpi/man/man3/MPI_Win_c2f.3
+openmpi/man/man3/MPI_Win_call_errhandler.3
+openmpi/man/man3/MPI_Win_complete.3
+openmpi/man/man3/MPI_Win_create.3
+openmpi/man/man3/MPI_Win_create_errhandler.3
+openmpi/man/man3/MPI_Win_create_keyval.3
+openmpi/man/man3/MPI_Win_delete_attr.3
+openmpi/man/man3/MPI_Win_f2c.3
+openmpi/man/man3/MPI_Win_fence.3
+openmpi/man/man3/MPI_Win_free.3
+openmpi/man/man3/MPI_Win_free_keyval.3
+openmpi/man/man3/MPI_Win_get_attr.3
+openmpi/man/man3/MPI_Win_get_errhandler.3
+openmpi/man/man3/MPI_Win_get_group.3
+openmpi/man/man3/MPI_Win_get_name.3
+openmpi/man/man3/MPI_Win_lock.3
+openmpi/man/man3/MPI_Win_post.3
+openmpi/man/man3/MPI_Win_set_attr.3
+openmpi/man/man3/MPI_Win_set_errhandler.3
+openmpi/man/man3/MPI_Win_set_name.3
+openmpi/man/man3/MPI_Win_start.3
+openmpi/man/man3/MPI_Win_test.3
+openmpi/man/man3/MPI_Win_unlock.3
+openmpi/man/man3/MPI_Win_wait.3
+openmpi/man/man3/MPI_Wtick.3
+openmpi/man/man3/MPI_Wtime.3
+openmpi/man/man3/OpenMPI.3
+openmpi/man/man7/ompi_crcp.7
+openmpi/man/man7/opal_crs.7
+openmpi/man/man7/orte_filem.7
+openmpi/man/man7/orte_hosts.7
+openmpi/man/man7/orte_snapc.7
+openmpi/man/man7/orte_sstore.7
+openmpi/share/examples/openmpi/cshrc
+openmpi/share/examples/openmpi/shrc
+openmpi/share/openmpi/amca-param-sets/example.conf
+openmpi/share/openmpi/examples/openmpi-default-hostfile
+openmpi/share/openmpi/examples/openmpi-mca-params.conf
+openmpi/share/openmpi/examples/openmpi-totalview.tcl
+openmpi/share/openmpi/help-dash-host.txt
+openmpi/share/openmpi/help-db-base.txt
+openmpi/share/openmpi/help-errmgr-base.txt
+openmpi/share/openmpi/help-ess-base.txt
+openmpi/share/openmpi/help-hostfile.txt
+openmpi/share/openmpi/help-mca-base.txt
+openmpi/share/openmpi/help-mca-bml-r2.txt
+openmpi/share/openmpi/help-mca-coll-base.txt
+openmpi/share/openmpi/help-mca-op-base.txt
+openmpi/share/openmpi/help-mca-var.txt
+openmpi/share/openmpi/help-mpi-api.txt
+openmpi/share/openmpi/help-mpi-btl-base.txt
+openmpi/share/openmpi/help-mpi-btl-sm.txt
+openmpi/share/openmpi/help-mpi-btl-tcp.txt
+openmpi/share/openmpi/help-mpi-coll-sm.txt
+openmpi/share/openmpi/help-mpi-common-sm.txt
+openmpi/share/openmpi/help-mpi-errors.txt
+openmpi/share/openmpi/help-mpi-pml-bfo.txt
+openmpi/share/openmpi/help-mpi-pml-ob1.txt
+openmpi/share/openmpi/help-mpi-runtime.txt
+openmpi/share/openmpi/help-mpool-base.txt
+openmpi/share/openmpi/help-ompi-crcp-base.txt
+openmpi/share/openmpi/help-ompi-dpm-base.txt
+openmpi/share/openmpi/help-ompi-dpm-orte.txt
+openmpi/share/openmpi/help-ompi-pubsub-orte.txt
+openmpi/share/openmpi/help-opal-compress-base.txt
+openmpi/share/openmpi/help-opal-compress-bzip.txt
+openmpi/share/openmpi/help-opal-compress-gzip.txt
+openmpi/share/openmpi/help-opal-crs-base.txt
+openmpi/share/openmpi/help-opal-crs-none.txt
+openmpi/share/openmpi/help-opal-hwloc-base.txt
+openmpi/share/openmpi/help-opal-runtime.txt
+openmpi/share/openmpi/help-opal-shmem-mmap.txt
+openmpi/share/openmpi/help-opal-shmem-sysv.txt
+openmpi/share/openmpi/help-opal-util.txt
+openmpi/share/openmpi/help-opal-wrapper.txt
+openmpi/share/openmpi/help-opal_info.txt
+openmpi/share/openmpi/help-orte-clean.txt
+openmpi/share/openmpi/help-orte-filem-base.txt
+openmpi/share/openmpi/help-orte-filem-raw.txt
+openmpi/share/openmpi/help-orte-info.txt
+openmpi/share/openmpi/help-orte-odls-base.txt
+openmpi/share/openmpi/help-orte-odls-default.txt
+openmpi/share/openmpi/help-orte-ps.txt
+openmpi/share/openmpi/help-orte-rmaps-base.txt
+openmpi/share/openmpi/help-orte-rmaps-lama.txt
+openmpi/share/openmpi/help-orte-rmaps-md.txt
+openmpi/share/openmpi/help-orte-rmaps-ppr.txt
+openmpi/share/openmpi/help-orte-rmaps-resilient.txt
+openmpi/share/openmpi/help-orte-rmaps-rr.txt
+openmpi/share/openmpi/help-orte-rmaps-seq.txt
+openmpi/share/openmpi/help-orte-runtime.txt
+openmpi/share/openmpi/help-orte-server.txt
+openmpi/share/openmpi/help-orte-snapc-base.txt
+openmpi/share/openmpi/help-orte-sstore-base.txt
+openmpi/share/openmpi/help-orte-top.txt
+openmpi/share/openmpi/help-orted.txt
+openmpi/share/openmpi/help-orterun.txt
+openmpi/share/openmpi/help-plm-base.txt
+openmpi/share/openmpi/help-plm-rsh.txt
+openmpi/share/openmpi/help-ras-base.txt
+openmpi/share/openmpi/help-ras-simulator.txt
+openmpi/share/openmpi/help-regex.txt
+openmpi/share/openmpi/help-rmaps_rank_file.txt
+openmpi/share/openmpi/help-state-staged-hnp.txt
+openmpi/share/openmpi/mca-coll-ml.config
+openmpi/share/openmpi/mpic++-wrapper-data.txt
+openmpi/share/openmpi/mpicc-wrapper-data.txt
+openmpi/share/openmpi/mpicxx-wrapper-data.txt
+openmpi/share/openmpi/mpif77-wrapper-data.txt
+openmpi/share/openmpi/mpif90-wrapper-data.txt
+openmpi/share/openmpi/mpifort-wrapper-data.txt
+openmpi/share/openmpi/openmpi-valgrind.supp
+openmpi/share/openmpi/ortec++-wrapper-data.txt
+openmpi/share/openmpi/ortecc-wrapper-data.txt
diff --git a/openmpi/buildlink3.mk b/openmpi/buildlink3.mk
index 917b42d..831cc6c 100644
--- a/openmpi/buildlink3.mk
+++ b/openmpi/buildlink3.mk
@@ -7,6 +7,8 @@ OPENMPI_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.openmpi+=	openmpi>=1.5.1
 BUILDLINK_PKGSRCDIR.openmpi?=	../../wip/openmpi
+BUILDLINK_PASSTHRU_DIRS+=	${PREFIX}/openmpi/lib
+BUILDLINK_PASSTHRU_RPATHDIRS+=	${PREFIX}/openmpi/lib
 
 .include "../../parallel/hwloc/buildlink3.mk"
 .endif # OPENMPI_BUILDLINK3_MK
diff --git a/openmpi163/Makefile b/openmpi163/Makefile
index 9ec2209..8694352 100644
--- a/openmpi163/Makefile
+++ b/openmpi163/Makefile
@@ -13,7 +13,6 @@ COMMENT=	Open source MPI-2 implementation
 
 MPI_SUBPREFIX=		openmpi
 MPI_PREFIX=		$(LOCALBASE)/$(MPI_SUBPREFIX)
-INSTALLATION_PREFIX=	$(MPI_PREFIX)
 
 .include "../../mk/bsd.prefs.mk"
 
diff --git a/openmpi163/PLIST.Darwin b/openmpi163/PLIST.Darwin
index 76481b7..2114982 100644
--- a/openmpi163/PLIST.Darwin
+++ b/openmpi163/PLIST.Darwin
@@ -1,566 +1,566 @@
 @comment $NetBSD: PLIST.Darwin,v 1.3 2015/06/19 19:17:41 outpaddling Exp $
-bin/mpic++
-bin/mpicc
-bin/mpicxx
-bin/mpiexec
-bin/mpif77
-bin/mpif90
-bin/mpirun
-bin/ompi-clean
-bin/ompi-iof
-bin/ompi-probe
-bin/ompi-profiler
-bin/ompi-ps
-bin/ompi-server
-bin/ompi-top
-bin/ompi_info
-bin/opal_wrapper
-bin/orte-bootproxy.sh
-bin/orte-clean
-bin/orte-iof
-bin/orte-ps
-bin/orte-top
-bin/orte_wrapper_script
-bin/ortec++
-bin/ortecc
-bin/orted
-bin/orterun
-etc/cshrc
-etc/shrc
-etc/modulefiles/openmpi/1.6.3
-etc/openmpi-default-hostfile
-include/mpi-ext.h
-include/mpi.h
-include/mpi_portable_platform.h
-include/mpif-common.h
-include/mpif-config.h
-include/mpif-mpi-io.h
-include/mpif.h
-include/openmpi/ompi/mpi/cxx/comm.h
-include/openmpi/ompi/mpi/cxx/comm_inln.h
-include/openmpi/ompi/mpi/cxx/constants.h
-include/openmpi/ompi/mpi/cxx/datatype.h
-include/openmpi/ompi/mpi/cxx/datatype_inln.h
-include/openmpi/ompi/mpi/cxx/errhandler.h
-include/openmpi/ompi/mpi/cxx/errhandler_inln.h
-include/openmpi/ompi/mpi/cxx/exception.h
-include/openmpi/ompi/mpi/cxx/file.h
-include/openmpi/ompi/mpi/cxx/file_inln.h
-include/openmpi/ompi/mpi/cxx/functions.h
-include/openmpi/ompi/mpi/cxx/functions_inln.h
-include/openmpi/ompi/mpi/cxx/group.h
-include/openmpi/ompi/mpi/cxx/group_inln.h
-include/openmpi/ompi/mpi/cxx/info.h
-include/openmpi/ompi/mpi/cxx/info_inln.h
-include/openmpi/ompi/mpi/cxx/intercomm.h
-include/openmpi/ompi/mpi/cxx/intercomm_inln.h
-include/openmpi/ompi/mpi/cxx/intracomm.h
-include/openmpi/ompi/mpi/cxx/intracomm_inln.h
-include/openmpi/ompi/mpi/cxx/mpicxx.h
-include/openmpi/ompi/mpi/cxx/op.h
-include/openmpi/ompi/mpi/cxx/op_inln.h
-include/openmpi/ompi/mpi/cxx/request.h
-include/openmpi/ompi/mpi/cxx/request_inln.h
-include/openmpi/ompi/mpi/cxx/status.h
-include/openmpi/ompi/mpi/cxx/status_inln.h
-include/openmpi/ompi/mpi/cxx/topology.h
-include/openmpi/ompi/mpi/cxx/topology_inln.h
-include/openmpi/ompi/mpi/cxx/win.h
-include/openmpi/ompi/mpi/cxx/win_inln.h
-lib/libmca_common_sm.la
-lib/libmpi.la
-lib/libmpi_cxx.la
-lib/libmpi_f77.la
-lib/libmpi_f90.la
-lib/libompitrace.la
-lib/libopen-pal.la
-lib/libopen-rte.la
-lib/mpi.mod
-lib/openmpi/libompi_dbg_msgq.la
-lib/openmpi/mca_allocator_basic.la
-lib/openmpi/mca_allocator_bucket.la
-lib/openmpi/mca_bml_r2.la
-lib/openmpi/mca_btl_self.la
-lib/openmpi/mca_btl_sm.la
-lib/openmpi/mca_btl_tcp.la
-lib/openmpi/mca_carto_auto_detect.la
-lib/openmpi/mca_carto_file.la
-lib/openmpi/mca_coll_basic.la
-lib/openmpi/mca_coll_hierarch.la
-lib/openmpi/mca_coll_inter.la
-lib/openmpi/mca_coll_self.la
-lib/openmpi/mca_coll_sm.la
-lib/openmpi/mca_coll_sync.la
-lib/openmpi/mca_coll_tuned.la
-lib/openmpi/mca_crs_none.la
-lib/openmpi/mca_dpm_orte.la
-lib/openmpi/mca_errmgr_default.la
-lib/openmpi/mca_ess_env.la
-lib/openmpi/mca_ess_hnp.la
-lib/openmpi/mca_ess_singleton.la
-lib/openmpi/mca_ess_slave.la
-lib/openmpi/mca_ess_tool.la
-lib/openmpi/mca_filem_rsh.la
-lib/openmpi/mca_grpcomm_bad.la
-lib/openmpi/mca_grpcomm_basic.la
-lib/openmpi/mca_io_romio.la
-lib/openmpi/mca_iof_hnp.la
-lib/openmpi/mca_iof_orted.la
-lib/openmpi/mca_iof_tool.la
-lib/openmpi/mca_maffinity_first_use.la
-lib/openmpi/mca_maffinity_hwloc.la
-lib/openmpi/mca_mpool_fake.la
-lib/openmpi/mca_mpool_rdma.la
-lib/openmpi/mca_mpool_sm.la
-lib/openmpi/mca_notifier_command.la
-lib/openmpi/mca_notifier_syslog.la
-lib/openmpi/mca_odls_default.la
-lib/openmpi/mca_oob_tcp.la
-lib/openmpi/mca_osc_pt2pt.la
-lib/openmpi/mca_osc_rdma.la
-lib/openmpi/mca_paffinity_hwloc.la
-lib/openmpi/mca_plm_rsh.la
-lib/openmpi/mca_pml_bfo.la
-lib/openmpi/mca_pml_cm.la
-lib/openmpi/mca_pml_csum.la
-lib/openmpi/mca_pml_ob1.la
-lib/openmpi/mca_pml_v.la
-lib/openmpi/mca_pstat_darwin.la
-lib/openmpi/mca_pubsub_orte.la
-lib/openmpi/mca_ras_cm.la
-lib/openmpi/mca_rcache_vma.la
-lib/openmpi/mca_rmaps_load_balance.la
-lib/openmpi/mca_rmaps_rank_file.la
-lib/openmpi/mca_rmaps_resilient.la
-lib/openmpi/mca_rmaps_round_robin.la
-lib/openmpi/mca_rmaps_seq.la
-lib/openmpi/mca_rmaps_topo.la
-lib/openmpi/mca_rml_oob.la
-lib/openmpi/mca_routed_binomial.la
-lib/openmpi/mca_routed_cm.la
-lib/openmpi/mca_routed_direct.la
-lib/openmpi/mca_routed_linear.la
-lib/openmpi/mca_routed_radix.la
-lib/openmpi/mca_routed_slave.la
-lib/openmpi/mca_shmem_mmap.la
-lib/openmpi/mca_shmem_posix.la
-lib/openmpi/mca_shmem_sysv.la
-lib/openmpi/mca_sysinfo_darwin.la
-lib/openmpi/mca_topo_unity.la
-lib/openmpi/mca_vprotocol_pessimist.la
-lib/pkgconfig/ompi-c.pc
-lib/pkgconfig/ompi-cxx.pc
-lib/pkgconfig/ompi-f77.pc
-lib/pkgconfig/ompi-f90.pc
-lib/pkgconfig/ompi.pc
-lib/pkgconfig/orte.pc
-man/man1/mpic++.1
-man/man1/mpicc.1
-man/man1/mpicxx.1
-man/man1/mpiexec.1
-man/man1/mpif77.1
-man/man1/mpif90.1
-man/man1/mpirun.1
-man/man1/ompi-clean.1
-man/man1/ompi-iof.1
-man/man1/ompi-probe.1
-man/man1/ompi-profiler.1
-man/man1/ompi-ps.1
-man/man1/ompi-server.1
-man/man1/ompi-top.1
-man/man1/ompi_info.1
-man/man1/opal_wrapper.1
-man/man1/orte-clean.1
-man/man1/orte-iof.1
-man/man1/orte-ps.1
-man/man1/orte-top.1
-man/man1/orted.1
-man/man1/orterun.1
-man/man3/MPI.3
-man/man3/MPI_Abort.3
-man/man3/MPI_Accumulate.3
-man/man3/MPI_Add_error_class.3
-man/man3/MPI_Add_error_code.3
-man/man3/MPI_Add_error_string.3
-man/man3/MPI_Address.3
-man/man3/MPI_Allgather.3
-man/man3/MPI_Allgatherv.3
-man/man3/MPI_Alloc_mem.3
-man/man3/MPI_Allreduce.3
-man/man3/MPI_Alltoall.3
-man/man3/MPI_Alltoallv.3
-man/man3/MPI_Alltoallw.3
-man/man3/MPI_Attr_delete.3
-man/man3/MPI_Attr_get.3
-man/man3/MPI_Attr_put.3
-man/man3/MPI_Barrier.3
-man/man3/MPI_Bcast.3
-man/man3/MPI_Bsend.3
-man/man3/MPI_Bsend_init.3
-man/man3/MPI_Buffer_attach.3
-man/man3/MPI_Buffer_detach.3
-man/man3/MPI_Cancel.3
-man/man3/MPI_Cart_coords.3
-man/man3/MPI_Cart_create.3
-man/man3/MPI_Cart_get.3
-man/man3/MPI_Cart_map.3
-man/man3/MPI_Cart_rank.3
-man/man3/MPI_Cart_shift.3
-man/man3/MPI_Cart_sub.3
-man/man3/MPI_Cartdim_get.3
-man/man3/MPI_Close_port.3
-man/man3/MPI_Comm_accept.3
-man/man3/MPI_Comm_c2f.3
-man/man3/MPI_Comm_call_errhandler.3
-man/man3/MPI_Comm_compare.3
-man/man3/MPI_Comm_connect.3
-man/man3/MPI_Comm_create.3
-man/man3/MPI_Comm_create_errhandler.3
-man/man3/MPI_Comm_create_keyval.3
-man/man3/MPI_Comm_delete_attr.3
-man/man3/MPI_Comm_disconnect.3
-man/man3/MPI_Comm_dup.3
-man/man3/MPI_Comm_f2c.3
-man/man3/MPI_Comm_free.3
-man/man3/MPI_Comm_free_keyval.3
-man/man3/MPI_Comm_get_attr.3
-man/man3/MPI_Comm_get_errhandler.3
-man/man3/MPI_Comm_get_name.3
-man/man3/MPI_Comm_get_parent.3
-man/man3/MPI_Comm_group.3
-man/man3/MPI_Comm_join.3
-man/man3/MPI_Comm_rank.3
-man/man3/MPI_Comm_remote_group.3
-man/man3/MPI_Comm_remote_size.3
-man/man3/MPI_Comm_set_attr.3
-man/man3/MPI_Comm_set_errhandler.3
-man/man3/MPI_Comm_set_name.3
-man/man3/MPI_Comm_size.3
-man/man3/MPI_Comm_spawn.3
-man/man3/MPI_Comm_spawn_multiple.3
-man/man3/MPI_Comm_split.3
-man/man3/MPI_Comm_test_inter.3
-man/man3/MPI_Dims_create.3
-man/man3/MPI_Errhandler_create.3
-man/man3/MPI_Errhandler_free.3
-man/man3/MPI_Errhandler_get.3
-man/man3/MPI_Errhandler_set.3
-man/man3/MPI_Error_class.3
-man/man3/MPI_Error_string.3
-man/man3/MPI_Exscan.3
-man/man3/MPI_File_c2f.3
-man/man3/MPI_File_call_errhandler.3
-man/man3/MPI_File_close.3
-man/man3/MPI_File_create_errhandler.3
-man/man3/MPI_File_delete.3
-man/man3/MPI_File_f2c.3
-man/man3/MPI_File_get_amode.3
-man/man3/MPI_File_get_atomicity.3
-man/man3/MPI_File_get_byte_offset.3
-man/man3/MPI_File_get_errhandler.3
-man/man3/MPI_File_get_group.3
-man/man3/MPI_File_get_info.3
-man/man3/MPI_File_get_position.3
-man/man3/MPI_File_get_position_shared.3
-man/man3/MPI_File_get_size.3
-man/man3/MPI_File_get_type_extent.3
-man/man3/MPI_File_get_view.3
-man/man3/MPI_File_iread.3
-man/man3/MPI_File_iread_at.3
-man/man3/MPI_File_iread_shared.3
-man/man3/MPI_File_iwrite.3
-man/man3/MPI_File_iwrite_at.3
-man/man3/MPI_File_iwrite_shared.3
-man/man3/MPI_File_open.3
-man/man3/MPI_File_preallocate.3
-man/man3/MPI_File_read.3
-man/man3/MPI_File_read_all.3
-man/man3/MPI_File_read_all_begin.3
-man/man3/MPI_File_read_all_end.3
-man/man3/MPI_File_read_at.3
-man/man3/MPI_File_read_at_all.3
-man/man3/MPI_File_read_at_all_begin.3
-man/man3/MPI_File_read_at_all_end.3
-man/man3/MPI_File_read_ordered.3
-man/man3/MPI_File_read_ordered_begin.3
-man/man3/MPI_File_read_ordered_end.3
-man/man3/MPI_File_read_shared.3
-man/man3/MPI_File_seek.3
-man/man3/MPI_File_seek_shared.3
-man/man3/MPI_File_set_atomicity.3
-man/man3/MPI_File_set_errhandler.3
-man/man3/MPI_File_set_info.3
-man/man3/MPI_File_set_size.3
-man/man3/MPI_File_set_view.3
-man/man3/MPI_File_sync.3
-man/man3/MPI_File_write.3
-man/man3/MPI_File_write_all.3
-man/man3/MPI_File_write_all_begin.3
-man/man3/MPI_File_write_all_end.3
-man/man3/MPI_File_write_at.3
-man/man3/MPI_File_write_at_all.3
-man/man3/MPI_File_write_at_all_begin.3
-man/man3/MPI_File_write_at_all_end.3
-man/man3/MPI_File_write_ordered.3
-man/man3/MPI_File_write_ordered_begin.3
-man/man3/MPI_File_write_ordered_end.3
-man/man3/MPI_File_write_shared.3
-man/man3/MPI_Finalize.3
-man/man3/MPI_Finalized.3
-man/man3/MPI_Free_mem.3
-man/man3/MPI_Gather.3
-man/man3/MPI_Gatherv.3
-man/man3/MPI_Get.3
-man/man3/MPI_Get_address.3
-man/man3/MPI_Get_count.3
-man/man3/MPI_Get_elements.3
-man/man3/MPI_Get_processor_name.3
-man/man3/MPI_Get_version.3
-man/man3/MPI_Graph_create.3
-man/man3/MPI_Graph_get.3
-man/man3/MPI_Graph_map.3
-man/man3/MPI_Graph_neighbors.3
-man/man3/MPI_Graph_neighbors_count.3
-man/man3/MPI_Graphdims_get.3
-man/man3/MPI_Grequest_complete.3
-man/man3/MPI_Grequest_start.3
-man/man3/MPI_Group_c2f.3
-man/man3/MPI_Group_compare.3
-man/man3/MPI_Group_difference.3
-man/man3/MPI_Group_excl.3
-man/man3/MPI_Group_f2c.3
-man/man3/MPI_Group_free.3
-man/man3/MPI_Group_incl.3
-man/man3/MPI_Group_intersection.3
-man/man3/MPI_Group_range_excl.3
-man/man3/MPI_Group_range_incl.3
-man/man3/MPI_Group_rank.3
-man/man3/MPI_Group_size.3
-man/man3/MPI_Group_translate_ranks.3
-man/man3/MPI_Group_union.3
-man/man3/MPI_Ibsend.3
-man/man3/MPI_Info_c2f.3
-man/man3/MPI_Info_create.3
-man/man3/MPI_Info_delete.3
-man/man3/MPI_Info_dup.3
-man/man3/MPI_Info_f2c.3
-man/man3/MPI_Info_free.3
-man/man3/MPI_Info_get.3
-man/man3/MPI_Info_get_nkeys.3
-man/man3/MPI_Info_get_nthkey.3
-man/man3/MPI_Info_get_valuelen.3
-man/man3/MPI_Info_set.3
-man/man3/MPI_Init.3
-man/man3/MPI_Init_thread.3
-man/man3/MPI_Initialized.3
-man/man3/MPI_Intercomm_create.3
-man/man3/MPI_Intercomm_merge.3
-man/man3/MPI_Iprobe.3
-man/man3/MPI_Irecv.3
-man/man3/MPI_Irsend.3
-man/man3/MPI_Is_thread_main.3
-man/man3/MPI_Isend.3
-man/man3/MPI_Issend.3
-man/man3/MPI_Keyval_create.3
-man/man3/MPI_Keyval_free.3
-man/man3/MPI_Lookup_name.3
-man/man3/MPI_Op_c2f.3
-man/man3/MPI_Op_create.3
-man/man3/MPI_Op_f2c.3
-man/man3/MPI_Op_free.3
-man/man3/MPI_Open_port.3
-man/man3/MPI_Pack.3
-man/man3/MPI_Pack_external.3
-man/man3/MPI_Pack_external_size.3
-man/man3/MPI_Pack_size.3
-man/man3/MPI_Pcontrol.3
-man/man3/MPI_Probe.3
-man/man3/MPI_Publish_name.3
-man/man3/MPI_Put.3
-man/man3/MPI_Query_thread.3
-man/man3/MPI_Recv.3
-man/man3/MPI_Recv_init.3
-man/man3/MPI_Reduce.3
-man/man3/MPI_Reduce_local.3
-man/man3/MPI_Reduce_scatter.3
-man/man3/MPI_Register_datarep.3
-man/man3/MPI_Request_c2f.3
-man/man3/MPI_Request_f2c.3
-man/man3/MPI_Request_free.3
-man/man3/MPI_Request_get_status.3
-man/man3/MPI_Rsend.3
-man/man3/MPI_Rsend_init.3
-man/man3/MPI_Scan.3
-man/man3/MPI_Scatter.3
-man/man3/MPI_Scatterv.3
-man/man3/MPI_Send.3
-man/man3/MPI_Send_init.3
-man/man3/MPI_Sendrecv.3
-man/man3/MPI_Sendrecv_replace.3
-man/man3/MPI_Sizeof.3
-man/man3/MPI_Ssend.3
-man/man3/MPI_Ssend_init.3
-man/man3/MPI_Start.3
-man/man3/MPI_Startall.3
-man/man3/MPI_Status_c2f.3
-man/man3/MPI_Status_f2c.3
-man/man3/MPI_Status_set_cancelled.3
-man/man3/MPI_Status_set_elements.3
-man/man3/MPI_Test.3
-man/man3/MPI_Test_cancelled.3
-man/man3/MPI_Testall.3
-man/man3/MPI_Testany.3
-man/man3/MPI_Testsome.3
-man/man3/MPI_Topo_test.3
-man/man3/MPI_Type_c2f.3
-man/man3/MPI_Type_commit.3
-man/man3/MPI_Type_contiguous.3
-man/man3/MPI_Type_create_darray.3
-man/man3/MPI_Type_create_f90_complex.3
-man/man3/MPI_Type_create_f90_integer.3
-man/man3/MPI_Type_create_f90_real.3
-man/man3/MPI_Type_create_hindexed.3
-man/man3/MPI_Type_create_hvector.3
-man/man3/MPI_Type_create_indexed_block.3
-man/man3/MPI_Type_create_keyval.3
-man/man3/MPI_Type_create_resized.3
-man/man3/MPI_Type_create_struct.3
-man/man3/MPI_Type_create_subarray.3
-man/man3/MPI_Type_delete_attr.3
-man/man3/MPI_Type_dup.3
-man/man3/MPI_Type_extent.3
-man/man3/MPI_Type_f2c.3
-man/man3/MPI_Type_free.3
-man/man3/MPI_Type_free_keyval.3
-man/man3/MPI_Type_get_attr.3
-man/man3/MPI_Type_get_contents.3
-man/man3/MPI_Type_get_envelope.3
-man/man3/MPI_Type_get_extent.3
-man/man3/MPI_Type_get_name.3
-man/man3/MPI_Type_get_true_extent.3
-man/man3/MPI_Type_hindexed.3
-man/man3/MPI_Type_hvector.3
-man/man3/MPI_Type_indexed.3
-man/man3/MPI_Type_lb.3
-man/man3/MPI_Type_match_size.3
-man/man3/MPI_Type_set_attr.3
-man/man3/MPI_Type_set_name.3
-man/man3/MPI_Type_size.3
-man/man3/MPI_Type_struct.3
-man/man3/MPI_Type_ub.3
-man/man3/MPI_Type_vector.3
-man/man3/MPI_Unpack.3
-man/man3/MPI_Unpack_external.3
-man/man3/MPI_Unpublish_name.3
-man/man3/MPI_Wait.3
-man/man3/MPI_Waitall.3
-man/man3/MPI_Waitany.3
-man/man3/MPI_Waitsome.3
-man/man3/MPI_Win_c2f.3
-man/man3/MPI_Win_call_errhandler.3
-man/man3/MPI_Win_complete.3
-man/man3/MPI_Win_create.3
-man/man3/MPI_Win_create_errhandler.3
-man/man3/MPI_Win_create_keyval.3
-man/man3/MPI_Win_delete_attr.3
-man/man3/MPI_Win_f2c.3
-man/man3/MPI_Win_fence.3
-man/man3/MPI_Win_free.3
-man/man3/MPI_Win_free_keyval.3
-man/man3/MPI_Win_get_attr.3
-man/man3/MPI_Win_get_errhandler.3
-man/man3/MPI_Win_get_group.3
-man/man3/MPI_Win_get_name.3
-man/man3/MPI_Win_lock.3
-man/man3/MPI_Win_post.3
-man/man3/MPI_Win_set_attr.3
-man/man3/MPI_Win_set_errhandler.3
-man/man3/MPI_Win_set_name.3
-man/man3/MPI_Win_start.3
-man/man3/MPI_Win_test.3
-man/man3/MPI_Win_unlock.3
-man/man3/MPI_Win_wait.3
-man/man3/MPI_Wtick.3
-man/man3/MPI_Wtime.3
-man/man3/OpenMPI.3
-man/man7/ompi_crcp.7
-man/man7/opal_crs.7
-man/man7/orte_filem.7
-man/man7/orte_hosts.7
-man/man7/orte_snapc.7
-share/openmpi/amca-param-sets/example.conf
-share/openmpi/examples/openmpi-default-hostfile
-share/openmpi/examples/openmpi-mca-params.conf
-share/openmpi/examples/openmpi-totalview.tcl
-share/openmpi/help-coll-sync.txt
-share/openmpi/help-dash-host.txt
-share/openmpi/help-ess-base.txt
-share/openmpi/help-hostfile.txt
-share/openmpi/help-mca-base.txt
-share/openmpi/help-mca-bml-r2.txt
-share/openmpi/help-mca-coll-base.txt
-share/openmpi/help-mca-op-base.txt
-share/openmpi/help-mca-param.txt
-share/openmpi/help-mpi-api.txt
-share/openmpi/help-mpi-btl-base.txt
-share/openmpi/help-mpi-btl-sm.txt
-share/openmpi/help-mpi-btl-tcp.txt
-share/openmpi/help-mpi-coll-sm.txt
-share/openmpi/help-mpi-common-sm.txt
-share/openmpi/help-mpi-errors.txt
-share/openmpi/help-mpi-pml-bfo.txt
-share/openmpi/help-mpi-pml-csum.txt
-share/openmpi/help-mpi-pml-ob1.txt
-share/openmpi/help-mpi-runtime.txt
-share/openmpi/help-mpool-base.txt
-share/openmpi/help-odls-default.txt
-share/openmpi/help-ompi-crcp-base.txt
-share/openmpi/help-ompi-dpm-base.txt
-share/openmpi/help-ompi-dpm-orte.txt
-share/openmpi/help-ompi-probe.txt
-share/openmpi/help-ompi-profiler.txt
-share/openmpi/help-ompi-pubsub-orte.txt
-share/openmpi/help-ompi-server.txt
-share/openmpi/help-ompi_info.txt
-share/openmpi/help-oob-tcp.txt
-share/openmpi/help-opal-carto-file.txt
-share/openmpi/help-opal-crs-base.txt
-share/openmpi/help-opal-crs-none.txt
-share/openmpi/help-opal-maffinity-hwloc.txt
-share/openmpi/help-opal-runtime.txt
-share/openmpi/help-opal-shmem-mmap.txt
-share/openmpi/help-opal-shmem-posix.txt
-share/openmpi/help-opal-shmem-sysv.txt
-share/openmpi/help-opal-util.txt
-share/openmpi/help-opal-wrapper.txt
-share/openmpi/help-orte-clean.txt
-share/openmpi/help-orte-filem-base.txt
-share/openmpi/help-orte-filem-rsh.txt
-share/openmpi/help-orte-iof.txt
-share/openmpi/help-orte-notifier-command.txt
-share/openmpi/help-orte-odls-base.txt
-share/openmpi/help-orte-ps.txt
-share/openmpi/help-orte-rmaps-base.txt
-share/openmpi/help-orte-rmaps-lb.txt
-share/openmpi/help-orte-rmaps-resilient.txt
-share/openmpi/help-orte-rmaps-rr.txt
-share/openmpi/help-orte-rmaps-seq.txt
-share/openmpi/help-orte-rmaps-topo.txt
-share/openmpi/help-orte-runtime.txt
-share/openmpi/help-orte-snapc-base.txt
-share/openmpi/help-orte-top.txt
-share/openmpi/help-orted.txt
-share/openmpi/help-orterun.txt
-share/openmpi/help-plm-base.txt
-share/openmpi/help-plm-rsh.txt
-share/openmpi/help-ras-base.txt
-share/openmpi/help-regex.txt
-share/openmpi/help-rmaps_rank_file.txt
-share/openmpi/mpic++-wrapper-data.txt
-share/openmpi/mpicc-wrapper-data.txt
-share/openmpi/mpicxx-wrapper-data.txt
-share/openmpi/mpif77-wrapper-data.txt
-share/openmpi/mpif90-wrapper-data.txt
-share/openmpi/openmpi-valgrind.supp
-share/openmpi/ortec++-wrapper-data.txt
-share/openmpi/ortecc-wrapper-data.txt
+openmpi/bin/mpic++
+openmpi/bin/mpicc
+openmpi/bin/mpicxx
+openmpi/bin/mpiexec
+openmpi/bin/mpif77
+openmpi/bin/mpif90
+openmpi/bin/mpirun
+openmpi/bin/ompi-clean
+openmpi/bin/ompi-iof
+openmpi/bin/ompi-probe
+openmpi/bin/ompi-profiler
+openmpi/bin/ompi-ps
+openmpi/bin/ompi-server
+openmpi/bin/ompi-top
+openmpi/bin/ompi_info
+openmpi/bin/opal_wrapper
+openmpi/bin/orte-bootproxy.sh
+openmpi/bin/orte-clean
+openmpi/bin/orte-iof
+openmpi/bin/orte-ps
+openmpi/bin/orte-top
+openmpi/bin/orte_wrapper_script
+openmpi/bin/ortec++
+openmpi/bin/ortecc
+openmpi/bin/orted
+openmpi/bin/orterun
+openmpi/etc/cshrc
+openmpi/etc/shrc
+openmpi/etc/modulefiles/openmpi/1.6.3
+openmpi/etc/openmpi-default-hostfile
+openmpi/include/mpi-ext.h
+openmpi/include/mpi.h
+openmpi/include/mpi_portable_platform.h
+openmpi/include/mpif-common.h
+openmpi/include/mpif-config.h
+openmpi/include/mpif-mpi-io.h
+openmpi/include/mpif.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/constants.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/exception.h
+openmpi/include/openmpi/ompi/mpi/cxx/file.h
+openmpi/include/openmpi/ompi/mpi/cxx/file_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/group.h
+openmpi/include/openmpi/ompi/mpi/cxx/group_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/info.h
+openmpi/include/openmpi/ompi/mpi/cxx/info_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/mpicxx.h
+openmpi/include/openmpi/ompi/mpi/cxx/op.h
+openmpi/include/openmpi/ompi/mpi/cxx/op_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/request.h
+openmpi/include/openmpi/ompi/mpi/cxx/request_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/status.h
+openmpi/include/openmpi/ompi/mpi/cxx/status_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/win.h
+openmpi/include/openmpi/ompi/mpi/cxx/win_inln.h
+openmpi/lib/libmca_common_sm.la
+openmpi/lib/libmpi.la
+openmpi/lib/libmpi_cxx.la
+openmpi/lib/libmpi_f77.la
+openmpi/lib/libmpi_f90.la
+openmpi/lib/libompitrace.la
+openmpi/lib/libopen-pal.la
+openmpi/lib/libopen-rte.la
+openmpi/lib/mpi.mod
+openmpi/lib/openmpi/libompi_dbg_msgq.la
+openmpi/lib/openmpi/mca_allocator_basic.la
+openmpi/lib/openmpi/mca_allocator_bucket.la
+openmpi/lib/openmpi/mca_bml_r2.la
+openmpi/lib/openmpi/mca_btl_self.la
+openmpi/lib/openmpi/mca_btl_sm.la
+openmpi/lib/openmpi/mca_btl_tcp.la
+openmpi/lib/openmpi/mca_carto_auto_detect.la
+openmpi/lib/openmpi/mca_carto_file.la
+openmpi/lib/openmpi/mca_coll_basic.la
+openmpi/lib/openmpi/mca_coll_hierarch.la
+openmpi/lib/openmpi/mca_coll_inter.la
+openmpi/lib/openmpi/mca_coll_self.la
+openmpi/lib/openmpi/mca_coll_sm.la
+openmpi/lib/openmpi/mca_coll_sync.la
+openmpi/lib/openmpi/mca_coll_tuned.la
+openmpi/lib/openmpi/mca_crs_none.la
+openmpi/lib/openmpi/mca_dpm_orte.la
+openmpi/lib/openmpi/mca_errmgr_default.la
+openmpi/lib/openmpi/mca_ess_env.la
+openmpi/lib/openmpi/mca_ess_hnp.la
+openmpi/lib/openmpi/mca_ess_singleton.la
+openmpi/lib/openmpi/mca_ess_slave.la
+openmpi/lib/openmpi/mca_ess_tool.la
+openmpi/lib/openmpi/mca_filem_rsh.la
+openmpi/lib/openmpi/mca_grpcomm_bad.la
+openmpi/lib/openmpi/mca_grpcomm_basic.la
+openmpi/lib/openmpi/mca_io_romio.la
+openmpi/lib/openmpi/mca_iof_hnp.la
+openmpi/lib/openmpi/mca_iof_orted.la
+openmpi/lib/openmpi/mca_iof_tool.la
+openmpi/lib/openmpi/mca_maffinity_first_use.la
+openmpi/lib/openmpi/mca_maffinity_hwloc.la
+openmpi/lib/openmpi/mca_mpool_fake.la
+openmpi/lib/openmpi/mca_mpool_rdma.la
+openmpi/lib/openmpi/mca_mpool_sm.la
+openmpi/lib/openmpi/mca_notifier_command.la
+openmpi/lib/openmpi/mca_notifier_syslog.la
+openmpi/lib/openmpi/mca_odls_default.la
+openmpi/lib/openmpi/mca_oob_tcp.la
+openmpi/lib/openmpi/mca_osc_pt2pt.la
+openmpi/lib/openmpi/mca_osc_rdma.la
+openmpi/lib/openmpi/mca_paffinity_hwloc.la
+openmpi/lib/openmpi/mca_plm_rsh.la
+openmpi/lib/openmpi/mca_pml_bfo.la
+openmpi/lib/openmpi/mca_pml_cm.la
+openmpi/lib/openmpi/mca_pml_csum.la
+openmpi/lib/openmpi/mca_pml_ob1.la
+openmpi/lib/openmpi/mca_pml_v.la
+openmpi/lib/openmpi/mca_pstat_darwin.la
+openmpi/lib/openmpi/mca_pubsub_orte.la
+openmpi/lib/openmpi/mca_ras_cm.la
+openmpi/lib/openmpi/mca_rcache_vma.la
+openmpi/lib/openmpi/mca_rmaps_load_balance.la
+openmpi/lib/openmpi/mca_rmaps_rank_file.la
+openmpi/lib/openmpi/mca_rmaps_resilient.la
+openmpi/lib/openmpi/mca_rmaps_round_robin.la
+openmpi/lib/openmpi/mca_rmaps_seq.la
+openmpi/lib/openmpi/mca_rmaps_topo.la
+openmpi/lib/openmpi/mca_rml_oob.la
+openmpi/lib/openmpi/mca_routed_binomial.la
+openmpi/lib/openmpi/mca_routed_cm.la
+openmpi/lib/openmpi/mca_routed_direct.la
+openmpi/lib/openmpi/mca_routed_linear.la
+openmpi/lib/openmpi/mca_routed_radix.la
+openmpi/lib/openmpi/mca_routed_slave.la
+openmpi/lib/openmpi/mca_shmem_mmap.la
+openmpi/lib/openmpi/mca_shmem_posix.la
+openmpi/lib/openmpi/mca_shmem_sysv.la
+openmpi/lib/openmpi/mca_sysinfo_darwin.la
+openmpi/lib/openmpi/mca_topo_unity.la
+openmpi/lib/openmpi/mca_vprotocol_pessimist.la
+openmpi/lib/pkgconfig/ompi-c.pc
+openmpi/lib/pkgconfig/ompi-cxx.pc
+openmpi/lib/pkgconfig/ompi-f77.pc
+openmpi/lib/pkgconfig/ompi-f90.pc
+openmpi/lib/pkgconfig/ompi.pc
+openmpi/lib/pkgconfig/orte.pc
+openmpi/man/man1/mpic++.1
+openmpi/man/man1/mpicc.1
+openmpi/man/man1/mpicxx.1
+openmpi/man/man1/mpiexec.1
+openmpi/man/man1/mpif77.1
+openmpi/man/man1/mpif90.1
+openmpi/man/man1/mpirun.1
+openmpi/man/man1/ompi-clean.1
+openmpi/man/man1/ompi-iof.1
+openmpi/man/man1/ompi-probe.1
+openmpi/man/man1/ompi-profiler.1
+openmpi/man/man1/ompi-ps.1
+openmpi/man/man1/ompi-server.1
+openmpi/man/man1/ompi-top.1
+openmpi/man/man1/ompi_info.1
+openmpi/man/man1/opal_wrapper.1
+openmpi/man/man1/orte-clean.1
+openmpi/man/man1/orte-iof.1
+openmpi/man/man1/orte-ps.1
+openmpi/man/man1/orte-top.1
+openmpi/man/man1/orted.1
+openmpi/man/man1/orterun.1
+openmpi/man/man3/MPI.3
+openmpi/man/man3/MPI_Abort.3
+openmpi/man/man3/MPI_Accumulate.3
+openmpi/man/man3/MPI_Add_error_class.3
+openmpi/man/man3/MPI_Add_error_code.3
+openmpi/man/man3/MPI_Add_error_string.3
+openmpi/man/man3/MPI_Address.3
+openmpi/man/man3/MPI_Allgather.3
+openmpi/man/man3/MPI_Allgatherv.3
+openmpi/man/man3/MPI_Alloc_mem.3
+openmpi/man/man3/MPI_Allreduce.3
+openmpi/man/man3/MPI_Alltoall.3
+openmpi/man/man3/MPI_Alltoallv.3
+openmpi/man/man3/MPI_Alltoallw.3
+openmpi/man/man3/MPI_Attr_delete.3
+openmpi/man/man3/MPI_Attr_get.3
+openmpi/man/man3/MPI_Attr_put.3
+openmpi/man/man3/MPI_Barrier.3
+openmpi/man/man3/MPI_Bcast.3
+openmpi/man/man3/MPI_Bsend.3
+openmpi/man/man3/MPI_Bsend_init.3
+openmpi/man/man3/MPI_Buffer_attach.3
+openmpi/man/man3/MPI_Buffer_detach.3
+openmpi/man/man3/MPI_Cancel.3
+openmpi/man/man3/MPI_Cart_coords.3
+openmpi/man/man3/MPI_Cart_create.3
+openmpi/man/man3/MPI_Cart_get.3
+openmpi/man/man3/MPI_Cart_map.3
+openmpi/man/man3/MPI_Cart_rank.3
+openmpi/man/man3/MPI_Cart_shift.3
+openmpi/man/man3/MPI_Cart_sub.3
+openmpi/man/man3/MPI_Cartdim_get.3
+openmpi/man/man3/MPI_Close_port.3
+openmpi/man/man3/MPI_Comm_accept.3
+openmpi/man/man3/MPI_Comm_c2f.3
+openmpi/man/man3/MPI_Comm_call_errhandler.3
+openmpi/man/man3/MPI_Comm_compare.3
+openmpi/man/man3/MPI_Comm_connect.3
+openmpi/man/man3/MPI_Comm_create.3
+openmpi/man/man3/MPI_Comm_create_errhandler.3
+openmpi/man/man3/MPI_Comm_create_keyval.3
+openmpi/man/man3/MPI_Comm_delete_attr.3
+openmpi/man/man3/MPI_Comm_disconnect.3
+openmpi/man/man3/MPI_Comm_dup.3
+openmpi/man/man3/MPI_Comm_f2c.3
+openmpi/man/man3/MPI_Comm_free.3
+openmpi/man/man3/MPI_Comm_free_keyval.3
+openmpi/man/man3/MPI_Comm_get_attr.3
+openmpi/man/man3/MPI_Comm_get_errhandler.3
+openmpi/man/man3/MPI_Comm_get_name.3
+openmpi/man/man3/MPI_Comm_get_parent.3
+openmpi/man/man3/MPI_Comm_group.3
+openmpi/man/man3/MPI_Comm_join.3
+openmpi/man/man3/MPI_Comm_rank.3
+openmpi/man/man3/MPI_Comm_remote_group.3
+openmpi/man/man3/MPI_Comm_remote_size.3
+openmpi/man/man3/MPI_Comm_set_attr.3
+openmpi/man/man3/MPI_Comm_set_errhandler.3
+openmpi/man/man3/MPI_Comm_set_name.3
+openmpi/man/man3/MPI_Comm_size.3
+openmpi/man/man3/MPI_Comm_spawn.3
+openmpi/man/man3/MPI_Comm_spawn_multiple.3
+openmpi/man/man3/MPI_Comm_split.3
+openmpi/man/man3/MPI_Comm_test_inter.3
+openmpi/man/man3/MPI_Dims_create.3
+openmpi/man/man3/MPI_Errhandler_create.3
+openmpi/man/man3/MPI_Errhandler_free.3
+openmpi/man/man3/MPI_Errhandler_get.3
+openmpi/man/man3/MPI_Errhandler_set.3
+openmpi/man/man3/MPI_Error_class.3
+openmpi/man/man3/MPI_Error_string.3
+openmpi/man/man3/MPI_Exscan.3
+openmpi/man/man3/MPI_File_c2f.3
+openmpi/man/man3/MPI_File_call_errhandler.3
+openmpi/man/man3/MPI_File_close.3
+openmpi/man/man3/MPI_File_create_errhandler.3
+openmpi/man/man3/MPI_File_delete.3
+openmpi/man/man3/MPI_File_f2c.3
+openmpi/man/man3/MPI_File_get_amode.3
+openmpi/man/man3/MPI_File_get_atomicity.3
+openmpi/man/man3/MPI_File_get_byte_offset.3
+openmpi/man/man3/MPI_File_get_errhandler.3
+openmpi/man/man3/MPI_File_get_group.3
+openmpi/man/man3/MPI_File_get_info.3
+openmpi/man/man3/MPI_File_get_position.3
+openmpi/man/man3/MPI_File_get_position_shared.3
+openmpi/man/man3/MPI_File_get_size.3
+openmpi/man/man3/MPI_File_get_type_extent.3
+openmpi/man/man3/MPI_File_get_view.3
+openmpi/man/man3/MPI_File_iread.3
+openmpi/man/man3/MPI_File_iread_at.3
+openmpi/man/man3/MPI_File_iread_shared.3
+openmpi/man/man3/MPI_File_iwrite.3
+openmpi/man/man3/MPI_File_iwrite_at.3
+openmpi/man/man3/MPI_File_iwrite_shared.3
+openmpi/man/man3/MPI_File_open.3
+openmpi/man/man3/MPI_File_preallocate.3
+openmpi/man/man3/MPI_File_read.3
+openmpi/man/man3/MPI_File_read_all.3
+openmpi/man/man3/MPI_File_read_all_begin.3
+openmpi/man/man3/MPI_File_read_all_end.3
+openmpi/man/man3/MPI_File_read_at.3
+openmpi/man/man3/MPI_File_read_at_all.3
+openmpi/man/man3/MPI_File_read_at_all_begin.3
+openmpi/man/man3/MPI_File_read_at_all_end.3
+openmpi/man/man3/MPI_File_read_ordered.3
+openmpi/man/man3/MPI_File_read_ordered_begin.3
+openmpi/man/man3/MPI_File_read_ordered_end.3
+openmpi/man/man3/MPI_File_read_shared.3
+openmpi/man/man3/MPI_File_seek.3
+openmpi/man/man3/MPI_File_seek_shared.3
+openmpi/man/man3/MPI_File_set_atomicity.3
+openmpi/man/man3/MPI_File_set_errhandler.3
+openmpi/man/man3/MPI_File_set_info.3
+openmpi/man/man3/MPI_File_set_size.3
+openmpi/man/man3/MPI_File_set_view.3
+openmpi/man/man3/MPI_File_sync.3
+openmpi/man/man3/MPI_File_write.3
+openmpi/man/man3/MPI_File_write_all.3
+openmpi/man/man3/MPI_File_write_all_begin.3
+openmpi/man/man3/MPI_File_write_all_end.3
+openmpi/man/man3/MPI_File_write_at.3
+openmpi/man/man3/MPI_File_write_at_all.3
+openmpi/man/man3/MPI_File_write_at_all_begin.3
+openmpi/man/man3/MPI_File_write_at_all_end.3
+openmpi/man/man3/MPI_File_write_ordered.3
+openmpi/man/man3/MPI_File_write_ordered_begin.3
+openmpi/man/man3/MPI_File_write_ordered_end.3
+openmpi/man/man3/MPI_File_write_shared.3
+openmpi/man/man3/MPI_Finalize.3
+openmpi/man/man3/MPI_Finalized.3
+openmpi/man/man3/MPI_Free_mem.3
+openmpi/man/man3/MPI_Gather.3
+openmpi/man/man3/MPI_Gatherv.3
+openmpi/man/man3/MPI_Get.3
+openmpi/man/man3/MPI_Get_address.3
+openmpi/man/man3/MPI_Get_count.3
+openmpi/man/man3/MPI_Get_elements.3
+openmpi/man/man3/MPI_Get_processor_name.3
+openmpi/man/man3/MPI_Get_version.3
+openmpi/man/man3/MPI_Graph_create.3
+openmpi/man/man3/MPI_Graph_get.3
+openmpi/man/man3/MPI_Graph_map.3
+openmpi/man/man3/MPI_Graph_neighbors.3
+openmpi/man/man3/MPI_Graph_neighbors_count.3
+openmpi/man/man3/MPI_Graphdims_get.3
+openmpi/man/man3/MPI_Grequest_complete.3
+openmpi/man/man3/MPI_Grequest_start.3
+openmpi/man/man3/MPI_Group_c2f.3
+openmpi/man/man3/MPI_Group_compare.3
+openmpi/man/man3/MPI_Group_difference.3
+openmpi/man/man3/MPI_Group_excl.3
+openmpi/man/man3/MPI_Group_f2c.3
+openmpi/man/man3/MPI_Group_free.3
+openmpi/man/man3/MPI_Group_incl.3
+openmpi/man/man3/MPI_Group_intersection.3
+openmpi/man/man3/MPI_Group_range_excl.3
+openmpi/man/man3/MPI_Group_range_incl.3
+openmpi/man/man3/MPI_Group_rank.3
+openmpi/man/man3/MPI_Group_size.3
+openmpi/man/man3/MPI_Group_translate_ranks.3
+openmpi/man/man3/MPI_Group_union.3
+openmpi/man/man3/MPI_Ibsend.3
+openmpi/man/man3/MPI_Info_c2f.3
+openmpi/man/man3/MPI_Info_create.3
+openmpi/man/man3/MPI_Info_delete.3
+openmpi/man/man3/MPI_Info_dup.3
+openmpi/man/man3/MPI_Info_f2c.3
+openmpi/man/man3/MPI_Info_free.3
+openmpi/man/man3/MPI_Info_get.3
+openmpi/man/man3/MPI_Info_get_nkeys.3
+openmpi/man/man3/MPI_Info_get_nthkey.3
+openmpi/man/man3/MPI_Info_get_valuelen.3
+openmpi/man/man3/MPI_Info_set.3
+openmpi/man/man3/MPI_Init.3
+openmpi/man/man3/MPI_Init_thread.3
+openmpi/man/man3/MPI_Initialized.3
+openmpi/man/man3/MPI_Intercomm_create.3
+openmpi/man/man3/MPI_Intercomm_merge.3
+openmpi/man/man3/MPI_Iprobe.3
+openmpi/man/man3/MPI_Irecv.3
+openmpi/man/man3/MPI_Irsend.3
+openmpi/man/man3/MPI_Is_thread_main.3
+openmpi/man/man3/MPI_Isend.3
+openmpi/man/man3/MPI_Issend.3
+openmpi/man/man3/MPI_Keyval_create.3
+openmpi/man/man3/MPI_Keyval_free.3
+openmpi/man/man3/MPI_Lookup_name.3
+openmpi/man/man3/MPI_Op_c2f.3
+openmpi/man/man3/MPI_Op_create.3
+openmpi/man/man3/MPI_Op_f2c.3
+openmpi/man/man3/MPI_Op_free.3
+openmpi/man/man3/MPI_Open_port.3
+openmpi/man/man3/MPI_Pack.3
+openmpi/man/man3/MPI_Pack_external.3
+openmpi/man/man3/MPI_Pack_external_size.3
+openmpi/man/man3/MPI_Pack_size.3
+openmpi/man/man3/MPI_Pcontrol.3
+openmpi/man/man3/MPI_Probe.3
+openmpi/man/man3/MPI_Publish_name.3
+openmpi/man/man3/MPI_Put.3
+openmpi/man/man3/MPI_Query_thread.3
+openmpi/man/man3/MPI_Recv.3
+openmpi/man/man3/MPI_Recv_init.3
+openmpi/man/man3/MPI_Reduce.3
+openmpi/man/man3/MPI_Reduce_local.3
+openmpi/man/man3/MPI_Reduce_scatter.3
+openmpi/man/man3/MPI_Register_datarep.3
+openmpi/man/man3/MPI_Request_c2f.3
+openmpi/man/man3/MPI_Request_f2c.3
+openmpi/man/man3/MPI_Request_free.3
+openmpi/man/man3/MPI_Request_get_status.3
+openmpi/man/man3/MPI_Rsend.3
+openmpi/man/man3/MPI_Rsend_init.3
+openmpi/man/man3/MPI_Scan.3
+openmpi/man/man3/MPI_Scatter.3
+openmpi/man/man3/MPI_Scatterv.3
+openmpi/man/man3/MPI_Send.3
+openmpi/man/man3/MPI_Send_init.3
+openmpi/man/man3/MPI_Sendrecv.3
+openmpi/man/man3/MPI_Sendrecv_replace.3
+openmpi/man/man3/MPI_Sizeof.3
+openmpi/man/man3/MPI_Ssend.3
+openmpi/man/man3/MPI_Ssend_init.3
+openmpi/man/man3/MPI_Start.3
+openmpi/man/man3/MPI_Startall.3
+openmpi/man/man3/MPI_Status_c2f.3
+openmpi/man/man3/MPI_Status_f2c.3
+openmpi/man/man3/MPI_Status_set_cancelled.3
+openmpi/man/man3/MPI_Status_set_elements.3
+openmpi/man/man3/MPI_Test.3
+openmpi/man/man3/MPI_Test_cancelled.3
+openmpi/man/man3/MPI_Testall.3
+openmpi/man/man3/MPI_Testany.3
+openmpi/man/man3/MPI_Testsome.3
+openmpi/man/man3/MPI_Topo_test.3
+openmpi/man/man3/MPI_Type_c2f.3
+openmpi/man/man3/MPI_Type_commit.3
+openmpi/man/man3/MPI_Type_contiguous.3
+openmpi/man/man3/MPI_Type_create_darray.3
+openmpi/man/man3/MPI_Type_create_f90_complex.3
+openmpi/man/man3/MPI_Type_create_f90_integer.3
+openmpi/man/man3/MPI_Type_create_f90_real.3
+openmpi/man/man3/MPI_Type_create_hindexed.3
+openmpi/man/man3/MPI_Type_create_hvector.3
+openmpi/man/man3/MPI_Type_create_indexed_block.3
+openmpi/man/man3/MPI_Type_create_keyval.3
+openmpi/man/man3/MPI_Type_create_resized.3
+openmpi/man/man3/MPI_Type_create_struct.3
+openmpi/man/man3/MPI_Type_create_subarray.3
+openmpi/man/man3/MPI_Type_delete_attr.3
+openmpi/man/man3/MPI_Type_dup.3
+openmpi/man/man3/MPI_Type_extent.3
+openmpi/man/man3/MPI_Type_f2c.3
+openmpi/man/man3/MPI_Type_free.3
+openmpi/man/man3/MPI_Type_free_keyval.3
+openmpi/man/man3/MPI_Type_get_attr.3
+openmpi/man/man3/MPI_Type_get_contents.3
+openmpi/man/man3/MPI_Type_get_envelope.3
+openmpi/man/man3/MPI_Type_get_extent.3
+openmpi/man/man3/MPI_Type_get_name.3
+openmpi/man/man3/MPI_Type_get_true_extent.3
+openmpi/man/man3/MPI_Type_hindexed.3
+openmpi/man/man3/MPI_Type_hvector.3
+openmpi/man/man3/MPI_Type_indexed.3
+openmpi/man/man3/MPI_Type_lb.3
+openmpi/man/man3/MPI_Type_match_size.3
+openmpi/man/man3/MPI_Type_set_attr.3
+openmpi/man/man3/MPI_Type_set_name.3
+openmpi/man/man3/MPI_Type_size.3
+openmpi/man/man3/MPI_Type_struct.3
+openmpi/man/man3/MPI_Type_ub.3
+openmpi/man/man3/MPI_Type_vector.3
+openmpi/man/man3/MPI_Unpack.3
+openmpi/man/man3/MPI_Unpack_external.3
+openmpi/man/man3/MPI_Unpublish_name.3
+openmpi/man/man3/MPI_Wait.3
+openmpi/man/man3/MPI_Waitall.3
+openmpi/man/man3/MPI_Waitany.3
+openmpi/man/man3/MPI_Waitsome.3
+openmpi/man/man3/MPI_Win_c2f.3
+openmpi/man/man3/MPI_Win_call_errhandler.3
+openmpi/man/man3/MPI_Win_complete.3
+openmpi/man/man3/MPI_Win_create.3
+openmpi/man/man3/MPI_Win_create_errhandler.3
+openmpi/man/man3/MPI_Win_create_keyval.3
+openmpi/man/man3/MPI_Win_delete_attr.3
+openmpi/man/man3/MPI_Win_f2c.3
+openmpi/man/man3/MPI_Win_fence.3
+openmpi/man/man3/MPI_Win_free.3
+openmpi/man/man3/MPI_Win_free_keyval.3
+openmpi/man/man3/MPI_Win_get_attr.3
+openmpi/man/man3/MPI_Win_get_errhandler.3
+openmpi/man/man3/MPI_Win_get_group.3
+openmpi/man/man3/MPI_Win_get_name.3
+openmpi/man/man3/MPI_Win_lock.3
+openmpi/man/man3/MPI_Win_post.3
+openmpi/man/man3/MPI_Win_set_attr.3
+openmpi/man/man3/MPI_Win_set_errhandler.3
+openmpi/man/man3/MPI_Win_set_name.3
+openmpi/man/man3/MPI_Win_start.3
+openmpi/man/man3/MPI_Win_test.3
+openmpi/man/man3/MPI_Win_unlock.3
+openmpi/man/man3/MPI_Win_wait.3
+openmpi/man/man3/MPI_Wtick.3
+openmpi/man/man3/MPI_Wtime.3
+openmpi/man/man3/OpenMPI.3
+openmpi/man/man7/ompi_crcp.7
+openmpi/man/man7/opal_crs.7
+openmpi/man/man7/orte_filem.7
+openmpi/man/man7/orte_hosts.7
+openmpi/man/man7/orte_snapc.7
+openmpi/share/openmpi/amca-param-sets/example.conf
+openmpi/share/openmpi/examples/openmpi-default-hostfile
+openmpi/share/openmpi/examples/openmpi-mca-params.conf
+openmpi/share/openmpi/examples/openmpi-totalview.tcl
+openmpi/share/openmpi/help-coll-sync.txt
+openmpi/share/openmpi/help-dash-host.txt
+openmpi/share/openmpi/help-ess-base.txt
+openmpi/share/openmpi/help-hostfile.txt
+openmpi/share/openmpi/help-mca-base.txt
+openmpi/share/openmpi/help-mca-bml-r2.txt
+openmpi/share/openmpi/help-mca-coll-base.txt
+openmpi/share/openmpi/help-mca-op-base.txt
+openmpi/share/openmpi/help-mca-param.txt
+openmpi/share/openmpi/help-mpi-api.txt
+openmpi/share/openmpi/help-mpi-btl-base.txt
+openmpi/share/openmpi/help-mpi-btl-sm.txt
+openmpi/share/openmpi/help-mpi-btl-tcp.txt
+openmpi/share/openmpi/help-mpi-coll-sm.txt
+openmpi/share/openmpi/help-mpi-common-sm.txt
+openmpi/share/openmpi/help-mpi-errors.txt
+openmpi/share/openmpi/help-mpi-pml-bfo.txt
+openmpi/share/openmpi/help-mpi-pml-csum.txt
+openmpi/share/openmpi/help-mpi-pml-ob1.txt
+openmpi/share/openmpi/help-mpi-runtime.txt
+openmpi/share/openmpi/help-mpool-base.txt
+openmpi/share/openmpi/help-odls-default.txt
+openmpi/share/openmpi/help-ompi-crcp-base.txt
+openmpi/share/openmpi/help-ompi-dpm-base.txt
+openmpi/share/openmpi/help-ompi-dpm-orte.txt
+openmpi/share/openmpi/help-ompi-probe.txt
+openmpi/share/openmpi/help-ompi-profiler.txt
+openmpi/share/openmpi/help-ompi-pubsub-orte.txt
+openmpi/share/openmpi/help-ompi-server.txt
+openmpi/share/openmpi/help-ompi_info.txt
+openmpi/share/openmpi/help-oob-tcp.txt
+openmpi/share/openmpi/help-opal-carto-file.txt
+openmpi/share/openmpi/help-opal-crs-base.txt
+openmpi/share/openmpi/help-opal-crs-none.txt
+openmpi/share/openmpi/help-opal-maffinity-hwloc.txt
+openmpi/share/openmpi/help-opal-runtime.txt
+openmpi/share/openmpi/help-opal-shmem-mmap.txt
+openmpi/share/openmpi/help-opal-shmem-posix.txt
+openmpi/share/openmpi/help-opal-shmem-sysv.txt
+openmpi/share/openmpi/help-opal-util.txt
+openmpi/share/openmpi/help-opal-wrapper.txt
+openmpi/share/openmpi/help-orte-clean.txt
+openmpi/share/openmpi/help-orte-filem-base.txt
+openmpi/share/openmpi/help-orte-filem-rsh.txt
+openmpi/share/openmpi/help-orte-iof.txt
+openmpi/share/openmpi/help-orte-notifier-command.txt
+openmpi/share/openmpi/help-orte-odls-base.txt
+openmpi/share/openmpi/help-orte-ps.txt
+openmpi/share/openmpi/help-orte-rmaps-base.txt
+openmpi/share/openmpi/help-orte-rmaps-lb.txt
+openmpi/share/openmpi/help-orte-rmaps-resilient.txt
+openmpi/share/openmpi/help-orte-rmaps-rr.txt
+openmpi/share/openmpi/help-orte-rmaps-seq.txt
+openmpi/share/openmpi/help-orte-rmaps-topo.txt
+openmpi/share/openmpi/help-orte-runtime.txt
+openmpi/share/openmpi/help-orte-snapc-base.txt
+openmpi/share/openmpi/help-orte-top.txt
+openmpi/share/openmpi/help-orted.txt
+openmpi/share/openmpi/help-orterun.txt
+openmpi/share/openmpi/help-plm-base.txt
+openmpi/share/openmpi/help-plm-rsh.txt
+openmpi/share/openmpi/help-ras-base.txt
+openmpi/share/openmpi/help-regex.txt
+openmpi/share/openmpi/help-rmaps_rank_file.txt
+openmpi/share/openmpi/mpic++-wrapper-data.txt
+openmpi/share/openmpi/mpicc-wrapper-data.txt
+openmpi/share/openmpi/mpicxx-wrapper-data.txt
+openmpi/share/openmpi/mpif77-wrapper-data.txt
+openmpi/share/openmpi/mpif90-wrapper-data.txt
+openmpi/share/openmpi/openmpi-valgrind.supp
+openmpi/share/openmpi/ortec++-wrapper-data.txt
+openmpi/share/openmpi/ortecc-wrapper-data.txt
diff --git a/openmpi163/PLIST.Linux b/openmpi163/PLIST.Linux
index 3c87d3f..891678d 100644
--- a/openmpi163/PLIST.Linux
+++ b/openmpi163/PLIST.Linux
@@ -1,588 +1,588 @@
 @comment $NetBSD: PLIST.Linux,v 1.4 2015/06/19 19:17:41 outpaddling Exp $
-bin/mpic++
-bin/mpicc
-bin/mpiCC
-bin/mpicxx
-bin/mpiexec
-bin/mpif77
-bin/mpif90
-bin/mpirun
-bin/ompi-clean
-bin/ompi_info
-bin/ompi-iof
-bin/ompi-probe
-bin/ompi-profiler
-bin/ompi-ps
-bin/ompi-server
-bin/ompi-top
-bin/opal_wrapper
-bin/orte-bootproxy.sh
-bin/ortec++
-bin/ortecc
-bin/orteCC
-bin/orte-clean
-bin/orted
-bin/orte-iof
-bin/orte-ps
-bin/orterun
-bin/orte-top
-bin/orte_wrapper_script
-etc/cshrc
-etc/modulefiles/openmpi/1.6.3
-etc/openmpi-default-hostfile
-etc/shrc
-include/mpi-ext.h
-include/mpif-common.h
-include/mpif-config.h
-include/mpif.h
-include/mpif-mpi-io.h
-include/mpi.h
-include/mpi_portable_platform.h
-include/openmpi/ompi/mpi/cxx/comm.h
-include/openmpi/ompi/mpi/cxx/comm_inln.h
-include/openmpi/ompi/mpi/cxx/constants.h
-include/openmpi/ompi/mpi/cxx/datatype.h
-include/openmpi/ompi/mpi/cxx/datatype_inln.h
-include/openmpi/ompi/mpi/cxx/errhandler.h
-include/openmpi/ompi/mpi/cxx/errhandler_inln.h
-include/openmpi/ompi/mpi/cxx/exception.h
-include/openmpi/ompi/mpi/cxx/file.h
-include/openmpi/ompi/mpi/cxx/file_inln.h
-include/openmpi/ompi/mpi/cxx/functions.h
-include/openmpi/ompi/mpi/cxx/functions_inln.h
-include/openmpi/ompi/mpi/cxx/group.h
-include/openmpi/ompi/mpi/cxx/group_inln.h
-include/openmpi/ompi/mpi/cxx/info.h
-include/openmpi/ompi/mpi/cxx/info_inln.h
-include/openmpi/ompi/mpi/cxx/intercomm.h
-include/openmpi/ompi/mpi/cxx/intercomm_inln.h
-include/openmpi/ompi/mpi/cxx/intracomm.h
-include/openmpi/ompi/mpi/cxx/intracomm_inln.h
-include/openmpi/ompi/mpi/cxx/mpicxx.h
-include/openmpi/ompi/mpi/cxx/op.h
-include/openmpi/ompi/mpi/cxx/op_inln.h
-include/openmpi/ompi/mpi/cxx/request.h
-include/openmpi/ompi/mpi/cxx/request_inln.h
-include/openmpi/ompi/mpi/cxx/status.h
-include/openmpi/ompi/mpi/cxx/status_inln.h
-include/openmpi/ompi/mpi/cxx/topology.h
-include/openmpi/ompi/mpi/cxx/topology_inln.h
-include/openmpi/ompi/mpi/cxx/win.h
-include/openmpi/ompi/mpi/cxx/win_inln.h
-lib/libmca_common_sm.la
-lib/libmpi_cxx.la
-lib/libmpi_f77.la
-lib/libmpi_f90.la
-lib/libmpi.la
-lib/libompitrace.la
-lib/libopen-pal.la
-lib/libopen-rte.la
-lib/mpi.mod
-lib/openmpi/libompi_dbg_msgq.la
-lib/openmpi/mca_allocator_basic.la
-lib/openmpi/mca_allocator_bucket.la
-lib/openmpi/mca_bml_r2.la
-lib/openmpi/mca_btl_ofud.la
-lib/openmpi/mca_btl_openib.la
-lib/openmpi/mca_btl_self.la
-lib/openmpi/mca_btl_sm.la
-lib/openmpi/mca_btl_tcp.la
-lib/openmpi/mca_carto_auto_detect.la
-lib/openmpi/mca_carto_file.la
-lib/openmpi/mca_coll_basic.la
-lib/openmpi/mca_coll_hierarch.la
-lib/openmpi/mca_coll_inter.la
-lib/openmpi/mca_coll_self.la
-lib/openmpi/mca_coll_sm.la
-lib/openmpi/mca_coll_sync.la
-lib/openmpi/mca_coll_tuned.la
-lib/openmpi/mca_crs_none.la
-lib/openmpi/mca_dpm_orte.la
-lib/openmpi/mca_errmgr_default.la
-lib/openmpi/mca_ess_env.la
-lib/openmpi/mca_ess_hnp.la
-lib/openmpi/mca_ess_singleton.la
-lib/openmpi/mca_ess_slave.la
-lib/openmpi/mca_ess_slurmd.la
-lib/openmpi/mca_ess_slurm.la
-lib/openmpi/mca_ess_tool.la
-lib/openmpi/mca_filem_rsh.la
-lib/openmpi/mca_grpcomm_bad.la
-lib/openmpi/mca_grpcomm_basic.la
-lib/openmpi/mca_iof_hnp.la
-lib/openmpi/mca_iof_orted.la
-lib/openmpi/mca_iof_tool.la
-lib/openmpi/mca_io_romio.la
-lib/openmpi/mca_maffinity_first_use.la
-lib/openmpi/mca_maffinity_hwloc.la
-lib/openmpi/mca_mpool_fake.la
-lib/openmpi/mca_mpool_rdma.la
-lib/openmpi/mca_mpool_sm.la
-lib/openmpi/mca_notifier_command.la
-lib/openmpi/mca_notifier_syslog.la
-lib/openmpi/mca_odls_default.la
-lib/openmpi/mca_oob_tcp.la
-lib/openmpi/mca_osc_pt2pt.la
-lib/openmpi/mca_osc_rdma.la
-lib/openmpi/mca_paffinity_hwloc.la
-lib/openmpi/mca_plm_rsh.la
-lib/openmpi/mca_plm_slurm.la
-lib/openmpi/mca_pml_bfo.la
-lib/openmpi/mca_pml_cm.la
-lib/openmpi/mca_pml_csum.la
-lib/openmpi/mca_pml_ob1.la
-lib/openmpi/mca_pml_v.la
-lib/openmpi/mca_pstat_linux.la
-lib/openmpi/mca_pubsub_orte.la
-lib/openmpi/mca_ras_cm.la
-lib/openmpi/mca_ras_loadleveler.la
-lib/openmpi/mca_ras_slurm.la
-lib/openmpi/mca_rcache_vma.la
-lib/openmpi/mca_rmaps_load_balance.la
-lib/openmpi/mca_rmaps_rank_file.la
-lib/openmpi/mca_rmaps_resilient.la
-lib/openmpi/mca_rmaps_round_robin.la
-lib/openmpi/mca_rmaps_seq.la
-lib/openmpi/mca_rmaps_topo.la
-lib/openmpi/mca_rml_oob.la
-lib/openmpi/mca_routed_binomial.la
-lib/openmpi/mca_routed_cm.la
-lib/openmpi/mca_routed_direct.la
-lib/openmpi/mca_routed_linear.la
-lib/openmpi/mca_routed_radix.la
-lib/openmpi/mca_routed_slave.la
-lib/openmpi/mca_shmem_mmap.la
-lib/openmpi/mca_shmem_posix.la
-lib/openmpi/mca_shmem_sysv.la
-lib/openmpi/mca_sysinfo_linux.la
-lib/openmpi/mca_topo_unity.la
-lib/openmpi/mca_vprotocol_pessimist.la
-lib/pkgconfig/ompi-c.pc
-lib/pkgconfig/ompi-cxx.pc
-lib/pkgconfig/ompi-f77.pc
-lib/pkgconfig/ompi-f90.pc
-lib/pkgconfig/ompi.pc
-lib/pkgconfig/orte.pc
-man/man1/mpic++.1
-man/man1/mpicc.1
-man/man1/mpiCC.1
-man/man1/mpicxx.1
-man/man1/mpiexec.1
-man/man1/mpif77.1
-man/man1/mpif90.1
-man/man1/mpirun.1
-man/man1/ompi-clean.1
-man/man1/ompi_info.1
-man/man1/ompi-iof.1
-man/man1/ompi-probe.1
-man/man1/ompi-profiler.1
-man/man1/ompi-ps.1
-man/man1/ompi-server.1
-man/man1/ompi-top.1
-man/man1/opal_wrapper.1
-man/man1/orteCC.1
-man/man1/orte-clean.1
-man/man1/orted.1
-man/man1/orte-iof.1
-man/man1/orte-ps.1
-man/man1/orterun.1
-man/man1/orte-top.1
-man/man3/MPI.3
-man/man3/MPI_Abort.3
-man/man3/MPI_Accumulate.3
-man/man3/MPI_Add_error_class.3
-man/man3/MPI_Add_error_code.3
-man/man3/MPI_Add_error_string.3
-man/man3/MPI_Address.3
-man/man3/MPI_Allgather.3
-man/man3/MPI_Allgatherv.3
-man/man3/MPI_Alloc_mem.3
-man/man3/MPI_Allreduce.3
-man/man3/MPI_Alltoall.3
-man/man3/MPI_Alltoallv.3
-man/man3/MPI_Alltoallw.3
-man/man3/MPI_Attr_delete.3
-man/man3/MPI_Attr_get.3
-man/man3/MPI_Attr_put.3
-man/man3/MPI_Barrier.3
-man/man3/MPI_Bcast.3
-man/man3/MPI_Bsend.3
-man/man3/MPI_Bsend_init.3
-man/man3/MPI_Buffer_attach.3
-man/man3/MPI_Buffer_detach.3
-man/man3/MPI_Cancel.3
-man/man3/MPI_Cart_coords.3
-man/man3/MPI_Cart_create.3
-man/man3/MPI_Cartdim_get.3
-man/man3/MPI_Cart_get.3
-man/man3/MPI_Cart_map.3
-man/man3/MPI_Cart_rank.3
-man/man3/MPI_Cart_shift.3
-man/man3/MPI_Cart_sub.3
-man/man3/MPI_Close_port.3
-man/man3/MPI_Comm_accept.3
-man/man3/MPI_Comm_c2f.3
-man/man3/MPI_Comm_call_errhandler.3
-man/man3/MPI_Comm_compare.3
-man/man3/MPI_Comm_connect.3
-man/man3/MPI_Comm_create.3
-man/man3/MPI_Comm_create_errhandler.3
-man/man3/MPI_Comm_create_keyval.3
-man/man3/MPI_Comm_delete_attr.3
-man/man3/MPI_Comm_disconnect.3
-man/man3/MPI_Comm_dup.3
-man/man3/MPI_Comm_f2c.3
-man/man3/MPI_Comm_free.3
-man/man3/MPI_Comm_free_keyval.3
-man/man3/MPI_Comm_get_attr.3
-man/man3/MPI_Comm_get_errhandler.3
-man/man3/MPI_Comm_get_name.3
-man/man3/MPI_Comm_get_parent.3
-man/man3/MPI_Comm_group.3
-man/man3/MPI_Comm_join.3
-man/man3/MPI_Comm_rank.3
-man/man3/MPI_Comm_remote_group.3
-man/man3/MPI_Comm_remote_size.3
-man/man3/MPI_Comm_set_attr.3
-man/man3/MPI_Comm_set_errhandler.3
-man/man3/MPI_Comm_set_name.3
-man/man3/MPI_Comm_size.3
-man/man3/MPI_Comm_spawn.3
-man/man3/MPI_Comm_spawn_multiple.3
-man/man3/MPI_Comm_split.3
-man/man3/MPI_Comm_test_inter.3
-man/man3/MPI_Dims_create.3
-man/man3/MPI_Errhandler_create.3
-man/man3/MPI_Errhandler_free.3
-man/man3/MPI_Errhandler_get.3
-man/man3/MPI_Errhandler_set.3
-man/man3/MPI_Error_class.3
-man/man3/MPI_Error_string.3
-man/man3/MPI_Exscan.3
-man/man3/MPI_File_c2f.3
-man/man3/MPI_File_call_errhandler.3
-man/man3/MPI_File_close.3
-man/man3/MPI_File_create_errhandler.3
-man/man3/MPI_File_delete.3
-man/man3/MPI_File_f2c.3
-man/man3/MPI_File_get_amode.3
-man/man3/MPI_File_get_atomicity.3
-man/man3/MPI_File_get_byte_offset.3
-man/man3/MPI_File_get_errhandler.3
-man/man3/MPI_File_get_group.3
-man/man3/MPI_File_get_info.3
-man/man3/MPI_File_get_position.3
-man/man3/MPI_File_get_position_shared.3
-man/man3/MPI_File_get_size.3
-man/man3/MPI_File_get_type_extent.3
-man/man3/MPI_File_get_view.3
-man/man3/MPI_File_iread.3
-man/man3/MPI_File_iread_at.3
-man/man3/MPI_File_iread_shared.3
-man/man3/MPI_File_iwrite.3
-man/man3/MPI_File_iwrite_at.3
-man/man3/MPI_File_iwrite_shared.3
-man/man3/MPI_File_open.3
-man/man3/MPI_File_preallocate.3
-man/man3/MPI_File_read.3
-man/man3/MPI_File_read_all.3
-man/man3/MPI_File_read_all_begin.3
-man/man3/MPI_File_read_all_end.3
-man/man3/MPI_File_read_at.3
-man/man3/MPI_File_read_at_all.3
-man/man3/MPI_File_read_at_all_begin.3
-man/man3/MPI_File_read_at_all_end.3
-man/man3/MPI_File_read_ordered.3
-man/man3/MPI_File_read_ordered_begin.3
-man/man3/MPI_File_read_ordered_end.3
-man/man3/MPI_File_read_shared.3
-man/man3/MPI_File_seek.3
-man/man3/MPI_File_seek_shared.3
-man/man3/MPI_File_set_atomicity.3
-man/man3/MPI_File_set_errhandler.3
-man/man3/MPI_File_set_info.3
-man/man3/MPI_File_set_size.3
-man/man3/MPI_File_set_view.3
-man/man3/MPI_File_sync.3
-man/man3/MPI_File_write.3
-man/man3/MPI_File_write_all.3
-man/man3/MPI_File_write_all_begin.3
-man/man3/MPI_File_write_all_end.3
-man/man3/MPI_File_write_at.3
-man/man3/MPI_File_write_at_all.3
-man/man3/MPI_File_write_at_all_begin.3
-man/man3/MPI_File_write_at_all_end.3
-man/man3/MPI_File_write_ordered.3
-man/man3/MPI_File_write_ordered_begin.3
-man/man3/MPI_File_write_ordered_end.3
-man/man3/MPI_File_write_shared.3
-man/man3/MPI_Finalize.3
-man/man3/MPI_Finalized.3
-man/man3/MPI_Free_mem.3
-man/man3/MPI_Gather.3
-man/man3/MPI_Gatherv.3
-man/man3/MPI_Get.3
-man/man3/MPI_Get_address.3
-man/man3/MPI_Get_count.3
-man/man3/MPI_Get_elements.3
-man/man3/MPI_Get_processor_name.3
-man/man3/MPI_Get_version.3
-man/man3/MPI_Graph_create.3
-man/man3/MPI_Graphdims_get.3
-man/man3/MPI_Graph_get.3
-man/man3/MPI_Graph_map.3
-man/man3/MPI_Graph_neighbors.3
-man/man3/MPI_Graph_neighbors_count.3
-man/man3/MPI_Grequest_complete.3
-man/man3/MPI_Grequest_start.3
-man/man3/MPI_Group_c2f.3
-man/man3/MPI_Group_compare.3
-man/man3/MPI_Group_difference.3
-man/man3/MPI_Group_excl.3
-man/man3/MPI_Group_f2c.3
-man/man3/MPI_Group_free.3
-man/man3/MPI_Group_incl.3
-man/man3/MPI_Group_intersection.3
-man/man3/MPI_Group_range_excl.3
-man/man3/MPI_Group_range_incl.3
-man/man3/MPI_Group_rank.3
-man/man3/MPI_Group_size.3
-man/man3/MPI_Group_translate_ranks.3
-man/man3/MPI_Group_union.3
-man/man3/MPI_Ibsend.3
-man/man3/MPI_Info_c2f.3
-man/man3/MPI_Info_create.3
-man/man3/MPI_Info_delete.3
-man/man3/MPI_Info_dup.3
-man/man3/MPI_Info_f2c.3
-man/man3/MPI_Info_free.3
-man/man3/MPI_Info_get.3
-man/man3/MPI_Info_get_nkeys.3
-man/man3/MPI_Info_get_nthkey.3
-man/man3/MPI_Info_get_valuelen.3
-man/man3/MPI_Info_set.3
-man/man3/MPI_Init.3
-man/man3/MPI_Initialized.3
-man/man3/MPI_Init_thread.3
-man/man3/MPI_Intercomm_create.3
-man/man3/MPI_Intercomm_merge.3
-man/man3/MPI_Iprobe.3
-man/man3/MPI_Irecv.3
-man/man3/MPI_Irsend.3
-man/man3/MPI_Isend.3
-man/man3/MPI_Issend.3
-man/man3/MPI_Is_thread_main.3
-man/man3/MPI_Keyval_create.3
-man/man3/MPI_Keyval_free.3
-man/man3/MPI_Lookup_name.3
-man/man3/MPI_Op_c2f.3
-man/man3/MPI_Op_create.3
-man/man3/MPI_Open_port.3
-man/man3/MPI_Op_f2c.3
-man/man3/MPI_Op_free.3
-man/man3/MPI_Pack.3
-man/man3/MPI_Pack_external.3
-man/man3/MPI_Pack_external_size.3
-man/man3/MPI_Pack_size.3
-man/man3/MPI_Pcontrol.3
-man/man3/MPI_Probe.3
-man/man3/MPI_Publish_name.3
-man/man3/MPI_Put.3
-man/man3/MPI_Query_thread.3
-man/man3/MPI_Recv.3
-man/man3/MPI_Recv_init.3
-man/man3/MPI_Reduce.3
-man/man3/MPI_Reduce_local.3
-man/man3/MPI_Reduce_scatter.3
-man/man3/MPI_Register_datarep.3
-man/man3/MPI_Request_c2f.3
-man/man3/MPI_Request_f2c.3
-man/man3/MPI_Request_free.3
-man/man3/MPI_Request_get_status.3
-man/man3/MPI_Rsend.3
-man/man3/MPI_Rsend_init.3
-man/man3/MPI_Scan.3
-man/man3/MPI_Scatter.3
-man/man3/MPI_Scatterv.3
-man/man3/MPI_Send.3
-man/man3/MPI_Send_init.3
-man/man3/MPI_Sendrecv.3
-man/man3/MPI_Sendrecv_replace.3
-man/man3/MPI_Sizeof.3
-man/man3/MPI_Ssend.3
-man/man3/MPI_Ssend_init.3
-man/man3/MPI_Start.3
-man/man3/MPI_Startall.3
-man/man3/MPI_Status_c2f.3
-man/man3/MPI_Status_f2c.3
-man/man3/MPI_Status_set_cancelled.3
-man/man3/MPI_Status_set_elements.3
-man/man3/MPI_Test.3
-man/man3/MPI_Testall.3
-man/man3/MPI_Testany.3
-man/man3/MPI_Test_cancelled.3
-man/man3/MPI_Testsome.3
-man/man3/MPI_Topo_test.3
-man/man3/MPI_Type_c2f.3
-man/man3/MPI_Type_commit.3
-man/man3/MPI_Type_contiguous.3
-man/man3/MPI_Type_create_darray.3
-man/man3/MPI_Type_create_f90_complex.3
-man/man3/MPI_Type_create_f90_integer.3
-man/man3/MPI_Type_create_f90_real.3
-man/man3/MPI_Type_create_hindexed.3
-man/man3/MPI_Type_create_hvector.3
-man/man3/MPI_Type_create_indexed_block.3
-man/man3/MPI_Type_create_keyval.3
-man/man3/MPI_Type_create_resized.3
-man/man3/MPI_Type_create_struct.3
-man/man3/MPI_Type_create_subarray.3
-man/man3/MPI_Type_delete_attr.3
-man/man3/MPI_Type_dup.3
-man/man3/MPI_Type_extent.3
-man/man3/MPI_Type_f2c.3
-man/man3/MPI_Type_free.3
-man/man3/MPI_Type_free_keyval.3
-man/man3/MPI_Type_get_attr.3
-man/man3/MPI_Type_get_contents.3
-man/man3/MPI_Type_get_envelope.3
-man/man3/MPI_Type_get_extent.3
-man/man3/MPI_Type_get_name.3
-man/man3/MPI_Type_get_true_extent.3
-man/man3/MPI_Type_hindexed.3
-man/man3/MPI_Type_hvector.3
-man/man3/MPI_Type_indexed.3
-man/man3/MPI_Type_lb.3
-man/man3/MPI_Type_match_size.3
-man/man3/MPI_Type_set_attr.3
-man/man3/MPI_Type_set_name.3
-man/man3/MPI_Type_size.3
-man/man3/MPI_Type_struct.3
-man/man3/MPI_Type_ub.3
-man/man3/MPI_Type_vector.3
-man/man3/MPI_Unpack.3
-man/man3/MPI_Unpack_external.3
-man/man3/MPI_Unpublish_name.3
-man/man3/MPI_Wait.3
-man/man3/MPI_Waitall.3
-man/man3/MPI_Waitany.3
-man/man3/MPI_Waitsome.3
-man/man3/MPI_Win_c2f.3
-man/man3/MPI_Win_call_errhandler.3
-man/man3/MPI_Win_complete.3
-man/man3/MPI_Win_create.3
-man/man3/MPI_Win_create_errhandler.3
-man/man3/MPI_Win_create_keyval.3
-man/man3/MPI_Win_delete_attr.3
-man/man3/MPI_Win_f2c.3
-man/man3/MPI_Win_fence.3
-man/man3/MPI_Win_free.3
-man/man3/MPI_Win_free_keyval.3
-man/man3/MPI_Win_get_attr.3
-man/man3/MPI_Win_get_errhandler.3
-man/man3/MPI_Win_get_group.3
-man/man3/MPI_Win_get_name.3
-man/man3/MPI_Win_lock.3
-man/man3/MPI_Win_post.3
-man/man3/MPI_Win_set_attr.3
-man/man3/MPI_Win_set_errhandler.3
-man/man3/MPI_Win_set_name.3
-man/man3/MPI_Win_start.3
-man/man3/MPI_Win_test.3
-man/man3/MPI_Win_unlock.3
-man/man3/MPI_Win_wait.3
-man/man3/MPI_Wtick.3
-man/man3/MPI_Wtime.3
-man/man3/OpenMPI.3
-man/man7/ompi_crcp.7
-man/man7/opal_crs.7
-man/man7/orte_filem.7
-man/man7/orte_hosts.7
-man/man7/orte_snapc.7
-share/openmpi/amca-param-sets/btl-openib-benchmark
-share/openmpi/amca-param-sets/example.conf
-share/openmpi/doc/COPYRIGHT-ptmalloc2.txt
-share/openmpi/examples/openmpi-default-hostfile
-share/openmpi/examples/openmpi-mca-params.conf
-share/openmpi/examples/openmpi-totalview.tcl
-share/openmpi/help-coll-sync.txt
-share/openmpi/help-dash-host.txt
-share/openmpi/help-ess-base.txt
-share/openmpi/help-hostfile.txt
-share/openmpi/help-mca-base.txt
-share/openmpi/help-mca-bml-r2.txt
-share/openmpi/help-mca-coll-base.txt
-share/openmpi/help-mca-op-base.txt
-share/openmpi/help-mca-param.txt
-share/openmpi/help-mpi-api.txt
-share/openmpi/help-mpi-btl-base.txt
-share/openmpi/help-mpi-btl-openib-cpc-base.txt
-share/openmpi/help-mpi-btl-openib-cpc-rdmacm.txt
-share/openmpi/help-mpi-btl-openib.txt
-share/openmpi/help-mpi-btl-sm.txt
-share/openmpi/help-mpi-btl-tcp.txt
-share/openmpi/help-mpi-coll-sm.txt
-share/openmpi/help-mpi-common-sm.txt
-share/openmpi/help-mpi-errors.txt
-share/openmpi/help-mpi-pml-bfo.txt
-share/openmpi/help-mpi-pml-csum.txt
-share/openmpi/help-mpi-pml-ob1.txt
-share/openmpi/help-mpi-runtime.txt
-share/openmpi/help-mpool-base.txt
-share/openmpi/help-odls-default.txt
-share/openmpi/help-ompi-crcp-base.txt
-share/openmpi/help-ompi-dpm-base.txt
-share/openmpi/help-ompi-dpm-orte.txt
-share/openmpi/help-ompi_info.txt
-share/openmpi/help-ompi-probe.txt
-share/openmpi/help-ompi-profiler.txt
-share/openmpi/help-ompi-pubsub-orte.txt
-share/openmpi/help-ompi-server.txt
-share/openmpi/help-oob-tcp.txt
-share/openmpi/help-opal-carto-file.txt
-share/openmpi/help-opal-crs-base.txt
-share/openmpi/help-opal-crs-none.txt
-share/openmpi/help-opal-maffinity-hwloc.txt
-share/openmpi/help-opal-memory-linux.txt
-share/openmpi/help-opal-runtime.txt
-share/openmpi/help-opal-shmem-mmap.txt
-share/openmpi/help-opal-shmem-posix.txt
-share/openmpi/help-opal-shmem-sysv.txt
-share/openmpi/help-opal-util.txt
-share/openmpi/help-opal-wrapper.txt
-share/openmpi/help-orte-clean.txt
-share/openmpi/help-orted.txt
-share/openmpi/help-orte-filem-base.txt
-share/openmpi/help-orte-filem-rsh.txt
-share/openmpi/help-orte-iof.txt
-share/openmpi/help-orte-notifier-command.txt
-share/openmpi/help-orte-odls-base.txt
-share/openmpi/help-orte-ps.txt
-share/openmpi/help-orte-rmaps-base.txt
-share/openmpi/help-orte-rmaps-lb.txt
-share/openmpi/help-orte-rmaps-resilient.txt
-share/openmpi/help-orte-rmaps-rr.txt
-share/openmpi/help-orte-rmaps-seq.txt
-share/openmpi/help-orte-rmaps-topo.txt
-share/openmpi/help-orte-runtime.txt
-share/openmpi/help-orterun.txt
-share/openmpi/help-orte-snapc-base.txt
-share/openmpi/help-orte-top.txt
-share/openmpi/help-plm-base.txt
-share/openmpi/help-plm-rsh.txt
-share/openmpi/help-plm-slurm.txt
-share/openmpi/help-ras-base.txt
-share/openmpi/help-ras-slurm.txt
-share/openmpi/help-regex.txt
-share/openmpi/help-rmaps_rank_file.txt
-share/openmpi/mca-btl-openib-device-params.ini
-share/openmpi/mpicc-wrapper-data.txt
-share/openmpi/mpiCC-wrapper-data.txt
-share/openmpi/mpic++-wrapper-data.txt
-share/openmpi/mpicxx-wrapper-data.txt
-share/openmpi/mpif77-wrapper-data.txt
-share/openmpi/mpif90-wrapper-data.txt
-share/openmpi/openmpi-valgrind.supp
-share/openmpi/ortecc-wrapper-data.txt
-share/openmpi/orteCC-wrapper-data.txt
-share/openmpi/ortec++-wrapper-data.txt
+openmpi/bin/mpic++
+openmpi/bin/mpicc
+openmpi/bin/mpiCC
+openmpi/bin/mpicxx
+openmpi/bin/mpiexec
+openmpi/bin/mpif77
+openmpi/bin/mpif90
+openmpi/bin/mpirun
+openmpi/bin/ompi-clean
+openmpi/bin/ompi_info
+openmpi/bin/ompi-iof
+openmpi/bin/ompi-probe
+openmpi/bin/ompi-profiler
+openmpi/bin/ompi-ps
+openmpi/bin/ompi-server
+openmpi/bin/ompi-top
+openmpi/bin/opal_wrapper
+openmpi/bin/orte-bootproxy.sh
+openmpi/bin/ortec++
+openmpi/bin/ortecc
+openmpi/bin/orteCC
+openmpi/bin/orte-clean
+openmpi/bin/orted
+openmpi/bin/orte-iof
+openmpi/bin/orte-ps
+openmpi/bin/orterun
+openmpi/bin/orte-top
+openmpi/bin/orte_wrapper_script
+openmpi/etc/cshrc
+openmpi/etc/modulefiles/openmpi/1.6.3
+openmpi/etc/openmpi-default-hostfile
+openmpi/etc/shrc
+openmpi/include/mpi-ext.h
+openmpi/include/mpif-common.h
+openmpi/include/mpif-config.h
+openmpi/include/mpif.h
+openmpi/include/mpif-mpi-io.h
+openmpi/include/mpi.h
+openmpi/include/mpi_portable_platform.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/constants.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/exception.h
+openmpi/include/openmpi/ompi/mpi/cxx/file.h
+openmpi/include/openmpi/ompi/mpi/cxx/file_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/group.h
+openmpi/include/openmpi/ompi/mpi/cxx/group_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/info.h
+openmpi/include/openmpi/ompi/mpi/cxx/info_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/mpicxx.h
+openmpi/include/openmpi/ompi/mpi/cxx/op.h
+openmpi/include/openmpi/ompi/mpi/cxx/op_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/request.h
+openmpi/include/openmpi/ompi/mpi/cxx/request_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/status.h
+openmpi/include/openmpi/ompi/mpi/cxx/status_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/win.h
+openmpi/include/openmpi/ompi/mpi/cxx/win_inln.h
+openmpi/lib/libmca_common_sm.la
+openmpi/lib/libmpi_cxx.la
+openmpi/lib/libmpi_f77.la
+openmpi/lib/libmpi_f90.la
+openmpi/lib/libmpi.la
+openmpi/lib/libompitrace.la
+openmpi/lib/libopen-pal.la
+openmpi/lib/libopen-rte.la
+openmpi/lib/mpi.mod
+openmpi/lib/openmpi/libompi_dbg_msgq.la
+openmpi/lib/openmpi/mca_allocator_basic.la
+openmpi/lib/openmpi/mca_allocator_bucket.la
+openmpi/lib/openmpi/mca_bml_r2.la
+openmpi/lib/openmpi/mca_btl_ofud.la
+openmpi/lib/openmpi/mca_btl_openib.la
+openmpi/lib/openmpi/mca_btl_self.la
+openmpi/lib/openmpi/mca_btl_sm.la
+openmpi/lib/openmpi/mca_btl_tcp.la
+openmpi/lib/openmpi/mca_carto_auto_detect.la
+openmpi/lib/openmpi/mca_carto_file.la
+openmpi/lib/openmpi/mca_coll_basic.la
+openmpi/lib/openmpi/mca_coll_hierarch.la
+openmpi/lib/openmpi/mca_coll_inter.la
+openmpi/lib/openmpi/mca_coll_self.la
+openmpi/lib/openmpi/mca_coll_sm.la
+openmpi/lib/openmpi/mca_coll_sync.la
+openmpi/lib/openmpi/mca_coll_tuned.la
+openmpi/lib/openmpi/mca_crs_none.la
+openmpi/lib/openmpi/mca_dpm_orte.la
+openmpi/lib/openmpi/mca_errmgr_default.la
+openmpi/lib/openmpi/mca_ess_env.la
+openmpi/lib/openmpi/mca_ess_hnp.la
+openmpi/lib/openmpi/mca_ess_singleton.la
+openmpi/lib/openmpi/mca_ess_slave.la
+openmpi/lib/openmpi/mca_ess_slurmd.la
+openmpi/lib/openmpi/mca_ess_slurm.la
+openmpi/lib/openmpi/mca_ess_tool.la
+openmpi/lib/openmpi/mca_filem_rsh.la
+openmpi/lib/openmpi/mca_grpcomm_bad.la
+openmpi/lib/openmpi/mca_grpcomm_basic.la
+openmpi/lib/openmpi/mca_iof_hnp.la
+openmpi/lib/openmpi/mca_iof_orted.la
+openmpi/lib/openmpi/mca_iof_tool.la
+openmpi/lib/openmpi/mca_io_romio.la
+openmpi/lib/openmpi/mca_maffinity_first_use.la
+openmpi/lib/openmpi/mca_maffinity_hwloc.la
+openmpi/lib/openmpi/mca_mpool_fake.la
+openmpi/lib/openmpi/mca_mpool_rdma.la
+openmpi/lib/openmpi/mca_mpool_sm.la
+openmpi/lib/openmpi/mca_notifier_command.la
+openmpi/lib/openmpi/mca_notifier_syslog.la
+openmpi/lib/openmpi/mca_odls_default.la
+openmpi/lib/openmpi/mca_oob_tcp.la
+openmpi/lib/openmpi/mca_osc_pt2pt.la
+openmpi/lib/openmpi/mca_osc_rdma.la
+openmpi/lib/openmpi/mca_paffinity_hwloc.la
+openmpi/lib/openmpi/mca_plm_rsh.la
+openmpi/lib/openmpi/mca_plm_slurm.la
+openmpi/lib/openmpi/mca_pml_bfo.la
+openmpi/lib/openmpi/mca_pml_cm.la
+openmpi/lib/openmpi/mca_pml_csum.la
+openmpi/lib/openmpi/mca_pml_ob1.la
+openmpi/lib/openmpi/mca_pml_v.la
+openmpi/lib/openmpi/mca_pstat_linux.la
+openmpi/lib/openmpi/mca_pubsub_orte.la
+openmpi/lib/openmpi/mca_ras_cm.la
+openmpi/lib/openmpi/mca_ras_loadleveler.la
+openmpi/lib/openmpi/mca_ras_slurm.la
+openmpi/lib/openmpi/mca_rcache_vma.la
+openmpi/lib/openmpi/mca_rmaps_load_balance.la
+openmpi/lib/openmpi/mca_rmaps_rank_file.la
+openmpi/lib/openmpi/mca_rmaps_resilient.la
+openmpi/lib/openmpi/mca_rmaps_round_robin.la
+openmpi/lib/openmpi/mca_rmaps_seq.la
+openmpi/lib/openmpi/mca_rmaps_topo.la
+openmpi/lib/openmpi/mca_rml_oob.la
+openmpi/lib/openmpi/mca_routed_binomial.la
+openmpi/lib/openmpi/mca_routed_cm.la
+openmpi/lib/openmpi/mca_routed_direct.la
+openmpi/lib/openmpi/mca_routed_linear.la
+openmpi/lib/openmpi/mca_routed_radix.la
+openmpi/lib/openmpi/mca_routed_slave.la
+openmpi/lib/openmpi/mca_shmem_mmap.la
+openmpi/lib/openmpi/mca_shmem_posix.la
+openmpi/lib/openmpi/mca_shmem_sysv.la
+openmpi/lib/openmpi/mca_sysinfo_linux.la
+openmpi/lib/openmpi/mca_topo_unity.la
+openmpi/lib/openmpi/mca_vprotocol_pessimist.la
+openmpi/lib/pkgconfig/ompi-c.pc
+openmpi/lib/pkgconfig/ompi-cxx.pc
+openmpi/lib/pkgconfig/ompi-f77.pc
+openmpi/lib/pkgconfig/ompi-f90.pc
+openmpi/lib/pkgconfig/ompi.pc
+openmpi/lib/pkgconfig/orte.pc
+openmpi/man/man1/mpic++.1
+openmpi/man/man1/mpicc.1
+openmpi/man/man1/mpiCC.1
+openmpi/man/man1/mpicxx.1
+openmpi/man/man1/mpiexec.1
+openmpi/man/man1/mpif77.1
+openmpi/man/man1/mpif90.1
+openmpi/man/man1/mpirun.1
+openmpi/man/man1/ompi-clean.1
+openmpi/man/man1/ompi_info.1
+openmpi/man/man1/ompi-iof.1
+openmpi/man/man1/ompi-probe.1
+openmpi/man/man1/ompi-profiler.1
+openmpi/man/man1/ompi-ps.1
+openmpi/man/man1/ompi-server.1
+openmpi/man/man1/ompi-top.1
+openmpi/man/man1/opal_wrapper.1
+openmpi/man/man1/orteCC.1
+openmpi/man/man1/orte-clean.1
+openmpi/man/man1/orted.1
+openmpi/man/man1/orte-iof.1
+openmpi/man/man1/orte-ps.1
+openmpi/man/man1/orterun.1
+openmpi/man/man1/orte-top.1
+openmpi/man/man3/MPI.3
+openmpi/man/man3/MPI_Abort.3
+openmpi/man/man3/MPI_Accumulate.3
+openmpi/man/man3/MPI_Add_error_class.3
+openmpi/man/man3/MPI_Add_error_code.3
+openmpi/man/man3/MPI_Add_error_string.3
+openmpi/man/man3/MPI_Address.3
+openmpi/man/man3/MPI_Allgather.3
+openmpi/man/man3/MPI_Allgatherv.3
+openmpi/man/man3/MPI_Alloc_mem.3
+openmpi/man/man3/MPI_Allreduce.3
+openmpi/man/man3/MPI_Alltoall.3
+openmpi/man/man3/MPI_Alltoallv.3
+openmpi/man/man3/MPI_Alltoallw.3
+openmpi/man/man3/MPI_Attr_delete.3
+openmpi/man/man3/MPI_Attr_get.3
+openmpi/man/man3/MPI_Attr_put.3
+openmpi/man/man3/MPI_Barrier.3
+openmpi/man/man3/MPI_Bcast.3
+openmpi/man/man3/MPI_Bsend.3
+openmpi/man/man3/MPI_Bsend_init.3
+openmpi/man/man3/MPI_Buffer_attach.3
+openmpi/man/man3/MPI_Buffer_detach.3
+openmpi/man/man3/MPI_Cancel.3
+openmpi/man/man3/MPI_Cart_coords.3
+openmpi/man/man3/MPI_Cart_create.3
+openmpi/man/man3/MPI_Cartdim_get.3
+openmpi/man/man3/MPI_Cart_get.3
+openmpi/man/man3/MPI_Cart_map.3
+openmpi/man/man3/MPI_Cart_rank.3
+openmpi/man/man3/MPI_Cart_shift.3
+openmpi/man/man3/MPI_Cart_sub.3
+openmpi/man/man3/MPI_Close_port.3
+openmpi/man/man3/MPI_Comm_accept.3
+openmpi/man/man3/MPI_Comm_c2f.3
+openmpi/man/man3/MPI_Comm_call_errhandler.3
+openmpi/man/man3/MPI_Comm_compare.3
+openmpi/man/man3/MPI_Comm_connect.3
+openmpi/man/man3/MPI_Comm_create.3
+openmpi/man/man3/MPI_Comm_create_errhandler.3
+openmpi/man/man3/MPI_Comm_create_keyval.3
+openmpi/man/man3/MPI_Comm_delete_attr.3
+openmpi/man/man3/MPI_Comm_disconnect.3
+openmpi/man/man3/MPI_Comm_dup.3
+openmpi/man/man3/MPI_Comm_f2c.3
+openmpi/man/man3/MPI_Comm_free.3
+openmpi/man/man3/MPI_Comm_free_keyval.3
+openmpi/man/man3/MPI_Comm_get_attr.3
+openmpi/man/man3/MPI_Comm_get_errhandler.3
+openmpi/man/man3/MPI_Comm_get_name.3
+openmpi/man/man3/MPI_Comm_get_parent.3
+openmpi/man/man3/MPI_Comm_group.3
+openmpi/man/man3/MPI_Comm_join.3
+openmpi/man/man3/MPI_Comm_rank.3
+openmpi/man/man3/MPI_Comm_remote_group.3
+openmpi/man/man3/MPI_Comm_remote_size.3
+openmpi/man/man3/MPI_Comm_set_attr.3
+openmpi/man/man3/MPI_Comm_set_errhandler.3
+openmpi/man/man3/MPI_Comm_set_name.3
+openmpi/man/man3/MPI_Comm_size.3
+openmpi/man/man3/MPI_Comm_spawn.3
+openmpi/man/man3/MPI_Comm_spawn_multiple.3
+openmpi/man/man3/MPI_Comm_split.3
+openmpi/man/man3/MPI_Comm_test_inter.3
+openmpi/man/man3/MPI_Dims_create.3
+openmpi/man/man3/MPI_Errhandler_create.3
+openmpi/man/man3/MPI_Errhandler_free.3
+openmpi/man/man3/MPI_Errhandler_get.3
+openmpi/man/man3/MPI_Errhandler_set.3
+openmpi/man/man3/MPI_Error_class.3
+openmpi/man/man3/MPI_Error_string.3
+openmpi/man/man3/MPI_Exscan.3
+openmpi/man/man3/MPI_File_c2f.3
+openmpi/man/man3/MPI_File_call_errhandler.3
+openmpi/man/man3/MPI_File_close.3
+openmpi/man/man3/MPI_File_create_errhandler.3
+openmpi/man/man3/MPI_File_delete.3
+openmpi/man/man3/MPI_File_f2c.3
+openmpi/man/man3/MPI_File_get_amode.3
+openmpi/man/man3/MPI_File_get_atomicity.3
+openmpi/man/man3/MPI_File_get_byte_offset.3
+openmpi/man/man3/MPI_File_get_errhandler.3
+openmpi/man/man3/MPI_File_get_group.3
+openmpi/man/man3/MPI_File_get_info.3
+openmpi/man/man3/MPI_File_get_position.3
+openmpi/man/man3/MPI_File_get_position_shared.3
+openmpi/man/man3/MPI_File_get_size.3
+openmpi/man/man3/MPI_File_get_type_extent.3
+openmpi/man/man3/MPI_File_get_view.3
+openmpi/man/man3/MPI_File_iread.3
+openmpi/man/man3/MPI_File_iread_at.3
+openmpi/man/man3/MPI_File_iread_shared.3
+openmpi/man/man3/MPI_File_iwrite.3
+openmpi/man/man3/MPI_File_iwrite_at.3
+openmpi/man/man3/MPI_File_iwrite_shared.3
+openmpi/man/man3/MPI_File_open.3
+openmpi/man/man3/MPI_File_preallocate.3
+openmpi/man/man3/MPI_File_read.3
+openmpi/man/man3/MPI_File_read_all.3
+openmpi/man/man3/MPI_File_read_all_begin.3
+openmpi/man/man3/MPI_File_read_all_end.3
+openmpi/man/man3/MPI_File_read_at.3
+openmpi/man/man3/MPI_File_read_at_all.3
+openmpi/man/man3/MPI_File_read_at_all_begin.3
+openmpi/man/man3/MPI_File_read_at_all_end.3
+openmpi/man/man3/MPI_File_read_ordered.3
+openmpi/man/man3/MPI_File_read_ordered_begin.3
+openmpi/man/man3/MPI_File_read_ordered_end.3
+openmpi/man/man3/MPI_File_read_shared.3
+openmpi/man/man3/MPI_File_seek.3
+openmpi/man/man3/MPI_File_seek_shared.3
+openmpi/man/man3/MPI_File_set_atomicity.3
+openmpi/man/man3/MPI_File_set_errhandler.3
+openmpi/man/man3/MPI_File_set_info.3
+openmpi/man/man3/MPI_File_set_size.3
+openmpi/man/man3/MPI_File_set_view.3
+openmpi/man/man3/MPI_File_sync.3
+openmpi/man/man3/MPI_File_write.3
+openmpi/man/man3/MPI_File_write_all.3
+openmpi/man/man3/MPI_File_write_all_begin.3
+openmpi/man/man3/MPI_File_write_all_end.3
+openmpi/man/man3/MPI_File_write_at.3
+openmpi/man/man3/MPI_File_write_at_all.3
+openmpi/man/man3/MPI_File_write_at_all_begin.3
+openmpi/man/man3/MPI_File_write_at_all_end.3
+openmpi/man/man3/MPI_File_write_ordered.3
+openmpi/man/man3/MPI_File_write_ordered_begin.3
+openmpi/man/man3/MPI_File_write_ordered_end.3
+openmpi/man/man3/MPI_File_write_shared.3
+openmpi/man/man3/MPI_Finalize.3
+openmpi/man/man3/MPI_Finalized.3
+openmpi/man/man3/MPI_Free_mem.3
+openmpi/man/man3/MPI_Gather.3
+openmpi/man/man3/MPI_Gatherv.3
+openmpi/man/man3/MPI_Get.3
+openmpi/man/man3/MPI_Get_address.3
+openmpi/man/man3/MPI_Get_count.3
+openmpi/man/man3/MPI_Get_elements.3
+openmpi/man/man3/MPI_Get_processor_name.3
+openmpi/man/man3/MPI_Get_version.3
+openmpi/man/man3/MPI_Graph_create.3
+openmpi/man/man3/MPI_Graphdims_get.3
+openmpi/man/man3/MPI_Graph_get.3
+openmpi/man/man3/MPI_Graph_map.3
+openmpi/man/man3/MPI_Graph_neighbors.3
+openmpi/man/man3/MPI_Graph_neighbors_count.3
+openmpi/man/man3/MPI_Grequest_complete.3
+openmpi/man/man3/MPI_Grequest_start.3
+openmpi/man/man3/MPI_Group_c2f.3
+openmpi/man/man3/MPI_Group_compare.3
+openmpi/man/man3/MPI_Group_difference.3
+openmpi/man/man3/MPI_Group_excl.3
+openmpi/man/man3/MPI_Group_f2c.3
+openmpi/man/man3/MPI_Group_free.3
+openmpi/man/man3/MPI_Group_incl.3
+openmpi/man/man3/MPI_Group_intersection.3
+openmpi/man/man3/MPI_Group_range_excl.3
+openmpi/man/man3/MPI_Group_range_incl.3
+openmpi/man/man3/MPI_Group_rank.3
+openmpi/man/man3/MPI_Group_size.3
+openmpi/man/man3/MPI_Group_translate_ranks.3
+openmpi/man/man3/MPI_Group_union.3
+openmpi/man/man3/MPI_Ibsend.3
+openmpi/man/man3/MPI_Info_c2f.3
+openmpi/man/man3/MPI_Info_create.3
+openmpi/man/man3/MPI_Info_delete.3
+openmpi/man/man3/MPI_Info_dup.3
+openmpi/man/man3/MPI_Info_f2c.3
+openmpi/man/man3/MPI_Info_free.3
+openmpi/man/man3/MPI_Info_get.3
+openmpi/man/man3/MPI_Info_get_nkeys.3
+openmpi/man/man3/MPI_Info_get_nthkey.3
+openmpi/man/man3/MPI_Info_get_valuelen.3
+openmpi/man/man3/MPI_Info_set.3
+openmpi/man/man3/MPI_Init.3
+openmpi/man/man3/MPI_Initialized.3
+openmpi/man/man3/MPI_Init_thread.3
+openmpi/man/man3/MPI_Intercomm_create.3
+openmpi/man/man3/MPI_Intercomm_merge.3
+openmpi/man/man3/MPI_Iprobe.3
+openmpi/man/man3/MPI_Irecv.3
+openmpi/man/man3/MPI_Irsend.3
+openmpi/man/man3/MPI_Isend.3
+openmpi/man/man3/MPI_Issend.3
+openmpi/man/man3/MPI_Is_thread_main.3
+openmpi/man/man3/MPI_Keyval_create.3
+openmpi/man/man3/MPI_Keyval_free.3
+openmpi/man/man3/MPI_Lookup_name.3
+openmpi/man/man3/MPI_Op_c2f.3
+openmpi/man/man3/MPI_Op_create.3
+openmpi/man/man3/MPI_Open_port.3
+openmpi/man/man3/MPI_Op_f2c.3
+openmpi/man/man3/MPI_Op_free.3
+openmpi/man/man3/MPI_Pack.3
+openmpi/man/man3/MPI_Pack_external.3
+openmpi/man/man3/MPI_Pack_external_size.3
+openmpi/man/man3/MPI_Pack_size.3
+openmpi/man/man3/MPI_Pcontrol.3
+openmpi/man/man3/MPI_Probe.3
+openmpi/man/man3/MPI_Publish_name.3
+openmpi/man/man3/MPI_Put.3
+openmpi/man/man3/MPI_Query_thread.3
+openmpi/man/man3/MPI_Recv.3
+openmpi/man/man3/MPI_Recv_init.3
+openmpi/man/man3/MPI_Reduce.3
+openmpi/man/man3/MPI_Reduce_local.3
+openmpi/man/man3/MPI_Reduce_scatter.3
+openmpi/man/man3/MPI_Register_datarep.3
+openmpi/man/man3/MPI_Request_c2f.3
+openmpi/man/man3/MPI_Request_f2c.3
+openmpi/man/man3/MPI_Request_free.3
+openmpi/man/man3/MPI_Request_get_status.3
+openmpi/man/man3/MPI_Rsend.3
+openmpi/man/man3/MPI_Rsend_init.3
+openmpi/man/man3/MPI_Scan.3
+openmpi/man/man3/MPI_Scatter.3
+openmpi/man/man3/MPI_Scatterv.3
+openmpi/man/man3/MPI_Send.3
+openmpi/man/man3/MPI_Send_init.3
+openmpi/man/man3/MPI_Sendrecv.3
+openmpi/man/man3/MPI_Sendrecv_replace.3
+openmpi/man/man3/MPI_Sizeof.3
+openmpi/man/man3/MPI_Ssend.3
+openmpi/man/man3/MPI_Ssend_init.3
+openmpi/man/man3/MPI_Start.3
+openmpi/man/man3/MPI_Startall.3
+openmpi/man/man3/MPI_Status_c2f.3
+openmpi/man/man3/MPI_Status_f2c.3
+openmpi/man/man3/MPI_Status_set_cancelled.3
+openmpi/man/man3/MPI_Status_set_elements.3
+openmpi/man/man3/MPI_Test.3
+openmpi/man/man3/MPI_Testall.3
+openmpi/man/man3/MPI_Testany.3
+openmpi/man/man3/MPI_Test_cancelled.3
+openmpi/man/man3/MPI_Testsome.3
+openmpi/man/man3/MPI_Topo_test.3
+openmpi/man/man3/MPI_Type_c2f.3
+openmpi/man/man3/MPI_Type_commit.3
+openmpi/man/man3/MPI_Type_contiguous.3
+openmpi/man/man3/MPI_Type_create_darray.3
+openmpi/man/man3/MPI_Type_create_f90_complex.3
+openmpi/man/man3/MPI_Type_create_f90_integer.3
+openmpi/man/man3/MPI_Type_create_f90_real.3
+openmpi/man/man3/MPI_Type_create_hindexed.3
+openmpi/man/man3/MPI_Type_create_hvector.3
+openmpi/man/man3/MPI_Type_create_indexed_block.3
+openmpi/man/man3/MPI_Type_create_keyval.3
+openmpi/man/man3/MPI_Type_create_resized.3
+openmpi/man/man3/MPI_Type_create_struct.3
+openmpi/man/man3/MPI_Type_create_subarray.3
+openmpi/man/man3/MPI_Type_delete_attr.3
+openmpi/man/man3/MPI_Type_dup.3
+openmpi/man/man3/MPI_Type_extent.3
+openmpi/man/man3/MPI_Type_f2c.3
+openmpi/man/man3/MPI_Type_free.3
+openmpi/man/man3/MPI_Type_free_keyval.3
+openmpi/man/man3/MPI_Type_get_attr.3
+openmpi/man/man3/MPI_Type_get_contents.3
+openmpi/man/man3/MPI_Type_get_envelope.3
+openmpi/man/man3/MPI_Type_get_extent.3
+openmpi/man/man3/MPI_Type_get_name.3
+openmpi/man/man3/MPI_Type_get_true_extent.3
+openmpi/man/man3/MPI_Type_hindexed.3
+openmpi/man/man3/MPI_Type_hvector.3
+openmpi/man/man3/MPI_Type_indexed.3
+openmpi/man/man3/MPI_Type_lb.3
+openmpi/man/man3/MPI_Type_match_size.3
+openmpi/man/man3/MPI_Type_set_attr.3
+openmpi/man/man3/MPI_Type_set_name.3
+openmpi/man/man3/MPI_Type_size.3
+openmpi/man/man3/MPI_Type_struct.3
+openmpi/man/man3/MPI_Type_ub.3
+openmpi/man/man3/MPI_Type_vector.3
+openmpi/man/man3/MPI_Unpack.3
+openmpi/man/man3/MPI_Unpack_external.3
+openmpi/man/man3/MPI_Unpublish_name.3
+openmpi/man/man3/MPI_Wait.3
+openmpi/man/man3/MPI_Waitall.3
+openmpi/man/man3/MPI_Waitany.3
+openmpi/man/man3/MPI_Waitsome.3
+openmpi/man/man3/MPI_Win_c2f.3
+openmpi/man/man3/MPI_Win_call_errhandler.3
+openmpi/man/man3/MPI_Win_complete.3
+openmpi/man/man3/MPI_Win_create.3
+openmpi/man/man3/MPI_Win_create_errhandler.3
+openmpi/man/man3/MPI_Win_create_keyval.3
+openmpi/man/man3/MPI_Win_delete_attr.3
+openmpi/man/man3/MPI_Win_f2c.3
+openmpi/man/man3/MPI_Win_fence.3
+openmpi/man/man3/MPI_Win_free.3
+openmpi/man/man3/MPI_Win_free_keyval.3
+openmpi/man/man3/MPI_Win_get_attr.3
+openmpi/man/man3/MPI_Win_get_errhandler.3
+openmpi/man/man3/MPI_Win_get_group.3
+openmpi/man/man3/MPI_Win_get_name.3
+openmpi/man/man3/MPI_Win_lock.3
+openmpi/man/man3/MPI_Win_post.3
+openmpi/man/man3/MPI_Win_set_attr.3
+openmpi/man/man3/MPI_Win_set_errhandler.3
+openmpi/man/man3/MPI_Win_set_name.3
+openmpi/man/man3/MPI_Win_start.3
+openmpi/man/man3/MPI_Win_test.3
+openmpi/man/man3/MPI_Win_unlock.3
+openmpi/man/man3/MPI_Win_wait.3
+openmpi/man/man3/MPI_Wtick.3
+openmpi/man/man3/MPI_Wtime.3
+openmpi/man/man3/OpenMPI.3
+openmpi/man/man7/ompi_crcp.7
+openmpi/man/man7/opal_crs.7
+openmpi/man/man7/orte_filem.7
+openmpi/man/man7/orte_hosts.7
+openmpi/man/man7/orte_snapc.7
+openmpi/share/openmpi/amca-param-sets/btl-openib-benchmark
+openmpi/share/openmpi/amca-param-sets/example.conf
+openmpi/share/openmpi/doc/COPYRIGHT-ptmalloc2.txt
+openmpi/share/openmpi/examples/openmpi-default-hostfile
+openmpi/share/openmpi/examples/openmpi-mca-params.conf
+openmpi/share/openmpi/examples/openmpi-totalview.tcl
+openmpi/share/openmpi/help-coll-sync.txt
+openmpi/share/openmpi/help-dash-host.txt
+openmpi/share/openmpi/help-ess-base.txt
+openmpi/share/openmpi/help-hostfile.txt
+openmpi/share/openmpi/help-mca-base.txt
+openmpi/share/openmpi/help-mca-bml-r2.txt
+openmpi/share/openmpi/help-mca-coll-base.txt
+openmpi/share/openmpi/help-mca-op-base.txt
+openmpi/share/openmpi/help-mca-param.txt
+openmpi/share/openmpi/help-mpi-api.txt
+openmpi/share/openmpi/help-mpi-btl-base.txt
+openmpi/share/openmpi/help-mpi-btl-openib-cpc-base.txt
+openmpi/share/openmpi/help-mpi-btl-openib-cpc-rdmacm.txt
+openmpi/share/openmpi/help-mpi-btl-openib.txt
+openmpi/share/openmpi/help-mpi-btl-sm.txt
+openmpi/share/openmpi/help-mpi-btl-tcp.txt
+openmpi/share/openmpi/help-mpi-coll-sm.txt
+openmpi/share/openmpi/help-mpi-common-sm.txt
+openmpi/share/openmpi/help-mpi-errors.txt
+openmpi/share/openmpi/help-mpi-pml-bfo.txt
+openmpi/share/openmpi/help-mpi-pml-csum.txt
+openmpi/share/openmpi/help-mpi-pml-ob1.txt
+openmpi/share/openmpi/help-mpi-runtime.txt
+openmpi/share/openmpi/help-mpool-base.txt
+openmpi/share/openmpi/help-odls-default.txt
+openmpi/share/openmpi/help-ompi-crcp-base.txt
+openmpi/share/openmpi/help-ompi-dpm-base.txt
+openmpi/share/openmpi/help-ompi-dpm-orte.txt
+openmpi/share/openmpi/help-ompi_info.txt
+openmpi/share/openmpi/help-ompi-probe.txt
+openmpi/share/openmpi/help-ompi-profiler.txt
+openmpi/share/openmpi/help-ompi-pubsub-orte.txt
+openmpi/share/openmpi/help-ompi-server.txt
+openmpi/share/openmpi/help-oob-tcp.txt
+openmpi/share/openmpi/help-opal-carto-file.txt
+openmpi/share/openmpi/help-opal-crs-base.txt
+openmpi/share/openmpi/help-opal-crs-none.txt
+openmpi/share/openmpi/help-opal-maffinity-hwloc.txt
+openmpi/share/openmpi/help-opal-memory-linux.txt
+openmpi/share/openmpi/help-opal-runtime.txt
+openmpi/share/openmpi/help-opal-shmem-mmap.txt
+openmpi/share/openmpi/help-opal-shmem-posix.txt
+openmpi/share/openmpi/help-opal-shmem-sysv.txt
+openmpi/share/openmpi/help-opal-util.txt
+openmpi/share/openmpi/help-opal-wrapper.txt
+openmpi/share/openmpi/help-orte-clean.txt
+openmpi/share/openmpi/help-orted.txt
+openmpi/share/openmpi/help-orte-filem-base.txt
+openmpi/share/openmpi/help-orte-filem-rsh.txt
+openmpi/share/openmpi/help-orte-iof.txt
+openmpi/share/openmpi/help-orte-notifier-command.txt
+openmpi/share/openmpi/help-orte-odls-base.txt
+openmpi/share/openmpi/help-orte-ps.txt
+openmpi/share/openmpi/help-orte-rmaps-base.txt
+openmpi/share/openmpi/help-orte-rmaps-lb.txt
+openmpi/share/openmpi/help-orte-rmaps-resilient.txt
+openmpi/share/openmpi/help-orte-rmaps-rr.txt
+openmpi/share/openmpi/help-orte-rmaps-seq.txt
+openmpi/share/openmpi/help-orte-rmaps-topo.txt
+openmpi/share/openmpi/help-orte-runtime.txt
+openmpi/share/openmpi/help-orterun.txt
+openmpi/share/openmpi/help-orte-snapc-base.txt
+openmpi/share/openmpi/help-orte-top.txt
+openmpi/share/openmpi/help-plm-base.txt
+openmpi/share/openmpi/help-plm-rsh.txt
+openmpi/share/openmpi/help-plm-slurm.txt
+openmpi/share/openmpi/help-ras-base.txt
+openmpi/share/openmpi/help-ras-slurm.txt
+openmpi/share/openmpi/help-regex.txt
+openmpi/share/openmpi/help-rmaps_rank_file.txt
+openmpi/share/openmpi/mca-btl-openib-device-params.ini
+openmpi/share/openmpi/mpicc-wrapper-data.txt
+openmpi/share/openmpi/mpiCC-wrapper-data.txt
+openmpi/share/openmpi/mpic++-wrapper-data.txt
+openmpi/share/openmpi/mpicxx-wrapper-data.txt
+openmpi/share/openmpi/mpif77-wrapper-data.txt
+openmpi/share/openmpi/mpif90-wrapper-data.txt
+openmpi/share/openmpi/openmpi-valgrind.supp
+openmpi/share/openmpi/ortecc-wrapper-data.txt
+openmpi/share/openmpi/orteCC-wrapper-data.txt
+openmpi/share/openmpi/ortec++-wrapper-data.txt
diff --git a/openmpi163/PLIST.Linux.noib b/openmpi163/PLIST.Linux.noib
index df1d44a..71412c2 100644
--- a/openmpi163/PLIST.Linux.noib
+++ b/openmpi163/PLIST.Linux.noib
@@ -1,581 +1,581 @@
 @comment $NetBSD: PLIST.Linux.noib,v 1.2 2015/06/19 19:17:41 outpaddling Exp $
-bin/mpic++
-bin/mpicc
-bin/mpiCC
-bin/mpicxx
-bin/mpiexec
-bin/mpif77
-bin/mpif90
-bin/mpirun
-bin/ompi-clean
-bin/ompi_info
-bin/ompi-iof
-bin/ompi-probe
-bin/ompi-profiler
-bin/ompi-ps
-bin/ompi-server
-bin/ompi-top
-bin/opal_wrapper
-bin/orte-bootproxy.sh
-bin/ortec++
-bin/ortecc
-bin/orteCC
-bin/orte-clean
-bin/orted
-bin/orte-iof
-bin/orte-ps
-bin/orterun
-bin/orte-top
-bin/orte_wrapper_script
-etc/cshrc
-etc/modulefiles/openmpi/1.6.3
-etc/openmpi-default-hostfile
-etc/shrc
-include/mpi-ext.h
-include/mpif-common.h
-include/mpif-config.h
-include/mpif.h
-include/mpif-mpi-io.h
-include/mpi.h
-include/mpi_portable_platform.h
-include/openmpi/ompi/mpi/cxx/comm.h
-include/openmpi/ompi/mpi/cxx/comm_inln.h
-include/openmpi/ompi/mpi/cxx/constants.h
-include/openmpi/ompi/mpi/cxx/datatype.h
-include/openmpi/ompi/mpi/cxx/datatype_inln.h
-include/openmpi/ompi/mpi/cxx/errhandler.h
-include/openmpi/ompi/mpi/cxx/errhandler_inln.h
-include/openmpi/ompi/mpi/cxx/exception.h
-include/openmpi/ompi/mpi/cxx/file.h
-include/openmpi/ompi/mpi/cxx/file_inln.h
-include/openmpi/ompi/mpi/cxx/functions.h
-include/openmpi/ompi/mpi/cxx/functions_inln.h
-include/openmpi/ompi/mpi/cxx/group.h
-include/openmpi/ompi/mpi/cxx/group_inln.h
-include/openmpi/ompi/mpi/cxx/info.h
-include/openmpi/ompi/mpi/cxx/info_inln.h
-include/openmpi/ompi/mpi/cxx/intercomm.h
-include/openmpi/ompi/mpi/cxx/intercomm_inln.h
-include/openmpi/ompi/mpi/cxx/intracomm.h
-include/openmpi/ompi/mpi/cxx/intracomm_inln.h
-include/openmpi/ompi/mpi/cxx/mpicxx.h
-include/openmpi/ompi/mpi/cxx/op.h
-include/openmpi/ompi/mpi/cxx/op_inln.h
-include/openmpi/ompi/mpi/cxx/request.h
-include/openmpi/ompi/mpi/cxx/request_inln.h
-include/openmpi/ompi/mpi/cxx/status.h
-include/openmpi/ompi/mpi/cxx/status_inln.h
-include/openmpi/ompi/mpi/cxx/topology.h
-include/openmpi/ompi/mpi/cxx/topology_inln.h
-include/openmpi/ompi/mpi/cxx/win.h
-include/openmpi/ompi/mpi/cxx/win_inln.h
-lib/libmca_common_sm.la
-lib/libmpi_cxx.la
-lib/libmpi_f77.la
-lib/libmpi_f90.la
-lib/libmpi.la
-lib/libompitrace.la
-lib/libopen-pal.la
-lib/libopen-rte.la
-lib/mpi.mod
-lib/openmpi/libompi_dbg_msgq.la
-lib/openmpi/mca_allocator_basic.la
-lib/openmpi/mca_allocator_bucket.la
-lib/openmpi/mca_bml_r2.la
-lib/openmpi/mca_btl_self.la
-lib/openmpi/mca_btl_sm.la
-lib/openmpi/mca_btl_tcp.la
-lib/openmpi/mca_carto_auto_detect.la
-lib/openmpi/mca_carto_file.la
-lib/openmpi/mca_coll_basic.la
-lib/openmpi/mca_coll_hierarch.la
-lib/openmpi/mca_coll_inter.la
-lib/openmpi/mca_coll_self.la
-lib/openmpi/mca_coll_sm.la
-lib/openmpi/mca_coll_sync.la
-lib/openmpi/mca_coll_tuned.la
-lib/openmpi/mca_crs_none.la
-lib/openmpi/mca_dpm_orte.la
-lib/openmpi/mca_errmgr_default.la
-lib/openmpi/mca_ess_env.la
-lib/openmpi/mca_ess_hnp.la
-lib/openmpi/mca_ess_singleton.la
-lib/openmpi/mca_ess_slave.la
-lib/openmpi/mca_ess_slurmd.la
-lib/openmpi/mca_ess_slurm.la
-lib/openmpi/mca_ess_tool.la
-lib/openmpi/mca_filem_rsh.la
-lib/openmpi/mca_grpcomm_bad.la
-lib/openmpi/mca_grpcomm_basic.la
-lib/openmpi/mca_iof_hnp.la
-lib/openmpi/mca_iof_orted.la
-lib/openmpi/mca_iof_tool.la
-lib/openmpi/mca_io_romio.la
-lib/openmpi/mca_maffinity_first_use.la
-lib/openmpi/mca_maffinity_hwloc.la
-lib/openmpi/mca_mpool_fake.la
-lib/openmpi/mca_mpool_rdma.la
-lib/openmpi/mca_mpool_sm.la
-lib/openmpi/mca_notifier_command.la
-lib/openmpi/mca_notifier_syslog.la
-lib/openmpi/mca_odls_default.la
-lib/openmpi/mca_oob_tcp.la
-lib/openmpi/mca_osc_pt2pt.la
-lib/openmpi/mca_osc_rdma.la
-lib/openmpi/mca_paffinity_hwloc.la
-lib/openmpi/mca_plm_rsh.la
-lib/openmpi/mca_plm_slurm.la
-lib/openmpi/mca_pml_bfo.la
-lib/openmpi/mca_pml_cm.la
-lib/openmpi/mca_pml_csum.la
-lib/openmpi/mca_pml_ob1.la
-lib/openmpi/mca_pml_v.la
-lib/openmpi/mca_pstat_linux.la
-lib/openmpi/mca_pubsub_orte.la
-lib/openmpi/mca_ras_cm.la
-lib/openmpi/mca_ras_loadleveler.la
-lib/openmpi/mca_ras_slurm.la
-lib/openmpi/mca_rcache_vma.la
-lib/openmpi/mca_rmaps_load_balance.la
-lib/openmpi/mca_rmaps_rank_file.la
-lib/openmpi/mca_rmaps_resilient.la
-lib/openmpi/mca_rmaps_round_robin.la
-lib/openmpi/mca_rmaps_seq.la
-lib/openmpi/mca_rmaps_topo.la
-lib/openmpi/mca_rml_oob.la
-lib/openmpi/mca_routed_binomial.la
-lib/openmpi/mca_routed_cm.la
-lib/openmpi/mca_routed_direct.la
-lib/openmpi/mca_routed_linear.la
-lib/openmpi/mca_routed_radix.la
-lib/openmpi/mca_routed_slave.la
-lib/openmpi/mca_shmem_mmap.la
-lib/openmpi/mca_shmem_posix.la
-lib/openmpi/mca_shmem_sysv.la
-lib/openmpi/mca_sysinfo_linux.la
-lib/openmpi/mca_topo_unity.la
-lib/openmpi/mca_vprotocol_pessimist.la
-lib/pkgconfig/ompi-c.pc
-lib/pkgconfig/ompi-cxx.pc
-lib/pkgconfig/ompi-f77.pc
-lib/pkgconfig/ompi-f90.pc
-lib/pkgconfig/ompi.pc
-lib/pkgconfig/orte.pc
-man/man1/mpic++.1
-man/man1/mpicc.1
-man/man1/mpiCC.1
-man/man1/mpicxx.1
-man/man1/mpiexec.1
-man/man1/mpif77.1
-man/man1/mpif90.1
-man/man1/mpirun.1
-man/man1/ompi-clean.1
-man/man1/ompi_info.1
-man/man1/ompi-iof.1
-man/man1/ompi-probe.1
-man/man1/ompi-profiler.1
-man/man1/ompi-ps.1
-man/man1/ompi-server.1
-man/man1/ompi-top.1
-man/man1/opal_wrapper.1
-man/man1/orteCC.1
-man/man1/orte-clean.1
-man/man1/orted.1
-man/man1/orte-iof.1
-man/man1/orte-ps.1
-man/man1/orterun.1
-man/man1/orte-top.1
-man/man3/MPI.3
-man/man3/MPI_Abort.3
-man/man3/MPI_Accumulate.3
-man/man3/MPI_Add_error_class.3
-man/man3/MPI_Add_error_code.3
-man/man3/MPI_Add_error_string.3
-man/man3/MPI_Address.3
-man/man3/MPI_Allgather.3
-man/man3/MPI_Allgatherv.3
-man/man3/MPI_Alloc_mem.3
-man/man3/MPI_Allreduce.3
-man/man3/MPI_Alltoall.3
-man/man3/MPI_Alltoallv.3
-man/man3/MPI_Alltoallw.3
-man/man3/MPI_Attr_delete.3
-man/man3/MPI_Attr_get.3
-man/man3/MPI_Attr_put.3
-man/man3/MPI_Barrier.3
-man/man3/MPI_Bcast.3
-man/man3/MPI_Bsend.3
-man/man3/MPI_Bsend_init.3
-man/man3/MPI_Buffer_attach.3
-man/man3/MPI_Buffer_detach.3
-man/man3/MPI_Cancel.3
-man/man3/MPI_Cart_coords.3
-man/man3/MPI_Cart_create.3
-man/man3/MPI_Cartdim_get.3
-man/man3/MPI_Cart_get.3
-man/man3/MPI_Cart_map.3
-man/man3/MPI_Cart_rank.3
-man/man3/MPI_Cart_shift.3
-man/man3/MPI_Cart_sub.3
-man/man3/MPI_Close_port.3
-man/man3/MPI_Comm_accept.3
-man/man3/MPI_Comm_c2f.3
-man/man3/MPI_Comm_call_errhandler.3
-man/man3/MPI_Comm_compare.3
-man/man3/MPI_Comm_connect.3
-man/man3/MPI_Comm_create.3
-man/man3/MPI_Comm_create_errhandler.3
-man/man3/MPI_Comm_create_keyval.3
-man/man3/MPI_Comm_delete_attr.3
-man/man3/MPI_Comm_disconnect.3
-man/man3/MPI_Comm_dup.3
-man/man3/MPI_Comm_f2c.3
-man/man3/MPI_Comm_free.3
-man/man3/MPI_Comm_free_keyval.3
-man/man3/MPI_Comm_get_attr.3
-man/man3/MPI_Comm_get_errhandler.3
-man/man3/MPI_Comm_get_name.3
-man/man3/MPI_Comm_get_parent.3
-man/man3/MPI_Comm_group.3
-man/man3/MPI_Comm_join.3
-man/man3/MPI_Comm_rank.3
-man/man3/MPI_Comm_remote_group.3
-man/man3/MPI_Comm_remote_size.3
-man/man3/MPI_Comm_set_attr.3
-man/man3/MPI_Comm_set_errhandler.3
-man/man3/MPI_Comm_set_name.3
-man/man3/MPI_Comm_size.3
-man/man3/MPI_Comm_spawn.3
-man/man3/MPI_Comm_spawn_multiple.3
-man/man3/MPI_Comm_split.3
-man/man3/MPI_Comm_test_inter.3
-man/man3/MPI_Dims_create.3
-man/man3/MPI_Errhandler_create.3
-man/man3/MPI_Errhandler_free.3
-man/man3/MPI_Errhandler_get.3
-man/man3/MPI_Errhandler_set.3
-man/man3/MPI_Error_class.3
-man/man3/MPI_Error_string.3
-man/man3/MPI_Exscan.3
-man/man3/MPI_File_c2f.3
-man/man3/MPI_File_call_errhandler.3
-man/man3/MPI_File_close.3
-man/man3/MPI_File_create_errhandler.3
-man/man3/MPI_File_delete.3
-man/man3/MPI_File_f2c.3
-man/man3/MPI_File_get_amode.3
-man/man3/MPI_File_get_atomicity.3
-man/man3/MPI_File_get_byte_offset.3
-man/man3/MPI_File_get_errhandler.3
-man/man3/MPI_File_get_group.3
-man/man3/MPI_File_get_info.3
-man/man3/MPI_File_get_position.3
-man/man3/MPI_File_get_position_shared.3
-man/man3/MPI_File_get_size.3
-man/man3/MPI_File_get_type_extent.3
-man/man3/MPI_File_get_view.3
-man/man3/MPI_File_iread.3
-man/man3/MPI_File_iread_at.3
-man/man3/MPI_File_iread_shared.3
-man/man3/MPI_File_iwrite.3
-man/man3/MPI_File_iwrite_at.3
-man/man3/MPI_File_iwrite_shared.3
-man/man3/MPI_File_open.3
-man/man3/MPI_File_preallocate.3
-man/man3/MPI_File_read.3
-man/man3/MPI_File_read_all.3
-man/man3/MPI_File_read_all_begin.3
-man/man3/MPI_File_read_all_end.3
-man/man3/MPI_File_read_at.3
-man/man3/MPI_File_read_at_all.3
-man/man3/MPI_File_read_at_all_begin.3
-man/man3/MPI_File_read_at_all_end.3
-man/man3/MPI_File_read_ordered.3
-man/man3/MPI_File_read_ordered_begin.3
-man/man3/MPI_File_read_ordered_end.3
-man/man3/MPI_File_read_shared.3
-man/man3/MPI_File_seek.3
-man/man3/MPI_File_seek_shared.3
-man/man3/MPI_File_set_atomicity.3
-man/man3/MPI_File_set_errhandler.3
-man/man3/MPI_File_set_info.3
-man/man3/MPI_File_set_size.3
-man/man3/MPI_File_set_view.3
-man/man3/MPI_File_sync.3
-man/man3/MPI_File_write.3
-man/man3/MPI_File_write_all.3
-man/man3/MPI_File_write_all_begin.3
-man/man3/MPI_File_write_all_end.3
-man/man3/MPI_File_write_at.3
-man/man3/MPI_File_write_at_all.3
-man/man3/MPI_File_write_at_all_begin.3
-man/man3/MPI_File_write_at_all_end.3
-man/man3/MPI_File_write_ordered.3
-man/man3/MPI_File_write_ordered_begin.3
-man/man3/MPI_File_write_ordered_end.3
-man/man3/MPI_File_write_shared.3
-man/man3/MPI_Finalize.3
-man/man3/MPI_Finalized.3
-man/man3/MPI_Free_mem.3
-man/man3/MPI_Gather.3
-man/man3/MPI_Gatherv.3
-man/man3/MPI_Get.3
-man/man3/MPI_Get_address.3
-man/man3/MPI_Get_count.3
-man/man3/MPI_Get_elements.3
-man/man3/MPI_Get_processor_name.3
-man/man3/MPI_Get_version.3
-man/man3/MPI_Graph_create.3
-man/man3/MPI_Graphdims_get.3
-man/man3/MPI_Graph_get.3
-man/man3/MPI_Graph_map.3
-man/man3/MPI_Graph_neighbors.3
-man/man3/MPI_Graph_neighbors_count.3
-man/man3/MPI_Grequest_complete.3
-man/man3/MPI_Grequest_start.3
-man/man3/MPI_Group_c2f.3
-man/man3/MPI_Group_compare.3
-man/man3/MPI_Group_difference.3
-man/man3/MPI_Group_excl.3
-man/man3/MPI_Group_f2c.3
-man/man3/MPI_Group_free.3
-man/man3/MPI_Group_incl.3
-man/man3/MPI_Group_intersection.3
-man/man3/MPI_Group_range_excl.3
-man/man3/MPI_Group_range_incl.3
-man/man3/MPI_Group_rank.3
-man/man3/MPI_Group_size.3
-man/man3/MPI_Group_translate_ranks.3
-man/man3/MPI_Group_union.3
-man/man3/MPI_Ibsend.3
-man/man3/MPI_Info_c2f.3
-man/man3/MPI_Info_create.3
-man/man3/MPI_Info_delete.3
-man/man3/MPI_Info_dup.3
-man/man3/MPI_Info_f2c.3
-man/man3/MPI_Info_free.3
-man/man3/MPI_Info_get.3
-man/man3/MPI_Info_get_nkeys.3
-man/man3/MPI_Info_get_nthkey.3
-man/man3/MPI_Info_get_valuelen.3
-man/man3/MPI_Info_set.3
-man/man3/MPI_Init.3
-man/man3/MPI_Initialized.3
-man/man3/MPI_Init_thread.3
-man/man3/MPI_Intercomm_create.3
-man/man3/MPI_Intercomm_merge.3
-man/man3/MPI_Iprobe.3
-man/man3/MPI_Irecv.3
-man/man3/MPI_Irsend.3
-man/man3/MPI_Isend.3
-man/man3/MPI_Issend.3
-man/man3/MPI_Is_thread_main.3
-man/man3/MPI_Keyval_create.3
-man/man3/MPI_Keyval_free.3
-man/man3/MPI_Lookup_name.3
-man/man3/MPI_Op_c2f.3
-man/man3/MPI_Op_create.3
-man/man3/MPI_Open_port.3
-man/man3/MPI_Op_f2c.3
-man/man3/MPI_Op_free.3
-man/man3/MPI_Pack.3
-man/man3/MPI_Pack_external.3
-man/man3/MPI_Pack_external_size.3
-man/man3/MPI_Pack_size.3
-man/man3/MPI_Pcontrol.3
-man/man3/MPI_Probe.3
-man/man3/MPI_Publish_name.3
-man/man3/MPI_Put.3
-man/man3/MPI_Query_thread.3
-man/man3/MPI_Recv.3
-man/man3/MPI_Recv_init.3
-man/man3/MPI_Reduce.3
-man/man3/MPI_Reduce_local.3
-man/man3/MPI_Reduce_scatter.3
-man/man3/MPI_Register_datarep.3
-man/man3/MPI_Request_c2f.3
-man/man3/MPI_Request_f2c.3
-man/man3/MPI_Request_free.3
-man/man3/MPI_Request_get_status.3
-man/man3/MPI_Rsend.3
-man/man3/MPI_Rsend_init.3
-man/man3/MPI_Scan.3
-man/man3/MPI_Scatter.3
-man/man3/MPI_Scatterv.3
-man/man3/MPI_Send.3
-man/man3/MPI_Send_init.3
-man/man3/MPI_Sendrecv.3
-man/man3/MPI_Sendrecv_replace.3
-man/man3/MPI_Sizeof.3
-man/man3/MPI_Ssend.3
-man/man3/MPI_Ssend_init.3
-man/man3/MPI_Start.3
-man/man3/MPI_Startall.3
-man/man3/MPI_Status_c2f.3
-man/man3/MPI_Status_f2c.3
-man/man3/MPI_Status_set_cancelled.3
-man/man3/MPI_Status_set_elements.3
-man/man3/MPI_Test.3
-man/man3/MPI_Testall.3
-man/man3/MPI_Testany.3
-man/man3/MPI_Test_cancelled.3
-man/man3/MPI_Testsome.3
-man/man3/MPI_Topo_test.3
-man/man3/MPI_Type_c2f.3
-man/man3/MPI_Type_commit.3
-man/man3/MPI_Type_contiguous.3
-man/man3/MPI_Type_create_darray.3
-man/man3/MPI_Type_create_f90_complex.3
-man/man3/MPI_Type_create_f90_integer.3
-man/man3/MPI_Type_create_f90_real.3
-man/man3/MPI_Type_create_hindexed.3
-man/man3/MPI_Type_create_hvector.3
-man/man3/MPI_Type_create_indexed_block.3
-man/man3/MPI_Type_create_keyval.3
-man/man3/MPI_Type_create_resized.3
-man/man3/MPI_Type_create_struct.3
-man/man3/MPI_Type_create_subarray.3
-man/man3/MPI_Type_delete_attr.3
-man/man3/MPI_Type_dup.3
-man/man3/MPI_Type_extent.3
-man/man3/MPI_Type_f2c.3
-man/man3/MPI_Type_free.3
-man/man3/MPI_Type_free_keyval.3
-man/man3/MPI_Type_get_attr.3
-man/man3/MPI_Type_get_contents.3
-man/man3/MPI_Type_get_envelope.3
-man/man3/MPI_Type_get_extent.3
-man/man3/MPI_Type_get_name.3
-man/man3/MPI_Type_get_true_extent.3
-man/man3/MPI_Type_hindexed.3
-man/man3/MPI_Type_hvector.3
-man/man3/MPI_Type_indexed.3
-man/man3/MPI_Type_lb.3
-man/man3/MPI_Type_match_size.3
-man/man3/MPI_Type_set_attr.3
-man/man3/MPI_Type_set_name.3
-man/man3/MPI_Type_size.3
-man/man3/MPI_Type_struct.3
-man/man3/MPI_Type_ub.3
-man/man3/MPI_Type_vector.3
-man/man3/MPI_Unpack.3
-man/man3/MPI_Unpack_external.3
-man/man3/MPI_Unpublish_name.3
-man/man3/MPI_Wait.3
-man/man3/MPI_Waitall.3
-man/man3/MPI_Waitany.3
-man/man3/MPI_Waitsome.3
-man/man3/MPI_Win_c2f.3
-man/man3/MPI_Win_call_errhandler.3
-man/man3/MPI_Win_complete.3
-man/man3/MPI_Win_create.3
-man/man3/MPI_Win_create_errhandler.3
-man/man3/MPI_Win_create_keyval.3
-man/man3/MPI_Win_delete_attr.3
-man/man3/MPI_Win_f2c.3
-man/man3/MPI_Win_fence.3
-man/man3/MPI_Win_free.3
-man/man3/MPI_Win_free_keyval.3
-man/man3/MPI_Win_get_attr.3
-man/man3/MPI_Win_get_errhandler.3
-man/man3/MPI_Win_get_group.3
-man/man3/MPI_Win_get_name.3
-man/man3/MPI_Win_lock.3
-man/man3/MPI_Win_post.3
-man/man3/MPI_Win_set_attr.3
-man/man3/MPI_Win_set_errhandler.3
-man/man3/MPI_Win_set_name.3
-man/man3/MPI_Win_start.3
-man/man3/MPI_Win_test.3
-man/man3/MPI_Win_unlock.3
-man/man3/MPI_Win_wait.3
-man/man3/MPI_Wtick.3
-man/man3/MPI_Wtime.3
-man/man3/OpenMPI.3
-man/man7/ompi_crcp.7
-man/man7/opal_crs.7
-man/man7/orte_filem.7
-man/man7/orte_hosts.7
-man/man7/orte_snapc.7
-share/openmpi/amca-param-sets/example.conf
-share/openmpi/doc/COPYRIGHT-ptmalloc2.txt
-share/openmpi/examples/openmpi-default-hostfile
-share/openmpi/examples/openmpi-mca-params.conf
-share/openmpi/examples/openmpi-totalview.tcl
-share/openmpi/help-coll-sync.txt
-share/openmpi/help-dash-host.txt
-share/openmpi/help-ess-base.txt
-share/openmpi/help-hostfile.txt
-share/openmpi/help-mca-base.txt
-share/openmpi/help-mca-bml-r2.txt
-share/openmpi/help-mca-coll-base.txt
-share/openmpi/help-mca-op-base.txt
-share/openmpi/help-mca-param.txt
-share/openmpi/help-mpi-api.txt
-share/openmpi/help-mpi-btl-base.txt
-share/openmpi/help-mpi-btl-sm.txt
-share/openmpi/help-mpi-btl-tcp.txt
-share/openmpi/help-mpi-coll-sm.txt
-share/openmpi/help-mpi-common-sm.txt
-share/openmpi/help-mpi-errors.txt
-share/openmpi/help-mpi-pml-bfo.txt
-share/openmpi/help-mpi-pml-csum.txt
-share/openmpi/help-mpi-pml-ob1.txt
-share/openmpi/help-mpi-runtime.txt
-share/openmpi/help-mpool-base.txt
-share/openmpi/help-odls-default.txt
-share/openmpi/help-ompi-crcp-base.txt
-share/openmpi/help-ompi-dpm-base.txt
-share/openmpi/help-ompi-dpm-orte.txt
-share/openmpi/help-ompi_info.txt
-share/openmpi/help-ompi-probe.txt
-share/openmpi/help-ompi-profiler.txt
-share/openmpi/help-ompi-pubsub-orte.txt
-share/openmpi/help-ompi-server.txt
-share/openmpi/help-oob-tcp.txt
-share/openmpi/help-opal-carto-file.txt
-share/openmpi/help-opal-crs-base.txt
-share/openmpi/help-opal-crs-none.txt
-share/openmpi/help-opal-maffinity-hwloc.txt
-share/openmpi/help-opal-memory-linux.txt
-share/openmpi/help-opal-runtime.txt
-share/openmpi/help-opal-shmem-mmap.txt
-share/openmpi/help-opal-shmem-posix.txt
-share/openmpi/help-opal-shmem-sysv.txt
-share/openmpi/help-opal-util.txt
-share/openmpi/help-opal-wrapper.txt
-share/openmpi/help-orte-clean.txt
-share/openmpi/help-orted.txt
-share/openmpi/help-orte-filem-base.txt
-share/openmpi/help-orte-filem-rsh.txt
-share/openmpi/help-orte-iof.txt
-share/openmpi/help-orte-notifier-command.txt
-share/openmpi/help-orte-odls-base.txt
-share/openmpi/help-orte-ps.txt
-share/openmpi/help-orte-rmaps-base.txt
-share/openmpi/help-orte-rmaps-lb.txt
-share/openmpi/help-orte-rmaps-resilient.txt
-share/openmpi/help-orte-rmaps-rr.txt
-share/openmpi/help-orte-rmaps-seq.txt
-share/openmpi/help-orte-rmaps-topo.txt
-share/openmpi/help-orte-runtime.txt
-share/openmpi/help-orterun.txt
-share/openmpi/help-orte-snapc-base.txt
-share/openmpi/help-orte-top.txt
-share/openmpi/help-plm-base.txt
-share/openmpi/help-plm-rsh.txt
-share/openmpi/help-plm-slurm.txt
-share/openmpi/help-ras-base.txt
-share/openmpi/help-ras-slurm.txt
-share/openmpi/help-regex.txt
-share/openmpi/help-rmaps_rank_file.txt
-share/openmpi/mpicc-wrapper-data.txt
-share/openmpi/mpiCC-wrapper-data.txt
-share/openmpi/mpic++-wrapper-data.txt
-share/openmpi/mpicxx-wrapper-data.txt
-share/openmpi/mpif77-wrapper-data.txt
-share/openmpi/mpif90-wrapper-data.txt
-share/openmpi/openmpi-valgrind.supp
-share/openmpi/ortecc-wrapper-data.txt
-share/openmpi/orteCC-wrapper-data.txt
-share/openmpi/ortec++-wrapper-data.txt
+openmpi/bin/mpic++
+openmpi/bin/mpicc
+openmpi/bin/mpiCC
+openmpi/bin/mpicxx
+openmpi/bin/mpiexec
+openmpi/bin/mpif77
+openmpi/bin/mpif90
+openmpi/bin/mpirun
+openmpi/bin/ompi-clean
+openmpi/bin/ompi_info
+openmpi/bin/ompi-iof
+openmpi/bin/ompi-probe
+openmpi/bin/ompi-profiler
+openmpi/bin/ompi-ps
+openmpi/bin/ompi-server
+openmpi/bin/ompi-top
+openmpi/bin/opal_wrapper
+openmpi/bin/orte-bootproxy.sh
+openmpi/bin/ortec++
+openmpi/bin/ortecc
+openmpi/bin/orteCC
+openmpi/bin/orte-clean
+openmpi/bin/orted
+openmpi/bin/orte-iof
+openmpi/bin/orte-ps
+openmpi/bin/orterun
+openmpi/bin/orte-top
+openmpi/bin/orte_wrapper_script
+openmpi/etc/cshrc
+openmpi/etc/modulefiles/openmpi/1.6.3
+openmpi/etc/openmpi-default-hostfile
+openmpi/etc/shrc
+openmpi/include/mpi-ext.h
+openmpi/include/mpif-common.h
+openmpi/include/mpif-config.h
+openmpi/include/mpif.h
+openmpi/include/mpif-mpi-io.h
+openmpi/include/mpi.h
+openmpi/include/mpi_portable_platform.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm.h
+openmpi/include/openmpi/ompi/mpi/cxx/comm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/constants.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype.h
+openmpi/include/openmpi/ompi/mpi/cxx/datatype_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler.h
+openmpi/include/openmpi/ompi/mpi/cxx/errhandler_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/exception.h
+openmpi/include/openmpi/ompi/mpi/cxx/file.h
+openmpi/include/openmpi/ompi/mpi/cxx/file_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions.h
+openmpi/include/openmpi/ompi/mpi/cxx/functions_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/group.h
+openmpi/include/openmpi/ompi/mpi/cxx/group_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/info.h
+openmpi/include/openmpi/ompi/mpi/cxx/info_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intercomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm.h
+openmpi/include/openmpi/ompi/mpi/cxx/intracomm_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/mpicxx.h
+openmpi/include/openmpi/ompi/mpi/cxx/op.h
+openmpi/include/openmpi/ompi/mpi/cxx/op_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/request.h
+openmpi/include/openmpi/ompi/mpi/cxx/request_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/status.h
+openmpi/include/openmpi/ompi/mpi/cxx/status_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology.h
+openmpi/include/openmpi/ompi/mpi/cxx/topology_inln.h
+openmpi/include/openmpi/ompi/mpi/cxx/win.h
+openmpi/include/openmpi/ompi/mpi/cxx/win_inln.h
+openmpi/lib/libmca_common_sm.la
+openmpi/lib/libmpi_cxx.la
+openmpi/lib/libmpi_f77.la
+openmpi/lib/libmpi_f90.la
+openmpi/lib/libmpi.la
+openmpi/lib/libompitrace.la
+openmpi/lib/libopen-pal.la
+openmpi/lib/libopen-rte.la
+openmpi/lib/mpi.mod
+openmpi/lib/openmpi/libompi_dbg_msgq.la
+openmpi/lib/openmpi/mca_allocator_basic.la
+openmpi/lib/openmpi/mca_allocator_bucket.la
+openmpi/lib/openmpi/mca_bml_r2.la
+openmpi/lib/openmpi/mca_btl_self.la
+openmpi/lib/openmpi/mca_btl_sm.la
+openmpi/lib/openmpi/mca_btl_tcp.la
+openmpi/lib/openmpi/mca_carto_auto_detect.la
+openmpi/lib/openmpi/mca_carto_file.la
+openmpi/lib/openmpi/mca_coll_basic.la
+openmpi/lib/openmpi/mca_coll_hierarch.la
+openmpi/lib/openmpi/mca_coll_inter.la
+openmpi/lib/openmpi/mca_coll_self.la
+openmpi/lib/openmpi/mca_coll_sm.la
+openmpi/lib/openmpi/mca_coll_sync.la
+openmpi/lib/openmpi/mca_coll_tuned.la
+openmpi/lib/openmpi/mca_crs_none.la
+openmpi/lib/openmpi/mca_dpm_orte.la
+openmpi/lib/openmpi/mca_errmgr_default.la
+openmpi/lib/openmpi/mca_ess_env.la
+openmpi/lib/openmpi/mca_ess_hnp.la
+openmpi/lib/openmpi/mca_ess_singleton.la
+openmpi/lib/openmpi/mca_ess_slave.la
+openmpi/lib/openmpi/mca_ess_slurmd.la
+openmpi/lib/openmpi/mca_ess_slurm.la
+openmpi/lib/openmpi/mca_ess_tool.la
+openmpi/lib/openmpi/mca_filem_rsh.la
+openmpi/lib/openmpi/mca_grpcomm_bad.la
+openmpi/lib/openmpi/mca_grpcomm_basic.la
+openmpi/lib/openmpi/mca_iof_hnp.la
+openmpi/lib/openmpi/mca_iof_orted.la
+openmpi/lib/openmpi/mca_iof_tool.la
+openmpi/lib/openmpi/mca_io_romio.la
+openmpi/lib/openmpi/mca_maffinity_first_use.la
+openmpi/lib/openmpi/mca_maffinity_hwloc.la
+openmpi/lib/openmpi/mca_mpool_fake.la
+openmpi/lib/openmpi/mca_mpool_rdma.la
+openmpi/lib/openmpi/mca_mpool_sm.la
+openmpi/lib/openmpi/mca_notifier_command.la
+openmpi/lib/openmpi/mca_notifier_syslog.la
+openmpi/lib/openmpi/mca_odls_default.la
+openmpi/lib/openmpi/mca_oob_tcp.la
+openmpi/lib/openmpi/mca_osc_pt2pt.la
+openmpi/lib/openmpi/mca_osc_rdma.la
+openmpi/lib/openmpi/mca_paffinity_hwloc.la
+openmpi/lib/openmpi/mca_plm_rsh.la
+openmpi/lib/openmpi/mca_plm_slurm.la
+openmpi/lib/openmpi/mca_pml_bfo.la
+openmpi/lib/openmpi/mca_pml_cm.la
+openmpi/lib/openmpi/mca_pml_csum.la
+openmpi/lib/openmpi/mca_pml_ob1.la
+openmpi/lib/openmpi/mca_pml_v.la
+openmpi/lib/openmpi/mca_pstat_linux.la
+openmpi/lib/openmpi/mca_pubsub_orte.la
+openmpi/lib/openmpi/mca_ras_cm.la
+openmpi/lib/openmpi/mca_ras_loadleveler.la
+openmpi/lib/openmpi/mca_ras_slurm.la
+openmpi/lib/openmpi/mca_rcache_vma.la
+openmpi/lib/openmpi/mca_rmaps_load_balance.la
+openmpi/lib/openmpi/mca_rmaps_rank_file.la
+openmpi/lib/openmpi/mca_rmaps_resilient.la
+openmpi/lib/openmpi/mca_rmaps_round_robin.la
+openmpi/lib/openmpi/mca_rmaps_seq.la
+openmpi/lib/openmpi/mca_rmaps_topo.la
+openmpi/lib/openmpi/mca_rml_oob.la
+openmpi/lib/openmpi/mca_routed_binomial.la
+openmpi/lib/openmpi/mca_routed_cm.la
+openmpi/lib/openmpi/mca_routed_direct.la
+openmpi/lib/openmpi/mca_routed_linear.la
+openmpi/lib/openmpi/mca_routed_radix.la
+openmpi/lib/openmpi/mca_routed_slave.la
+openmpi/lib/openmpi/mca_shmem_mmap.la
+openmpi/lib/openmpi/mca_shmem_posix.la
+openmpi/lib/openmpi/mca_shmem_sysv.la
+openmpi/lib/openmpi/mca_sysinfo_linux.la
+openmpi/lib/openmpi/mca_topo_unity.la
+openmpi/lib/openmpi/mca_vprotocol_pessimist.la
+openmpi/lib/pkgconfig/ompi-c.pc
+openmpi/lib/pkgconfig/ompi-cxx.pc
+openmpi/lib/pkgconfig/ompi-f77.pc
+openmpi/lib/pkgconfig/ompi-f90.pc
+openmpi/lib/pkgconfig/ompi.pc
+openmpi/lib/pkgconfig/orte.pc
+openmpi/man/man1/mpic++.1
+openmpi/man/man1/mpicc.1
+openmpi/man/man1/mpiCC.1
+openmpi/man/man1/mpicxx.1
+openmpi/man/man1/mpiexec.1
+openmpi/man/man1/mpif77.1
+openmpi/man/man1/mpif90.1
+openmpi/man/man1/mpirun.1
+openmpi/man/man1/ompi-clean.1
+openmpi/man/man1/ompi_info.1
+openmpi/man/man1/ompi-iof.1
+openmpi/man/man1/ompi-probe.1
+openmpi/man/man1/ompi-profiler.1
+openmpi/man/man1/ompi-ps.1
+openmpi/man/man1/ompi-server.1
+openmpi/man/man1/ompi-top.1
+openmpi/man/man1/opal_wrapper.1
+openmpi/man/man1/orteCC.1
+openmpi/man/man1/orte-clean.1
+openmpi/man/man1/orted.1
+openmpi/man/man1/orte-iof.1
+openmpi/man/man1/orte-ps.1
+openmpi/man/man1/orterun.1
+openmpi/man/man1/orte-top.1
+openmpi/man/man3/MPI.3
+openmpi/man/man3/MPI_Abort.3
+openmpi/man/man3/MPI_Accumulate.3
+openmpi/man/man3/MPI_Add_error_class.3
+openmpi/man/man3/MPI_Add_error_code.3
+openmpi/man/man3/MPI_Add_error_string.3
+openmpi/man/man3/MPI_Address.3
+openmpi/man/man3/MPI_Allgather.3
+openmpi/man/man3/MPI_Allgatherv.3
+openmpi/man/man3/MPI_Alloc_mem.3
+openmpi/man/man3/MPI_Allreduce.3
+openmpi/man/man3/MPI_Alltoall.3
+openmpi/man/man3/MPI_Alltoallv.3
+openmpi/man/man3/MPI_Alltoallw.3
+openmpi/man/man3/MPI_Attr_delete.3
+openmpi/man/man3/MPI_Attr_get.3
+openmpi/man/man3/MPI_Attr_put.3
+openmpi/man/man3/MPI_Barrier.3
+openmpi/man/man3/MPI_Bcast.3
+openmpi/man/man3/MPI_Bsend.3
+openmpi/man/man3/MPI_Bsend_init.3
+openmpi/man/man3/MPI_Buffer_attach.3
+openmpi/man/man3/MPI_Buffer_detach.3
+openmpi/man/man3/MPI_Cancel.3
+openmpi/man/man3/MPI_Cart_coords.3
+openmpi/man/man3/MPI_Cart_create.3
+openmpi/man/man3/MPI_Cartdim_get.3
+openmpi/man/man3/MPI_Cart_get.3
+openmpi/man/man3/MPI_Cart_map.3
+openmpi/man/man3/MPI_Cart_rank.3
+openmpi/man/man3/MPI_Cart_shift.3
+openmpi/man/man3/MPI_Cart_sub.3
+openmpi/man/man3/MPI_Close_port.3
+openmpi/man/man3/MPI_Comm_accept.3
+openmpi/man/man3/MPI_Comm_c2f.3
+openmpi/man/man3/MPI_Comm_call_errhandler.3
+openmpi/man/man3/MPI_Comm_compare.3
+openmpi/man/man3/MPI_Comm_connect.3
+openmpi/man/man3/MPI_Comm_create.3
+openmpi/man/man3/MPI_Comm_create_errhandler.3
+openmpi/man/man3/MPI_Comm_create_keyval.3
+openmpi/man/man3/MPI_Comm_delete_attr.3
+openmpi/man/man3/MPI_Comm_disconnect.3
+openmpi/man/man3/MPI_Comm_dup.3
+openmpi/man/man3/MPI_Comm_f2c.3
+openmpi/man/man3/MPI_Comm_free.3
+openmpi/man/man3/MPI_Comm_free_keyval.3
+openmpi/man/man3/MPI_Comm_get_attr.3
+openmpi/man/man3/MPI_Comm_get_errhandler.3
+openmpi/man/man3/MPI_Comm_get_name.3
+openmpi/man/man3/MPI_Comm_get_parent.3
+openmpi/man/man3/MPI_Comm_group.3
+openmpi/man/man3/MPI_Comm_join.3
+openmpi/man/man3/MPI_Comm_rank.3
+openmpi/man/man3/MPI_Comm_remote_group.3
+openmpi/man/man3/MPI_Comm_remote_size.3
+openmpi/man/man3/MPI_Comm_set_attr.3
+openmpi/man/man3/MPI_Comm_set_errhandler.3
+openmpi/man/man3/MPI_Comm_set_name.3
+openmpi/man/man3/MPI_Comm_size.3
+openmpi/man/man3/MPI_Comm_spawn.3
+openmpi/man/man3/MPI_Comm_spawn_multiple.3
+openmpi/man/man3/MPI_Comm_split.3
+openmpi/man/man3/MPI_Comm_test_inter.3
+openmpi/man/man3/MPI_Dims_create.3
+openmpi/man/man3/MPI_Errhandler_create.3
+openmpi/man/man3/MPI_Errhandler_free.3
+openmpi/man/man3/MPI_Errhandler_get.3
+openmpi/man/man3/MPI_Errhandler_set.3
+openmpi/man/man3/MPI_Error_class.3
+openmpi/man/man3/MPI_Error_string.3
+openmpi/man/man3/MPI_Exscan.3
+openmpi/man/man3/MPI_File_c2f.3
+openmpi/man/man3/MPI_File_call_errhandler.3
+openmpi/man/man3/MPI_File_close.3
+openmpi/man/man3/MPI_File_create_errhandler.3
+openmpi/man/man3/MPI_File_delete.3
+openmpi/man/man3/MPI_File_f2c.3
+openmpi/man/man3/MPI_File_get_amode.3
+openmpi/man/man3/MPI_File_get_atomicity.3
+openmpi/man/man3/MPI_File_get_byte_offset.3
+openmpi/man/man3/MPI_File_get_errhandler.3
+openmpi/man/man3/MPI_File_get_group.3
+openmpi/man/man3/MPI_File_get_info.3
+openmpi/man/man3/MPI_File_get_position.3
+openmpi/man/man3/MPI_File_get_position_shared.3
+openmpi/man/man3/MPI_File_get_size.3
+openmpi/man/man3/MPI_File_get_type_extent.3
+openmpi/man/man3/MPI_File_get_view.3
+openmpi/man/man3/MPI_File_iread.3
+openmpi/man/man3/MPI_File_iread_at.3
+openmpi/man/man3/MPI_File_iread_shared.3
+openmpi/man/man3/MPI_File_iwrite.3
+openmpi/man/man3/MPI_File_iwrite_at.3
+openmpi/man/man3/MPI_File_iwrite_shared.3
+openmpi/man/man3/MPI_File_open.3
+openmpi/man/man3/MPI_File_preallocate.3
+openmpi/man/man3/MPI_File_read.3
+openmpi/man/man3/MPI_File_read_all.3
+openmpi/man/man3/MPI_File_read_all_begin.3
+openmpi/man/man3/MPI_File_read_all_end.3
+openmpi/man/man3/MPI_File_read_at.3
+openmpi/man/man3/MPI_File_read_at_all.3
+openmpi/man/man3/MPI_File_read_at_all_begin.3
+openmpi/man/man3/MPI_File_read_at_all_end.3
+openmpi/man/man3/MPI_File_read_ordered.3
+openmpi/man/man3/MPI_File_read_ordered_begin.3
+openmpi/man/man3/MPI_File_read_ordered_end.3
+openmpi/man/man3/MPI_File_read_shared.3
+openmpi/man/man3/MPI_File_seek.3
+openmpi/man/man3/MPI_File_seek_shared.3
+openmpi/man/man3/MPI_File_set_atomicity.3
+openmpi/man/man3/MPI_File_set_errhandler.3
+openmpi/man/man3/MPI_File_set_info.3
+openmpi/man/man3/MPI_File_set_size.3
+openmpi/man/man3/MPI_File_set_view.3
+openmpi/man/man3/MPI_File_sync.3
+openmpi/man/man3/MPI_File_write.3
+openmpi/man/man3/MPI_File_write_all.3
+openmpi/man/man3/MPI_File_write_all_begin.3
+openmpi/man/man3/MPI_File_write_all_end.3
+openmpi/man/man3/MPI_File_write_at.3
+openmpi/man/man3/MPI_File_write_at_all.3
+openmpi/man/man3/MPI_File_write_at_all_begin.3
+openmpi/man/man3/MPI_File_write_at_all_end.3
+openmpi/man/man3/MPI_File_write_ordered.3
+openmpi/man/man3/MPI_File_write_ordered_begin.3
+openmpi/man/man3/MPI_File_write_ordered_end.3
+openmpi/man/man3/MPI_File_write_shared.3
+openmpi/man/man3/MPI_Finalize.3
+openmpi/man/man3/MPI_Finalized.3
+openmpi/man/man3/MPI_Free_mem.3
+openmpi/man/man3/MPI_Gather.3
+openmpi/man/man3/MPI_Gatherv.3
+openmpi/man/man3/MPI_Get.3
+openmpi/man/man3/MPI_Get_address.3
+openmpi/man/man3/MPI_Get_count.3
+openmpi/man/man3/MPI_Get_elements.3
+openmpi/man/man3/MPI_Get_processor_name.3
+openmpi/man/man3/MPI_Get_version.3
+openmpi/man/man3/MPI_Graph_create.3
+openmpi/man/man3/MPI_Graphdims_get.3
+openmpi/man/man3/MPI_Graph_get.3
+openmpi/man/man3/MPI_Graph_map.3
+openmpi/man/man3/MPI_Graph_neighbors.3
+openmpi/man/man3/MPI_Graph_neighbors_count.3
+openmpi/man/man3/MPI_Grequest_complete.3
+openmpi/man/man3/MPI_Grequest_start.3
+openmpi/man/man3/MPI_Group_c2f.3
+openmpi/man/man3/MPI_Group_compare.3
+openmpi/man/man3/MPI_Group_difference.3
+openmpi/man/man3/MPI_Group_excl.3
+openmpi/man/man3/MPI_Group_f2c.3
+openmpi/man/man3/MPI_Group_free.3
+openmpi/man/man3/MPI_Group_incl.3
+openmpi/man/man3/MPI_Group_intersection.3
+openmpi/man/man3/MPI_Group_range_excl.3
+openmpi/man/man3/MPI_Group_range_incl.3
+openmpi/man/man3/MPI_Group_rank.3
+openmpi/man/man3/MPI_Group_size.3
+openmpi/man/man3/MPI_Group_translate_ranks.3
+openmpi/man/man3/MPI_Group_union.3
+openmpi/man/man3/MPI_Ibsend.3
+openmpi/man/man3/MPI_Info_c2f.3
+openmpi/man/man3/MPI_Info_create.3
+openmpi/man/man3/MPI_Info_delete.3
+openmpi/man/man3/MPI_Info_dup.3
+openmpi/man/man3/MPI_Info_f2c.3
+openmpi/man/man3/MPI_Info_free.3
+openmpi/man/man3/MPI_Info_get.3
+openmpi/man/man3/MPI_Info_get_nkeys.3
+openmpi/man/man3/MPI_Info_get_nthkey.3
+openmpi/man/man3/MPI_Info_get_valuelen.3
+openmpi/man/man3/MPI_Info_set.3
+openmpi/man/man3/MPI_Init.3
+openmpi/man/man3/MPI_Initialized.3
+openmpi/man/man3/MPI_Init_thread.3
+openmpi/man/man3/MPI_Intercomm_create.3
+openmpi/man/man3/MPI_Intercomm_merge.3
+openmpi/man/man3/MPI_Iprobe.3
+openmpi/man/man3/MPI_Irecv.3
+openmpi/man/man3/MPI_Irsend.3
+openmpi/man/man3/MPI_Isend.3
+openmpi/man/man3/MPI_Issend.3
+openmpi/man/man3/MPI_Is_thread_main.3
+openmpi/man/man3/MPI_Keyval_create.3
+openmpi/man/man3/MPI_Keyval_free.3
+openmpi/man/man3/MPI_Lookup_name.3
+openmpi/man/man3/MPI_Op_c2f.3
+openmpi/man/man3/MPI_Op_create.3
+openmpi/man/man3/MPI_Open_port.3
+openmpi/man/man3/MPI_Op_f2c.3
+openmpi/man/man3/MPI_Op_free.3
+openmpi/man/man3/MPI_Pack.3
+openmpi/man/man3/MPI_Pack_external.3
+openmpi/man/man3/MPI_Pack_external_size.3
+openmpi/man/man3/MPI_Pack_size.3
+openmpi/man/man3/MPI_Pcontrol.3
+openmpi/man/man3/MPI_Probe.3
+openmpi/man/man3/MPI_Publish_name.3
+openmpi/man/man3/MPI_Put.3
+openmpi/man/man3/MPI_Query_thread.3
+openmpi/man/man3/MPI_Recv.3
+openmpi/man/man3/MPI_Recv_init.3
+openmpi/man/man3/MPI_Reduce.3
+openmpi/man/man3/MPI_Reduce_local.3
+openmpi/man/man3/MPI_Reduce_scatter.3
+openmpi/man/man3/MPI_Register_datarep.3
+openmpi/man/man3/MPI_Request_c2f.3
+openmpi/man/man3/MPI_Request_f2c.3
+openmpi/man/man3/MPI_Request_free.3
+openmpi/man/man3/MPI_Request_get_status.3
+openmpi/man/man3/MPI_Rsend.3
+openmpi/man/man3/MPI_Rsend_init.3
+openmpi/man/man3/MPI_Scan.3
+openmpi/man/man3/MPI_Scatter.3
+openmpi/man/man3/MPI_Scatterv.3
+openmpi/man/man3/MPI_Send.3
+openmpi/man/man3/MPI_Send_init.3
+openmpi/man/man3/MPI_Sendrecv.3
+openmpi/man/man3/MPI_Sendrecv_replace.3
+openmpi/man/man3/MPI_Sizeof.3
+openmpi/man/man3/MPI_Ssend.3
+openmpi/man/man3/MPI_Ssend_init.3
+openmpi/man/man3/MPI_Start.3
+openmpi/man/man3/MPI_Startall.3
+openmpi/man/man3/MPI_Status_c2f.3
+openmpi/man/man3/MPI_Status_f2c.3
+openmpi/man/man3/MPI_Status_set_cancelled.3
+openmpi/man/man3/MPI_Status_set_elements.3
+openmpi/man/man3/MPI_Test.3
+openmpi/man/man3/MPI_Testall.3
+openmpi/man/man3/MPI_Testany.3
+openmpi/man/man3/MPI_Test_cancelled.3
+openmpi/man/man3/MPI_Testsome.3
+openmpi/man/man3/MPI_Topo_test.3
+openmpi/man/man3/MPI_Type_c2f.3
+openmpi/man/man3/MPI_Type_commit.3
+openmpi/man/man3/MPI_Type_contiguous.3
+openmpi/man/man3/MPI_Type_create_darray.3
+openmpi/man/man3/MPI_Type_create_f90_complex.3
+openmpi/man/man3/MPI_Type_create_f90_integer.3
+openmpi/man/man3/MPI_Type_create_f90_real.3
+openmpi/man/man3/MPI_Type_create_hindexed.3
+openmpi/man/man3/MPI_Type_create_hvector.3
+openmpi/man/man3/MPI_Type_create_indexed_block.3
+openmpi/man/man3/MPI_Type_create_keyval.3
+openmpi/man/man3/MPI_Type_create_resized.3
+openmpi/man/man3/MPI_Type_create_struct.3
+openmpi/man/man3/MPI_Type_create_subarray.3
+openmpi/man/man3/MPI_Type_delete_attr.3
+openmpi/man/man3/MPI_Type_dup.3
+openmpi/man/man3/MPI_Type_extent.3
+openmpi/man/man3/MPI_Type_f2c.3
+openmpi/man/man3/MPI_Type_free.3
+openmpi/man/man3/MPI_Type_free_keyval.3
+openmpi/man/man3/MPI_Type_get_attr.3
+openmpi/man/man3/MPI_Type_get_contents.3
+openmpi/man/man3/MPI_Type_get_envelope.3
+openmpi/man/man3/MPI_Type_get_extent.3
+openmpi/man/man3/MPI_Type_get_name.3
+openmpi/man/man3/MPI_Type_get_true_extent.3
+openmpi/man/man3/MPI_Type_hindexed.3
+openmpi/man/man3/MPI_Type_hvector.3
+openmpi/man/man3/MPI_Type_indexed.3
+openmpi/man/man3/MPI_Type_lb.3
+openmpi/man/man3/MPI_Type_match_size.3
+openmpi/man/man3/MPI_Type_set_attr.3
+openmpi/man/man3/MPI_Type_set_name.3
+openmpi/man/man3/MPI_Type_size.3
+openmpi/man/man3/MPI_Type_struct.3
+openmpi/man/man3/MPI_Type_ub.3
+openmpi/man/man3/MPI_Type_vector.3
+openmpi/man/man3/MPI_Unpack.3
+openmpi/man/man3/MPI_Unpack_external.3
+openmpi/man/man3/MPI_Unpublish_name.3
+openmpi/man/man3/MPI_Wait.3
+openmpi/man/man3/MPI_Waitall.3
+openmpi/man/man3/MPI_Waitany.3
+openmpi/man/man3/MPI_Waitsome.3
+openmpi/man/man3/MPI_Win_c2f.3
+openmpi/man/man3/MPI_Win_call_errhandler.3
+openmpi/man/man3/MPI_Win_complete.3
+openmpi/man/man3/MPI_Win_create.3
+openmpi/man/man3/MPI_Win_create_errhandler.3
+openmpi/man/man3/MPI_Win_create_keyval.3
+openmpi/man/man3/MPI_Win_delete_attr.3
+openmpi/man/man3/MPI_Win_f2c.3
+openmpi/man/man3/MPI_Win_fence.3
+openmpi/man/man3/MPI_Win_free.3
+openmpi/man/man3/MPI_Win_free_keyval.3
+openmpi/man/man3/MPI_Win_get_attr.3
+openmpi/man/man3/MPI_Win_get_errhandler.3
+openmpi/man/man3/MPI_Win_get_group.3
+openmpi/man/man3/MPI_Win_get_name.3
+openmpi/man/man3/MPI_Win_lock.3
+openmpi/man/man3/MPI_Win_post.3
+openmpi/man/man3/MPI_Win_set_attr.3
+openmpi/man/man3/MPI_Win_set_errhandler.3
+openmpi/man/man3/MPI_Win_set_name.3
+openmpi/man/man3/MPI_Win_start.3
+openmpi/man/man3/MPI_Win_test.3
+openmpi/man/man3/MPI_Win_unlock.3
+openmpi/man/man3/MPI_Win_wait.3
+openmpi/man/man3/MPI_Wtick.3
+openmpi/man/man3/MPI_Wtime.3
+openmpi/man/man3/OpenMPI.3
+openmpi/man/man7/ompi_crcp.7
+openmpi/man/man7/opal_crs.7
+openmpi/man/man7/orte_filem.7
+openmpi/man/man7/orte_hosts.7
+openmpi/man/man7/orte_snapc.7
+openmpi/share/openmpi/amca-param-sets/example.conf
+openmpi/share/openmpi/doc/COPYRIGHT-ptmalloc2.txt
+openmpi/share/openmpi/examples/openmpi-default-hostfile
+openmpi/share/openmpi/examples/openmpi-mca-params.conf
+openmpi/share/openmpi/examples/openmpi-totalview.tcl
+openmpi/share/openmpi/help-coll-sync.txt
+openmpi/share/openmpi/help-dash-host.txt
+openmpi/share/openmpi/help-ess-base.txt
+openmpi/share/openmpi/help-hostfile.txt
+openmpi/share/openmpi/help-mca-base.txt
+openmpi/share/openmpi/help-mca-bml-r2.txt
+openmpi/share/openmpi/help-mca-coll-base.txt
+openmpi/share/openmpi/help-mca-op-base.txt
+openmpi/share/openmpi/help-mca-param.txt
+openmpi/share/openmpi/help-mpi-api.txt
+openmpi/share/openmpi/help-mpi-btl-base.txt
+openmpi/share/openmpi/help-mpi-btl-sm.txt
+openmpi/share/openmpi/help-mpi-btl-tcp.txt
+openmpi/share/openmpi/help-mpi-coll-sm.txt
+openmpi/share/openmpi/help-mpi-common-sm.txt
+openmpi/share/openmpi/help-mpi-errors.txt
+openmpi/share/openmpi/help-mpi-pml-bfo.txt
+openmpi/share/openmpi/help-mpi-pml-csum.txt
+openmpi/share/openmpi/help-mpi-pml-ob1.txt
+openmpi/share/openmpi/help-mpi-runtime.txt
+openmpi/share/openmpi/help-mpool-base.txt
+openmpi/share/openmpi/help-odls-default.txt
+openmpi/share/openmpi/help-ompi-crcp-base.txt
+openmpi/share/openmpi/help-ompi-dpm-base.txt
+openmpi/share/openmpi/help-ompi-dpm-orte.txt
+openmpi/share/openmpi/help-ompi_info.txt
+openmpi/share/openmpi/help-ompi-probe.txt
+openmpi/share/openmpi/help-ompi-profiler.txt
+openmpi/share/openmpi/help-ompi-pubsub-orte.txt
+openmpi/share/openmpi/help-ompi-server.txt
+openmpi/share/openmpi/help-oob-tcp.txt
+openmpi/share/openmpi/help-opal-carto-file.txt
+openmpi/share/openmpi/help-opal-crs-base.txt
+openmpi/share/openmpi/help-opal-crs-none.txt
+openmpi/share/openmpi/help-opal-maffinity-hwloc.txt
+openmpi/share/openmpi/help-opal-memory-linux.txt
+openmpi/share/openmpi/help-opal-runtime.txt
+openmpi/share/openmpi/help-opal-shmem-mmap.txt
+openmpi/share/openmpi/help-opal-shmem-posix.txt
+openmpi/share/openmpi/help-opal-shmem-sysv.txt
+openmpi/share/openmpi/help-opal-util.txt
+openmpi/share/openmpi/help-opal-wrapper.txt
+openmpi/share/openmpi/help-orte-clean.txt
+openmpi/share/openmpi/help-orted.txt
+openmpi/share/openmpi/help-orte-filem-base.txt
+openmpi/share/openmpi/help-orte-filem-rsh.txt
+openmpi/share/openmpi/help-orte-iof.txt
+openmpi/share/openmpi/help-orte-notifier-command.txt
+openmpi/share/openmpi/help-orte-odls-base.txt
+openmpi/share/openmpi/help-orte-ps.txt
+openmpi/share/openmpi/help-orte-rmaps-base.txt
+openmpi/share/openmpi/help-orte-rmaps-lb.txt
+openmpi/share/openmpi/help-orte-rmaps-resilient.txt
+openmpi/share/openmpi/help-orte-rmaps-rr.txt
+openmpi/share/openmpi/help-orte-rmaps-seq.txt
+openmpi/share/openmpi/help-orte-rmaps-topo.txt
+openmpi/share/openmpi/help-orte-runtime.txt
+openmpi/share/openmpi/help-orterun.txt
+openmpi/share/openmpi/help-orte-snapc-base.txt
+openmpi/share/openmpi/help-orte-top.txt
+openmpi/share/openmpi/help-plm-base.txt
+openmpi/share/openmpi/help-plm-rsh.txt
+openmpi/share/openmpi/help-plm-slurm.txt
+openmpi/share/openmpi/help-ras-base.txt
+openmpi/share/openmpi/help-ras-slurm.txt
+openmpi/share/openmpi/help-regex.txt
+openmpi/share/openmpi/help-rmaps_rank_file.txt
+openmpi/share/openmpi/mpicc-wrapper-data.txt
+openmpi/share/openmpi/mpiCC-wrapper-data.txt
+openmpi/share/openmpi/mpic++-wrapper-data.txt
+openmpi/share/openmpi/mpicxx-wrapper-data.txt
+openmpi/share/openmpi/mpif77-wrapper-data.txt
+openmpi/share/openmpi/mpif90-wrapper-data.txt
+openmpi/share/openmpi/openmpi-valgrind.supp
+openmpi/share/openmpi/ortecc-wrapper-data.txt
+openmpi/share/openmpi/orteCC-wrapper-data.txt
+openmpi/share/openmpi/ortec++-wrapper-data.txt
diff --git a/openmpi163/buildlink3.mk b/openmpi163/buildlink3.mk
index 540beaf..4a70f52 100644
--- a/openmpi163/buildlink3.mk
+++ b/openmpi163/buildlink3.mk
@@ -7,6 +7,8 @@ OPENMPI_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.openmpi+=	openmpi>=1.5.1
 BUILDLINK_PKGSRCDIR.openmpi?=	../../wip/openmpi163
+BUILDLINK_PASSTHRU_DIRS+=	${PREFIX}/openmpi/lib
+BUILDLINK_PASSTHRU_RPATHDIRS+=	${PREFIX}/openmpi/lib
 
 .include "../../parallel/hwloc/buildlink3.mk"
 .endif # OPENMPI_BUILDLINK3_MK


Home | Main Index | Thread Index | Old Index