summaryrefslogtreecommitdiff
path: root/configure.in
blob: 46a83f8d60c8bd5404d7ed669a0bb1237e67ddc5 (plain)
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/backtrace.c)
AC_CONFIG_AUX_DIR(aux)
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(libunwind, 0.2-pre2)
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(include/config.h)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AM_PROG_LIBTOOL

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(unistd.h)

dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T

dnl Checks for library functions.
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(getunwind)

dnl Hopefully there will be an AC_PROG_AS at some point...
AS="$CC"
AC_SUBST(AS)
AC_SUBST(ASFLAGS)

get_arch() {
 case "$1" in
  i?86) echo x86;;
  *) echo $target_cpu;;
 esac
}

build_arch=`get_arch $build_cpu`
target_arch=`get_arch $target_cpu`

AM_CONDITIONAL(REMOTE_ONLY, test x$target_arch != x$build_arch)
AM_CONDITIONAL(ARCH_IA64, test x$target_arch == xia64)
AM_CONDITIONAL(ARCH_IA32, test x$target_arch == x86)

if test x$target_arch != x$build_arch; then
  CPPFLAGS="${CPPFLAGS} -DUNW_REMOTE_ONLY"
else
  AC_CONFIG_LINKS(include/libunwind.h:include/libunwind-$target_arch.h)
fi

AC_ARG_ENABLE(debug,
[  --enable-debug          turn on debug support (slows down execution)],
[enable_debug=yes], [])

CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE"
if test x$enable_debug == xyes; then
  CPPFLAGS="${CPPFLAGS} -DDEBUG"
else
  CPPFLAGS="${CPPFLAGS} -DNDEBUG"
fi
ASFLAGS="${ASFLAGS} ${CPPFLAGS}"

if test x$GCC = xyes; then
  CFLAGS="${CFLAGS} -Wall"
fi

arch="$target_arch"
ARCH=`echo $target_arch | tr [a-z] [A-Z]`


AC_SUBST(arch)
AC_SUBST(ARCH)
AC_OUTPUT(Makefile src/Makefile tests/Makefile doc/Makefile)