forked from Mellanox/libvma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
490 lines (423 loc) · 13.8 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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
# Indicate that we require autoconf 2.59 or later. Ths is needed because we
# use some autoconf macros only available in 2.59.
#
AC_PREREQ(2.59)
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 1: Setting product version
dnl===
dnl===-----------------------------------------------------------------------===
# Update version number here:
#
define([vma_ver_major], 8)
define([vma_ver_minor], 8)
define([vma_ver_revision], 1)
define([vma_ver_release], 0)
# Initialize autoconf and define the package name, version number and
# email address for reporting bugs.
#
AC_INIT(libvma, [vma_ver_major.vma_ver_minor.vma_ver_revision], [email protected])
# Definitions will be placed in this file rather than
# in the DEFS variable
#
AC_CONFIG_HEADER([config.h])
VMA_LIBRARY_MAJOR=8
VMA_LIBRARY_MINOR=8
VMA_LIBRARY_REVISION=1
VMA_LIBRARY_RELEASE=0
AC_DEFINE_UNQUOTED(VMA_LIBRARY_MAJOR, ${VMA_LIBRARY_MAJOR}, [VMA Major Version])
AC_SUBST(VMA_LIBRARY_MAJOR)
AC_DEFINE_UNQUOTED(VMA_LIBRARY_MINOR, ${VMA_LIBRARY_MINOR}, [VMA Minor Version])
AC_SUBST(VMA_LIBRARY_MINOR)
AC_DEFINE_UNQUOTED(VMA_LIBRARY_REVISION, ${VMA_LIBRARY_REVISION}, [VMA Revision])
AC_SUBST(VMA_LIBRARY_REVISION)
AC_DEFINE_UNQUOTED(VMA_LIBRARY_RELEASE, ${VMA_LIBRARY_RELEASE}, [VMA Release])
AC_SUBST(VMA_LIBRARY_RELEASE)
AM_CONDITIONAL(IS_RELEASE_ZERO, test ${VMA_LIBRARY_RELEASE} -eq 0)
GIT_VER=`git describe --long --abbrev=40 --dirty --tags 2> /dev/null || echo ""`
if test -n "$GIT_VER"; then GIT_VER=`echo $GIT_VER | sed -e 's/-dirty/+/' | sed s/.*-g//`; else GIT_VER=""; fi
AC_DEFINE_UNQUOTED(VMA_GIT_VERSION, "${GIT_VER}", [VMA Git Version])
dateopt=""
if test -n "$SOURCE_DATE_EPOCH" ; then
dateopt="-u -d @$SOURCE_DATE_EPOCH"
fi
AC_SUBST([BUILD_DATE], [$(date $dateopt +'%b/%d/%Y')])
AC_SUBST([BUILD_TIME], [$(date $dateopt +'%H:%M:%S')])
AC_SUBST([BUILD_DATE_CHANGELOG], [$(date $dateopt +'%a, %d %b %Y %T %z')])
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 2: Initialization & Setup
dnl===
dnl===-----------------------------------------------------------------------===
# Verify that the source directory is valid.
#
AC_CONFIG_SRCDIR(src)
# Place for the extra autoconf files.
#
AC_CONFIG_AUX_DIR(config/aux)
# Place all our m4 macro into the config subdirectory.
#
AC_CONFIG_MACRO_DIR(config/m4)
# Init automake and libtool
#
AM_INIT_AUTOMAKE(foreign [subdir-objects])
# Set non-verbose make by default
#
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
m4_include([config/m4/func.m4])
m4_include([config/m4/opt.m4])
m4_include([config/m4/verbs.m4])
m4_include([config/m4/nl.m4])
m4_include([config/m4/prof.m4])
FUNC_CONFIGURE_INIT()
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 3: Checking for programs we need
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Configure build tools"
# Find compiler, libtools, etc
#
AC_PROG_CC
AC_PROG_CXX
AC_PROG_LIBTOOL
AC_PROG_YACC
AM_PROG_LEX
# Check for pkg-config package
#
AC_CHECK_PROG(
[have_pkg_config],
[pkg-config],
m4_ifdef([PKG_PROG_PKG_CONFIG], yes, no_pkg_m4),
no_pkg_config)
case "$have_pkg_config" in
no_pkg_m4)
AC_MSG_ERROR([
*** You do not have pkg.m4 properly installed.
*** aclocal can not find one.
*** Set the environment variable ACLOCAL="aclocal -I/path/to/pkg.m4"
])
;;
no_pkg_config)
AC_MSG_ERROR([
*** The pkg-config is required to build the library.
*** Make sure it is installed or set path to pkg-config.
])
;;
*)
;;
esac
PKG_PROG_PKG_CONFIG()
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 4: Setting compiler specific options
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Setting compiler specific options"
AC_MSG_CHECKING([for compiler])
case $CC in
gcc*|g++*)
AC_MSG_RESULT([gcc])
CFLAGS="$CFLAGS -Wall -Wextra -Werror -Wundef -ffunction-sections -fdata-sections -Wsequence-point -pipe -Winit-self -Wmissing-include-dirs"
CXXFLAGS="$CXXFLAGS -Wshadow -Wall -Wextra -Werror -Wundef -ffunction-sections -fdata-sections -Wsequence-point -pipe -Winit-self -Wmissing-include-dirs"
;;
icc*|icpc*)
AC_MSG_RESULT([icc])
CFLAGS="$CFLAGS -Wall -Werror"
CXXFLAGS="$CXXFLAGS -Wall -Werror"
;;
clang*|clang++*)
AC_MSG_RESULT([clang])
CFLAGS="$CFLAGS -Wall -Werror -Wno-format-security -Wno-self-assign"
CXXFLAGS="$CXXFLAGS -Wall -Werror -Wno-overloaded-virtual"
;;
*)
AC_MSG_RESULT([unknown])
;;
esac
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 5: Checking for project configuration
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Configure project"
OS=`cat /etc/issue | awk '{ print $3}'`
CFLAGS="-D_GNU_SOURCE -fPIC $CFLAGS"
CXXFLAGS="-D_GNU_SOURCE -fPIC $CXXFLAGS"
# gcov support
#
AC_MSG_CHECKING(
[for gcov support])
AC_ARG_ENABLE([gcov],
AC_HELP_STRING([--enable-gcov],
[turn on code coverage analysis tools]),
[CFLAGS+=" --coverage -O0"; CXXFLAGS+=" --coverage -O0"; LIBS+=" -lgcov"; VMA_GCOV=1;
AC_MSG_RESULT([yes])],
[VMA_GCOV=0
AC_MSG_RESULT([no])]
)
# Performance time points support
#
AC_MSG_CHECKING(
[for time measurement support])
AC_ARG_ENABLE([time_measure],
AC_HELP_STRING([--enable-time-measure],
[turn on time measuring]),
[CPPFLAGS+=" -DVMA_TIME_MEASURE";
AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])]
)
# Valgrind support
#
AC_ARG_WITH([valgrind],
AC_HELP_STRING([--with-valgrind],
[Enable Valgrind annotations (small runtime overhead, default NO)]),
[],
[with_valgrind=no]
)
AC_MSG_CHECKING(
[for valgrind support])
AS_IF([test "x$with_valgrind" == xno],
[AC_DEFINE([NVALGRIND], 1, [Define to 1 to disable Valgrind annotations.])
AC_MSG_RESULT([no])
],
[AC_CHECK_HEADER([valgrind/memcheck.h], [],
[AC_MSG_ERROR([Valgrind memcheck support requested, but <valgrind/memcheck.h> not found, install valgrind-devel rpm.])])
if test -d $with_valgrind; then
CPPFLAGS="$CPPFLAGS -I$with_valgrind/include"
fi
AC_MSG_RESULT([yes])
]
)
# Debug configuration.
#
with_debug_info=yes
with_debug=no
AC_ARG_ENABLE([debug],
AC_HELP_STRING([--enable-debug],
[Enable debug mode build]),
[with_debug=yes])
AC_ARG_ENABLE([debuginfo],
AC_HELP_STRING([--disable-debuginfo],
[Don't include debug information]),
[with_debug_info=no; with_debug=no])
if test "x${with_debug}" = "xyes" ; then
CFLAGS="-g -D_DEBUG $CFLAGS"
CXXFLAGS="-g -D_DEBUG $CXXFLAGS"
else
CFLAGS="$CFLAGS -O3"
CXXFLAGS="$CXXFLAGS -O3"
if test "x${with_debug_info}" = "xyes" ; then
CFLAGS="-g $CFLAGS"
CXXFLAGS="-g $CXXFLAGS"
fi
fi
if test ${date:-""} != "" ; then
CFLAGS="-DVMA_DATE_TIME='\"$date-$time\"' $CFLAGS"
CXXFLAGS="-DVMA_DATE_TIME='\"$date-$time\"' $CXXFLAGS"
fi
if test ${revision:-0} -ne 0 ; then
CFLAGS="-DVMA_SVN_REVISION=$revision $CFLAGS"
CXXFLAGS="-DVMA_SVN_REVISION=$revision $CXXFLAGS"
fi
# OFED configuration.
#
AC_MSG_CHECKING([for OFED path])
AC_ARG_WITH(ofed,
AC_HELP_STRING([--with-ofed], [Path to OFED install]),
[ac_cv_ofed_path=$withval],
[if test -e "/etc/infiniband/info" ; then
ac_cv_ofed_path=`grep prefix /etc/infiniband/info | awk -F "=" '{print $2}'`
else
ac_cv_ofed_path="/usr"
fi])
CPPFLAGS="$CPPFLAGS -I$ac_cv_ofed_path/include"
if test -d "$ac_cv_ofed_path/lib64" ; then
LDFLAGS="$LDFLAGS -L$ac_cv_ofed_path/lib64"
elif test -d "$ac_cv_ofed_path/lib/$(uname -m)-linux-*" ; then
LDFLAGS="$LDFLAGS -L$(ls -d $ac_cv_ofed_path/lib/$(uname -m)-linux-*)"
else
LDFLAGS="$LDFLAGS -L$ac_cv_ofed_path/lib"
fi
AC_MSG_RESULT($ac_cv_ofed_path)
VERBS_CAPABILITY_SETUP()
OPT_VMA_LOGGING()
PROF_IBPROF_SETUP()
# Enable internal performance counters
# Note: uncomment setup to activate this ability
#
#PROF_RDTSC_SETUP()
# VMA SocketXtreme configuration
#
AC_ARG_ENABLE([vmapoll],
AC_HELP_STRING([--enable-vmapoll],
[(Deprecated) Please use --enable-socketxtreme instead]),
AC_MSG_ERROR([--enable-vmapoll option is deprecated: please use --enable-socketxtreme instead]))
AC_ARG_ENABLE([socketxtreme],
AC_HELP_STRING([--enable-socketxtreme],
[Enable alternative API to standard sockets API for receiving packets (default=no)]))
if test "x$enable_socketxtreme" = xyes -a "$vma_cv_directverbs" -ne 0; then
AC_DEFINE([DEFINED_SOCKETXTREME], 1, [Define to 1 if socketxtreme was enabled at configure time])
else
enable_socketxtreme=no
fi
AC_MSG_CHECKING([for socketxtreme API support])
AC_MSG_RESULT([$enable_socketxtreme])
# Thread locking control
#
AC_ARG_ENABLE([thread-lock],
AC_HELP_STRING([--enable-thread-lock],
[Enable thread locking (default=yes)]))
AC_MSG_CHECKING(
[for thread locking support])
if test "x$enable_thread_lock" = "xno"; then
if test "x$enable_socketxtreme" = xyes; then
AC_DEFINE([DEFINED_NO_THREAD_LOCK], 1, [Define to 1 to disable thread locking])
AC_MSG_RESULT([no])
else
AC_MSG_RESULT([yes (socketxtreme is not enabled)])
fi
else
AC_MSG_RESULT([yes])
fi
# Enable tcp tx window availability
#
AC_ARG_ENABLE([tcp-tx-wnd-availability],
AC_HELP_STRING([--enable-tcp-tx-wnd-availability],
[Enable TCP Tx window availability
(TCP packets will only be sent if their size (hdr options + data) is less than or equal to the window size.
Otherwise -1 is returned and errno is set to EAGAIN) (default=no)]))
AC_MSG_CHECKING(
[for tcp tx window availability support])
if test "x$enable_tcp_tx_wnd_availability" = "xyes"; then
AC_DEFINE(DEFINED_TCP_TX_WND_AVAILABILITY, 1, [Define to 1 to enable TCP Tx window availability])
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
AC_MSG_CHECKING([for md5 version of VMA statistics is])
STATS_PROTOCOL_VER=`md5sum ${srcdir}/src/vma/util/vma_stats.h | awk '{ print $1}'`
AC_DEFINE_UNQUOTED(STATS_PROTOCOL_VER, "${STATS_PROTOCOL_VER}", [Stats Protocol Version])
AC_SUBST(STATS_PROTOCOL_VER)
AC_MSG_RESULT(${STATS_PROTOCOL_VER})
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 6: Checking for header files
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Check for header files"
# Look for Standard headers
#
AC_HEADER_STDC
AC_CHECK_HEADERS([sys/prctl.h sys/inotify.h sys/fanotify.h sys/capability.h])
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 7: Checking for libraries
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Check for libraries"
AC_CHECK_LIB([stdc++], [atoi])
AC_CHECK_LIB([dl], [dlsym])
AC_CHECK_LIB([rt], [clock_gettime])
AC_CHECK_LIB([pthread], [pthread_create])
CHECK_NL_LIB()
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 8: Checking for types and structures
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Check for functions, types and structures"
# Does this compiler have built-in functions for atomic memory access?
AC_MSG_CHECKING([for atomic memory access (__sync_bool_compare_and_swap) support])
AC_TRY_LINK(,
[
int variable = 1;
return (__sync_bool_compare_and_swap(&variable, 1, 2)
&& __sync_add_and_fetch(&variable, 1)) ? 1 : 0;
],
[
AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
],
[
AC_MSG_RESULT([no])
])
AC_MSG_CHECKING([for SOF_TIMESTAMPING_SOFTWARE support])
AC_TRY_LINK(
#include <linux/net_tstamp.h>
,
[
int ts = (int)SOF_TIMESTAMPING_SOFTWARE;
ts = ts;
],
[
AC_MSG_RESULT([yes])
AC_DEFINE(DEFINED_MISSING_NET_TSTAMP, 0, [Define to 0 if linux/net_tstamp.h exists])
],
[
AC_MSG_RESULT([no])
AC_DEFINE(DEFINED_MISSING_NET_TSTAMP, 1, [Define to 1 if linux/net_tstamp.h is missing])
])
AC_MSG_CHECKING([for FRA_OIFNAME enum value support])
AC_TRY_LINK(
#include <linux/fib_rules.h>
,
[
int oif = (int)FRA_OIFNAME;
oif = oif;
],
[
AC_MSG_RESULT([yes])
AC_DEFINE(DEFINED_FRA_OIFNAME, 1, [Define to 1 if enum value FRA_OIFNAME exists in linux/fib_rules.h])
],
[
AC_MSG_RESULT([no])
AC_DEFINE(DEFINED_FRA_OIFNAME, 0, [Define to 0 if enum value FRA_OIFNAME does not exist in linux/fib_rules.h])
])
AC_CHECK_TYPES([struct mmsghdr],[],[],[#include <sys/socket.h>])
AC_MSG_CHECKING([for 'struct timespec' for recvmmsg() const])
AC_TRY_LINK(
#include <sys/socket.h>
,
[
const struct timespec ts = {0,0};
recvmmsg(0,0,0,0,&ts);
],
[
AC_MSG_RESULT([yes])
AC_DEFINE(RECVMMSG_WITH_CONST_TIMESPEC, 1, [Define to 1 if 'struct timespec' for recvmmsg() is 'const struct timespec'])
],
[
AC_MSG_RESULT([no])
])
dnl===-----------------------------------------------------------------------===
dnl===
dnl=== SECTION 9: Configure makefiles
dnl===
dnl===-----------------------------------------------------------------------===
show_section_title "Configure makefiles"
AC_CONFIG_FILES([
Makefile
src/Makefile
src/vma/Makefile
src/vma/infra/Makefile
src/vma/netlink/Makefile
src/utils/Makefile
src/vlogger/Makefile
src/stats/Makefile
src/state_machine/Makefile
tests/Makefile
tests/gtest/Makefile
tests/pps_test/Makefile
tests/latency_test/Makefile
tests/throughput_test/Makefile
tools/Makefile
tools/daemon/Makefile
contrib/scripts/vma.init
contrib/scripts/vma.service
build/libvma.spec
debian/changelog
VMA_VERSION
])
AC_OUTPUT
show_summary_title