We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da4572 commit 1c63109Copy full SHA for 1c63109
ompi/mpi/c/Makefile_abi.include
@@ -39,13 +39,13 @@ endif
39
BUILT_SOURCES = abi.h standard_abi/mpi.h
40
41
libmpi_c_abi_la_SOURCES = \
42
- attr_fn.c
+ attr_fn.c \
43
+ ompi_isendrecv.c \
44
+ ompi_sendrecv.c
45
46
extra_abi_fns = \
47
abi_get_info.c \
48
abi_get_version.c \
- ompi_isendrecv.c \
- ompi_sendrecv.c \
49
pcontrol.c \
50
wtick.c
51
ompi/mpi/c/abi_get_version.c
@@ -21,6 +21,13 @@
21
#include "ompi/mpi/c/abi.h"
22
#endif
23
24
+#if OMPI_BUILD_MPI_PROFILING
25
+#if OPAL_HAVE_WEAK_SYMBOLS
26
+#pragma weak MPI_Abi_get_version = PMPI_Abi_get_version
27
+#endif
28
+#define MPI_Abi_get_version PMPI_Abi_get_version
29
30
+
31
int MPI_Abi_get_version(int *abi_major, int *abi_minor)
32
{
33
/* 0.1 */
0 commit comments