From 4395d440dc6fa30055408083b88a841a87e8e8fe Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 22 Dec 2005 13:50:15 +0000 Subject: [PATCH] Apparently we have not been following the new prefix rule in the OMPI layer -- public symbols in components should begin with ompi_ (vs. mca_). This commit was SVN r8590. --- contrib/nightly/illegal_symbols_report.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/nightly/illegal_symbols_report.pl b/contrib/nightly/illegal_symbols_report.pl index b7221fb5e0..94166d9fa2 100755 --- a/contrib/nightly/illegal_symbols_report.pl +++ b/contrib/nightly/illegal_symbols_report.pl @@ -39,7 +39,7 @@ my @lib_acceptable = ("ompi_" , "mpi_", "MPI_", "OMPI_", "MPI::", "PMPI_", "PMPI # Portland Group compiler adds a bunch of these "pghpf_", ); -my @comp_acceptable = ("mca_", "orte_", "opal_", +my @comp_acceptable = ("mca_", "ompi_", "orte_", "opal_", # The latest incarnation of ROMIO adds these "MPIO_", "MPIOI_", "ADIO_", "ADIOI_", "MPIU_", );