1
1

Added field for VampirTrace support indicating whether it's enabled or not

This commit was SVN r25805.
Этот коммит содержится в:
Matthias Jurenz 2012-01-27 14:11:33 +00:00
родитель 085e3dc470
Коммит d2e180ffa0

Просмотреть файл

@ -517,6 +517,7 @@ void ompi_info_do_config(bool want_all)
char *ft_support; char *ft_support;
char *crdebug_support; char *crdebug_support;
char *topology_support; char *topology_support;
char *vt_support;
/* Do a little preprocessor trickery here to figure ompi_info_out the /* Do a little preprocessor trickery here to figure ompi_info_out the
* tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or * tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or
* ompi_mpi_param_check). The preprocessor will only allow * ompi_mpi_param_check). The preprocessor will only allow
@ -562,6 +563,7 @@ void ompi_info_do_config(bool want_all)
wtime_support = OPAL_TIMER_USEC_NATIVE ? "native" : "gettimeofday"; wtime_support = OPAL_TIMER_USEC_NATIVE ? "native" : "gettimeofday";
symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no"; symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no";
topology_support = OPAL_HAVE_HWLOC ? "yes" : "no"; topology_support = OPAL_HAVE_HWLOC ? "yes" : "no";
vt_support = OMPI_ENABLE_CONTRIB_vt ? "yes" : "no";
/* setup strings that require allocation */ /* setup strings that require allocation */
if (OMPI_WANT_F77_BINDINGS) { if (OMPI_WANT_F77_BINDINGS) {
@ -845,6 +847,8 @@ void ompi_info_do_config(bool want_all)
ompi_info_out("C/R Enabled Debugging", "options:crdebug_support", crdebug_support); ompi_info_out("C/R Enabled Debugging", "options:crdebug_support", crdebug_support);
free(crdebug_support); free(crdebug_support);
ompi_info_out("VampirTrace support", "options:vt", vt_support);
ompi_info_out_int("MPI_MAX_PROCESSOR_NAME", "options:mpi-max-processor-name", ompi_info_out_int("MPI_MAX_PROCESSOR_NAME", "options:mpi-max-processor-name",
MPI_MAX_PROCESSOR_NAME); MPI_MAX_PROCESSOR_NAME);
ompi_info_out_int("MPI_MAX_ERROR_STRING", "options:mpi-max-error-string", ompi_info_out_int("MPI_MAX_ERROR_STRING", "options:mpi-max-error-string",