Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions config/ompi_configure_options.m4
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,18 @@ AC_DEFINE_UNQUOTED(MPI_PARAM_CHECK, $mpi_param_check,
AC_DEFINE_UNQUOTED(OMPI_PARAM_CHECK, $ompi_param_check,
[Whether we want to check MPI parameters never or possible (an integer constant)])

AC_MSG_CHECKING([if want ompio support])
AC_ARG_ENABLE([io-ompio],
[AS_HELP_STRING([--disable-io-ompio],
[Disable the ompio MPI-IO component])])
if test "$enable_io_ompio" = "no" ; then
AC_MSG_RESULT([no])
ompi_want_ompio=0
else
AC_MSG_RESULT([yes])
ompi_want_ompio=1
fi
AM_CONDITIONAL(OMPI_OMPIO_SUPPORT, test "$ompi_want_ompio" = "1")

])dnl

8 changes: 6 additions & 2 deletions ompi/mca/fbtl/base/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ headers += \

libmca_fbtl_la_SOURCES += \
base/fbtl_base_frame.c \
base/fbtl_base_file_select.c \
base/fbtl_base_file_unselect.c \
base/fbtl_base_find_available.c

if OMPI_OMPIO_SUPPORT
libmca_fbtl_la_SOURCES += \
base/fbtl_base_file_select.c \
base/fbtl_base_file_unselect.c
endif
6 changes: 5 additions & 1 deletion ompi/mca/fcoll/base/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ headers += \

libmca_fcoll_la_SOURCES += \
base/fcoll_base_frame.c \
base/fcoll_base_find_available.c

if OMPI_OMPIO_SUPPORT
libmca_fcoll_la_SOURCES += \
base/fcoll_base_file_select.c \
base/fcoll_base_file_unselect.c \
base/fcoll_base_find_available.c \
base/fcoll_base_sort.c \
base/fcoll_base_file_read_all.c \
base/fcoll_base_coll_array.c
endif
6 changes: 5 additions & 1 deletion ompi/mca/fs/base/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ headers += \

libmca_fs_la_SOURCES += \
base/fs_base_frame.c \
base/fs_base_find_available.c

if OMPI_OMPIO_SUPPORT
libmca_fs_la_SOURCES += \
base/fs_base_file_select.c \
base/fs_base_file_unselect.c \
base/fs_base_find_available.c \
base/fs_base_get_parent_dir.c \
base/fs_base_file_close.c \
base/fs_base_file_sync.c \
base/fs_base_file_delete.c \
base/fs_base_file_set_size.c \
base/fs_base_file_get_size.c
endif
10 changes: 7 additions & 3 deletions ompi/mca/sharedfp/base/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@
headers += \
base/base.h

libmca_sharedfp_la_SOURCES += \
base/sharedfp_base_frame.c \
base/sharedfp_base_find_available.c

if OMPI_OMPIO_SUPPORT
libmca_sharedfp_la_SOURCES += \
base/sharedfp_base_file_select.c \
base/sharedfp_base_file_unselect.c \
base/sharedfp_base_find_available.c \
base/sharedfp_base_frame.c
base/sharedfp_base_file_unselect.c
endif