-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfigure.ac
277 lines (225 loc) · 7.7 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
AC_INIT([m4ri],[20240729])
# See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
LT_VERSION=1:0:0
AC_SUBST(LT_VERSION)
AC_CANONICAL_HOST
AC_CONFIG_SRCDIR(m4ri/brilliantrussian.c)
AM_INIT_AUTOMAKE
dnl Include maintainer mode targets.
AM_MAINTAINER_MODE
dnl Needed when reconfiguring with 'autoreconf -i -s'
AC_CONFIG_MACRO_DIR([m4])
dnl Compiling with per-target flags (test_elimination.c) requires AM_PROG_CC_C_O.
AM_PROG_CC_C_O
LT_INIT
AC_PROG_INSTALL
AC_CONFIG_HEADERS(m4ri/config.h)
AC_PROG_CC
if test "$ac_cv_prog_cc_c99" = "no"; then
AC_MSG_ERROR([C99 support is required but not found.])
fi
# Find and set LIBM on the platform.
LT_LIB_M
AC_SUBST(LIBM)
# SSE2 support
AC_ARG_ENABLE([sse2],
AS_HELP_STRING([--disable-sse2], [don't use SSE2 instruction set.]),
, [if test "$m4ri_wrapword" = "yes"; then enable_sse2="no"; else enable_sse2="yes"; fi])
AS_IF([test "x$enable_sse2" != "xno"], [
if test "$m4ri_wrapword" = "yes"; then
AC_MSG_ERROR([SSE2 cannot be supported when wrapping word in a C++ class.])
fi
])
AS_IF([test "x$enable_sse2" = "xno"],
[M4RI_HAVE_SSE2=0],
[M4RI_HAVE_SSE2="(defined(__SSE2__) && __SSE2__)"])
AC_SUBST(M4RI_HAVE_SSE2)
AC_ARG_WITH(papi,
AS_HELP_STRING([--with-papi@<:@=PATH@:>@], [The PAPI install prefix, if configure can't find it.]),
[m4ri_config_papi=$withval])
AC_ARG_WITH(cachesize,
AS_HELP_STRING([--with-cachesize@<:@=VALUE@:>@], [L1,L2 and L3 cache sizes in bytes, separated by a colon. Overrides cache tuning.]),[m4ri_config_cachesize=$withval])
AC_CHECK_HEADER([mm_malloc.h],AC_DEFINE(HAVE_MM_MALLOC,,[Support aligned allocations]),)
if test "$ac_cv_header_mm_malloc_h" = "yes"; then
M4RI_HAVE_MM_MALLOC=1
else
M4RI_HAVE_MM_MALLOC=0
fi
AC_SUBST(M4RI_HAVE_MM_MALLOC)
# Correctly working posix_memalign
AX_FUNC_POSIX_MEMALIGN
if test "$ax_cv_func_posix_memalign_works" = "yes"; then
M4RI_HAVE_POSIX_MEMALIGN=1
else
M4RI_HAVE_POSIX_MEMALIGN=0
fi
AC_SUBST(M4RI_HAVE_POSIX_MEMALIGN)
# OpenMP support
AC_ARG_ENABLE([openmp],
AS_HELP_STRING( [--enable-openmp],[add support for OpenMP multicore support.]))
AS_IF([test "x$enable_openmp" = "xyes"], [
AX_OPENMP()
])
AC_SUBST(OPENMP_CFLAGS)
if test -n "$OPENMP_CFLAGS"; then
M4RI_HAVE_OPENMP=1
else
M4RI_HAVE_OPENMP=0
fi
AC_SUBST(M4RI_HAVE_OPENMP)
# Thread-Safety
M4RI_ENABLE_MZD_CACHE=1
M4RI_ENABLE_MMC=1
AC_ARG_ENABLE([thread-safe],
AS_HELP_STRING([--enable-thread-safe], [make library thread safe.]))
if test "x$enable_thread_safe" = "xyes"; then
M4RI_ENABLE_MMC=0
M4RI_ENABLE_MZD_CACHE=0
fi
if test $M4RI_HAVE_OPENMP = 1; then
M4RI_ENABLE_MZD_CACHE=0
fi
AC_SUBST(M4RI_ENABLE_MZD_CACHE)
AC_SUBST(M4RI_ENABLE_MMC)
# Debugging support
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug], [enable assert() statements for debugging.]))
AC_ARG_ENABLE([debug-dump],
AS_HELP_STRING([--enable-debug-dump], [dump output at exit of every function.]))
if test "x$enable_debug_dump" = "xyes"; then
M4RI_DEBUG_DUMP=1
else
M4RI_DEBUG_DUMP=0
fi
AC_SUBST(M4RI_DEBUG_DUMP)
AC_ARG_ENABLE([debug-mzd],
AS_HELP_STRING([--enable-debug-mzd], [add consistency checks on matrix structures.]))
if test "x$enable_debug_mzd" = "xyes"; then
M4RI_DEBUG_MZD=1
else
M4RI_DEBUG_MZD=0
fi
AC_SUBST(M4RI_DEBUG_MZD)
if test "x$enable_debug" = x"yes"; then
DEBUG_FLAGS="-g"
AC_SUBST(DEBUG_FLAGS)
else
if test "x$enable_debug_mzd" != "xyes"; then
AC_DEFINE(NDEBUG,1,[define whether debugging is enabled])
fi
fi
# For tests. Detect if PAPI is installed. See http://icl.cs.utk.edu/papi/ .
if test -z "$m4ri_config_papi"; then
AC_CHECK_LIB(papi, PAPI_start_counters,
[
AX_GUESS_PATH_LIB(papi)
AX_GUESS_PATH_HEADER(papi.h)
if test -n "$LIBPAPI_PATH"; then
PAPI_LDFLAGS="-Wl,-rpath,$LIBPAPI_PATH"
PAPI_LIBS="-L$LIBPAPI_PATH -lpapi"
else
PAPI_LIBS="-lpapi"
if ! test -e "/usr/lib/libpapi.so"; then
AC_MSG_WARN([Could not find libpapi.so. Use --with-papi=<install_prefix> or set LD_LIBRARY_PATH correctly before running benchmark applications.])
fi
fi
if test -n "$PAPI_H_PATH"; then
PAPI_CFLAGS="-I$PAPI_H_PATH"
AC_DEFINE_UNQUOTED([HAVE_LIBPAPI], 1, [Define when libpapi is available.])
else
AC_MSG_WARN([Could not find papi.h; Use --with-papi=<install_prefix> or add -I<install_prefix>/include to either CPPFLAGS
or CFLAGS, or turn off papi all together by configuring with --without-papi.])
fi
])
fi
if test x"$m4ri_config_papi" != x"no" && test -n "$m4ri_config_papi"; then
LIBPAPI_PATH="`realpath -s $m4ri_config_papi/lib`"
PAPI_H_PATH="`realpath -s $m4ri_config_papi/include`"
PAPI_CFLAGS="-I$PAPI_H_PATH"
PAPI_LDFLAGS="-Wl,-rpath,$LIBPAPI_PATH"
PAPI_LIBS="-L$LIBPAPI_PATH -lpapi"
AC_DEFINE_UNQUOTED([HAVE_LIBPAPI], 1, [Define when libpapi is available.])
fi
AC_SUBST(PAPI_LIBS)
AC_SUBST(PAPI_LDFLAGS)
AC_SUBST(PAPI_CFLAGS)
AC_ARG_ENABLE([cachetune],
AS_HELP_STRING([--enable-cachetune],[calculate cache size from timing information (deprecated).]))
# Cache Sizes
if test -z $m4ri_config_cachesize; then
AX_CACHE_SIZE()
AS_IF([test "x$enable_cachetune" = "xyes"], [AC_MSG_WARN(--enable-cachetune is deprecated since it usually does not provide optimal parameters.) AX_CACHE_SIZE_TUNE()])
else
AS_IF([test "x$enable_cachetune" = "xyes"], [AC_MSG_WARN(Ignoring cache tuning since --with-cachesize was given.)])
ax_l1_size=`echo $m4ri_config_cachesize | cut -d ":" -f 1`
ax_l2_size=`echo $m4ri_config_cachesize | cut -d ":" -f 2`
ax_l3_size=`echo $m4ri_config_cachesize | cut -d ":" -f 3`
M4RI_CPU_L1_CACHE=${ax_l1_size}
M4RI_CPU_L2_CACHE=${ax_l2_size}
M4RI_CPU_L3_CACHE=${ax_l3_size}
AC_SUBST(M4RI_CPU_L1_CACHE)
AC_SUBST(M4RI_CPU_L2_CACHE)
AC_SUBST(M4RI_CPU_L3_CACHE)
fi
# PNG
have_libpng="no"
AC_ARG_ENABLE([png],
[AS_HELP_STRING([--disable-png],[disable PNG support @<:@default=enabled@:>@])],
[
if test "x${enableval}" = "xyes" ; then
want_png="yes"
else
want_png="no"
fi
],
[want_png="yes"])
AC_MSG_CHECKING([whether to build with PNG support])
AC_MSG_RESULT([${want_png}])
if test "x${want_png}" = "xyes" ; then
PKG_CHECK_MODULES([PNG], [libpng],
[have_libpng="yes";
LIBPNG_LIBADD=${PNG_LIBS};
LIBPNG_CFLAGS=${PNG_CFLAGS};
M4RI_USE_PNG_PC=libpng],
[have_libpng="no"])
if ! test "x${have_libpng}" = "xyes" ; then
AC_CHECK_LIB([png],
[png_create_write_struct],
[have_libpng="yes"; LIBPNG_LIBADD="-lpng"],
[AC_CHECK_LIB([png14],
[png_create_write_struct],
[have_libpng="yes"; LIBPNG_LIBADD="-lpng14"],
[AC_CHECK_LIB([png12],
[png_create_write_struct],
[have_libpng="yes"; LIBPNG_LIBADD="-lpng12"],
[AC_CHECK_LIB([png10],
[png_create_write_struct],
[have_libpng="yes"; LIBPNG_LIBADD="-lpng10"],
[have_libpng="no"])
])
])
])
RAW_LIBPNG=${LIBPNG_LIBADD}
fi
if test "x${have_libpng}" = "xno" ; then
AC_MSG_WARN([Can not find a usuable PNG library. Make sure that CPPFLAGS and LDFLAGS are correctly set.])
fi
fi
if test "x${have_libpng}" = "xyes" ; then
M4RI_HAVE_LIBPNG=1
AC_SUBST(M4RI_HAVE_LIBPNG)
AC_SUBST(LIBPNG_LIBADD)
AC_SUBST(LIBPNG_CFLAGS)
AC_SUBST(M4RI_USE_PNG_PC)
AC_SUBST(RAW_LIBPNG)
else
M4RI_HAVE_LIBPNG=0
AC_SUBST(M4RI_HAVE_LIBPNG)
fi
M4RI_BUILDING_M4RI=1
AC_DEFINE([M4RI_BUILDING_M4RI], [1], [Define to indicate that m4ri is being built instead of being used])
RELEASE="AC_PACKAGE_VERSION"
AC_SUBST(RELEASE)
AC_PROG_MAKE_SET
AC_CONFIG_FILES([Makefile tests/Makefile bench/Makefile m4ri/m4ri_config.h m4ri.pc])
AC_OUTPUT