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