|
14 | 14 | * Copyright (c) 2014-2017 Research Organization for Information Science |
15 | 15 | * and Technology (RIST). All rights reserved. |
16 | 16 | * Copyright (c) 2015 Intel, Inc. All rights reserved |
| 17 | + * Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved. |
| 18 | + * Copyright (c) 2018 FUJITSU LIMITED. All rights reserved. |
| 19 | + * Copyright (c) 2019 Triad National Security, LLC. All rights reserved. |
17 | 20 | * $COPYRIGHT$ |
18 | 21 | * |
19 | 22 | * Additional copyrights may follow |
@@ -132,6 +135,7 @@ void ompi_info_do_config(bool want_all) |
132 | 135 | char *crdebug_support; |
133 | 136 | char *topology_support; |
134 | 137 | char *ipv6_support; |
| 138 | + char *mpi1_compat_support; |
135 | 139 |
|
136 | 140 | /* Do a little preprocessor trickery here to figure opal_info_out the |
137 | 141 | * tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or |
@@ -285,6 +289,7 @@ void ompi_info_do_config(bool want_all) |
285 | 289 | symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no"; |
286 | 290 | topology_support = "yes"; |
287 | 291 | ipv6_support = OPAL_ENABLE_IPV6 ? "yes" : "no"; |
| 292 | + mpi1_compat_support = OMPI_ENABLE_MPI1_COMPAT ? "yes" : "no"; |
288 | 293 |
|
289 | 294 | /* setup strings that require allocation */ |
290 | 295 | if (OMPI_BUILD_FORTRAN_BINDINGS >= OMPI_FORTRAN_MPIFH_BINDINGS) { |
@@ -643,6 +648,8 @@ void ompi_info_do_config(bool want_all) |
643 | 648 | opal_info_out("Host topology support", "options:host-topology", |
644 | 649 | topology_support); |
645 | 650 | opal_info_out("IPv6 support", "options:ipv6", ipv6_support); |
| 651 | + opal_info_out("MPI1 compatibility", "options:mpi1-compatibility", |
| 652 | + mpi1_compat_support); |
646 | 653 |
|
647 | 654 | opal_info_out("MPI extensions", "options:mpi_ext", OMPI_MPIEXT_COMPONENTS); |
648 | 655 |
|
|
0 commit comments