Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
a6940e63
Commit
a6940e63
authored
Jul 02, 2019
by
Sergey Kosukhin
Browse files
Account for static-only build.
parent
2d92e247
Changes
4
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
a6940e63
...
...
@@ -246,6 +246,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])
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])
# ----------------------------------------------------------------------
# Create the Fortran Interface via iso_c_binding module (Fortran 2003 Standard)
#
...
...
examples/pio/Makefile.am
View file @
a6940e63
...
...
@@ -16,8 +16,8 @@ endif
collectData_SOURCES
=
collectData.c
if
USE_MPI
LDADD
=
$(top_builddir)
/src/libcdipio.la
$(MPI_C_LIB)
collectData2003_LDADD
=
$(top_builddir)
/src/libcdipio.la
$(MPI_FC_LIB)
LDADD
=
$(top_builddir)
/src/libcdipio.la
$(LIBRT)
$(MPI_C_LIB)
collectData2003_LDADD
=
$(top_builddir)
/src/libcdipio.la
$(LIBRT)
$(MPI_FC_LIB)
else
LDADD
=
$(top_builddir)
/src/libcdi.la
collectData2003_LDADD
=
$(top_builddir)
/src/libcdi.la
...
...
src/pkgconfig/cdipio.pc.in
View file @
a6940e63
...
...
@@ -4,7 +4,7 @@ libdir=@libdir@
includedir=@includedir@
cflags=-I@includedir@
fcflags=@FPP_INCOPT@@includedir@ @CDI_F90_INTERFACE_FCFLAGS@
libs=-L@libdir@ -lcdipio @PPM_CORE_LIBS@ @YAXT_LIBS@ -lcdi @GRIB_API_LIBS@ @NETCDF_LIBS@ @SZLIB_LIBS@ @THREADS_LIBS@ @LIBS@
libs=-L@libdir@ -lcdipio
@LIBRT@
@PPM_CORE_LIBS@ @YAXT_LIBS@ -lcdi @GRIB_API_LIBS@ @NETCDF_LIBS@ @SZLIB_LIBS@ @THREADS_LIBS@ @LIBS@
threads_libs=@THREADS_LIBS@
threads_cflags=@THREADS_INCLUDE@
szlib_cflags=@SZLIB_INCLUDE@
...
...
@@ -14,7 +14,7 @@ netcdf_cflags=@NETCDF_INCLUDE@
netcdf_libs=@NETCDF_LIBS@
grib_api_cflags=@GRIB_API_INCLUDE@
grib_api_libs=@GRIB_API_LIBS@
aux_libs=@LIBS@
aux_libs=
@LIBRT@
@LIBS@
cdipio_build_cc=@CC@
cdipio_build_cflags=@CFLAGS@
cdipio_build_cppflags=@CPPFLAGS@
...
...
tests/Makefile.am
View file @
a6940e63
...
...
@@ -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
$(MPI_C_LIB)
pio_write_deco2d_LDADD
=
../src/libcdipio.la
$(MPI_C_LIB)
pio_write_LDADD
=
../src/libcdipio.la
$(LIBRT)
$(MPI_C_LIB)
pio_write_deco2d_LDADD
=
../src/libcdipio.la
$(LIBRT)
$(MPI_C_LIB)
TESTS
+=
test_resource_copy_mpi_run
check_PROGRAMS
+=
test_resource_copy_mpi
test_resource_copy_mpi_LDADD
=
../src/libcdipio.la
...
...
Sergey Kosukhin
@m300488
mentioned in commit
ca5cff44
·
Dec 15, 2021
mentioned in commit
ca5cff44
mentioned in commit ca5cff44a0c06f68b1ee5fdac340cd3d6f757272
Toggle commit list
Sergey Kosukhin
@m300488
mentioned in commit
1490dde4
·
Dec 15, 2021
mentioned in commit
1490dde4
mentioned in commit 1490dde4487d686b30d72efd4518ae3582853f6e
Toggle commit list
Sergey Kosukhin
@m300488
mentioned in commit
4e2c8aac
·
Jan 19, 2022
mentioned in commit
4e2c8aac
mentioned in commit 4e2c8aac8d02bb9e2c80f22ae944df3e105be16c
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment