|
16 | 16 | * Copyright (c) 2015 Intel, Inc. All rights reserved |
17 | 17 | * Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved. |
18 | 18 | * Copyright (c) 2018 FUJITSU LIMITED. All rights reserved. |
| 19 | + * Copyright (c) 2019 Triad National Security, LLC. All rights reserved. |
19 | 20 | * $COPYRIGHT$ |
20 | 21 | * |
21 | 22 | * Additional copyrights may follow |
@@ -134,6 +135,7 @@ void ompi_info_do_config(bool want_all) |
134 | 135 | char *crdebug_support; |
135 | 136 | char *topology_support; |
136 | 137 | char *ipv6_support; |
| 138 | + char *mpi1_compat_support; |
137 | 139 |
|
138 | 140 | /* Do a little preprocessor trickery here to figure opal_info_out the |
139 | 141 | * tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or |
@@ -287,6 +289,10 @@ void ompi_info_do_config(bool want_all) |
287 | 289 | symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no"; |
288 | 290 | topology_support = "yes"; |
289 | 291 | ipv6_support = OPAL_ENABLE_IPV6 ? "yes" : "no"; |
| 292 | + /* |
| 293 | + * hardwire to no since we don't have MPI1 compat post v4.0.x |
| 294 | + */ |
| 295 | + mpi1_compat_support = "no"; |
290 | 296 |
|
291 | 297 | /* setup strings that require allocation */ |
292 | 298 | if (OMPI_BUILD_FORTRAN_BINDINGS >= OMPI_FORTRAN_MPIFH_BINDINGS) { |
@@ -669,6 +675,8 @@ void ompi_info_do_config(bool want_all) |
669 | 675 | opal_info_out("Host topology support", "options:host-topology", |
670 | 676 | topology_support); |
671 | 677 | opal_info_out("IPv6 support", "options:ipv6", ipv6_support); |
| 678 | + opal_info_out("MPI1 compatibility", "options:mpi1-compatibility", |
| 679 | + mpi1_compat_support); |
672 | 680 |
|
673 | 681 | opal_info_out("MPI extensions", "options:mpi_ext", OMPI_MPIEXT_COMPONENTS); |
674 | 682 |
|
|
0 commit comments