44c4f549dcc2ab4f1718a57aa95751aaa3701149
[libfirm] / configure.in
1 dnl
2 dnl Project:     libFIRM
3 dnl File name:   configure.in
4 dnl Purpose:
5 dnl Author:      Till Riedel (??)
6 dnl Modified by:
7 dnl Created:
8 dnl CVS-ID:      $Id$
9 dnl Copyright:   (c) 2002-2003 Universität Karlsruhe
10 dnl Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11 dnl
12
13
14 AC_REVISION($Id$)
15
16 AC_INIT(libfirm,0.3.0)
17 AC_PREREQ(2.50)
18
19 dnl if other files should be generated just add them to ac_output_files
20 ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/debug/Makefile \
21                 ir/tv/Makefile ir/common/Makefile ir/ident/Makefile ir/ir/Makefile \
22                 ir/ana/Makefile ir/tr/Makefile ir/ana2/Makefile ir/stat/Makefile \
23                 ir/opt/Makefile ir/external/Makefile ir/config/Makefile \
24                 ir/arch/Makefile \
25                 testprograms/Makefile firmjni/Makefile firmjni/testprograms/Makefile \
26                 libfirm.doxygen"
27
28 dnl generate the config header file
29 AC_CONFIG_HEADER(config.h)
30
31 dnl keep track of the environment set by the user
32 libfirm_conf_env="${CC+CC='$CC'} ${CFLAGS+CFLAGS='$CFLAGS'} ${CPP+CPP='$CPP'} ${CPPFLAGS+CPPFLAGS='$CPPFLAGS'} ${LDFLAGS+LDFLAGS='$LDFLAGS'} ${LIBS+LIBS='$LIBS'}"
33 AC_SUBST(libfirm_conf_env)
34
35 dnl where is the configure file
36 CONF_DIR_NAME=`dirname $0`
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 [  --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_output_file="$ac_output_file $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 check for libxml2 library installation dir
74 AC_ARG_WITH(libxml2, [  --with-libxml2=prefix   installation prefix of libxml2 (IPD: --with-libxml2=/usr/public/libxml2)],
75     LDFLAGS=$LDFLAGS" -L"$withval"/lib";
76         CPPFLAGS=$CPPFLAGS" -I"$withval"/include/libxml2")
77
78 dnl set debugging
79 dnl -------------
80 AC_ARG_ENABLE(debug,
81 [  --enable-debug          enable assertions and additional debugging routines],
82 [if test "$enableval" = yes; then
83   AC_DEFINE(DEBUG_libfirm)
84 else
85   AC_DEFINE(NDEBUG)
86 fi])
87 AC_SUBST(enable_debug_libfirm)
88
89 dnl disable inlining
90 dnl ----------------
91 AC_ARG_ENABLE(inlining,
92 [  --disable-inlining      disable inline C-extension],
93 [if test "$enableval" = yes; then
94   AC_DEFINE(USE_INLINING)
95 fi],
96 AC_DEFINE(USE_INLINING)
97 )
98
99 dnl set profiling
100 dnl -------------
101 AC_ARG_ENABLE(profile,
102 [  --enable-profile        enable profiling],
103 [if test "$enableval"=yes; then
104   enable_profile_libfirm=yes
105 fi],
106 [enable_profile_libfirm=no])
107 AC_SUBST(enable_profile_libfirm)
108
109 dnl set auto documentation
110 dnl ----------------------
111 AC_ARG_ENABLE(autodoc,
112 [  --enable-autodoc        enable auto documentation],
113 [if test "$enableval"=yes; then
114   enable_auto_documentation=yes
115 fi],
116 [enable_auto_documentation=no])
117 AC_SUBST(enable_auto_documentation)
118
119
120 dnl set firm jni
121 dnl ------------
122 AC_ARG_ENABLE(firmjni,
123 [  --enable-firmjni        check for tools necesarry to construct a java native interface for Firm],
124 [if test "$enableval"=yes; then
125   enable_firm_jni=yes
126 fi],
127 [enable_firm_jni=no])
128 AC_SUBST(enable_firm_jni)
129
130 dnl set heap analyses support
131 dnl -------------------------
132 AC_MSG_CHECKING([for heapanalysis])
133 AC_ARG_ENABLE(heapanalysis, [  --enable-heapanalysis   Compile with heap analysis.],
134         [enable_heapanalysis=$enableval], [enable_heapanalysis="no"])
135 if test "$enable_heapanalysis" = "no"; then
136   AC_MSG_RESULT([disabled])
137 else
138   AC_DEFINE(DO_HEAPANALYSIS)
139   AC_MSG_RESULT([enabled])
140 fi
141 AC_SUBST(enable_heapanalysis)
142
143 dnl disable linking of libiberty parts (xmalloc, xprintf, obstack, ...)
144 dnl ----------------------
145 AC_ARG_ENABLE(libiberty,
146 [  --disable-libiberty     disable own libiberty parts],
147 [if test "$enableval"=yes; then
148   disable_libiberty=yes
149 fi],
150 [disable_libiberty=no])
151 AC_SUBST(disable_libiberty)
152
153 dnl enable Firm hooks
154 dnl -------------
155 AC_ARG_ENABLE(hooks,
156 [  --disable-hooks         disable Firm hooks],
157 [if test "$enableval" = yes; then
158   AC_DEFINE(FIRM_ENABLE_HOOKS)
159 fi],
160 AC_DEFINE(FIRM_ENABLE_HOOKS)
161 )
162
163 dnl enable Firm statistics
164 dnl -------------
165 AC_ARG_ENABLE(statistics,
166 [  --enable-statistics     enable Firm statistics],
167 [if test "$enableval"=yes; then
168   AC_DEFINE(FIRM_STATISTICS)
169 fi])
170 AC_SUBST(enable_statistics)
171
172 dnl enable libcore debugging support
173 dnl --------------------------------
174 AC_ARG_ENABLE(libcore,
175 [  --enable-libcore        enable libcore debugging],
176 [if test "$enableval"=yes; then
177   AC_DEFINE(WITH_LIBCORE)
178 fi])
179 AC_SUBST(enable_libcore)
180
181 dnl disable external effects in XML
182 dnl -------------------------------
183 AC_MSG_CHECKING([for using external effects in xml2])
184 AC_ARG_ENABLE(external-effects,
185 [  --disable-external-effects  disable descriptions of external effects in XML],
186 [if test "$enableval"="no"; then
187   enable_external_effects=no
188 fi],
189 [enable_external_effects=yes])
190 AC_SUBST(enable_external_effects)
191 if test "$enable_external_effects" == no; then
192   AC_MSG_RESULT([disabled])
193 else
194   AC_MSG_RESULT([enabled])
195 fi
196 dnl check for header and library below
197
198 dnl Checks for programs.
199 dnl ====================
200
201 dnl check for a C compiler
202 dnl ----------------------
203 AC_PROG_CC
204
205 dnl check for prelinkable linker
206 dnl ----------------------------
207 LIBFIRM_PROG_LD_R
208 if test "$libfirm_cv_prog_ld_r" != "yes"; then
209   AC_MSG_ERROR(need a prelinkcapable linker)
210 fi
211
212 dnl check for ar
213 dnl ------------
214 AC_CHECK_PROG(AR, ar, "ar", "")
215 if test "$AR" != "ar"; then
216   AC_MSG_ERROR(need ar for creating archives)
217 fi
218
219 dnl check for tar
220 dnl -------------
221 AC_CHECK_PROG(TAR, tar, "tar", "")
222 if test "$TAR" != "tar"; then
223   AC_MSG_ERROR(need tar for creating archives in distribution)
224 fi
225
226 dnl check whether ar can handle option -s
227 dnl if not then ranlib is needed
228 dnl for simpliticity we use ranlib every time
229
230 AC_PROG_RANLIB
231
232 AC_PROG_INSTALL
233
234 touch tmp-install.a tmp-install.b
235 if eval "$INSTALL tmp-install.a tmp-install.b" ; then
236     INSTALL="$INSTALL"
237 fi
238 rm tmp-install.a tmp-install.b
239
240
241 AC_PROG_LN_S
242
243 dnl check for doxygen if enabled
244 dnl ----------------------------
245 if test "$enable_auto_documentation" = yes; then
246   AC_CHECK_PROG(DOXYGEN, doxygen, "doxygen", "")
247   if test "$DOXYGEN" != "doxygen"; then
248     AC_MSG_ERROR(need doxygen for auto documentation)
249   fi
250   AC_CHECK_PROG(DOT, dot, "dot", "")
251   if test "$DOT" != "dot"; then
252     AC_MSG_ERROR(need dot for doxygen documentation (for class graphs) (IPD: module add Graphviz))
253   fi
254 fi
255
256 dnl check for availability of a jdk
257 dnl -------------------------------
258 if test "$enable_firm_jni" = yes; then
259   AC_CHECK_PROG(JAVAC, javac, "javac", "")
260   if test "$JAVAC" != "javac"; then
261     AC_MSG_ERROR(need java compiler javac to generate jni (IPD: module add jdk-1.3.1-sun))
262   fi
263   AC_CHECK_PROG(JAVAH, javah, "javah", "")
264   if test "$JAVAH" != "javah"; then
265     AC_MSG_ERROR(need javah to generate jni headers (IPD: module add jdk-1.3.1-sun))
266   fi
267 fi
268
269
270 dnl Checks for header files.
271 dnl ========================
272
273 AC_HEADER_STDC
274
275 dnl check for the math header file
276
277 AC_CHECK_HEADERS(math.h, ac_math_headers="yes", ac_math_headers="no")
278 if test "$ac_math_headers" != yes; then
279   dnl math header not found.
280   AC_MSG_ERROR("math header file not found")
281 fi
282
283
284 #dnl check for the gnu multiprecission (gmp) header file
285
286 #AC_CHECK_HEADERS(gmp.h, ac_gmp_headers="yes", ac_gmp_headers="no")
287 #if test "$ac_gmp_headers" != yes; then
288 #  dnl gmp header not found.
289 #  AC_MSG_ERROR("GNU multiprecission gmp header file not found")
290 #fi
291
292
293 dnl check for the obstack header file
294 dnl does not work with:
295 dnl  - cygwin
296 dnl  - MacOSX
297 #AC_FUNC_OBSTACK
298
299 AC_CHECK_HEADERS(obstack.h, ac_obstack_headers="yes", ac_obstack_headers="no")
300 if test "$ac_obstack_headers" != yes; then
301   dnl obstack header not found.
302   AC_MSG_ERROR("obstack.h not found")
303 fi
304
305
306 AC_CHECK_HEADERS(alloca.h, ac_alloca_headers="yes", ac_alloca_headers="no")
307 if test "$ac_alloca_headers" = "yes"; then
308     AC_DEFINE(HAVE_ALLOCA_H)
309 else
310   if test "$ac_cv_header_stdc" = "no"; then
311     AC_MSG_ERROR("alloca.h and stdlib.h not found")
312   fi
313 fi
314
315
316 dnl check for jni header files
317
318 if test "$enable_firm_jni" = yes; then
319   AC_CHECK_HEADERS(jni.h, ac_jni_headers="yes", ac_jni_headers="no")
320   if test "$ac_jni_headers" != yes; then
321     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))
322   fi
323 fi
324
325
326 if test "$enable_external_effects" == "yes"; then
327   AC_CHECK_HEADERS(libxml/parser.h, ac_xml_headers="yes", ac_xml_headers="no")
328   if test "$ac_xml_headers" != yes; then
329     AC_MSG_ERROR(xml header files not found. (IPD: add --with-includedir=/usr/public/libxml2/include/libxml2/ to configure flags))
330   fi
331 fi
332
333 dnl Checks for libraries.
334 dnl =====================
335
336 #dnl check for the gnu multiprecission (gmp) library
337
338 #AC_CHECK_LIB(gmp, main, ac_gmp_library="yes", ac_gmp_library="no")
339 #if test "$ac_gmp_library" != yes; then
340 #  dnl gmp library not found.
341 #  AC_MSG_ERROR("GNU multiprecission gmp library not found")
342 #fi
343
344
345 AC_CHECK_LIB(m, main, ac_m_library="yes", ac_m_library="no")
346 if test "$ac_m_library" != yes; then
347   dnl std math library not found.
348   AC_MSG_ERROR("standard math library not found")
349 fi
350
351
352 if test "$enable_external_effects" == "yes"; then
353   AC_CHECK_LIB(xml2, xmlParseFile, ac_xml_library="yes", ac_xml_library="no")
354   if test "$ac_m_library" != yes; then
355     AC_MSG_ERROR("xml2 library not found (IPD: add --with-libdir=/usr/public/libxml2/lib/ to configure flags)")
356   else
357     LIBS=$LIBS" -lxml2"
358   fi
359 fi
360
361 dnl Checks for typedefs, structures, and compiler characteristics.
362 dnl ==============================================================
363 AC_C_CONST
364 AC_C_VOLATILE
365 AC_C_INLINE
366 AC_C_BIGENDIAN(,,,)
367 AC_C_LONG_DOUBLE
368
369 dnl Checks for library functions.
370 dnl =============================
371
372 dnl check for strerror
373
374 AC_CHECK_FUNC(strerror,,
375   AC_MSG_ERROR("need strerror function")
376 )
377
378
379 dnl Error messaging
380 dnl ===============
381
382
383 AC_OUTPUT($ac_output_file,[ touch stamp-h ])
384
385 dnl snip the lower prt of config.h and put it to ir/config/firm_config.h
386 gawk -f $CONF_DIR_NAME/filter.awk < config.h | sed -f $CONF_DIR_NAME/filter.sed > ir/config/firm_config.h