Add a README.cygwin detailing Cygwin specific build/install instructions
[lttng-ust.git] / configure.ac
CommitLineData
1304f3df
PMF
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
abcabd6a 4AC_INIT([lttng-ust],[2.0.6],[mathieu dot desnoyers at efficios dot com])
a334646a
MD
5
6# Following the numbering scheme proposed by libtool for the library version
7# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
8AC_SUBST([LTTNG_UST_LIBRARY_VERSION], [0:0:0])
9# note: remember to update tracepoint.h dlopen() to match this version
10# number. TODO: eventually automate by exporting the major number.
11
55355fa5 12AC_CONFIG_AUX_DIR([config])
9441df61
PMF
13AC_CANONICAL_TARGET
14AC_CANONICAL_HOST
50f3dba0 15AC_CONFIG_MACRO_DIR([config])
76ceb8db 16AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
50f3dba0 17m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
4318ae1b 18AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
4846fadc
AM
19
20# Configuration options, which will be installed in the config.h
562c813a
MD
21AC_CONFIG_HEADERS([config.h include/lttng/ust-config.h])
22AH_TEMPLATE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [Use efficient unaligned access.])
02120ddf 23AH_TEMPLATE([LTTNG_UST_HAVE_SDT_INTEGRATION], [SystemTap integration via sdt.h])
23c8854a 24
b728d87e 25# Compute minor/major/patchlevel version numbers
23c8854a 26AC_PROG_SED
2694975d
MD
27major_version=$(echo AC_PACKAGE_VERSION | sed 's/^\([[0-9]]\)*\.[[0-9]]*\.[[0-9]]*.*$/\1/')
28minor_version=$(echo AC_PACKAGE_VERSION | sed 's/^[[0-9]]*\.\([[0-9]]*\)\.[[0-9]]*.*$/\1/')
29patchlevel_version=$(echo AC_PACKAGE_VERSION | sed 's/^[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\).*$/\1/')
161239e0
YB
30AC_SUBST([MAJOR_VERSION], [$major_version])
31AC_SUBST([MINOR_VERSION], [$minor_version])
b728d87e 32AC_SUBST([PATCHLEVEL_VERSION], [$patchlevel_version])
161239e0
YB
33AC_DEFINE_UNQUOTED([VERSION_MAJOR], $major_version, [UST major version number])
34AC_DEFINE_UNQUOTED([VERSION_MINOR], $minor_version, [UST minor version number])
b728d87e 35AC_DEFINE_UNQUOTED([VERSION_PATCHLEVEL], $patchlevel_version, [UST patchlevel version number])
161239e0 36
649282a8
MD
37version_name="Annedd'ale"
38version_description="New type of beer, 100% from Quebec, flavored with sapin beaumier needles, with a touch of hops."
39AC_DEFINE_UNQUOTED([VERSION_NAME], [$version_name], [UST version name])
40AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], [$version_description], [UST version description])
1304f3df 41
9834ab89
CB
42AC_PROG_GREP
43# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
44AC_ARG_ENABLE(libtool-linkdep-fixup,
45 AS_HELP_STRING([--disable-libtool-linkdep-fixup],
46 [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)]),
47 libtool_fixup=$enableval,
48 libtool_fixup=yes)
49
50AS_IF([test "x$libtool_fixup" = "xyes"],
51 [
52 libtool_m4="$srcdir/config/libtool.m4"
53 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
54 AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4])
55 libtool_flag_pattern_count=$(grep -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
56 AS_IF([test $libtool_flag_pattern_count -ne 0],
57 [
58 AC_MSG_RESULT([$libtool_flag_pattern_count])
59 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
60 sed -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
61 ],
62 [
63 AC_MSG_RESULT([none])
64 ])
65 ])
66
63fae787
MD
67AM_CONDITIONAL([NO_SHARED], [test "x$enable_shared" = "xno"])
68
1304f3df
PMF
69# Checks for programs.
70AC_PROG_CC
6b79f035 71AC_PROG_CXX
1304f3df 72AC_PROG_MAKE_SET
fa1c6efe 73LT_INIT
1304f3df
PMF
74
75## Checks for libraries.
5cbd73b8 76AC_CHECK_LIB([dl], [dlopen])
e26c8207 77AC_CHECK_LIB([pthread], [pthread_create])
1304f3df 78
2cb76594 79# Check for libuuid
5a8ebacf
MD
80AC_CHECK_LIB([uuid], [uuid_generate],
81[
82 AC_DEFINE_UNQUOTED([LTTNG_UST_HAVE_LIBUUID], 1, [Has libuuid support.])
7e50e956 83 have_libuuid=yes
5a8ebacf
MD
84],
85[
86 # libuuid not found, check for uuid_create in libc.
87 AC_CHECK_LIB([c], [uuid_create],
88 [
89 AC_DEFINE_UNQUOTED([LTTNG_UST_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
7e50e956 90 have_libc_uuid=yes
5a8ebacf
MD
91 ],
92 [
93 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify its location.])
94 ])
95]
2cb76594 96)
7e50e956
MD
97AM_CONDITIONAL([LTTNG_UST_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
98AM_CONDITIONAL([LTTNG_UST_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
2cb76594 99
1304f3df
PMF
100# Checks for header files.
101#AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])
102
103# Checks for typedefs, structures, and compiler characteristics.
104AC_C_INLINE
105#AC_TYPE_INT16_T
106#AC_TYPE_INT32_T
107#AC_TYPE_INT64_T
108#AC_TYPE_INT8_T
109#AC_TYPE_PID_T
110#AC_TYPE_SIZE_T
111#AC_TYPE_SSIZE_T
112#AC_TYPE_UINT16_T
113#AC_TYPE_UINT32_T
114#AC_TYPE_UINT64_T
115#AC_TYPE_UINT8_T
116#AC_CHECK_TYPES([ptrdiff_t])
117
118# Checks for library functions.
119AC_FUNC_MALLOC
e9d165be 120AC_CHECK_FUNCS([gettimeofday munmap socket strerror strtol sched_getcpu sysconf])
1304f3df 121
fbae86d6
MD
122CFLAGS="-Wall $CFLAGS"
123
8624c549
PMF
124# URCU
125
126# urcu - check if we just find the headers it out of the box.
135987a5 127AC_CHECK_HEADERS([urcu-bp.h], [], [AC_MSG_ERROR([Cannot find [URCU] headers (urcu-bp.h). Use [CPPFLAGS]=-Idir to specify their location.
cacb7fbe 128This error can also occur when the liburcu package's configure script has not been run.])])
8624c549 129
b5a3dfa5 130AC_MSG_CHECKING([caa_likely()])
31b07350 131AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
b5a3dfa5 132#include <urcu/compiler.h>
b5a3dfa5
MD
133void fct(void)
134{
135 if (caa_likely(1)) {
136 }
137}
727bb6cb 138]])],[
b5a3dfa5 139 AC_MSG_RESULT([yes])
727bb6cb 140],[
b5a3dfa5
MD
141 AC_MSG_RESULT([no])
142 AC_MSG_ERROR([Please upgrade your version of liburcu to 0.6.6 or better])
727bb6cb
MD
143
144])
b5a3dfa5 145
8624c549 146# urcu - check that URCU lib is available to compilation
cfa0520d 147AC_CHECK_LIB([urcu-bp], [synchronize_rcu_bp], [], [AC_MSG_ERROR([Cannot find liburcu-bp lib. Use [LDFLAGS]=-Ldir to specify its location.])])
e3073410 148
a6830b14
MD
149# urcu - check that URCU lib is at least version 0.6
150AC_CHECK_LIB([urcu-bp], [call_rcu_bp], [], [AC_MSG_ERROR([liburcu 0.6 or newer is needed, please update your version or use [LDFLAGS]=-Ldir to specify the right location.])])
e3073410 151
42d054a0 152
8c98245f
PA
153# Check for various supplementary host information (beyond the
154# triplet) which might affect the library format choices. E.g., we
155# can be building with `i686-unknown-linux-gnu-gcc -m64'
156
157case "${host}" in
158changequote(,)dnl
159 i[34567]86-*-linux*)
160changequote([,])dnl
161 AC_CACHE_CHECK([if building for x86-64], [ust_cv_i386_is_x86_64],
162 [save_CPPFLAGS="$CPPFLAGS"
163 CPPFLAGS="$CPPFLAGS $CFLAGS"
164 AC_EGREP_CPP([got it], [
165#if __x86_64__
166got it
167#endif
168 ], [ust_cv_i386_is_x86_64=yes],
169 [ust_cv_i386_is_x86_64=no])
170 CPPFLAGS="$save_CPPFLAGS"])
171 ;;
858276a2
CB
172 # All symbols must be resolved at link time on Cygwin/MinGW/Windows,
173 # else libtool will not be able to build shared libraries.
174 *-*-cygwin*)
175 LDFLAGS="-Wl,-no-undefined $LDFLAGS";;
8c98245f
PA
176esac
177
2e06f3b5
PMF
178AC_MSG_CHECKING([library format for the host system])
179case $host_cpu in
8c98245f
PA
180changequote(,)dnl
181 i[3456]86)
182changequote([,])dnl
183 if test "$ust_cv_i386_is_x86_64" = yes ; then
184 LIBFORMAT="elf64-x86-64"
185 else
186 LIBFORMAT="elf32-i386"
187 fi
188 ;;
9441df61 189 x86_64) LIBFORMAT="elf64-x86-64" ;;
6fa0d97f 190 powerpc) LIBFORMAT="elf32-powerpc" ;;
9441df61 191 ppc64) LIBFORMAT="elf64-powerpc" ;;
7af249f6 192 powerpc64) LIBFORMAT="elf64-powerpc" ;;
9937f480
MD
193 s390) LIBFORMAT="elf32-s390"; NO_UNALIGNED_ACCESS=1 ;;
194 s390x) LIBFORMAT="elf64-s390"; NO_UNALIGNED_ACCESS=1 ;;
2699970a 195 armv5) LIBFORMAT="elf32-littlearm"; NO_UNALIGNED_ACCESS=1 ;;
9937f480
MD
196 arm) LIBFORMAT="elf32-littlearm"; NO_UNALIGNED_ACCESS=1 ;;
197 mips*) LIBFORMAT=""; NO_UNALIGNED_ACCESS=1;;
6fa0d97f 198 *) AC_MSG_ERROR([unable to detect library format (unsupported architecture ($host_cpu)?)]) ;;
9441df61
PMF
199esac
200AC_SUBST(LIBFORMAT)
201AC_MSG_RESULT($LIBFORMAT)
ed452f03 202
2699970a
JW
203if test "x$host_cpu" = "xarm" ; then
204AC_MSG_CHECKING([checking for armv5])
31b07350 205AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
2699970a
JW
206#ifndef __ARM_ARCH_5TEJ__
207#error "no arm5 here"
208#endif
727bb6cb 209]])],[
2699970a
JW
210 AC_MSG_RESULT([yes])
211 NO_UNALIGNED_ACCESS=1
727bb6cb
MD
212
213],[
2699970a 214 AC_MSG_RESULT([no])
727bb6cb
MD
215
216])
2699970a
JW
217fi
218if test x$NO_UNALIGNED_ACCESS = x ; then
562c813a 219AC_DEFINE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [1])
2699970a
JW
220fi
221
2b6f8df9 222# Set compile flags to java include files if given
b2263155
AM
223AC_ARG_WITH([java-jdk],
224 [AS_HELP_STRING([--with-java-jdk=DIR],[use the Java JDK in DIR. Ex : $JAVA_HOME.])],
225 [JAVA_JDK=$withval],
226 [JAVA_JDK=""]
227)
228AS_IF([test $JAVA_JDK],[
229 AS_IF([test -d $JAVA_JDK],[
230 AC_MSG_RESULT([using Java includes in $JAVA_SDK])
231 SUBDIRS=`find $JAVA_JDK/include -type d`
135987a5
MD
232 CPPFLAGS+=" "
233 CPPFLAGS+=`for x in $SUBDIRS; do echo -n "-I$x "; done`
234 CPPFLAGS+=" "
b2263155
AM
235 ],[
236 AC_MSG_ERROR(Unable to find Java include files in $JAVA_JDK)
237 ])
238])
2b6f8df9 239
4846fadc
AM
240# sdt.h integration
241AC_ARG_WITH([sdt],
02120ddf 242 [AS_HELP_STRING([--with-sdt],[provide SystemTap integration via sdt.h [default=no]])],
4846fadc
AM
243 [with_sdt=$withval],
244 [with_sdt="no"]
245)
246
247AS_IF([test "x$with_sdt" = "xyes"],[
491f30fe
MD
248 AC_MSG_CHECKING([STAP_PROBEV()])
249 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
250 #define SDT_USE_VARIADIC
251 #include <sys/sdt.h>
252 void fct(void)
253 {
254 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
255 }
256 ]])],[
257 AC_MSG_RESULT([yes])
562c813a 258 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1])
4846fadc 259 ],[
491f30fe 260 AC_MSG_RESULT([no])
135987a5 261 AC_MSG_ERROR([The sdt.h integration was requested but the STAP_PROBEV define cannot be used. Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify a non-standard path to sys/sdt.h])
4846fadc
AM
262 ])
263])
264
36385b6e 265#currently disabled.
36385b6e
MD
266 #tests/hello2/Makefile
267 #tests/basic/Makefile
268 #tests/simple_include/Makefile
269 #tests/snprintf/Makefile
270 #tests/test-nevents/Makefile
271 #tests/test-libustinstr-malloc/Makefile
272 #tests/dlopen/Makefile
273 #tests/same_line_marker/Makefile
274 #tests/trace_event/Makefile
275 #tests/tracepoint/Makefile
276 #tests/tracepoint/benchmark/Makefile
277 #tests/register_test/Makefile
278 #tests/libustctl_function_#tests/Makefile
279 #tests/exit-fast/Makefile
280 #tests/basic_long/Makefile
281
655a0d11
MD
282# liblttng-ust-java/Makefile
283
cbd7f39d
CB
284# Disabled for now, because these libraries
285# rely on the dlsym(3) RTLD_NEXT GNU extension.
286# This is not implemented in Cygwin.
287#liblttng-ust-fork/Makefile
288#liblttng-ust-libc-wrapper/Makefile
289#tests/fork/Makefile
290
55355fa5
JB
291AC_CONFIG_FILES([
292 Makefile
7ccf75d3
MD
293 doc/Makefile
294 doc/examples/Makefile
69400ac4 295 include/Makefile
b728d87e 296 include/lttng/ust-version.h
69400ac4 297 snprintf/Makefile
4931a13e 298 libringbuffer/Makefile
69400ac4
MD
299 liblttng-ust-comm/Makefile
300 liblttng-ust/Makefile
301 liblttng-ust-ctl/Makefile
b25c5b37 302 tools/Makefile
6dd969b5
PMF
303 tests/Makefile
304 tests/hello/Makefile
246e1625 305 tests/hello-static-lib/Makefile
6b79f035 306 tests/hello.cxx/Makefile
580d134b 307 tests/demo/Makefile
5810472c 308 tests/ust-basic-tracing/Makefile
f0966704 309 tests/ust-multi-test/Makefile
74a6d87b 310 lttng-ust.pc
55355fa5 311])
1f9eff07 312
1304f3df 313AC_OUTPUT
1f9eff07 314
649282a8
MD
315AS_ECHO()
316AS_ECHO("Version name: $version_name")
317AS_ECHO("$version_description")
318
1f9eff07
AM
319# Report on the configuration options
320AS_ECHO()
321AS_ECHO("LTTng-UST will be built with the following options:")
322AS_ECHO("Library format: $LIBFORMAT")
323
324AS_ECHO()
1f9eff07
AM
325AS_ECHO_N("sdt.h integration: ")
326AS_IF([test "x$with_sdt" = "xyes"], [AS_ECHO("Enabled")], [AS_ECHO("Disabled")])
327
328AS_ECHO()
329AS_ECHO("Type 'make' to compile.")
330
This page took 0.044704 seconds and 4 git commands to generate.