cleanup configure script (remove unused/not-working features)
[libfirm] / configure.ac
1 dnl configure.ac file for libfirm, author Matthias Braun <matze@braunis.de>
2 dnl Process this file with autoconf to produce a configure script.
3 AC_PREREQ([2.60])
4 AC_REVISION([$Id$])
5
6 dnl Firm Versions
7 dnl * Increment major/minor/micro version as you see fit. These 3 numbers
8 dnl   are intended for humans and are independent from the libtool versions
9 m4_define([firm_major_version], [1])
10 m4_define([firm_minor_version], [19])
11 m4_define([firm_micro_version], [0])
12 m4_define([firm_version],
13           [firm_major_version.firm_minor_version.firm_micro_version])
14
15 dnl Libtool versions
16 dnl
17 dnl * If any code has changed at all (i.e. bugfixes) increment revision
18 dnl * If any interface has been added, removed or changed increment
19 dnl   current, set revision to 0
20 dnl * If any interface has been added increment age
21 dnl * If any interfaces have been remove set age to 0
22 dnl * use lt_release if substantial things have been changed. The release can be
23 dnl   thought of as part of the library name. So changing the release creates
24 dnl   a new library.
25 m4_define([lt_current],  [1])
26 m4_define([lt_revision], [0])
27 m4_define([lt_age],      [0])
28 dnl we use firm major version as release
29 m4_define([lt_release],  [firm_major_version])
30
31 AC_INIT([libfirm], [firm_version], [firm@ipd.info.uni-karlsruhe.de])
32 AC_CONFIG_SRCDIR([ir/common/firm.c])
33 AM_INIT_AUTOMAKE([foreign dist-bzip2 1.9])
34
35 AC_DEFINE([libfirm_VERSION_MAJOR], [firm_major_version], [Firms major version number])
36 AC_DEFINE([libfirm_VERSION_MINOR], [firm_minor_version], [Firms minor version number])
37 AC_DEFINE([libfirm_VERSION_MICRO], [firm_micro_version], [Firms micro version number])
38
39 LT_VERSION="lt_current:lt_revision:lt_age"
40 AC_SUBST([LT_VERSION])
41 LT_RELEASE="lt_release"
42 AC_SUBST([LT_RELEASE])
43
44 dnl enable libtool
45 LT_INIT([win32-dll])
46 AC_SUBST([LIBTOOL_DEPS])
47
48 dnl generate the config header file
49 AC_CONFIG_HEADER([config.h])
50
51 dnl enable visibility hidden
52 CFLAGS="-fvisibility=hidden"
53 AC_DEFINE([FIRM_BUILD], [], [Defined when firm library is built])
54 AC_DEFINE([FIRM_DLL], [], [Define when a dynamically loadable shared library is built])
55
56 dnl Package options
57 dnl ===============
58
59 dnl check for additional include dirs
60 AC_ARG_WITH(includedir, [  --with-includedir=add   colon seperated list of directories to include search path],
61     CPPFLAGS=$CPPFLAGS" -I"`echo $withval|sed 's;\:; -I;g'`)
62
63 dnl check for additional library dirs
64 AC_ARG_WITH(libdir, [  --with-libdir=add       colon seperated list of directories to linker search path],
65     LDFLAGS=$LDFLAGS" -L"`echo $withval|sed 's;\:; -L;g'`)
66
67 dnl set debugging
68 dnl -------------
69 AC_ARG_ENABLE([debug],
70 [AS_HELP_STRING([--disable-debug], [disable verifiers and additional debugging routines])],
71 [enable_debug_libfirm="$enableval"], [enable_debug_libfirm="yes"])
72 if test "$enable_debug_libfirm" = yes; then
73         AC_DEFINE([DEBUG_libfirm], [], [define to enable debug mode and checks])
74 fi
75
76 AC_ARG_ENABLE([assert],
77 [AS_HELP_STRING([--disable-assert], [disable assertions])],
78 [enable_assert="$enableval"], [enable_assert="yes"])
79 if test "$enable_assert" = no; then
80   AC_DEFINE([NDEBUG], [], [define to disable asserts])
81 fi
82 AC_SUBST([enable_assert])
83
84 dnl enable ILP solver support
85 dnl --------------------------------
86 AC_ARG_ENABLE([ilp],
87 [AS_HELP_STRING([--enable-ilp], [enable ilp solver])],
88 [enable_ilp="$enableval"], [enable_ilp="no"])
89
90 if test "$enable_ilp" = yes; then
91   AC_DEFINE([WITH_ILP], [], [enable to build code using ilp solvers])
92 fi
93
94 dnl disable backend
95 dnl ---------------
96 AC_ARG_ENABLE([backend],
97 [AS_HELP_STRING([--disable-backend], [disable backends])],
98 [enable_backend="$enableval"], [enable_backend="yes"])
99
100 AC_SUBST(enable_backend)
101
102 dnl Checks for programs.
103 dnl ====================
104
105 dnl check for a C compiler
106 dnl ----------------------
107 AC_PROG_CC
108
109 AC_PATH_PROGS(PERL, perl perl5)
110
111 dnl check for awk
112 dnl -------------
113 AC_PROG_AWK
114
115 dnl Checks for header files.
116 dnl ========================
117
118 AC_HEADER_STDC
119 AC_CHECK_HEADERS([math.h], , AC_MSG_ERROR("math header file not found"))
120 AC_CHECK_HEADERS([alloca.h])
121
122 dnl Checks for libraries.
123 dnl =====================
124
125 AC_CHECK_LIB(m, main, ac_m_library="yes", ac_m_library="no")
126 if test "$ac_m_library" != yes; then
127   dnl std math library not found.
128   AC_MSG_ERROR("standard math library not found")
129 fi
130
131 dnl Checks for typedefs, structures, and compiler characteristics.
132 dnl ==============================================================
133 AC_C_CONST
134 AC_C_VOLATILE
135 AC_C_INLINE
136 AC_C_BIGENDIAN(,,,)
137 AC_C_LONG_DOUBLE
138
139 dnl Checks for library functions.
140 dnl =============================
141
142 AC_FUNC_STRTOLD
143
144 dnl Error messaging
145 dnl ===============
146
147
148 dnl Output results
149 AC_CONFIG_FILES([
150         Makefile
151         ir/Makefile
152         include/libfirm/Makefile
153         libfirm.pc
154 ])
155
156 BACKENDS=""
157 if test "$enable_backend" = yes; then
158         BACKENDS="arm ia32 mips sparc amd64"
159 fi
160 AC_SUBST([BACKENDS])
161
162 AC_OUTPUT
163
164 dnl output summary of firm configuration
165 echo ""
166 echo "firm configuration summary:"
167 echo "     backends              $BACKENDS"
168 echo "     profiling             $enable_profile_libfirm"
169 echo "     debug/verifiers       $enable_debug_libfirm"
170 echo "     assertions            $enable_assert"
171 echo "     ilp                   $enable_ilp"
172 echo ""