update svn:ignore
[libfirm] / configure.in
1 dnl  \
2 dnl Project:     libFIRM
3 dnl File name:   configure.in
4 dnl Purpose:
5 dnl Author:      Till Riedel, 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 AC_INIT([libfirm],[1.3.0],[firm@info.uni-karlsruhe.de])
13
14 dnl generate the config header file
15 AC_CONFIG_HEADER(config.h)
16
17 AH_TOP([])
18
19 AH_BOTTOM([
20 #ifdef USE_INLINING
21 #define INLINE inline
22 #else
23 #define INLINE
24 #endif
25
26 /* Firm statistics need hooks */
27 #ifdef FIRM_STATISTICS
28 #ifndef FIRM_ENABLE_HOOKS
29 #define FIRM_ENABLE_HOOKS
30 #endif
31 #endif
32 ])
33
34 dnl keep track of the environment set by the user
35 libfirm_conf_env="${CC+CC='$CC'} ${CFLAGS+CFLAGS='$CFLAGS'} ${CPP+CPP='$CPP'} ${CPPFLAGS+CPPFLAGS='$CPPFLAGS'} ${LDFLAGS+LDFLAGS='$LDFLAGS'} ${LIBS+LIBS='$LIBS'}"
36 AC_SUBST(libfirm_conf_env)
37
38 dnl Package options
39 dnl ===============
40
41 dnl enabled external libFirm plugins
42 dnl -------------
43 AC_MSG_CHECKING([for external libfirm plugins])
44 AC_ARG_WITH([plugins],
45 [AS_HELP_STRING([--with-plugins=list], [include external libfirm plugins list (space separated)])],
46 [
47   plugin_subdirs=$withval
48   plugin_files=
49   for i in $withval ; do
50     plugin_files="$i/Makefile $plugin_files"
51   done
52   AC_CONFIG_FILES($plugin_files)
53 ],
54 [
55  plugin_files=
56  plugin_subdirs=
57 ])
58 AC_SUBST(plugin_subdirs)
59 if test "$plugin_subdirs" == ""; then
60   AC_MSG_RESULT([disabled])
61 else
62   AC_MSG_RESULT([$plugin_subdirs])
63 fi
64
65 dnl check for additional include dirs
66 AC_ARG_WITH(includedir, [  --with-includedir=add   colon seperated list of directories to include search path],
67     CPPFLAGS=$CPPFLAGS" -I"`echo $withval|sed 's;\:; -I;g'`)
68
69 dnl check for additional library dirs
70 AC_ARG_WITH(libdir, [  --with-libdir=add       colon seperated list of directories to linker search path],
71     LDFLAGS=$LDFLAGS" -L"`echo $withval|sed 's;\:; -L;g'`)
72
73 dnl set debugging
74 dnl -------------
75 AC_ARG_ENABLE([debug],
76 [AS_HELP_STRING([--disable-debug], [disable verifiers and additional debugging routines])],
77 [enable_debug_libfirm="$enableval"], [enable_debug_libfirm="yes"])
78 if test "$enable_debug_libfirm" = yes; then
79   AC_DEFINE([DEBUG_libfirm], [], [define to enable debugging stuff])
80 fi
81 AC_SUBST([enable_debug_libfirm])
82
83 AC_ARG_ENABLE([assert],
84 [AS_HELP_STRING([--disable-assert], [disable assertions])],
85 [enable_assert="$enableval"], [enable_assert="yes"])
86 if test "$enable_assert" = no; then
87   AC_DEFINE([NDEBUG], [], [define to disable asserts])
88 fi
89 AC_SUBST([enable_assert])
90
91 dnl disable inlining
92 dnl ----------------
93 AC_ARG_ENABLE([inlining],
94 [AS_HELP_STRING([--disable-inlining], [disable inline C-extension])],
95 [enable_inlining="$enableval"], [enable_inlining="yes"])
96
97 if test "$enable_inlining" = yes; then
98   AC_DEFINE([USE_INLINING], [], [use inlining])
99 fi
100 AC_SUBST([enable_inlining])
101
102 dnl set profiling
103 dnl -------------
104 AC_ARG_ENABLE([profile],
105 [AS_HELP_STRING([--enable-profile], [enable profiling])],
106 [enable_profile_libfirm="$enableval"], [enable_profile_libfirm="no"])
107
108 AC_SUBST([enable_profile_libfirm])
109
110 dnl set auto documentation
111 dnl ----------------------
112 AC_ARG_ENABLE([autodoc],
113 [AS_HELP_STRING([--enable-autodoc], [enable auto documentation])],
114 [enable_auto_documentation="$enableval"], [enable_auto_documentation="no"])
115
116 AC_SUBST([enable_auto_documentation])
117
118 dnl set firm jni
119 dnl ------------
120 AC_ARG_ENABLE([firmjni],
121 [AS_HELP_STRING([--enable-firmjni], [check for tools necesarry to construct a java native interface for Firm])],
122 [enable_firm_jni="$enableval"], [enable_firm_jni="no"])
123
124 AC_SUBST(enable_firm_jni)
125
126 dnl set heap analyses support
127 dnl -------------------------
128 AC_ARG_ENABLE([heapanalysis],
129 [AS_HELP_STRING([--enable-heapanalysis], [Compile with heap analysis.])],
130 [enable_heapanalysis=$enableval], [enable_heapanalysis="no"])
131
132 if test "$enable_heapanalysis" = "yes"; then
133   AC_DEFINE([DO_HEAPANALYSIS], [], [enable heap analysis])
134 fi
135 AC_SUBST([enable_heapanalysis])
136
137 dnl enable Firm hooks
138 dnl -------------
139 AC_ARG_ENABLE([hooks],
140 [AS_HELP_STRING([--disable-hooks], [disable Firm hooks])],
141 [enable_hooks="$enableval"], [enable_hooks="yes"])
142
143 if test "$enable_hooks" = yes; then
144         AC_DEFINE([FIRM_ENABLE_HOOKS], [], [enable firm hooks])
145 fi
146
147 dnl enable Firm statistics
148 dnl -------------
149 AC_ARG_ENABLE([statistics],
150 [AS_HELP_STRING([--enable-statistics], [enable Firm statistics])],
151 [enable_statistics="$enableval"], [enable_statistics="no"])
152
153 if test "$enable_statistics" = yes; then
154   AC_DEFINE([FIRM_STATISTICS], [], [enable statistics code])
155 fi
156 AC_SUBST([enable_statistics])
157
158 dnl enable libcore support
159 dnl --------------------------------
160 AC_ARG_ENABLE([libcore],
161 [AS_HELP_STRING([--disable-libcore], [disable libcore support])],
162 [enable_libcore="$enableval"],[enable_libcore="yes"])
163
164 if test "$enable_libcore" = yes; then
165         AC_MSG_CHECKING([for libcore])
166         LIBS="$LIBS -lcore"
167         AC_LINK_IFELSE(
168                 AC_LANG_PROGRAM([#include <libcore/lc_opts.h>],
169                         [lc_opts_init("", 0, "", 1, 0)]),
170                 [],
171                 [AC_MSG_ERROR(
172                         [Couldn't build libcore testprogramm. Check config.log for details])])
173         AC_DEFINE([WITH_LIBCORE], [], [compile with libcore support])
174 fi
175 AC_SUBST([enable_libcore])
176
177 dnl enable ILP solver support
178 dnl --------------------------------
179 AC_ARG_ENABLE([ilp],
180 [AS_HELP_STRING([--enable-ilp], [enable ilp solver])],
181 [enable_ilp="$enableval"], [enable_ilp="no"])
182
183 if test "$enable_ilp" = yes; then
184   AC_DEFINE([WITH_ILP], [], [compile with ilp solver support])
185 fi
186 AC_SUBST(enable_ilp)
187
188 dnl enable JVM calling from Firm
189 dnl --------------------------------
190 AC_ARG_ENABLE([jvm],
191 [AS_HELP_STRING([--enable-jvm], [enable to call the jvm])],
192 [enable_jvm="$enableval"], [enable_jvm="no"])
193
194 if test "$enable_jvm" = yes; then
195   AC_DEFINE([WITH_JVM], [], [compile with jvm support])
196 fi
197 AC_SUBST(enable_jvm)
198
199 dnl enable wchar_t support for identifiers
200 dnl --------------------------------
201 AC_ARG_ENABLE([wchar_support],
202 [AS_HELP_STRING([--enable-wchar-support], [enable wchar_t support for identifiers (needed for java)])],
203 [enable_wchar_support="$enableval"], [enable_wchar_support="no"])
204
205 if test "$enable_wchar_support" = yes; then
206   AC_DEFINE([FIRM_ENABLE_WCHAR], [], [enable wchar_t support for identifiers])
207 fi
208 AC_SUBST([enable_wchar_support])
209
210 dnl disable external effects in XML
211 dnl -------------------------------
212 AC_ARG_ENABLE([external-effects],
213 [AS_HELP_STRING([--enable-external-effects], [enable reading of descriptions of external effects in XML])],
214 [enable_external_effects="$enableval"], [enable_external_effects="no"])
215
216 AC_SUBST(enable_external_effects)
217
218 dnl Checks for programs.
219 dnl ====================
220
221 dnl check for a C compiler
222 dnl ----------------------
223 AC_PROG_CC
224
225 dnl check for awk
226 dnl -------------
227 AC_PROG_AWK
228
229 dnl check for prelinkable linker
230 dnl ----------------------------
231 LIBFIRM_PROG_LD_R
232 if test "$libfirm_cv_prog_ld_r" != "yes"; then
233   AC_MSG_ERROR(need a prelinkcapable linker)
234 fi
235
236 dnl check for ar
237 dnl ------------
238 AC_CHECK_PROG(AR, ar, "ar", "")
239 if test "$AR" != "ar"; then
240   AC_MSG_ERROR(need ar for creating archives)
241 fi
242
243 dnl check for tar
244 dnl -------------
245 AC_CHECK_PROG(TAR, tar, "tar", "")
246 if test "$TAR" != "tar"; then
247   AC_MSG_ERROR(need tar for creating archives in distribution)
248 fi
249
250 dnl check whether ar can handle option -s
251 dnl if not then ranlib is needed
252 dnl for simpliticity we use ranlib every time
253
254 AC_PROG_RANLIB
255
256 AC_PROG_INSTALL
257
258 touch tmp-install.a tmp-install.b
259 if eval "$INSTALL tmp-install.a tmp-install.b" ; then
260     INSTALL="$INSTALL"
261 fi
262 rm tmp-install.a tmp-install.b
263
264
265 AC_PROG_LN_S
266
267 dnl check for doxygen if enabled
268 dnl ----------------------------
269 if test "$enable_auto_documentation" = yes; then
270   AC_CHECK_PROG(DOXYGEN, doxygen, "doxygen", "")
271   if test "$DOXYGEN" != "doxygen"; then
272     AC_MSG_ERROR(need doxygen for auto documentation)
273   fi
274   AC_CHECK_PROG(DOT, dot, "dot", "")
275   if test "$DOT" != "dot"; then
276     AC_MSG_ERROR(need dot for doxygen documentation (for class graphs) (IPD: module add Graphviz))
277   fi
278 fi
279
280 dnl check for availability of a jdk
281 dnl -------------------------------
282 if test "$enable_firm_jni" = yes; then
283   AC_CHECK_PROG(JAVAC, javac, "javac", "")
284   if test "$JAVAC" != "javac"; then
285     AC_MSG_ERROR(need java compiler javac to generate jni (IPD: module add jdk-1.3.1-sun))
286   fi
287   AC_CHECK_PROG(JAVAH, javah, "javah", "")
288   if test "$JAVAH" != "javah"; then
289     AC_MSG_ERROR(need javah to generate jni headers (IPD: module add jdk-1.3.1-sun))
290   fi
291 fi
292
293
294 dnl Checks for header files.
295 dnl ========================
296
297 AC_HEADER_STDC
298
299 dnl check for the math header file
300
301 AC_CHECK_HEADERS(math.h, ac_math_headers="yes", ac_math_headers="no")
302 if test "$ac_math_headers" != yes; then
303   dnl math header not found.
304   AC_MSG_ERROR("math header file not found")
305 fi
306
307
308 dnl check for the obstack header file
309 dnl does not work with:
310 dnl  - cygwin
311 dnl  - MacOSX
312 #AC_FUNC_OBSTACK
313
314 AC_CHECK_HEADERS(obstack.h, ac_obstack_headers="yes", ac_obstack_headers="no")
315 if test "$ac_obstack_headers" != yes; then
316   dnl obstack header not found.
317   AC_MSG_ERROR("obstack.h not found")
318 fi
319
320
321 AC_CHECK_HEADERS(alloca.h, ac_alloca_headers="yes", ac_alloca_headers="no")
322 if test "$ac_alloca_headers" = "yes"; then
323     AC_DEFINE(HAVE_ALLOCA_H)
324 else
325   if test "$ac_cv_header_stdc" = "no"; then
326     AC_MSG_ERROR("alloca.h and stdlib.h not found")
327   fi
328 fi
329
330
331 dnl check for jni header files
332
333 if test "$enable_firm_jni" = yes; then
334   AC_CHECK_HEADERS(jni.h, ac_jni_headers="yes", ac_jni_headers="no")
335   if test "$ac_jni_headers" != yes; then
336     AC_MSG_ERROR(jni header file not found. (IPD: add --with-includedir=/usr/public2/java/jdk1.3.1-sun/include/:/usr/public2/java/jdk1.3.1-sun/include/linux/ to configure flags))
337   fi
338 fi
339
340
341 if test "$enable_external_effects" == "yes"; then
342         dnl check for libxml2 library installation dir
343         AC_CHECK_PROG(XML2CONFIG, xml2-config, "xml2-config", "echo")
344         if test "$XML2CONFIG" != "xml2-config"; then
345           AC_MSG_ERROR(xml2-config for detecting libxml2 not found)
346         fi
347         AC_SUBST(XML2CONFIG)
348         LDFLAGS=$LDFLAGS" -L/usr/lib `$XML2CONFIG --libs`";
349         CPPFLAGS=$CPPFLAGS" `$XML2CONFIG --cflags`";
350
351         AC_CHECK_HEADERS(libxml/parser.h, ac_xml_headers="yes", ac_xml_headers="no")
352         if test "$ac_xml_headers" != yes; then
353                 AC_MSG_ERROR(xml header files not found. (IPD: add --with-includedir=/usr/public/libxml2/include/libxml2/ to configure flags))
354         fi
355 fi
356
357 dnl Checks for libraries.
358 dnl =====================
359
360 AC_CHECK_LIB(m, main, ac_m_library="yes", ac_m_library="no")
361 if test "$ac_m_library" != yes; then
362   dnl std math library not found.
363   AC_MSG_ERROR("standard math library not found")
364 fi
365
366
367 if test "$enable_external_effects" == "yes"; then
368   AC_CHECK_LIB(xml2, xmlParseFile, ac_xml_library="yes", ac_xml_library="no")
369   if test "$ac_m_library" != yes; then
370     AC_MSG_ERROR("xml2 library not found (IPD: add --with-libdir=/usr/public/libxml2/lib/ to configure flags)")
371   else
372     LIBS=$LIBS" -lxml2"
373   fi
374 fi
375
376 dnl Checks for typedefs, structures, and compiler characteristics.
377 dnl ==============================================================
378 AC_C_CONST
379 AC_C_VOLATILE
380 AC_C_INLINE
381 AC_C_BIGENDIAN(,,,)
382 AC_C_LONG_DOUBLE
383
384 dnl Checks for library functions.
385 dnl =============================
386
387 dnl check for strerror
388
389 AC_CHECK_FUNC(strerror,,
390   AC_MSG_ERROR("need strerror function")
391 )
392
393 dnl we use the gnu extension obstack_printf
394 AC_DEFINE([_GNU_SOURCE], [], [we use gnu extensions])
395 AC_CHECK_FUNC(strerror,,
396   AC_MSG_ERROR("need obstack_printf function")
397 )
398
399 dnl Error messaging
400 dnl ===============
401
402
403 AC_CONFIG_FILES([
404         Makefile
405         MakeRules
406         ir/Makefile
407         ir/adt/Makefile
408         ir/net/Makefile
409         ir/debug/Makefile
410         ir/tv/Makefile
411         ir/common/Makefile
412         ir/ident/Makefile
413         ir/ir/Makefile
414         ir/ana/Makefile
415         ir/tr/Makefile
416         ir/ana2/Makefile
417         ir/stat/Makefile
418         ir/opt/Makefile
419         ir/external/Makefile
420         ir/config/Makefile
421         ir/arch/Makefile
422         ir/lower/Makefile
423         testprograms/Makefile
424         firmjni/Makefile
425         firmjni/testprograms/Makefile
426         libfirm.doxygen
427         libfirm.pc
428 ])
429 AC_CONFIG_COMMANDS([stamp-h], [touch stamp-h])
430 dnl snip the lower part of config.h and put it to ir/config/firm_config.h
431 AC_CONFIG_COMMANDS([firm_config.h],
432         [awk -f ${ac_top_srcdir}/filter.awk < ${ac_top_builddir}config.h > ${ac_top_builddir}ir/config/firm_config.h])
433 AC_OUTPUT
434
435 dnl output summary of firm configuration
436 echo ""
437 echo "firm configuration summary:"
438 echo "     profiling             $enable_profile_libfirm"
439 echo "     debug/verifiers       $enable_debug_libfirm"
440 echo "     assertions            $enable_assert"
441 echo "     hooks                 $enable_hooks"
442 echo "     statistics            $enable_statistics"
443 echo "     libcore               $enable_libcore"
444 echo "     ilp                   $enable_ilp"
445 echo "     jvm                   $enable_jvm"
446 echo "     wide char support     $enable_wchar_support"
447 echo "     external effects xml  $enable_external_effects"
448 echo "     plugins               $plugin_subdirs"
449 echo ""
450
451 dnl FIXME: this is bad
452 dnl for i in $plugin_subdirs
453 dnl do
454 dnl     suffix=`echo $i | tr /a-z _A-Z`
455 dnl     echo "/* enabled plugin: $i */" >> config.h
456 dnl     echo "#define PLUGIN_$suffix 1" >> config.h
457 dnl done