Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
ca5cff44
Commit
ca5cff44
authored
3 years ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
Better handling of librt (fixup
a6940e63
).
parent
e01be51f
No related branches found
No related tags found
No related merge requests found
Pipeline
#13267
failed
3 years ago
Stage: external
Changes
4
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
configure.ac
+6
-6
6 additions, 6 deletions
configure.ac
examples/pio/Makefile.am
+2
-2
2 additions, 2 deletions
examples/pio/Makefile.am
src/Makefile.am
+1
-1
1 addition, 1 deletion
src/Makefile.am
tests/Makefile.am
+2
-2
2 additions, 2 deletions
tests/Makefile.am
with
11 additions
and
11 deletions
configure.ac
+
6
−
6
View file @
ca5cff44
...
...
@@ -261,13 +261,13 @@ AM_CONDITIONAL([USE_PPM_CORE],[test $enable_ppm = yes])
AM_CONDITIONAL([HAVE_PARALLEL_NC4],[test $HAVE_PARALLEL_NC4 -gt 0])
AC_SUBST([USE_MPI])
AC_SUBST([ENABLE_MPI],[`test x"$enable_mpi" = xyes && echo true || echo false`])
AC_SUBST([LIBRT])
AC_SUBST([LIBRT]
, ['']
)
AM_COND_IF([USE_MPI],
[
LIBRT=
LIBS_save=$LIBS
AC_SEARCH_LIBS([aio_suspend], [rt],
[test "$ac_res" = "none required" || LIBRT=$ac_res])
LIBS=$LIBS_save])
[
AC_CHECK_DECL([_SX], [],
[
LIBS_save=$LIBS
AC_SEARCH_LIBS([aio_suspend], [rt],
[test "$ac_res" = "none required" || LIBRT=$ac_res])
LIBS=$LIBS_save])
])
# ----------------------------------------------------------------------
# Create the Fortran Interface via iso_c_binding module (Fortran 2003 Standard)
#
...
...
This diff is collapsed.
Click to expand it.
examples/pio/Makefile.am
+
2
−
2
View file @
ca5cff44
...
...
@@ -16,8 +16,8 @@ endif
collectData_SOURCES
=
collectData.c
if
USE_MPI
LDADD
=
$(
top_builddir
)
/src/libcdipio.la
$(
LIBRT
)
$(
MPI_C_LIB
)
collectData2003_LDADD
=
$(
top_builddir
)
/src/libcdipio.la
$(
LIBRT
)
$(
MPI_FC_LIB
)
LDADD
=
$(
top_builddir
)
/src/libcdipio.la
$(
MPI_C_LIB
)
collectData2003_LDADD
=
$(
top_builddir
)
/src/libcdipio.la
$(
MPI_FC_LIB
)
else
LDADD
=
$(
top_builddir
)
/src/libcdi.la
collectData2003_LDADD
=
$(
top_builddir
)
/src/libcdi.la
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
+
1
−
1
View file @
ca5cff44
...
...
@@ -255,7 +255,7 @@ libcdipio_la_SOURCES += $(libcdipio_la_HAVE_PARALLEL_NC4_extra_sources)
endif
endif
libcdipio_la_LIBADD
=
libcdi.la
$(
PPM_CORE_LIBS
)
$(
YAXT_LIBS
)
$(
MPI_C_LIB
)
libcdipio_la_LIBADD
=
libcdi.la
$(
LIBRT
)
$(
PPM_CORE_LIBS
)
$(
YAXT_LIBS
)
$(
MPI_C_LIB
)
#
#cdilib.c:
...
...
This diff is collapsed.
Click to expand it.
tests/Makefile.am
+
2
−
2
View file @
ca5cff44
...
...
@@ -47,8 +47,8 @@ test_byteswap_SOURCES = test_byteswap.c
#
AM_CFLAGS
=
$(
PPM_CORE_CFLAGS
)
$(
YAXT_CFLAGS
)
$(
MPI_C_INCLUDE
)
if
USE_MPI
pio_write_LDADD
=
../src/libcdipio.la
$(
LIBRT
)
$(
MPI_C_LIB
)
pio_write_deco2d_LDADD
=
../src/libcdipio.la
$(
LIBRT
)
$(
MPI_C_LIB
)
pio_write_LDADD
=
../src/libcdipio.la
$(
MPI_C_LIB
)
pio_write_deco2d_LDADD
=
../src/libcdipio.la
$(
MPI_C_LIB
)
TESTS
+=
test_resource_copy_mpi_run
check_PROGRAMS
+=
test_resource_copy_mpi
test_resource_copy_mpi_LDADD
=
../src/libcdipio.la
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment