-
Notifications
You must be signed in to change notification settings - Fork 41
/
adios_config.flags.makesrc.in
executable file
·45 lines (36 loc) · 2.58 KB
/
adios_config.flags.makesrc.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Configuration values generated by configure and then make
#
# strings @xxx@ are replaced by configure
# strings %yyy% are replaced by make
# Source directory
SRCDIR="%srcdir%"
BUILDDIR="%builddir%"
# Install directory
ADIOS_DIR="%prefix%"
# Flags to build code using ADIOS write API (and read API)
ADIOS_INC="-I%includedir% @ADIOSLIB_CPPFLAGS@ @ADIOSLIB_CFLAGS@"
ADIOS_CLIB="-L%libdir% -ladios @ADIOSLIB_LDFLAGS@ @ADIOSLIB_LDADD@ @LDFLAGS@ @LIBS@"
ADIOS_FLIB="-L%libdir% -ladiosf @ADIOSLIB_LDFLAGS@ @ADIOSLIB_LDADD@ @LDFLAGS@ @LIBS@"
ADIOS_V1_FLIB="-L%libdir% -ladiosf_v1 @ADIOSLIB_LDFLAGS@ @ADIOSLIB_LDADD@ @LDFLAGS@ @LIBS@"
# Flags to build code using ADIOS read API only
ADIOSREAD_INC="-I%includedir% @ADIOSREADLIB_CPPFLAGS@ @ADIOSREADLIB_CFLAGS@"
ADIOSREAD_V1_INC="-I%includedir% @MACRODEFFLAG@ADIOS_USE_READ_API_1 @ADIOSREADLIB_CPPFLAGS@ @ADIOSREADLIB_CFLAGS@"
ADIOSREAD_CLIB="-L%libdir% -ladiosread @ADIOSREADLIB_LDFLAGS@ @ADIOSREADLIB_LDADD@ @LDFLAGS@ @LIBS@"
ADIOSREAD_FLIB="-L%libdir% -ladiosreadf @ADIOSREADLIB_LDFLAGS@ @ADIOSREADLIB_LDADD@ @LDFLAGS@ @LIBS@"
ADIOSREAD_V1_FLIB="-L%libdir% -ladiosreadf_v1 @ADIOSREADLIB_LDFLAGS@ @ADIOSREADLIB_LDADD@ @LDFLAGS@ @LIBS@"
# Flags to build code using ADIOS read API only in a sequential code (no MPI)
ADIOSREAD_SEQ_INC="-I%includedir% @ADIOSREADLIB_SEQ_CPPFLAGS@ @ADIOSREADLIB_SEQ_CFLAGS@"
ADIOSREAD_SEQ_V1_INC="-I%includedir% @MACRODEFFLAG@ADIOS_USE_READ_API_1 @ADIOSREADLIB_SEQ_CPPFLAGS@ @ADIOSREADLIB_SEQ_CFLAGS@"
ADIOSREAD_SEQ_CLIB="-L%libdir% -ladiosread_nompi @ADIOSREADLIB_SEQ_LDFLAGS@ @ADIOSREADLIB_SEQ_LDADD@ @LDFLAGS@ @LIBS@"
ADIOSREAD_SEQ_FLIB="-L%libdir% -ladiosreadf_nompi @ADIOSREADLIB_SEQ_LDFLAGS@ @ADIOSREADLIB_SEQ_LDADD@ @LDFLAGS@ @LIBS@"
ADIOSREAD_SEQ_V1_FLIB="-L%libdir% -ladiosreadf_nompi_v1 @ADIOSREADLIB_SEQ_LDFLAGS@ @ADIOSREADLIB_SEQ_LDADD@ @LDFLAGS@ @LIBS@"
#Flags to build code using ADIOS write API in a sequential code (no MPI)
ADIOS_SEQ_INC="-I%includedir% @ADIOSLIB_SEQ_CPPFLAGS@ @ADIOSLIB_SEQ_CFLAGS@"
ADIOS_SEQ_CLIB="-L%libdir% -ladios_nompi @ADIOSLIB_SEQ_LDFLAGS@ @ADIOSLIB_SEQ_LDADD@ @LDFLAGS@ @LIBS@"
ADIOS_SEQ_FLIB="-L%libdir% -ladiosf_nompi @ADIOSLIB_SEQ_LDFLAGS@ @ADIOSLIB_SEQ_LDADD@ @LDFLAGS@ @LIBS@"
ADIOS_SEQ_V1_FLIB="-L%libdir% -ladiosf_nompi_v1 @ADIOSLIB_SEQ_LDFLAGS@ @ADIOSLIB_SEQ_LDADD@ @LDFLAGS@ @LIBS@"
#The following flags are not used. It is only for internal utilities of ADIOS, using libadios_internal_nompi.a
ADIOS_INT_INC="-I%includedir% @ADIOSLIB_INT_CPPFLAGS@ @ADIOSLIB_INT_CFLAGS@"
ADIOS_INT_CLIB="-L%libdir% -ladios_internal_nompi @ADIOSLIB_INT_LDFLAGS@ @ADIOSLIB_INT_LDADD@ @LDFLAGS@ @LIBS@"
VERSIONSTRING="@VERSION@"