-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
311 lines (311 loc) · 12.2 KB
/
configure.ac
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
dnl
dnl This is the Autoconf file for the HARP
dnl
dnl +------------------------
dnl | Initialize package info
dnl +------------------------
AC_INIT([HARP], [1.0.5], [work@theodorekisner.com], [harp], [https://theodorekisner.com/software/harp/])
AC_CONFIG_SRCDIR([Makefile.am])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([m4])
dnl +-------------------------
dnl | If the library source code has changed at all since the last update,
dnl | then increment revision (c:r:a becomes c:r+1:a). If any interfaces
dnl | have been added, removed, or changed since the last update, increment
dnl | current, and set revision to 0. If any interfaces have been added
dnl | since the last public release, then increment age. If any interfaces
dnl | have been removed since the last public release, then set age to 0.
dnl +-------------------------
HARP_LT_VERSION="0:1:0"
AC_SUBST(HARP_LT_VERSION)
dnl +----------------------------------------
dnl | Check OS. Basically on Darwin we have to jump through hoops
dnl | to build loadable modules...
dnl +----------------------------------------
AC_CANONICAL_HOST
HARP_PLUGIN_COMPILE=""
HARP_PLUGIN_LINK=""
case $host_os in
darwin* )
HARP_PLUGIN_COMPILE="-bundle"
HARP_PLUGIN_LINK="-flat_namespace -undefined suppress"
HARP_PLUGIN_EXT="bundle"
HARP_SHLIB_EXT="dylib"
;;
linux*)
HARP_PLUGIN_COMPILE=""
HARP_PLUGIN_LINK="-shared"
HARP_PLUGIN_EXT="so"
HARP_SHLIB_EXT="so"
;;
*BSD*)
HARP_PLUGIN_COMPILE=""
HARP_PLUGIN_LINK="-shared"
HARP_PLUGIN_EXT="so"
HARP_SHLIB_EXT="so"
;;
*)
HARP_PLUGIN_COMPILE=""
HARP_PLUGIN_LINK="-shared"
HARP_PLUGIN_EXT="so"
HARP_SHLIB_EXT="so"
AC_MSG_WARN([Your platform was not detected- using Linux defaults for Plugin compilation])
;;
esac
dnl +----------------------------------------
dnl | Compiler features
dnl +----------------------------------------
dnl Set default optimization to '-O3' instead of the default '-g -O2'
if test x"${CXXFLAGS}" = x; then
CXXFLAGS="-O3"
fi
AC_CANONICAL_HOST
AC_PROG_INSTALL
LT_INIT
dnl LT_SYS_MODULE_EXT
dnl LT_FUNC_DLSYM_USCORE
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX_11([noext], [mandatory])
AC_PROG_CC
AC_LANG([C++])
AC_CHECK_HEADERS([iostream])
AC_CHECK_HEADERS([iomanip])
AC_CHECK_HEADERS([cmath])
AC_CHECK_HEADERS([cstdlib])
harp_openmp=yes
ax_have_openmp=no
AC_ARG_ENABLE(openmp, [AC_HELP_STRING([--disable-openmp], [Disable OpenMP])], [harp_openmp=$enable_openmp])
if test $harp_openmp = yes; then
AX_OPENMP([ax_have_openmp=yes;AC_DEFINE(HAVE_OPENMP,1,[Define if OpenMP is enabled])])
fi
AM_CONDITIONAL([HAVE_AM_OPENMP], [test $ax_have_openmp = yes])
AC_SUBST([OPENMP_CXXFLAGS])
dnl +-------------------------
dnl | Should we enable expensive debugging checks in Boost?
dnl +-------------------------
harp_debug=no
AC_ARG_ENABLE([debug], [AC_HELP_STRING([--enable-debug], [Enable expensive range checking in Boost])])
if test x"$enable_debug" = x"yes"; then
harp_debug=yes
fi
AM_CONDITIONAL([ENABLE_AM_DEBUG], [test "$harp_debug" = "yes"])
dnl +-------------------------
dnl | Option to perform full static linking of executables, not just
dnl | building of static libraries.
dnl +-------------------------
harp_static=no
harp_plugins=no
HARP_PLUGIN_SHARED="$lt_prog_compiler_pic"
AC_ARG_ENABLE([all-static], [AC_HELP_STRING([--enable-all-static], [force static linking of executables.])])
if test x"$enable_all_static" = x"yes"; then
if test x"$enable_static" != x"yes"; then
AC_MSG_ERROR([Cannot perform static linking of executables if static libraries are disabled!])
fi
harp_static=yes
fi
AM_CONDITIONAL([USE_AM_ALLSTATIC], [test "$harp_static" = "yes"])
if test x"$enable_shared" = x"yes"; then
if test $harp_static = no; then
harp_plugins=yes
AC_DEFINE([USE_PLUGINS], 1, [Enable support for external plugins])
else
AC_MSG_WARN([Executables are linked statically (--enable-all-static), so external Plugins are disabled])
HARP_PLUGIN_COMPILE=""
HARP_PLUGIN_SHARED=""
HARP_PLUGIN_LINK="-static"
HARP_PLUGIN_EXT="a"
fi
else
AC_MSG_WARN([Shared libraries disabled (with --disable-shared), so external Plugins are disabled])
HARP_PLUGIN_COMPILE=""
HARP_PLUGIN_SHARED=""
HARP_PLUGIN_LINK="-static"
HARP_PLUGIN_EXT="a"
fi
AC_SUBST(HARP_PLUGIN_COMPILE)
AC_SUBST(HARP_PLUGIN_SHARED)
AC_SUBST(HARP_PLUGIN_LINK)
AC_SUBST(HARP_PLUGIN_EXT)
AC_SUBST(HARP_SHLIB_EXT)
dnl
dnl =========================================
dnl Do these checks with the C compiler
dnl
AC_LANG_PUSH([C])
dnl +------------------------------------------------
dnl | Check for CFITSIO
dnl +------------------------------------------------
ACX_CFITSIO([], [AC_MSG_ERROR([Could not find the CFITSIO library!])])
dnl +------------------------------------------------
dnl | BLAS / LAPACK
dnl +------------------------------------------------
AX_CHECK_BLAS(,AC_MSG_ERROR([Could not find a BLAS library!]))
AX_CHECK_LAPACK(,AC_MSG_ERROR([Could not find a LAPACK library!]))
dnl +------------------------------------------------
dnl | Check for Python
dnl +------------------------------------------------
harp_python=yes
AC_ARG_ENABLE(python, [AC_HELP_STRING([--disable-python], [Disable python bindings])], [harp_python=$enable_python])
if test $harp_python = yes; then
AM_PATH_PYTHON
ACX_PYTHON_DEV
ACX_NUMPY
fi
AC_LANG_POP([C])
dnl
dnl End C language checks
dnl
dnl ==========================================
dnl
dnl +------------------------------------------------
dnl | Check for MPI
dnl +------------------------------------------------
harp_mpi=yes
AC_ARG_ENABLE([mpi], [AC_HELP_STRING([--disable-mpi], [Disable all checks for MPI])], [harp_mpi=$enable_mpi])
if test x"$harp_mpi" != xno; then
ACX_MPI([harp_mpi=yes], [harp_mpi=no;AC_MSG_WARN([Could not find the MPI C++ compiler, MPI tools will not be built])])
fi
dnl +------------------------------------------------
dnl | Check for BOOST
dnl +------------------------------------------------
BOOST_REQUIRE([1.53], [AC_MSG_ERROR([Could not find BOOST library >= 1.53!])])
BOOST_REGEX([], [AC_MSG_ERROR([Could not find BOOST regex library])])
BOOST_SERIALIZATION([], [AC_MSG_ERROR([Could not find BOOST serialization library])])
BOOST_PROGRAM_OPTIONS([], [AC_MSG_ERROR([Could not find BOOST program options library])])
if test x"$harp_python" != xno; then
BOOST_PYTHON([], [harp_python=no;AC_MSG_WARN([Could not find boost::python, bindings will not be built])])
fi
if test x"$harp_mpi" != xno; then
BOOST_MPI([harp_mpi=yes], [harp_mpi=no;AC_MSG_WARN([Could not find boost::mpi, MPI tools will not be built])])
fi
dnl +------------------------------------------------
dnl | Check for Elemental and any dependencies
dnl +------------------------------------------------
if test x"$harp_mpi" != xno; then
ACX_ELEMENTAL([harp_mpi=yes], [harp_mpi=no;AC_MSG_WARN([Could not find Elemental library, MPI tools will not be built])])
fi
dnl +------------------------------------------------
dnl | Check for mpi4py header files
dnl +------------------------------------------------
AC_ARG_WITH(mpi4py, [AC_HELP_STRING([--with-mpi4py=<PATH>], [use mpi4py installed in subdirectories of PATH])])
harp_mpi_python=no
if test x"$harp_mpi" != xno; then
if test x"$harp_python" != xno; then
mpi4py_save_CXX=${CXX}
mpi4py_save_CXXCPP=${CXXCPP}
mpi4py_save_CPPFLAGS=${CPPFLAGS}
if test x"${MPICXX}" != x; then
CXX=${MPICXX}
CXXCPP="${MPICXX} -E"
fi
# check in /usr if no prefix specified
mpi4py_pref=${with_mpi4py}
if test x"${mpi4py_pref}" = x; then
mpi4py_pref="/usr"
fi
# try site-packages first
mpi4py_type="site"
MPI4PY_CPPFLAGS="-I${mpi4py_pref}/lib/python${PYTHON_VERSION}/${mpi4py_type}-packages/mpi4py/include"
CPPFLAGS="${mpi4py_save_CPPFLAGS} ${PYTHON_CPPFLAGS} ${MPI4PY_CPPFLAGS}"
AC_CHECK_HEADERS([mpi4py/mpi4py.h], [harp_mpi_python=yes], [], [])
if test x"$harp_mpi_python" = xno; then
# try dist-packages
mpi4py_type="dist"
MPI4PY_CPPFLAGS="-I${mpi4py_pref}/lib/python${PYTHON_VERSION}/${mpi4py_type}-packages/mpi4py/include"
CPPFLAGS="${mpi4py_save_CPPFLAGS} ${PYTHON_CPPFLAGS} ${MPI4PY_CPPFLAGS}"
AX_RESET_HEADERS_CACHE([mpi4py/mpi4py.h])
AC_CHECK_HEADERS([mpi4py/mpi4py.h], [harp_mpi_python=yes], [MPI4PY_CPPFLAGS="";AC_MSG_WARN([Could not find mpi4py headers])], [])
fi
CXX=${mpi4py_save_CXX}
CXXCPP=${mpi4py_save_CXXCPP}
CPPFLAGS=${mpi4py_save_CPPFLAGS}
AC_SUBST(MPI4PY_CPPFLAGS)
fi
fi
dnl +------------------------------------------------------------------------
dnl | Set automake variables which control building of python and MPI tools
dnl +------------------------------------------------------------------------
AM_CONDITIONAL([HAVE_AM_PYTHON], [test "x$harp_python" = xyes])
AM_CONDITIONAL([HAVE_AM_MPI], [test "x$harp_mpi" = xyes])
AM_CONDITIONAL([HAVE_AM_MPI_PYTHON], [test "x$harp_mpi_python" = xyes])
dnl +------------------------------------------------
dnl | Set outputs
dnl +------------------------------------------------
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([src/libharp/math/Makefile])
AC_CONFIG_FILES([src/libharp/math/boost_numpy/Makefile])
AC_CONFIG_FILES([src/libharp/data/Makefile])
AC_CONFIG_FILES([src/libharp/plugins/Makefile])
AC_CONFIG_FILES([src/libharp/extract/Makefile])
AC_CONFIG_FILES([src/libharp/Makefile])
AC_CONFIG_FILES([src/tests/Makefile])
AC_CONFIG_FILES([src/apps/Makefile])
AC_CONFIG_FILES([src/python/Makefile])
AC_CONFIG_FILES([src/tests-python/Makefile])
AC_CONFIG_FILES([src/libharp-mpi/math/Makefile])
AC_CONFIG_FILES([src/libharp-mpi/Makefile])
AC_CONFIG_FILES([src/tests-mpi/Makefile])
AC_CONFIG_FILES([src/apps-mpi/Makefile])
AC_CONFIG_FILES([docs/Makefile])
dnl +------------------------------------------------
dnl | Generate Makefiles
dnl +------------------------------------------------
AC_OUTPUT
dnl +------------------------------------------------
dnl | Print out detected build options
dnl +------------------------------------------------
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([=========== Build Configuration ===========])
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([ C++ Compiler : $CXX])
if test x"${harp_mpi}" = xyes; then
AC_MSG_NOTICE([ MPI C++ Compiler : $MPICXX])
else
AC_MSG_NOTICE([ MPI C++ Compiler : Not Found])
fi
if test x"${harp_debug}" = xyes; then
AC_MSG_NOTICE([ C++ Compile flags : $CXXFLAGS])
else
AC_MSG_NOTICE([ C++ Compile flags : $CXXFLAGS -DNDEBUG])
fi
if test x"${ax_have_openmp}" = xyes; then
AC_MSG_NOTICE([ OpenMP : Detected ($OPENMP_CXXFLAGS)])
else
AC_MSG_NOTICE([ OpenMP : Disabled])
fi
AC_MSG_NOTICE([ CFITSIO Compile : $CFITSIO_CPPFLAGS])
AC_MSG_NOTICE([ CFITSIO Link : $CFITSIO])
AC_MSG_NOTICE([ BLAS Link : $BLAS_LIBS])
AC_MSG_NOTICE([ LAPACK Link : $LAPACK_LIBS])
AC_MSG_NOTICE([ Boost Compile : $BOOST_CPPFLAGS])
AC_MSG_NOTICE([ Boost Program Options : $BOOST_PROGRAM_OPTIONS_LDFLAGS $BOOST_PROGRAM_OPTIONS_LIBS])
AC_MSG_NOTICE([ Boost Serialization : $BOOST_SERIALIZATION_LDFLAGS $BOOST_SERIALIZATION_LIBS])
if test x"$harp_mpi" = xyes; then
AC_MSG_NOTICE([ Boost MPI : $BOOST_MPI_LDFLAGS $BOOST_MPI_LIBS])
AC_MSG_NOTICE([ Elemental Compile : $ELEMENTAL_CPPFLAGS])
AC_MSG_NOTICE([ Elemental Link : $ELEMENTAL])
else
AC_MSG_NOTICE([ Boost MPI : Disabled])
AC_MSG_NOTICE([ Elemental : Disabled])
fi
if test x"${harp_python}" = xyes; then
AC_MSG_NOTICE([ Python : $PYTHON])
AC_MSG_NOTICE([ Numpy : $NUMPY_CPPFLAGS])
AC_MSG_NOTICE([ Boost Python : $BOOST_PYTHON_LDFLAGS $BOOST_PYTHON_LIBS])
if test x"${harp_mpi_python}" = xyes; then
AC_MSG_NOTICE([ mpi4py : $MPI4PY_CPPFLAGS])
else
AC_MSG_NOTICE([ mpi4py : Disabled])
fi
else
AC_MSG_NOTICE([ Python : Disabled])
fi
AC_MSG_NOTICE([ ])
if test x"${harp_plugins}" = xyes; then
AC_MSG_NOTICE([ External Plugins : ENABLED])
else
AC_MSG_NOTICE([ External Plugins : DISABLED])
fi
AC_MSG_NOTICE([ ])