Version 0.10.3
[urcu.git] / configure.ac
... / ...
CommitLineData
1AC_PREREQ(2.59)
2AC_INIT([userspace-rcu],[0.10.3],[mathieu dot desnoyers at efficios dot com], [], [http://liburcu.org/])
3
4# Following the numbering scheme proposed by libtool for the library version
5# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
6AC_SUBST([URCU_LIBRARY_VERSION], [6:0:0])
7
8AC_CONFIG_HEADERS([include/config.h include/urcu/config.h])
9AC_CONFIG_AUX_DIR([config])
10AC_CONFIG_MACRO_DIR([m4])
11
12AC_CANONICAL_TARGET
13AC_CANONICAL_HOST
14
15AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip nostdinc])
16AM_MAINTAINER_MODE([enable])
17
18# Enable silent rules if available (Introduced in AM 1.11)
19m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
20
21AH_TEMPLATE([CONFIG_RCU_SMP], [Enable SMP support. With SMP support enabled, uniprocessors are also supported. With SMP support disabled, UP systems work fine, but the behavior of SMP systems is undefined.])
22AH_TEMPLATE([CONFIG_RCU_HAVE_FENCE], [Defined when on a system that has memory fence instructions.])
23AH_TEMPLATE([CONFIG_RCU_HAVE_FUTEX], [Defined when on a system with futex support.])
24AH_TEMPLATE([CONFIG_RCU_COMPAT_ARCH], [Compatibility mode for i386 which lacks cmpxchg instruction.])
25AH_TEMPLATE([CONFIG_RCU_ARM_HAVE_DMB], [Use the dmb instruction if available for use on ARM.])
26AH_TEMPLATE([CONFIG_RCU_TLS], [TLS provided by the compiler.])
27AH_TEMPLATE([CONFIG_RCU_HAVE_CLOCK_GETTIME], [clock_gettime() is detected.])
28AH_TEMPLATE([CONFIG_RCU_FORCE_SYS_MEMBARRIER], [Require the operating system to support the membarrier system call for default and bulletproof flavors.])
29AH_TEMPLATE([CONFIG_RCU_DEBUG], [Enable internal debugging self-checks. Introduce performance penalty.])
30
31# Allow requiring the operating system to support the membarrier system
32# call. Applies to default and bulletproof flavors.
33AC_ARG_ENABLE([sys-membarrier-fallback],
34 AS_HELP_STRING([--disable-sys-membarrier-fallback], [Abort if sys-membarrier is needed but not available rather than using a fallback.]),
35 [def_sys_membarrier_fallback=$enableval],
36 [def_sys_membarrier_fallback="yes"])
37AS_IF([test "x$def_sys_membarrier_fallback" != "xyes"], [AC_DEFINE([CONFIG_RCU_FORCE_SYS_MEMBARRIER], [1])])
38
39# Allow overriding storage used for TLS variables.
40AC_ARG_ENABLE([compiler-tls],
41 AS_HELP_STRING([--disable-compiler-tls], [Use pthread_getspecific() to emulate Thread Local Storage (TLS) variables.]),
42 [def_compiler_tls=$enableval],
43 [def_compiler_tls="yes"])
44
45AS_IF([test "x$def_compiler_tls" = "xyes"], AC_DEFINE([CONFIG_RCU_TLS], [1]), [:])
46
47# Checks for C compiler
48AC_USE_SYSTEM_EXTENSIONS
49AC_PROG_CC
50AC_PROG_CC_STDC
51
52# Checks for programs.
53AC_PROG_AWK
54AC_PROG_MAKE_SET
55AC_CHECK_PROGS(NPROC, [nproc gnproc])
56AC_CHECK_PROGS(GETCONF, [getconf])
57AS_IF([test "x$NPROC" != "x"],
58 [NPROC_CMD=$NPROC],
59 [AS_IF([test "x$GETCONF" != "x"],
60 [NPROC_CMD="$GETCONF _NPROCESSORS_ONLN"],
61 [NPROC_CMD="echo 1"]
62 )]
63)
64AC_SUBST([NPROC_CMD], [$NPROC_CMD])
65
66LT_INIT
67
68# Checks for typedefs, structures, and compiler characteristics.
69AC_C_INLINE
70AC_TYPE_PID_T
71AC_TYPE_SIZE_T
72AC_TYPE_SSIZE_T
73AC_TYPE_UINT16_T
74AC_TYPE_INT32_T
75AC_TYPE_UINT32_T
76AC_TYPE_UINT64_T
77AC_TYPE_UINT8_T
78
79AX_C___ATTRIBUTE__
80AS_IF([test "x$ax_cv___attribute__" = "xyes"],
81 [:],
82 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
83
84AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
85
86AM_CFLAGS="$AM_CFLAGS $PTHREAD_CFLAGS"
87
88# Checks for library functions.
89AC_FUNC_MMAP
90AC_FUNC_FORK
91AC_CHECK_FUNCS([ \
92 atexit \
93 getcpuid \
94 gettid \
95 gettimeofday \
96 memeset \
97 memset \
98 munmap \
99 rand_r \
100 sched_getcpu \
101 strerror \
102 strtoul \
103 sysconf \
104])
105
106# AC_FUNC_MALLOC causes problems when cross-compiling.
107#AC_FUNC_MALLOC
108
109# Check for headers
110AC_HEADER_STDBOOL
111AC_CHECK_HEADERS([ \
112 limits.h \
113 stddef.h \
114 sys/param.h \
115 sys/time.h \
116])
117
118# Find arch type
119AS_CASE([$host_cpu],
120 [k1om], [ARCHTYPE="x86"],
121 [i386], [ARCHTYPE="x86" && SUBARCHTYPE="x86compat"],
122 [i486], [ARCHTYPE="x86"],
123 [i586], [ARCHTYPE="x86"],
124 [i686], [ARCHTYPE="x86"],
125 [amd64], [ARCHTYPE="x86"],
126 [x86_64], [ARCHTYPE="x86"],
127 [powerpc], [ARCHTYPE="ppc"],
128 [ppc64], [ARCHTYPE="ppc"],
129 [powerpc64], [ARCHTYPE="ppc"],
130 [powerpc64le], [ARCHTYPE="ppc"],
131 [ppc], [ARCHTYPE="ppc"],
132 [s390], [ARCHTYPE="s390"],
133 [s390x], [ARCHTYPE="s390"],
134 [sparc], [ARCHTYPE="sparc64"],
135 [sparc64], [ARCHTYPE="sparc64"],
136 [alpha*], [ARCHTYPE="alpha"],
137 [ia64], [ARCHTYPE="ia64"],
138 [arm*], [ARCHTYPE="arm"],
139 [aarch64*], [ARCHTYPE="aarch64"],
140 [mips*], [ARCHTYPE="mips"],
141 [nios2*], [ARCHTYPE="nios2"],
142 [tile*], [ARCHTYPE="tile"],
143 [hppa*], [ARCHTYPE="hppa"],
144 [m68k], [ARCHTYPE="m68k"],
145 [ARCHTYPE="unknown"]
146)
147
148AS_CASE([$host],[*-cygwin*],
149 [AM_CONDITIONAL(USE_CYGWIN, true)],
150 [AM_CONDITIONAL(USE_CYGWIN, false)]
151)
152
153AC_SUBST(ARCHTYPE)
154AC_SUBST(SUBARCHTYPE)
155
156UATOMICSRC=include/urcu/uatomic/$ARCHTYPE.h
157ARCHSRC=include/urcu/arch/$ARCHTYPE.h
158
159AS_IF([test "x$SUBARCHTYPE" = xx86compat],[
160 AC_DEFINE([CONFIG_RCU_COMPAT_ARCH], [1])
161])
162
163AS_IF([test "$host_cpu" = "armv7l"],[
164 AM_CFLAGS="$AM_CFLAGS -mcpu=cortex-a9 -mtune=cortex-a9 -O1"
165])
166
167# ARM-specific checks
168AS_IF([test "x$ARCHTYPE" = "xarm"],[
169 AC_MSG_CHECKING([for dmb instruction])
170 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
171 int main()
172 {
173 asm volatile("dmb":::"memory");
174 return 0;
175 }
176 ]])
177 ],[
178 AC_MSG_RESULT([yes])
179 AC_DEFINE([CONFIG_RCU_ARM_HAVE_DMB], [1])
180 ],[
181 AC_MSG_RESULT([no])
182 ])
183])
184
185# Tile-specific checks
186AS_IF([echo "$host_cpu" | grep "^tile"],[
187 AC_MSG_CHECKING([for Tile architecture type])
188 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
189 #ifndef __tilegx__
190 #error
191 #endif
192 ]])
193 ],[
194 AC_MSG_RESULT([ok])
195 ],[
196 AC_MSG_FAILURE([URCU has only been tested on the TileGx architecture. For other Tile* architectures, please run the tests first and report the results to the maintainer so that proper support can be added.])
197 ])
198])
199
200# x86-specific checks
201AS_IF([test "x$ARCHTYPE" = "xx86"],[
202 AC_MSG_CHECKING([if architecture really supports the mfence instruction])
203 #For now, using lock; addl compatibility mode even for i686, because the
204 #Pentium III is seen as a i686, but lacks mfence instruction.
205 #Only using fence for x86_64.
206 #
207 #k1om is the name for the Intel MIC family (Xeon Phi). It is an x86_64
208 #variant but lacks fence instructions.
209 AS_IF([test "x$host_cpu" != "xi386" -a "x$host_cpu" != "xi486" -a "x$host_cpu" != "xi586" -a "x$host_cpu" != "xi686" -a "x$host_vendor" != "xk1om" -a "x$host_cpu" != "xk1om"],[
210 AC_MSG_RESULT([yes])
211 AC_DEFINE([CONFIG_RCU_HAVE_FENCE], [1])
212 config_rcu_have_fence=yes
213 ],[
214 AC_MSG_RESULT([no])
215 config_rcu_have_fence=no
216 ])
217])
218
219# Check if sys_futex() is available
220AC_MSG_CHECKING([for sys_futex()])
221AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
222 #include <sys/syscall.h>
223 #ifndef __NR_futex
224 #error "futexes not available"
225 #endif
226 ]])
227],[
228 AC_MSG_RESULT([yes])
229 AC_DEFINE([CONFIG_RCU_HAVE_FUTEX], [1])
230 compat_futex_test=0
231],[
232 AC_MSG_RESULT([no])
233 compat_futex_test=1
234])
235
236# Search for clock_gettime
237AC_SEARCH_LIBS([clock_gettime], [rt], [
238 AC_DEFINE([CONFIG_RCU_HAVE_CLOCK_GETTIME], [1])
239 config_rcu_have_clock_gettime=yes
240], [])
241
242AM_CONDITIONAL([COMPAT_FUTEX], [test "x$compat_futex_test" = "x1"])
243AM_CONDITIONAL([COMPAT_ARCH], [test "x$SUBARCHTYPE" = "xx86compat"])
244AM_CONDITIONAL([NO_SHARED], [test "x$enable_shared" = "xno"])
245
246# smp-support configure option
247AC_ARG_ENABLE([smp-support],
248 AS_HELP_STRING([--disable-smp-support], [Disable SMP support. Warning: only use this on uniprocessor systems. [default=enabled]]),
249 [def_smp_support=$enableval],
250 [def_smp_support="yes"])
251AS_IF([test "x$def_smp_support" = "xyes"], [AC_DEFINE([CONFIG_RCU_SMP], [1])])
252
253# RCU debugging option
254AC_ARG_ENABLE([rcu-debug],
255 AS_HELP_STRING([--enable-rcu-debug], [Enable internal debugging
256 self-checks. Introduce performance penalty.]))
257AS_IF([test "x$enable_rcu_debug" = "xyes"], [
258 AC_DEFINE([CONFIG_RCU_DEBUG], [1])
259])
260
261# From the sched_setaffinity(2)'s man page:
262# ~~~~
263# The CPU affinity system calls were introduced in Linux kernel 2.5.8.
264# The library interfaces were introduced in glibc 2.3. Initially, the
265# glibc interfaces included a cpusetsize argument. In glibc 2.3.3,
266# the cpuset size argument was removed, but this argument was
267# restored in glibc 2.3.4.
268# ~~~~
269
270# In addition to that, some vendors ported the system call to 2.4
271# kernels.
272
273# Furthermore, when the function first appeared, the MASK argument was
274# an unsigned long pointer, while later it was made into a cpu_set_t
275# pointer. Systems that have the cpu_set_t version also should have
276# the CPU_ZERO, CPU_SET, etc. macros.
277
278# All this mess means we have to cater for at least 3 different
279# sched_setaffinity prototypes:
280
281# ~~~~
282# int sched_setaffinity (pid_t pid, unsigned int len, unsigned long *mask);
283# int sched_setaffinity (pid_t __pid, size_t __cpusetsize, const cpu_set_t *__cpuset);
284# int sched_setaffinity (pid_t __pid, const cpu_set_t *__mask);
285# ~~~~
286
287AC_CHECK_TYPES([cpu_set_t],
288 [have_cpu_set_t="yes"],
289 [have_cpu_set_t="no"],
290 [#include <sched.h>])
291
292# Confirm that we have CPU_ZERO, and it actually works.
293AC_MSG_CHECKING([whether CPU_ZERO works])
294AH_TEMPLATE([HAVE_CPU_ZERO], [Defined to 1 if we have CPU_ZERO and it works])
295AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
296 #include <sched.h>
297 int main()
298 {
299 cpu_set_t foo; CPU_ZERO(&foo);
300 return 0;
301 }
302 ]])
303],[
304 AC_DEFINE(HAVE_CPU_ZERO, 1)
305 AC_MSG_RESULT([yes])
306],[
307 AC_MSG_RESULT([no])
308])
309
310# Confirm that we have CPU_SET, and it actually works.
311AC_MSG_CHECKING([whether CPU_SET works])
312AH_TEMPLATE([HAVE_CPU_SET], [Defined to 1 if we have CPU_SET and it works])
313AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
314 #include <sched.h>
315 int main()
316 {
317 cpu_set_t foo, mask; CPU_SET(0, &foo);
318 return 0;
319 }
320 ]])
321],[
322 AC_DEFINE(HAVE_CPU_SET, 1)
323 AC_MSG_RESULT([yes])
324],[
325 AC_MSG_RESULT([no])
326])
327
328# First check if the function is available at all.
329AC_CHECK_FUNCS([sched_setaffinity],[
330 # Okay, we have it. Check if also have cpu_set_t. If we don't,
331 # then we have the first version using unsigned long, and no
332 # CPU_ZERO, etc. macros. If we do have cpu_set_t, we may have the
333 # version with 2 or 3 arguments. In that case, CPU_ZERO, etc.,
334 # should also be present, but we confirm nonetheless.
335
336 AS_IF([test "x$have_cpu_set_t" = "xyes"], [
337 # We do have it.
338 # Check how many arguments does sched_setaffinity take.
339 # Should be 3 or 2.
340 AC_MSG_CHECKING([how many arguments sched_setaffinity takes])
341 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
342 #include <sched.h>
343 int main()
344 {
345 cpu_set_t foo;
346 sched_setaffinity(0, sizeof (foo), &foo);
347 return 0;
348 }
349 ]])
350 ],
351 [sched_set_affinity_args=3],
352 [sched_set_affinity_args=2])
353 AC_DEFINE_UNQUOTED(SCHED_SETAFFINITY_ARGS,
354 $sched_set_affinity_args,
355 [Defined to sched_setaffinity's number of arguments.])
356 AC_MSG_RESULT([$sched_set_affinity_args])
357 ],[
358 # No cpu_set_t, always 3 args.
359 AC_DEFINE(SCHED_SETAFFINITY_ARGS, 3)
360 ])
361])
362
363AM_CPPFLAGS="-include config.h"
364AC_SUBST(AM_CPPFLAGS)
365
366AM_CFLAGS="-Wall $AM_CFLAGS"
367AC_SUBST(AM_CFLAGS)
368
369AC_CONFIG_LINKS([
370 include/urcu/arch.h:$ARCHSRC
371 include/urcu/uatomic.h:$UATOMICSRC
372])
373AC_CONFIG_FILES([
374 Makefile
375 doc/Makefile
376 doc/examples/Makefile
377 include/Makefile
378 src/Makefile
379 tests/Makefile
380 tests/common/Makefile
381 tests/unit/Makefile
382 tests/benchmark/Makefile
383 tests/regression/Makefile
384 tests/regression/regression_tests
385 tests/utils/Makefile
386 src/liburcu.pc
387 src/liburcu-bp.pc
388 src/liburcu-cds.pc
389 src/liburcu-qsbr.pc
390 src/liburcu-mb.pc
391 src/liburcu-signal.pc
392])
393AC_OUTPUT
394
395#
396# Mini-report on what will be built.
397#
398
399PPRINT_INIT
400PPRINT_SET_INDENT(1)
401PPRINT_SET_TS(38)
402
403AS_ECHO
404AS_ECHO("${PPRINT_COLOR_BLDBLU}Userspace-RCU $PACKAGE_VERSION${PPRINT_COLOR_RST}")
405AS_ECHO
406
407PPRINT_SUBTITLE([Features])
408
409PPRINT_PROP_STRING([Target architecture], $host_cpu)
410
411# SMP support enabled/disabled
412test "x$def_smp_support" = "xyes" && value=1 || value=0
413PPRINT_PROP_BOOL([SMP support], $value)
414
415# Memory fence support available
416test "x$config_rcu_have_fence" = "xyes" && value=1 || value=0
417PPRINT_PROP_BOOL([Memory fence instructions], $value)
418
419# Futex support available
420test "x$compat_futex_test" = "x0" && value=1 || value=0
421PPRINT_PROP_BOOL([Futex support], $value)
422
423# TLS
424test "x$def_compiler_tls" = "xyes" && value="compiler TLS" || value="pthread_getspecific()"
425PPRINT_PROP_STRING([Thread Local Storage (TLS)], [$value])
426
427# clock_gettime() available
428test "x$config_rcu_have_clock_gettime" = "xyes" && value=1 || value=0
429PPRINT_PROP_BOOL([clock_gettime()], $value)
430
431# Require membarrier
432test "x$def_sys_membarrier_fallback" != "xyes" && value=1 || value=0
433PPRINT_PROP_BOOL([Require membarrier], $value)
434
435# RCU debug enabled/disabled
436test "x$enable_rcu_debug" = "xyes" && value=1 || value=0
437PPRINT_PROP_BOOL([Internal debugging], $value)
438
439report_bindir="`eval eval echo $bindir`"
440report_libdir="`eval eval echo $libdir`"
441
442# Print the bindir and libdir this `make install' will install into.
443AS_ECHO
444PPRINT_SUBTITLE([Install directories])
445PPRINT_PROP_STRING([Binaries], [$report_bindir])
446PPRINT_PROP_STRING([Libraries], [$report_libdir])
447
This page took 0.023596 seconds and 4 git commands to generate.