move DEBUG_libfirm to config.h we shouldn't depend on it in public API
[libfirm] / configure.ac
1 dnl
2 dnl Project:     libFIRM
3 dnl File name:   configure.in
4 dnl Purpose:
5 dnl Author:      Matthias Braun
6 dnl CVS-ID:      $Id$
7 dnl Copyright:   (c) 2002-2007 University of Karlsruhe
8 dnl Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
9 dnl
10 AC_PREREQ([2.54])
11 AC_REVISION([$Id$])
12 m4_define([firm_major_version], [1])
13 m4_define([firm_minor_version], [13])
14 m4_define([firm_micro_version], [0])
15 m4_define([firm_version],
16           [firm_major_version.firm_minor_version.firm_micro_version])
17 AC_INIT([libfirm], [firm_version], [firm@ipd.info.uni-karlsruhe.de])
18 AC_CONFIG_SRCDIR([ir/common/firm.c])
19 AM_INIT_AUTOMAKE([foreign dist-bzip2 1.9])
20
21 # see libtool manual on what version numbers mean!
22 LT_VERSION=0:0:0
23 AC_SUBST([LT_VERSION])
24
25 AC_DEFINE([libfirm_VERSION_MAJOR], [firm_major_version], [Firms major version number])
26 AC_DEFINE([libfirm_VERSION_MINOR], [firm_minor_version], [Firms minor version number])
27 AC_DEFINE([libfirm_VERSION_MICRO], [firm_micro_version], [Firms micro version number])
28
29 dnl generate the config header file
30 AC_CONFIG_HEADER([config.h])
31
32 dnl keep track of the environment set by the user
33 libfirm_conf_env="${CC+CC='$CC'} ${CFLAGS+CFLAGS='$CFLAGS'} ${CPP+CPP='$CPP'} ${CPPFLAGS+CPPFLAGS='$CPPFLAGS'} ${LDFLAGS+LDFLAGS='$LDFLAGS'} ${LIBS+LIBS='$LIBS'}"
34 AC_SUBST(libfirm_conf_env)
35
36 dnl Package options
37 dnl ===============
38
39 dnl check for additional include dirs
40 AC_ARG_WITH(includedir, [  --with-includedir=add   colon seperated list of directories to include search path],
41     CPPFLAGS=$CPPFLAGS" -I"`echo $withval|sed 's;\:; -I;g'`)
42
43 dnl check for additional library dirs
44 AC_ARG_WITH(libdir, [  --with-libdir=add       colon seperated list of directories to linker search path],
45     LDFLAGS=$LDFLAGS" -L"`echo $withval|sed 's;\:; -L;g'`)
46
47 dnl set debugging
48 dnl -------------
49 AC_ARG_ENABLE([debug],
50 [AS_HELP_STRING([--disable-debug], [disable verifiers and additional debugging routines])],
51 [enable_debug_libfirm="$enableval"], [enable_debug_libfirm="yes"])
52 if test "$enable_debug_libfirm" = yes; then
53         AC_DEFINE([DEBUG_libfirm], [], [define to enable debug mode and checks])
54 fi
55
56 AC_ARG_ENABLE([assert],
57 [AS_HELP_STRING([--disable-assert], [disable assertions])],
58 [enable_assert="$enableval"], [enable_assert="yes"])
59 if test "$enable_assert" = no; then
60   AC_DEFINE([NDEBUG], [], [define to disable asserts])
61 fi
62 AC_SUBST([enable_assert])
63
64 dnl disable inlining
65 dnl ----------------
66 AC_ARG_ENABLE([inlining],
67 [AS_HELP_STRING([--disable-inlining], [disable inline C-extension])],
68 [enable_inlining="$enableval"], [enable_inlining="yes"])
69
70 if test "$enable_inlining" = yes; then
71   FIRMCONFIG_USE_INLINING="#define USE_INLINING"
72 fi
73 AC_SUBST([FIRMCONFIG_USE_INLINING])
74 AC_SUBST([enable_inlining])
75
76 dnl set profiling
77 dnl -------------
78 AC_ARG_ENABLE([profile],
79 [AS_HELP_STRING([--enable-profile], [enable profiling])],
80 [enable_profile_libfirm="$enableval"], [enable_profile_libfirm="no"])
81
82 AC_SUBST([enable_profile_libfirm])
83
84 dnl enable Firm hooks
85 dnl -------------
86 AC_ARG_ENABLE([hooks],
87 [AS_HELP_STRING([--disable-hooks], [disable Firm hooks])],
88 [enable_hooks="$enableval"], [enable_hooks="yes"])
89
90 if test "$enable_hooks" = yes; then
91         FIRMCONFIG_FIRM_ENABLE_HOOKS="#define FIRM_ENABLE_HOOKS"
92 fi
93 AC_SUBST([FIRMCONFIG_FIRM_ENABLE_HOOKS])
94
95 dnl enable Firm statistics
96 dnl -------------
97 AC_ARG_ENABLE([statistics],
98 [AS_HELP_STRING([--enable-statistics], [enable Firm statistics])],
99 [enable_statistics="$enableval"], [enable_statistics="yes"])
100
101 if test "$enable_statistics" = yes; then
102         FIRMCONFIG_FIRM_STATISTICS="#define FIRMCONFIG_FIRM_STATISTICS"
103 fi
104 AC_SUBST([FIRMCONFIG_FIRM_STATISTICS])
105 AC_SUBST([enable_statistics])
106
107 dnl enable ILP solver support
108 dnl --------------------------------
109 AC_ARG_ENABLE([ilp],
110 [AS_HELP_STRING([--enable-ilp], [enable ilp solver])],
111 [enable_ilp="$enableval"], [enable_ilp="no"])
112
113 if test "$enable_ilp" = yes; then
114   FIRMCONFIG_WITH_ILP="#define FIRMCONFIG_WITH_ILP"
115 fi
116 AC_SUBST([FIRMCONFIG_WITH_ILP])
117 AC_SUBST(enable_ilp)
118
119 dnl enable wchar_t support for identifiers
120 dnl --------------------------------
121 AC_ARG_ENABLE([wchar_support],
122 [AS_HELP_STRING([--enable-wchar-support], [enable wchar_t support for identifiers (needed for java)])],
123 [enable_wchar_support="$enableval"], [enable_wchar_support="no"])
124
125 if test "$enable_wchar_support" = yes; then
126   FIRMCONFIG_FIRM_ENABLE_WCHAR="#define FIRM_ENABLE_WCHAR"
127 fi
128 AC_SUBST([FIRMCONFIG_FIRM_ENABLE_WCHAR])
129 AC_SUBST([enable_wchar_support])
130
131 dnl disable backend
132 dnl ---------------
133 AC_ARG_ENABLE([backend],
134 [AS_HELP_STRING([--disable-backend], [disable backends])],
135 [enable_backend="$enableval"], [enable_backend="yes"])
136
137 AC_SUBST(enable_backend)
138
139 dnl Checks for programs.
140 dnl ====================
141
142 dnl check for a C compiler
143 dnl ----------------------
144 AC_PROG_CC
145 AC_PROG_LIBTOOL
146
147 AC_PATH_PROGS(PERL, perl perl5)
148
149 dnl check for awk
150 dnl -------------
151 AC_PROG_AWK
152
153 dnl Checks for header files.
154 dnl ========================
155
156 AC_HEADER_STDC
157 AC_CHECK_HEADERS([math.h], , AC_MSG_ERROR("math header file not found"))
158
159 dnl Checks for libraries.
160 dnl =====================
161
162 AC_CHECK_LIB(m, main, ac_m_library="yes", ac_m_library="no")
163 if test "$ac_m_library" != yes; then
164   dnl std math library not found.
165   AC_MSG_ERROR("standard math library not found")
166 fi
167
168 dnl Checks for typedefs, structures, and compiler characteristics.
169 dnl ==============================================================
170 AC_C_CONST
171 AC_C_VOLATILE
172 AC_C_INLINE
173 AC_C_BIGENDIAN(,,,)
174 AC_C_LONG_DOUBLE
175
176 dnl Checks for library functions.
177 dnl =============================
178
179 dnl check for strerror
180
181 AC_CHECK_FUNC(strerror,,
182   AC_MSG_ERROR("need strerror function")
183 )
184
185 dnl we use the gnu extension obstack_printf
186 AC_DEFINE([_GNU_SOURCE], [], [we use gnu extensions])
187 AC_CHECK_FUNC(strerror,,
188   AC_MSG_ERROR("need obstack_printf function")
189 )
190
191 dnl Error messaging
192 dnl ===============
193
194
195 dnl Output results
196 AC_CONFIG_FILES([
197         firm_config.h
198         Makefile
199         ir/Makefile
200         include/libfirm/Makefile
201         libfirm.pc
202 ])
203
204 BACKENDS=""
205 if test "$enable_backend" == yes; then
206         BACKENDS="arm ia32 mips ppc32"
207 fi
208 AC_SUBST([BACKENDS])
209
210 AC_OUTPUT
211
212 dnl output summary of firm configuration
213 echo ""
214 echo "firm configuration summary:"
215 echo "     backends              $BACKENDS"
216 echo "     profiling             $enable_profile_libfirm"
217 echo "     debug/verifiers       $enable_debug_libfirm"
218 echo "     assertions            $enable_assert"
219 echo "     hooks                 $enable_hooks"
220 echo "     statistics            $enable_statistics"
221 echo "     ilp                   $enable_ilp"
222 echo "     jvm                   $enable_jvm"
223 echo "     wide char support     $enable_wchar_support"
224 echo ""