fix fehler37, ALWAYS RETURN 0 at end of main
[libfirm] / configure.in
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 AC_INIT([libfirm],[1.9.0],[firm@ipd.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 AC_SUBST([enable_libcore])
165
166 dnl enable ILP solver support
167 dnl --------------------------------
168 AC_ARG_ENABLE([ilp],
169 [AS_HELP_STRING([--enable-ilp], [enable ilp solver])],
170 [enable_ilp="$enableval"], [enable_ilp="no"])
171
172 if test "$enable_ilp" = yes; then
173   AC_DEFINE([WITH_ILP], [], [compile with ilp solver support])
174 fi
175 AC_SUBST(enable_ilp)
176
177 dnl enable JVM calling from Firm
178 dnl --------------------------------
179 AC_ARG_ENABLE([jvm],
180 [AS_HELP_STRING([--enable-jvm], [enable to call the jvm])],
181 [enable_jvm="$enableval"], [enable_jvm="no"])
182
183 if test "$enable_jvm" = yes; then
184   AC_DEFINE([WITH_JVM], [], [compile with jvm support])
185 fi
186 AC_SUBST(enable_jvm)
187
188 dnl enable wchar_t support for identifiers
189 dnl --------------------------------
190 AC_ARG_ENABLE([wchar_support],
191 [AS_HELP_STRING([--enable-wchar-support], [enable wchar_t support for identifiers (needed for java)])],
192 [enable_wchar_support="$enableval"], [enable_wchar_support="no"])
193
194 if test "$enable_wchar_support" = yes; then
195   AC_DEFINE([FIRM_ENABLE_WCHAR], [], [enable wchar_t support for identifiers])
196 fi
197 AC_SUBST([enable_wchar_support])
198
199 dnl disable external effects in XML
200 dnl -------------------------------
201 AC_ARG_ENABLE([external-effects],
202 [AS_HELP_STRING([--enable-external-effects], [enable reading of descriptions of external effects in XML])],
203 [enable_external_effects="$enableval"], [enable_external_effects="no"])
204
205 AC_SUBST(enable_external_effects)
206
207 dnl disable backend
208 dnl ---------------
209 AC_ARG_ENABLE([backend],
210 [AS_HELP_STRING([--disable-backend], [disable backends])],
211 [enable_backend="$enableval"], [enable_backend="yes"])
212
213 AC_SUBST(enable_backend)
214
215 dnl Checks for programs.
216 dnl ====================
217
218 dnl check for a C compiler
219 dnl ----------------------
220 AC_PROG_CC
221
222 dnl check for awk
223 dnl -------------
224 AC_PROG_AWK
225
226 dnl check for prelinkable linker
227 dnl ----------------------------
228 LIBFIRM_PROG_LD_R
229 if test "$libfirm_cv_prog_ld_r" != "yes"; then
230   AC_MSG_ERROR(need a prelinkcapable linker)
231 fi
232
233 dnl check for ar
234 dnl ------------
235 AC_CHECK_PROG(AR, ar, "ar", "")
236 if test "$AR" != "ar"; then
237   AC_MSG_ERROR(need ar for creating archives)
238 fi
239
240 dnl check for tar
241 dnl -------------
242 AC_CHECK_PROG(TAR, tar, "tar", "")
243 if test "$TAR" != "tar"; then
244   AC_MSG_ERROR(need tar for creating archives in distribution)
245 fi
246
247 dnl check whether ar can handle option -s
248 dnl if not then ranlib is needed
249 dnl for simpliticity we use ranlib every time
250
251 AC_PROG_RANLIB
252
253 AC_PROG_INSTALL
254
255 touch tmp-install.a tmp-install.b
256 if eval "$INSTALL tmp-install.a tmp-install.b" ; then
257     INSTALL="$INSTALL"
258 fi
259 rm tmp-install.a tmp-install.b
260
261
262 AC_PROG_LN_S
263
264 dnl check for doxygen if enabled
265 dnl ----------------------------
266 if test "$enable_auto_documentation" = yes; then
267   AC_CHECK_PROG(DOXYGEN, doxygen, "doxygen", "")
268   if test "$DOXYGEN" != "doxygen"; then
269     AC_MSG_ERROR(need doxygen for auto documentation)
270   fi
271   AC_CHECK_PROG(DOT, dot, "dot", "")
272   if test "$DOT" != "dot"; then
273     AC_MSG_ERROR(need dot for doxygen documentation (for class graphs) (IPD: module add Graphviz))
274   fi
275 fi
276
277 dnl check for availability of a jdk
278 dnl -------------------------------
279 if test "$enable_firm_jni" = yes; then
280   AC_CHECK_PROG(JAVAC, javac, "javac", "")
281   if test "$JAVAC" != "javac"; then
282     AC_MSG_ERROR(need java compiler javac to generate jni (IPD: module add jdk-1.3.1-sun))
283   fi
284   AC_CHECK_PROG(JAVAH, javah, "javah", "")
285   if test "$JAVAH" != "javah"; then
286     AC_MSG_ERROR(need javah to generate jni headers (IPD: module add jdk-1.3.1-sun))
287   fi
288 fi
289
290 dnl check for availability of pkg-config
291 PKG_PROG_PKG_CONFIG
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 if test "$enable_libcore" == "yes"; then
377         PKG_CHECK_MODULES([LIBCORE], [libcore])
378         AC_DEFINE([WITH_LIBCORE], [], [define to 1 to use the libcore])
379 fi
380
381 dnl Checks for typedefs, structures, and compiler characteristics.
382 dnl ==============================================================
383 AC_C_CONST
384 AC_C_VOLATILE
385 AC_C_INLINE
386 AC_C_BIGENDIAN(,,,)
387 AC_C_LONG_DOUBLE
388
389 dnl Checks for library functions.
390 dnl =============================
391
392 dnl check for strerror
393
394 AC_CHECK_FUNC(strerror,,
395   AC_MSG_ERROR("need strerror function")
396 )
397
398 dnl we use the gnu extension obstack_printf
399 AC_DEFINE([_GNU_SOURCE], [], [we use gnu extensions])
400 AC_CHECK_FUNC(strerror,,
401   AC_MSG_ERROR("need obstack_printf function")
402 )
403
404 dnl Error messaging
405 dnl ===============
406
407
408 dnl Output results
409 AC_CONFIG_FILES([
410         Makefile
411         MakeRules
412         ir/Makefile
413         ir/adt/Makefile
414         ir/net/Makefile
415         ir/debug/Makefile
416         ir/tv/Makefile
417         ir/common/Makefile
418         ir/ident/Makefile
419         ir/ir/Makefile
420         ir/ana/Makefile
421         ir/tr/Makefile
422         ir/stat/Makefile
423         ir/opt/Makefile
424         ir/external/Makefile
425         ir/config/Makefile
426         ir/arch/Makefile
427         ir/lower/Makefile
428         testprograms/Makefile
429         firmjni/Makefile
430         firmjni/testprograms/Makefile
431         include/libfirm/Makefile
432         libfirm.doxygen
433         libfirm.pc
434 ])
435 AC_CONFIG_COMMANDS([stamp-h], [touch stamp-h])
436 dnl snip the lower part of config.h and put it to ir/config/firm_config.h
437 AC_CONFIG_COMMANDS([firm_config.h],
438         [awk -f ${ac_top_srcdir}/filter.awk < ${ac_top_builddir}config.h > ${ac_top_builddir}ir/config/firm_config.h])
439
440 BACKENDS=""
441 if test "$enable_backend" == yes; then
442         BACKENDS="arm ia32 mips ppc32"
443 fi
444 AC_SUBST([BACKENDS])
445
446 if test "$BACKENDS"; then
447         AC_CONFIG_FILES([ir/be/Makefile])
448         for backend in $BACKENDS; do
449                 AC_CONFIG_FILES([ir/be/$backend/Makefile])
450         done
451 fi
452
453 AC_OUTPUT
454
455 dnl output summary of firm configuration
456 echo ""
457 echo "firm configuration summary:"
458 echo "     backends              $BACKENDS"
459 echo "     profiling             $enable_profile_libfirm"
460 echo "     debug/verifiers       $enable_debug_libfirm"
461 echo "     assertions            $enable_assert"
462 echo "     hooks                 $enable_hooks"
463 echo "     statistics            $enable_statistics"
464 echo "     libcore               $enable_libcore"
465 echo "     ilp                   $enable_ilp"
466 echo "     jvm                   $enable_jvm"
467 echo "     wide char support     $enable_wchar_support"
468 echo "     external effects xml  $enable_external_effects"
469 echo "     plugins               $plugin_subdirs"
470 echo ""
471
472 dnl FIXME: this is bad
473 dnl for i in $plugin_subdirs
474 dnl do
475 dnl     suffix=`echo $i | tr /a-z _A-Z`
476 dnl     echo "/* enabled plugin: $i */" >> config.h
477 dnl     echo "#define PLUGIN_$suffix 1" >> config.h
478 dnl done