Skip to content

Commit

Permalink
*-info: add "lt_dladvise support" lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jsquyres committed Jan 31, 2015
1 parent 13e8c3f commit 3b74600
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion ompi/tools/ompi_info/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2014 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2007-2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
* Copyright (c) 2014-2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
Expand Down Expand Up @@ -119,6 +119,7 @@ void ompi_info_do_config(bool want_all)
char *cxxexceptions;
char *threads;
char *want_libltdl;
char *have_ltdl_advise;
#if OMPI_RTE_ORTE
char *mpirun_prefix_by_default;
#endif
Expand Down Expand Up @@ -255,6 +256,7 @@ void ompi_info_do_config(bool want_all)
fortran_usempi_profiling = (OMPI_ENABLE_MPI_PROFILING && OMPI_BUILD_FORTRAN_USEMPI_BINDINGS) ? "yes" : "no";
fortran_usempif08_profiling = (OMPI_ENABLE_MPI_PROFILING && OMPI_BUILD_FORTRAN_USEMPIF08_BINDINGS) ? "yes" : "no";
want_libltdl = OPAL_WANT_LIBLTDL ? "yes" : "no";
have_ltdl_advise = OPAL_HAVE_LTDL_ADVISE ? "yes" : "no";
#if OMPI_RTE_ORTE
mpirun_prefix_by_default = ORTE_WANT_ORTERUN_PREFIX_BY_DEFAULT ? "yes" : "no";
#endif
Expand Down Expand Up @@ -618,6 +620,7 @@ void ompi_info_do_config(bool want_all)
opal_info_out("Memory profiling support", "option:mem-profile", memprofile);
opal_info_out("Memory debugging support", "option:mem-debug", memdebug);
opal_info_out("libltdl support", "option:dlopen", want_libltdl);
opal_info_out("lt_dladvise support", "option:lt_dladvise", have_ltdl_advise);
opal_info_out("Heterogeneous support", "options:heterogeneous", heterogeneous);
#if OMPI_RTE_ORTE
opal_info_out("mpirun default --prefix", "mpirun:prefix_by_default",
Expand Down
5 changes: 4 additions & 1 deletion orte/tools/orte-info/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2011 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2007-2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
Expand Down Expand Up @@ -340,6 +340,7 @@ void orte_info_do_config(bool want_all)
char *debug;
char *threads;
char *want_libltdl;
char *have_ltdl_advise;
char *orterun_prefix_by_default;
char *wtime_support;
char *symbol_visibility;
Expand All @@ -351,6 +352,7 @@ void orte_info_do_config(bool want_all)
memdebug = OPAL_ENABLE_MEM_DEBUG ? "yes" : "no";
debug = OPAL_ENABLE_DEBUG ? "yes" : "no";
want_libltdl = OPAL_WANT_LIBLTDL ? "yes" : "no";
have_ltdl_advise = OPAL_HAVE_LTDL_ADVISE ? "yes" : "no";
orterun_prefix_by_default = ORTE_WANT_ORTERUN_PREFIX_BY_DEFAULT ? "yes" : "no";
wtime_support = OPAL_TIMER_USEC_NATIVE ? "native" : "gettimeofday";
symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no";
Expand Down Expand Up @@ -422,6 +424,7 @@ void orte_info_do_config(bool want_all)
orte_info_out("Memory profiling support", "option:mem-profile", memprofile);
orte_info_out("Memory debugging support", "option:mem-debug", memdebug);
orte_info_out("libltdl support", "option:dlopen", want_libltdl);
orte_info_out("lt_dladvise support", "option:lt_dladvise", have_ltdl_advise);
orte_info_out("Heterogeneous support", "options:heterogeneous", heterogeneous);
orte_info_out("orterun default --prefix", "orterun:prefix_by_default",
orterun_prefix_by_default);
Expand Down
5 changes: 4 additions & 1 deletion oshmem/tools/oshmem_info/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) 2013 Mellanox Technologies, Inc.
* All rights reserved.
*
* Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2014-2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2014 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
Expand Down Expand Up @@ -109,6 +109,7 @@ void oshmem_info_do_config(bool want_all)
char *cxxexceptions;
char *threads;
char *want_libltdl;
char *have_ltdl_advise;
#if OMPI_RTE_ORTE
char *mpirun_prefix_by_default;
#endif
Expand Down Expand Up @@ -230,6 +231,7 @@ void oshmem_info_do_config(bool want_all)
fortran_usempi_profiling = (OMPI_ENABLE_MPI_PROFILING && OMPI_BUILD_FORTRAN_USEMPI_BINDINGS) ? "yes" : "no";
fortran_usempif08_profiling = (OMPI_ENABLE_MPI_PROFILING && OMPI_BUILD_FORTRAN_USEMPIF08_BINDINGS) ? "yes" : "no";
want_libltdl = OPAL_WANT_LIBLTDL ? "yes" : "no";
have_ltdl_advise = OPAL_HAVE_LTDL_ADVISE ? "yes" : "no";
#if OMPI_RTE_ORTE
mpirun_prefix_by_default = ORTE_WANT_ORTERUN_PREFIX_BY_DEFAULT ? "yes" : "no";
#endif
Expand Down Expand Up @@ -566,6 +568,7 @@ void oshmem_info_do_config(bool want_all)
opal_info_out("Memory profiling support", "option:mem-profile", memprofile);
opal_info_out("Memory debugging support", "option:mem-debug", memdebug);
opal_info_out("libltdl support", "option:dlopen", want_libltdl);
opal_info_out("lt_dladvise support", "option:lt_dladvise", have_ltdl_advise);
opal_info_out("Heterogeneous support", "options:heterogeneous", heterogeneous);
#if OMPI_RTE_ORTE
opal_info_out("mpirun default --prefix", "mpirun:prefix_by_default",
Expand Down

0 comments on commit 3b74600

Please sign in to comment.