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