Revert "Windows: Add support for unicode command lines"
[oota-llvm.git] / autoconf / configure.ac
1 dnl === configure.ac --------------------------------------------------------===
2 dnl                     The LLVM Compiler Infrastructure
3 dnl
4 dnl This file is distributed under the University of Illinois Open Source
5 dnl License. See LICENSE.TXT for details.
6 dnl
7 dnl===-----------------------------------------------------------------------===
8 dnl This is the LLVM configuration script. It is processed by the autoconf
9 dnl program to produce a script named configure. This script contains the
10 dnl configuration checks that LLVM needs in order to support multiple platforms.
11 dnl This file is composed of 10 sections per the recommended organization of
12 dnl autoconf input defined in the autoconf documentation. As this file evolves,
13 dnl please keep the various types of checks within their sections. The sections
14 dnl are as follows:
15 dnl
16 dnl SECTION 1: Initialization & Setup
17 dnl SECTION 2: Architecture, target, and host checks
18 dnl SECTION 3: Command line arguments for the configure script.
19 dnl SECTION 4: Check for programs we need and that they are the right version
20 dnl SECTION 5: Check for libraries
21 dnl SECTION 6: Check for header files
22 dnl SECTION 7: Check for types and structures
23 dnl SECTION 8: Check for specific functions needed
24 dnl SECTION 9: Additional checks, variables, etc.
25 dnl SECTION 10: Specify the output files and generate it
26 dnl
27 dnl===-----------------------------------------------------------------------===
28 dnl===
29 dnl=== SECTION 1: Initialization & Setup
30 dnl===
31 dnl===-----------------------------------------------------------------------===
32 dnl Initialize autoconf and define the package name, version number and
33 dnl address for reporting bugs.
34 AC_INIT([LLVM],[3.4svn],[http://llvm.org/bugs/])
35 AC_DEFINE([LLVM_VERSION_MAJOR], [3], [Major version of the LLVM API])
36 AC_DEFINE([LLVM_VERSION_MINOR], [4], [Minor version of the LLVM API])
37
38 dnl Provide a copyright substitution and ensure the copyright notice is included
39 dnl in the output of --version option of the generated configure script.
40 AC_SUBST(LLVM_COPYRIGHT,["Copyright (c) 2003-2013 University of Illinois at Urbana-Champaign."])
41 AC_COPYRIGHT([Copyright (c) 2003-2013 University of Illinois at Urbana-Champaign.])
42
43 dnl Indicate that we require autoconf 2.60 or later.
44 AC_PREREQ(2.60)
45
46 dnl Verify that the source directory is valid. This makes sure that we are
47 dnl configuring LLVM and not some other package (it validates --srcdir argument)
48 AC_CONFIG_SRCDIR([lib/IR/Module.cpp])
49
50 dnl Place all of the extra autoconf files into the config subdirectory. Tell
51 dnl various tools where the m4 autoconf macros are.
52 AC_CONFIG_AUX_DIR([autoconf])
53
54 dnl Quit if the source directory has already been configured.
55 dnl NOTE: This relies upon undocumented autoconf behavior.
56 if test ${srcdir} != "." ; then
57   if test -f ${srcdir}/include/llvm/Config/config.h ; then
58     AC_MSG_ERROR([Already configured in ${srcdir}])
59   fi
60 fi
61
62 dnl Default to empty (i.e. assigning the null string to) CFLAGS and CXXFLAGS,
63 dnl instead of the autoconf default (for example, '-g -O2' for CC=gcc).
64 : ${CFLAGS=}
65 : ${CXXFLAGS=}
66
67 dnl We need to check for the compiler up here to avoid anything else
68 dnl starting with a different one.
69 AC_PROG_CC(clang llvm-gcc gcc)
70 AC_PROG_CXX(clang++ llvm-g++ g++)
71 AC_PROG_CPP
72
73 dnl If CXX is Clang, check that it can find and parse C++ standard library
74 dnl headers.
75 if test "$CXX" = "clang++" ; then
76   AC_MSG_CHECKING([whether clang works])
77   AC_LANG_PUSH([C++])
78   dnl Note that space between 'include' and '(' is required.  There's a broken
79   dnl regex in aclocal that otherwise will think that we call m4's include
80   dnl builtin.
81   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <limits>
82 #if __has_include (<cxxabi.h>)
83 #include <cxxabi.h>
84 #endif
85 #if __has_include (<unwind.h>)
86 #include <unwind.h>
87 #endif
88 ]])],
89 [
90   AC_MSG_RESULT([yes])
91 ],
92 [
93   AC_MSG_RESULT([no])
94   AC_MSG_ERROR([Selected compiler could not find or parse C++ standard library headers.  Rerun with CC=c-compiler CXX=c++-compiler ./configure ...])
95 ])
96   AC_LANG_POP([C++])
97 fi
98
99 dnl Configure all of the projects present in our source tree. While we could
100 dnl just AC_CONFIG_SUBDIRS on the set of directories in projects that have a
101 dnl configure script, that usage of the AC_CONFIG_SUBDIRS macro is deprecated.
102 dnl Instead we match on the known projects.
103
104 dnl
105 dnl One tricky part of doing this is that some projects depend upon other
106 dnl projects.  For example, several projects rely upon the LLVM test suite.
107 dnl We want to configure those projects first so that their object trees are
108 dnl created before running the configure scripts of projects that depend upon
109 dnl them.
110 dnl
111
112 dnl Several projects use llvm-gcc, so configure that first
113 if test -d ${srcdir}/projects/llvm-gcc ; then
114   AC_CONFIG_SUBDIRS([projects/llvm-gcc])
115 fi
116
117 dnl Several projects use the LLVM test suite, so configure it next.
118 if test -d ${srcdir}/projects/test-suite ; then
119   AC_CONFIG_SUBDIRS([projects/test-suite])
120 fi
121
122 dnl llvm-test is the old name of the test-suite, kept here for backwards
123 dnl compatibility
124 if test -d ${srcdir}/projects/llvm-test ; then
125   AC_CONFIG_SUBDIRS([projects/llvm-test])
126 fi
127
128 dnl Some projects use poolalloc; configure that next
129 if test -d ${srcdir}/projects/poolalloc ; then
130   AC_CONFIG_SUBDIRS([projects/poolalloc])
131 fi
132
133 if test -d ${srcdir}/projects/llvm-poolalloc ; then
134   AC_CONFIG_SUBDIRS([projects/llvm-poolalloc])
135 fi
136
137 dnl Check for all other projects
138 for i in `ls ${srcdir}/projects`
139 do
140   if test -d ${srcdir}/projects/${i} ; then
141     case ${i} in
142       sample)       AC_CONFIG_SUBDIRS([projects/sample])    ;;
143       privbracket)  AC_CONFIG_SUBDIRS([projects/privbracket]) ;;
144       llvm-stacker) AC_CONFIG_SUBDIRS([projects/llvm-stacker]) ;;
145       llvm-reopt)   AC_CONFIG_SUBDIRS([projects/llvm-reopt]);;
146       llvm-java)    AC_CONFIG_SUBDIRS([projects/llvm-java]) ;;
147       llvm-tv)      AC_CONFIG_SUBDIRS([projects/llvm-tv])   ;;
148       safecode)     AC_CONFIG_SUBDIRS([projects/safecode]) ;;
149       llvm-kernel)  AC_CONFIG_SUBDIRS([projects/llvm-kernel]) ;;
150       compiler-rt)       ;;
151       llvm-gcc)       ;;
152       test-suite)     ;;
153       llvm-test)      ;;
154       poolalloc)      ;;
155       llvm-poolalloc) ;;
156       *)
157         AC_MSG_WARN([Unknown project (${i}) won't be configured automatically])
158         ;;
159     esac
160   fi
161 done
162
163 dnl Disable the build of polly, even if it is checked out into tools/polly.
164 AC_ARG_ENABLE(polly,
165               AS_HELP_STRING([--enable-polly],
166                              [Use polly if available (default is YES)]),,
167                              enableval=default)
168 case "$enableval" in
169   yes) AC_SUBST(ENABLE_POLLY,[1]) ;;
170   no)  AC_SUBST(ENABLE_POLLY,[0]) ;;
171   default) AC_SUBST(ENABLE_POLLY,[1]) ;;
172   *) AC_MSG_ERROR([Invalid setting for --enable-polly. Use "yes" or "no"]) ;;
173 esac
174
175
176 dnl Check if polly is checked out into tools/polly and configure it if
177 dnl available.
178 if (test -d ${srcdir}/tools/polly) && (test $ENABLE_POLLY -eq 1) ; then
179   AC_SUBST(LLVM_HAS_POLLY,1)
180   AC_CONFIG_SUBDIRS([tools/polly])
181 fi
182
183 dnl===-----------------------------------------------------------------------===
184 dnl===
185 dnl=== SECTION 2: Architecture, target, and host checks
186 dnl===
187 dnl===-----------------------------------------------------------------------===
188
189 dnl Check the target for which we're compiling and the host that will do the
190 dnl compilations. This will tell us which LLVM compiler will be used for
191 dnl compiling SSA into object code. This needs to be done early because
192 dnl following tests depend on it.
193 AC_CANONICAL_TARGET
194
195 dnl Determine the platform type and cache its value. This helps us configure
196 dnl the System library to the correct build platform.
197 AC_CACHE_CHECK([type of operating system we're going to host on],
198                [llvm_cv_os_type],
199 [case $host in
200   *-*-aix*)
201     llvm_cv_link_all_option="-Wl,--whole-archive"
202     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
203     llvm_cv_os_type="AIX"
204     llvm_cv_platform_type="Unix" ;;
205   *-*-irix*)
206     llvm_cv_link_all_option="-Wl,--whole-archive"
207     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
208     llvm_cv_os_type="IRIX"
209     llvm_cv_platform_type="Unix" ;;
210   *-*-cygwin*)
211     llvm_cv_link_all_option="-Wl,--whole-archive"
212     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
213     llvm_cv_os_type="Cygwin"
214     llvm_cv_platform_type="Unix" ;;
215   *-*-darwin*)
216     llvm_cv_link_all_option="-Wl,-all_load"
217     llvm_cv_no_link_all_option="-Wl,-noall_load"
218     llvm_cv_os_type="Darwin"
219     llvm_cv_platform_type="Unix" ;;
220   *-*-minix*)
221     llvm_cv_link_all_option="-Wl,-all_load"
222     llvm_cv_no_link_all_option="-Wl,-noall_load"
223     llvm_cv_os_type="Minix"
224     llvm_cv_platform_type="Unix" ;;
225   *-*-freebsd*)
226     llvm_cv_link_all_option="-Wl,--whole-archive"
227     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
228     llvm_cv_os_type="FreeBSD"
229     llvm_cv_platform_type="Unix" ;;
230   *-*-kfreebsd-gnu)
231     llvm_cv_link_all_option="-Wl,--whole-archive"
232     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
233     llvm_cv_os_type="GNU/kFreeBSD"
234     llvm_cv_platform_type="Unix" ;;
235   *-*-openbsd*)
236     llvm_cv_link_all_option="-Wl,--whole-archive"
237     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
238     llvm_cv_os_type="OpenBSD"
239     llvm_cv_platform_type="Unix" ;;
240   *-*-netbsd*)
241     llvm_cv_link_all_option="-Wl,--whole-archive"
242     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
243     llvm_cv_os_type="NetBSD"
244     llvm_cv_platform_type="Unix" ;;
245   *-*-dragonfly*)
246     llvm_cv_link_all_option="-Wl,--whole-archive"
247     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
248     llvm_cv_os_type="DragonFly"
249     llvm_cv_platform_type="Unix" ;;
250   *-*-hpux*)
251     llvm_cv_link_all_option="-Wl,--whole-archive"
252     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
253     llvm_cv_os_type="HP-UX"
254     llvm_cv_platform_type="Unix" ;;
255   *-*-interix*)
256     llvm_cv_link_all_option="-Wl,--whole-archive"
257     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
258     llvm_cv_os_type="Interix"
259     llvm_cv_platform_type="Unix" ;;
260   *-*-linux*)
261     llvm_cv_link_all_option="-Wl,--whole-archive"
262     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
263     llvm_cv_os_type="Linux"
264     llvm_cv_platform_type="Unix" ;;
265   *-*-gnu*)
266     llvm_cv_link_all_option="-Wl,--whole-archive"
267     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
268     llvm_cv_os_type="GNU"
269     llvm_cv_platform_type="Unix" ;;
270   *-*-solaris*)
271     llvm_cv_link_all_option="-Wl,-z,allextract"
272     llvm_cv_no_link_all_option="-Wl,-z,defaultextract"
273     llvm_cv_os_type="SunOS"
274     llvm_cv_platform_type="Unix" ;;
275   *-*-auroraux*)
276     llvm_cv_link_all_option="-Wl,-z,allextract"
277     llvm_cv_link_all_option="-Wl,-z,defaultextract"
278     llvm_cv_os_type="AuroraUX"
279     llvm_cv_platform_type="Unix" ;;
280   *-*-win32*)
281     llvm_cv_link_all_option="-Wl,--whole-archive"
282     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
283     llvm_cv_os_type="Win32"
284     llvm_cv_platform_type="Win32" ;;
285   *-*-mingw*)
286     llvm_cv_link_all_option="-Wl,--whole-archive"
287     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
288     llvm_cv_os_type="MingW"
289     llvm_cv_platform_type="Win32" ;;
290   *-*-haiku*)
291     llvm_cv_link_all_option="-Wl,--whole-archive"
292     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
293     llvm_cv_os_type="Haiku"
294     llvm_cv_platform_type="Unix" ;;
295   *-unknown-eabi*)
296     llvm_cv_link_all_option="-Wl,--whole-archive"
297     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
298     llvm_cv_os_type="Freestanding"
299     llvm_cv_platform_type="Unix" ;;
300   *-unknown-elf*)
301     llvm_cv_link_all_option="-Wl,--whole-archive"
302     llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
303     llvm_cv_os_type="Freestanding"
304     llvm_cv_platform_type="Unix" ;;
305   *)
306     llvm_cv_link_all_option=""
307     llvm_cv_no_link_all_option=""
308     llvm_cv_os_type="Unknown"
309     llvm_cv_platform_type="Unknown" ;;
310 esac])
311
312 AC_CACHE_CHECK([type of operating system we're going to target],
313                [llvm_cv_target_os_type],
314 [case $target in
315   *-*-aix*)
316     llvm_cv_target_os_type="AIX" ;;
317   *-*-irix*)
318     llvm_cv_target_os_type="IRIX" ;;
319   *-*-cygwin*)
320     llvm_cv_target_os_type="Cygwin" ;;
321   *-*-darwin*)
322     llvm_cv_target_os_type="Darwin" ;;
323   *-*-minix*)
324     llvm_cv_target_os_type="Minix" ;;
325   *-*-freebsd*)
326     llvm_cv_target_os_type="FreeBSD" ;;
327   *-*-kfreebsd-gnu)
328     llvm_cv_target_os_type="GNU/kFreeBSD" ;;
329   *-*-openbsd*)
330     llvm_cv_target_os_type="OpenBSD" ;;
331   *-*-netbsd*)
332     llvm_cv_target_os_type="NetBSD" ;;
333   *-*-dragonfly*)
334     llvm_cv_target_os_type="DragonFly" ;;
335   *-*-hpux*)
336     llvm_cv_target_os_type="HP-UX" ;;
337   *-*-interix*)
338     llvm_cv_target_os_type="Interix" ;;
339   *-*-linux*)
340     llvm_cv_target_os_type="Linux" ;;
341   *-*-gnu*)
342     llvm_cv_target_os_type="GNU" ;;
343   *-*-solaris*)
344     llvm_cv_target_os_type="SunOS" ;;
345   *-*-auroraux*)
346     llvm_cv_target_os_type="AuroraUX" ;;
347   *-*-win32*)
348     llvm_cv_target_os_type="Win32" ;;
349   *-*-mingw*)
350     llvm_cv_target_os_type="MingW" ;;
351   *-*-haiku*)
352     llvm_cv_target_os_type="Haiku" ;;
353   *-*-rtems*)
354     llvm_cv_target_os_type="RTEMS" ;;
355   *-*-nacl*)
356     llvm_cv_target_os_type="NativeClient" ;;
357   *-unknown-eabi*)
358     llvm_cv_target_os_type="Freestanding" ;;
359   *)
360     llvm_cv_target_os_type="Unknown" ;;
361 esac])
362
363 dnl Make sure we aren't attempting to configure for an unknown system
364 if test "$llvm_cv_os_type" = "Unknown" ; then
365   AC_MSG_ERROR([Operating system is unknown, configure can't continue])
366 fi
367
368 dnl Set the "OS" Makefile variable based on the platform type so the
369 dnl makefile can configure itself to specific build hosts
370 AC_SUBST(OS,$llvm_cv_os_type)
371 AC_SUBST(HOST_OS,$llvm_cv_os_type)
372 AC_SUBST(TARGET_OS,$llvm_cv_target_os_type)
373
374 dnl Set the LINKALL and NOLINKALL Makefile variables based on the platform
375 AC_SUBST(LINKALL,$llvm_cv_link_all_option)
376 AC_SUBST(NOLINKALL,$llvm_cv_no_link_all_option)
377
378 dnl Set the "LLVM_ON_*" variables based on llvm_cv_platform_type
379 dnl This is used by lib/Support to determine the basic kind of implementation
380 dnl to use.
381 case $llvm_cv_platform_type in
382   Unix)
383     AC_DEFINE([LLVM_ON_UNIX],[1],[Define if this is Unixish platform])
384     AC_SUBST(LLVM_ON_UNIX,[1])
385     AC_SUBST(LLVM_ON_WIN32,[0])
386     ;;
387   Win32)
388     AC_DEFINE([LLVM_ON_WIN32],[1],[Define if this is Win32ish platform])
389     AC_SUBST(LLVM_ON_UNIX,[0])
390     AC_SUBST(LLVM_ON_WIN32,[1])
391     ;;
392 esac
393
394 dnl Determine what our target architecture is and configure accordingly.
395 dnl This will allow Makefiles to make a distinction between the hardware and
396 dnl the OS.
397 AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
398 [case $target in
399   i?86-*)                 llvm_cv_target_arch="x86" ;;
400   amd64-* | x86_64-*)     llvm_cv_target_arch="x86_64" ;;
401   sparc*-*)               llvm_cv_target_arch="Sparc" ;;
402   powerpc*-*)             llvm_cv_target_arch="PowerPC" ;;
403   arm*-*)                 llvm_cv_target_arch="ARM" ;;
404   aarch64*-*)             llvm_cv_target_arch="AArch64" ;;
405   mips-* | mips64-*)      llvm_cv_target_arch="Mips" ;;
406   mipsel-* | mips64el-*)  llvm_cv_target_arch="Mips" ;;
407   xcore-*)                llvm_cv_target_arch="XCore" ;;
408   msp430-*)               llvm_cv_target_arch="MSP430" ;;
409   hexagon-*)              llvm_cv_target_arch="Hexagon" ;;
410   nvptx-*)                llvm_cv_target_arch="NVPTX" ;;
411   s390x-*)                llvm_cv_target_arch="SystemZ" ;;
412   *)                      llvm_cv_target_arch="Unknown" ;;
413 esac])
414
415 if test "$llvm_cv_target_arch" = "Unknown" ; then
416   AC_MSG_WARN([Configuring LLVM for an unknown target archicture])
417 fi
418
419 dnl Determine the LLVM native architecture for the target
420 case "$llvm_cv_target_arch" in
421     x86)     LLVM_NATIVE_ARCH="X86" ;;
422     x86_64)  LLVM_NATIVE_ARCH="X86" ;;
423     *)       LLVM_NATIVE_ARCH="$llvm_cv_target_arch" ;;
424 esac
425
426 dnl Define a substitution, ARCH, for the target architecture
427 AC_SUBST(ARCH,$llvm_cv_target_arch)
428
429 dnl Determine what our host architecture.
430 dnl This will allow MCJIT regress tests runs only for supported
431 dnl platforms.
432 case $host in
433   i?86-*)                 host_arch="x86" ;;
434   amd64-* | x86_64-*)     host_arch="x86_64" ;;
435   sparc*-*)               host_arch="Sparc" ;;
436   powerpc*-*)             host_arch="PowerPC" ;;
437   arm*-*)                 host_arch="ARM" ;;
438   aarch64*-*)             host_arch="AArch64" ;;
439   mips-* | mips64-*)      host_arch="Mips" ;;
440   mipsel-* | mips64el-*)  host_arch="Mips" ;;
441   xcore-*)                host_arch="XCore" ;;
442   msp430-*)               host_arch="MSP430" ;;
443   hexagon-*)              host_arch="Hexagon" ;;
444   s390x-*)                host_arch="SystemZ" ;;
445   *)                      host_arch="Unknown" ;;
446 esac
447
448 if test "$host_arch" = "Unknown" ; then
449   AC_MSG_WARN([Configuring LLVM for an unknown host archicture])
450 fi
451
452 AC_SUBST(HOST_ARCH,$host_arch)
453
454 dnl Check for the endianness of the target
455 AC_C_BIGENDIAN(AC_SUBST([ENDIAN],[big]),AC_SUBST([ENDIAN],[little]))
456
457 dnl Check for build platform executable suffix if we're cross-compiling
458 if test "$cross_compiling" = yes; then
459   AC_SUBST(LLVM_CROSS_COMPILING, [1])
460   AC_BUILD_EXEEXT
461   ac_build_prefix=${build_alias}-
462   AC_CHECK_PROG(BUILD_CXX, ${ac_build_prefix}g++, ${ac_build_prefix}g++)
463   if test -z "$BUILD_CXX"; then
464      AC_CHECK_PROG(BUILD_CXX, g++, g++)
465      if test -z "$BUILD_CXX"; then
466        AC_CHECK_PROG(BUILD_CXX, c++, c++, , , /usr/ucb/c++)
467      fi
468   fi
469 else
470   AC_SUBST(LLVM_CROSS_COMPILING, [0])
471 fi
472
473 dnl Check to see if there's a .svn or .git directory indicating that this
474 dnl build is being done from a checkout. This sets up several defaults for
475 dnl the command line switches. When we build with a checkout directory,
476 dnl we get a debug with assertions turned on. Without, we assume a source
477 dnl release and we get an optimized build without assertions.
478 dnl See --enable-optimized and --enable-assertions below
479 if test -d ".svn" -o -d "${srcdir}/.svn" -o -d ".git" -o -d "${srcdir}/.git"; then
480   cvsbuild="yes"
481   optimize="no"
482   AC_SUBST(CVSBUILD,[[CVSBUILD=1]])
483 else
484   cvsbuild="no"
485   optimize="yes"
486 fi
487
488 dnl===-----------------------------------------------------------------------===
489 dnl===
490 dnl=== SECTION 3: Command line arguments for the configure script.
491 dnl===
492 dnl===-----------------------------------------------------------------------===
493
494 dnl --enable-libcpp : check whether or not to use libc++ on the command line
495 AC_ARG_ENABLE(libcpp,
496               AS_HELP_STRING([--enable-libcpp],
497                              [Use libc++ if available (default is NO)]),,
498                              enableval=default)
499 case "$enableval" in
500   yes) AC_SUBST(ENABLE_LIBCPP,[1]) ;;
501   no)  AC_SUBST(ENABLE_LIBCPP,[0]) ;;
502   default) AC_SUBST(ENABLE_LIBCPP,[0]);;
503   *) AC_MSG_ERROR([Invalid setting for --enable-libcpp. Use "yes" or "no"]) ;;
504 esac
505
506 dnl --enable-cxx11 : check whether or not to use -std=c++11 on the command line
507 AC_ARG_ENABLE(cxx11,
508               AS_HELP_STRING([--enable-cxx11],
509                              [Use c++11 if available (default is NO)]),,
510                              enableval=default)
511 case "$enableval" in
512   yes) AC_SUBST(ENABLE_CXX11,[1]) ;;
513   no)  AC_SUBST(ENABLE_CXX11,[0]) ;;
514   default) AC_SUBST(ENABLE_CXX11,[0]);;
515   *) AC_MSG_ERROR([Invalid setting for --enable-cxx11. Use "yes" or "no"]) ;;
516 esac
517
518 dnl --enable-fission : check whether or not to use -gsplit-dwarf on the command
519 dnl line
520 AC_ARG_ENABLE(split-dwarf,
521               AS_HELP_STRING([--enable-split-dwarf],
522                              [Use split-dwarf if available (default is NO)]),,
523                              enableval=default)
524 case "$enableval" in
525   yes) AC_SUBST(ENABLE_SPLIT_DWARF,[1]) ;;
526   no)  AC_SUBST(ENABLE_SPLIT_DWARF,[0]) ;;
527   default) AC_SUBST(ENABLE_SPLIT_DWARF,[0]);;
528   *) AC_MSG_ERROR([Invalid setting for --enable-split-dwarf. Use "yes" or "no"]) ;;
529 esac
530
531 dnl --enable-clang-arcmt: check whether to enable clang arcmt
532 clang_arcmt="yes"
533 AC_ARG_ENABLE(clang-arcmt,
534               AS_HELP_STRING([--enable-clang-arcmt],
535                              [Enable building of clang ARCMT (default is YES)]),
536                              clang_arcmt="$enableval",
537                              enableval="yes")
538 case "$enableval" in
539   yes) AC_SUBST(ENABLE_CLANG_ARCMT,[1]) ;;
540   no)  AC_SUBST(ENABLE_CLANG_ARCMT,[0]) ;;
541   default) AC_SUBST(ENABLE_CLANG_ARCMT,[1]);;
542   *) AC_MSG_ERROR([Invalid setting for --enable-clang-arcmt. Use "yes" or "no"]) ;;
543 esac
544
545 dnl --enable-clang-static-analyzer: check whether to enable static-analyzer
546 clang_static_analyzer="yes"
547 AC_ARG_ENABLE(clang-static-analyzer,
548               AS_HELP_STRING([--enable-clang-static-analyzer],
549                              [Enable building of clang Static Analyzer (default is YES)]),
550                              clang_static_analyzer="$enableval",
551                              enableval="yes")
552 case "$enableval" in
553   yes) AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[1]) ;;
554   no)  
555     if test ${clang_arcmt} != "no" ; then
556       AC_MSG_ERROR([Cannot enable clang ARC Migration Tool while disabling static analyzer.])
557     fi
558     AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[0]) 
559     ;;
560   default) AC_SUBST(ENABLE_CLANG_STATIC_ANALYZER,[1]);;
561   *) AC_MSG_ERROR([Invalid setting for --enable-clang-static-analyzer. Use "yes" or "no"]) ;;
562 esac
563
564 dnl --enable-clang-rewriter: check whether to enable clang rewriter
565 AC_ARG_ENABLE(clang-rewriter,
566               AS_HELP_STRING([--enable-clang-rewriter],
567                              [Enable building of clang rewriter (default is YES)]),,
568                              enableval="yes")
569 case "$enableval" in
570   yes) AC_SUBST(ENABLE_CLANG_REWRITER,[1]) ;;
571   no)  
572     if test ${clang_arcmt} != "no" ; then
573       AC_MSG_ERROR([Cannot enable clang ARC Migration Tool while disabling rewriter.])
574     fi
575     if test ${clang_static_analyzer} != "no" ; then
576       AC_MSG_ERROR([Cannot enable clang static analyzer while disabling rewriter.])
577     fi
578     AC_SUBST(ENABLE_CLANG_REWRITER,[0]) 
579     ;;
580   default) AC_SUBST(ENABLE_CLANG_REWRITER,[1]);;
581   *) AC_MSG_ERROR([Invalid setting for --enable-clang-rewriter. Use "yes" or "no"]) ;;
582 esac
583
584 dnl --enable-optimized : check whether they want to do an optimized build:
585 AC_ARG_ENABLE(optimized, AS_HELP_STRING(
586  --enable-optimized,[Compile with optimizations enabled (default is NO)]),,enableval=$optimize)
587 if test ${enableval} = "no" ; then
588   AC_SUBST(ENABLE_OPTIMIZED,[[]])
589 else
590   AC_SUBST(ENABLE_OPTIMIZED,[[ENABLE_OPTIMIZED=1]])
591 fi
592
593 dnl --enable-profiling : check whether they want to do a profile build:
594 AC_ARG_ENABLE(profiling, AS_HELP_STRING(
595  --enable-profiling,[Compile with profiling enabled (default is NO)]),,enableval="no")
596 if test ${enableval} = "no" ; then
597   AC_SUBST(ENABLE_PROFILING,[[]])
598 else
599   AC_SUBST(ENABLE_PROFILING,[[ENABLE_PROFILING=1]])
600 fi
601
602 dnl --enable-assertions : check whether they want to turn on assertions or not:
603 AC_ARG_ENABLE(assertions,AS_HELP_STRING(
604   --enable-assertions,[Compile with assertion checks enabled (default is YES)]),, enableval="yes")
605 if test ${enableval} = "yes" ; then
606   AC_SUBST(DISABLE_ASSERTIONS,[[]])
607 else
608   AC_SUBST(DISABLE_ASSERTIONS,[[DISABLE_ASSERTIONS=1]])
609 fi
610
611 dnl --enable-werror : check whether we want Werror on by default
612 AC_ARG_ENABLE(werror,AS_HELP_STRING(
613   --enable-werror,[Compile with -Werror enabled (default is NO)]),, enableval="no")
614 case "$enableval" in
615   yes) AC_SUBST(ENABLE_WERROR,[1]) ;;
616   no)  AC_SUBST(ENABLE_WERROR,[0]) ;;
617   default) AC_SUBST(ENABLE_WERROR,[0]);;
618   *) AC_MSG_ERROR([Invalid setting for --enable-werror. Use "yes" or "no"]) ;;
619 esac
620
621 dnl --enable-expensive-checks : check whether they want to turn on expensive debug checks:
622 AC_ARG_ENABLE(expensive-checks,AS_HELP_STRING(
623   --enable-expensive-checks,[Compile with expensive debug checks enabled (default is NO)]),, enableval="no")
624 if test ${enableval} = "yes" ; then
625   AC_SUBST(ENABLE_EXPENSIVE_CHECKS,[[ENABLE_EXPENSIVE_CHECKS=1]])
626   AC_SUBST(EXPENSIVE_CHECKS,[[yes]])
627 else
628   AC_SUBST(ENABLE_EXPENSIVE_CHECKS,[[]])
629   AC_SUBST(EXPENSIVE_CHECKS,[[no]])
630 fi
631
632 dnl --enable-debug-runtime : should runtime libraries have debug symbols?
633 AC_ARG_ENABLE(debug-runtime,
634    AS_HELP_STRING(--enable-debug-runtime,[Build runtime libs with debug symbols (default is NO)]),,enableval=no)
635 if test ${enableval} = "no" ; then
636   AC_SUBST(DEBUG_RUNTIME,[[]])
637 else
638   AC_SUBST(DEBUG_RUNTIME,[[DEBUG_RUNTIME=1]])
639 fi
640
641 dnl --enable-debug-symbols : should even optimized compiler libraries
642 dnl have debug symbols?
643 AC_ARG_ENABLE(debug-symbols,
644    AS_HELP_STRING(--enable-debug-symbols,[Build compiler with debug symbols (default is NO if optimization is on and YES if it's off)]),,enableval=no)
645 if test ${enableval} = "no" ; then
646   AC_SUBST(DEBUG_SYMBOLS,[[]])
647 else
648   AC_SUBST(DEBUG_SYMBOLS,[[DEBUG_SYMBOLS=1]])
649 fi
650
651 dnl --enable-keep-symbols : do not strip installed executables
652 AC_ARG_ENABLE(keep-symbols,
653    AS_HELP_STRING(--enable-keep-symbols,[Do not strip installed executables)]),,enableval=no)
654 if test ${enableval} = "no" ; then
655   AC_SUBST(KEEP_SYMBOLS,[[]])
656 else
657   AC_SUBST(KEEP_SYMBOLS,[[KEEP_SYMBOLS=1]])
658 fi
659
660 dnl --enable-jit: check whether they want to enable the jit
661 AC_ARG_ENABLE(jit,
662   AS_HELP_STRING(--enable-jit,
663                  [Enable Just In Time Compiling (default is YES)]),,
664   enableval=default)
665 if test ${enableval} = "no"
666 then
667   AC_SUBST(JIT,[[]])
668 else
669   case "$llvm_cv_target_arch" in
670     x86)         AC_SUBST(TARGET_HAS_JIT,1) ;;
671     Sparc)       AC_SUBST(TARGET_HAS_JIT,0) ;;
672     PowerPC)     AC_SUBST(TARGET_HAS_JIT,1) ;;
673     x86_64)      AC_SUBST(TARGET_HAS_JIT,1) ;;
674     ARM)         AC_SUBST(TARGET_HAS_JIT,1) ;;
675     AArch64)     AC_SUBST(TARGET_HAS_JIT,0) ;;
676     Mips)        AC_SUBST(TARGET_HAS_JIT,1) ;;
677     XCore)       AC_SUBST(TARGET_HAS_JIT,0) ;;
678     MSP430)      AC_SUBST(TARGET_HAS_JIT,0) ;;
679     Hexagon)     AC_SUBST(TARGET_HAS_JIT,0) ;;
680     NVPTX)       AC_SUBST(TARGET_HAS_JIT,0) ;;
681     SystemZ)     AC_SUBST(TARGET_HAS_JIT,1) ;;
682     *)           AC_SUBST(TARGET_HAS_JIT,0) ;;
683   esac
684 fi
685
686 dnl Allow enablement of building and installing docs
687 AC_ARG_ENABLE(docs,
688               AS_HELP_STRING([--enable-docs],
689                              [Build documents (default is YES)]),,
690                              enableval=default)
691 case "$enableval" in
692   yes) AC_SUBST(ENABLE_DOCS,[1]) ;;
693   no)  AC_SUBST(ENABLE_DOCS,[0]) ;;
694   default) AC_SUBST(ENABLE_DOCS,[1]) ;;
695   *) AC_MSG_ERROR([Invalid setting for --enable-docs. Use "yes" or "no"]) ;;
696 esac
697
698 dnl Allow enablement of doxygen generated documentation
699 AC_ARG_ENABLE(doxygen,
700               AS_HELP_STRING([--enable-doxygen],
701                              [Build doxygen documentation (default is NO)]),,
702                              enableval=default)
703 case "$enableval" in
704   yes) AC_SUBST(ENABLE_DOXYGEN,[1]) ;;
705   no)  AC_SUBST(ENABLE_DOXYGEN,[0]) ;;
706   default) AC_SUBST(ENABLE_DOXYGEN,[0]) ;;
707   *) AC_MSG_ERROR([Invalid setting for --enable-doxygen. Use "yes" or "no"]) ;;
708 esac
709
710 dnl Allow disablement of threads
711 AC_ARG_ENABLE(threads,
712               AS_HELP_STRING([--enable-threads],
713                              [Use threads if available (default is YES)]),,
714                              enableval=default)
715 case "$enableval" in
716   yes) AC_SUBST(LLVM_ENABLE_THREADS,[1]) ;;
717   no)  AC_SUBST(LLVM_ENABLE_THREADS,[0]) ;;
718   default) AC_SUBST(LLVM_ENABLE_THREADS,[1]) ;;
719   *) AC_MSG_ERROR([Invalid setting for --enable-threads. Use "yes" or "no"]) ;;
720 esac
721 AC_DEFINE_UNQUOTED([LLVM_ENABLE_THREADS],$LLVM_ENABLE_THREADS,
722                    [Define if threads enabled])
723
724 dnl Allow disablement of pthread.h
725 AC_ARG_ENABLE(pthreads,
726               AS_HELP_STRING([--enable-pthreads],
727                              [Use pthreads if available (default is YES)]),,
728                              enableval=default)
729 case "$enableval" in
730   yes) AC_SUBST(ENABLE_PTHREADS,[1]) ;;
731   no)  AC_SUBST(ENABLE_PTHREADS,[0]) ;;
732   default) AC_SUBST(ENABLE_PTHREADS,[1]) ;;
733   *) AC_MSG_ERROR([Invalid setting for --enable-pthreads. Use "yes" or "no"]) ;;
734 esac
735
736 dnl Allow disablement of zlib
737 AC_ARG_ENABLE(zlib,
738               AS_HELP_STRING([--enable-zlib],
739                              [Use zlib for compression/decompression if
740                               available (default is YES)]),,
741                               enableval=default)
742 case "$enableval" in
743   yes) AC_SUBST(LLVM_ENABLE_ZLIB,[1]) ;;
744   no)  AC_SUBST(LLVM_ENABLE_ZLIB,[0]) ;;
745   default) AC_SUBST(LLVM_ENABLE_ZLIB,[1]) ;;
746   *) AC_MSG_ERROR([Invalid setting for --enable-zlib. Use "yes" or "no"]) ;;
747 esac
748 AC_DEFINE_UNQUOTED([LLVM_ENABLE_ZLIB],$LLVM_ENABLE_ZLIB,
749                    [Define if zlib is enabled])
750
751 dnl Allow building without position independent code
752 AC_ARG_ENABLE(pic,
753   AS_HELP_STRING([--enable-pic],
754                  [Build LLVM with Position Independent Code (default is YES)]),,
755                  enableval=default)
756 case "$enableval" in
757   yes) AC_SUBST(ENABLE_PIC,[1]) ;;
758   no)  AC_SUBST(ENABLE_PIC,[0]) ;;
759   default) AC_SUBST(ENABLE_PIC,[1]) ;;
760   *) AC_MSG_ERROR([Invalid setting for --enable-pic. Use "yes" or "no"]) ;;
761 esac
762 AC_DEFINE_UNQUOTED([ENABLE_PIC],$ENABLE_PIC,
763                    [Define if position independent code is enabled])
764
765 dnl Allow building a shared library and linking tools against it.
766 AC_ARG_ENABLE(shared,
767   AS_HELP_STRING([--enable-shared],
768                  [Build a shared library and link tools against it (default is NO)]),,
769                  enableval=default)
770 case "$enableval" in
771   yes) AC_SUBST(ENABLE_SHARED,[1]) ;;
772   no)  AC_SUBST(ENABLE_SHARED,[0]) ;;
773   default) AC_SUBST(ENABLE_SHARED,[0]) ;;
774   *) AC_MSG_ERROR([Invalid setting for --enable-shared. Use "yes" or "no"]) ;;
775 esac
776
777 dnl Allow libstdc++ is embedded in LLVM.dll.
778 AC_ARG_ENABLE(embed-stdcxx,
779   AS_HELP_STRING([--enable-embed-stdcxx],
780                  [Build a shared library with embedded libstdc++ for Win32 DLL (default is NO)]),,
781                  enableval=default)
782 case "$enableval" in
783   yes) AC_SUBST(ENABLE_EMBED_STDCXX,[1]) ;;
784   no)  AC_SUBST(ENABLE_EMBED_STDCXX,[0]) ;;
785   default) AC_SUBST(ENABLE_EMBED_STDCXX,[0]) ;;
786   *) AC_MSG_ERROR([Invalid setting for --enable-embed-stdcxx. Use "yes" or "no"]) ;;
787 esac
788
789 dnl Enable embedding timestamp information into build.
790 AC_ARG_ENABLE(timestamps,
791   AS_HELP_STRING([--enable-timestamps],
792                  [Enable embedding timestamp information in build (default is YES)]),,
793                  enableval=default)
794 case "$enableval" in
795   yes) AC_SUBST(ENABLE_TIMESTAMPS,[1]) ;;
796   no)  AC_SUBST(ENABLE_TIMESTAMPS,[0]) ;;
797   default) AC_SUBST(ENABLE_TIMESTAMPS,[1]) ;;
798   *) AC_MSG_ERROR([Invalid setting for --enable-timestamps. Use "yes" or "no"]) ;;
799 esac
800 AC_DEFINE_UNQUOTED([ENABLE_TIMESTAMPS],$ENABLE_TIMESTAMPS,
801                    [Define if timestamp information (e.g., __DATE__) is allowed])
802
803 dnl Enable support for showing backtraces.
804 AC_ARG_ENABLE(backtraces, AS_HELP_STRING(
805   [--enable-backtraces],
806   [Enable embedding backtraces on crash (default is YES)]),
807   [case "$enableval" in
808     yes) llvm_cv_enable_backtraces="yes" ;;
809     no)  llvm_cv_enable_backtraces="no"  ;;
810     *) AC_MSG_ERROR([Invalid setting for --enable-backtraces. Use "yes" or "no"]) ;;
811   esac],
812   llvm_cv_enable_backtraces="yes")
813 if test "$llvm_cv_enable_backtraces" = "yes" ; then
814   AC_DEFINE([ENABLE_BACKTRACES],[1],
815             [Define if you want backtraces on crash])
816 fi
817
818 dnl Enable installing platform specific signal handling overrides, for improved
819 dnl CrashRecovery support or interaction with crash reporting software. This
820 dnl support may be inappropriate for some clients embedding LLVM as a library.
821 AC_ARG_ENABLE(crash-overrides, AS_HELP_STRING(
822   [--enable-crash-overrides],
823   [Enable crash handling overrides (default is YES)]),
824   [case "$enableval" in
825     yes) llvm_cv_enable_crash_overrides="yes" ;;
826     no)  llvm_cv_enable_crash_overrides="no"  ;;
827     *) AC_MSG_ERROR([Invalid setting for --enable-crash-overrides. Use "yes" or "no"]) ;;
828   esac],
829   llvm_cv_enable_crash_overrides="yes")
830 if test "$llvm_cv_enable_crash_overrides" = "yes" ; then
831   AC_DEFINE([ENABLE_CRASH_OVERRIDES],[1],
832             [Define to enable crash handling overrides])
833 fi
834
835 dnl Allow specific targets to be specified for building (or not)
836 TARGETS_TO_BUILD=""
837 AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
838     [Build specific host targets: all or target1,target2,... Valid targets are:
839      host, x86, x86_64, sparc, powerpc, arm, aarch64, mips, hexagon,
840      xcore, msp430, nvptx, systemz, r600, and cpp (default=all)]),,
841     enableval=all)
842 if test "$enableval" = host-only ; then
843   enableval=host
844 fi
845 case "$enableval" in
846   all) TARGETS_TO_BUILD="X86 Sparc PowerPC AArch64 ARM Mips XCore MSP430 CppBackend NVPTX Hexagon SystemZ R600" ;;
847   *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
848       case "$a_target" in
849         x86)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
850         x86_64)   TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
851         sparc)    TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
852         powerpc)  TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
853         aarch64)  TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
854         arm)      TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
855         mips)     TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
856         mipsel)   TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
857         mips64)   TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
858         mips64el) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
859         xcore)    TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
860         msp430)   TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
861         cpp)      TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;
862         hexagon)  TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
863         nvptx)    TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
864         systemz)  TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
865         r600)     TARGETS_TO_BUILD="R600 $TARGETS_TO_BUILD" ;;
866         host) case "$llvm_cv_target_arch" in
867             x86)         TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
868             x86_64)      TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
869             Sparc)       TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
870             PowerPC)     TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
871             AArch64)     TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
872             ARM)         TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
873             Mips)        TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
874             XCore)       TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
875             MSP430)      TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
876             Hexagon)     TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
877             NVPTX)       TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
878             SystemZ)     TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
879             *)       AC_MSG_ERROR([Can not set target to build]) ;;
880           esac ;;
881         *) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
882       esac
883   done
884   ;;
885 esac
886
887 AC_ARG_ENABLE([experimental-targets],AS_HELP_STRING([--enable-experimental-targets],
888     [Build experimental host targets: disable or target1,target2,...
889      (default=disable)]),,
890     enableval=disable)
891
892 if test ${enableval} != "disable"
893 then
894   TARGETS_TO_BUILD="$enableval $TARGETS_TO_BUILD"
895 fi
896
897 AC_SUBST(TARGETS_TO_BUILD,$TARGETS_TO_BUILD)
898
899 dnl Determine whether we are building LLVM support for the native architecture.
900 dnl If so, define LLVM_NATIVE_ARCH to that LLVM target.
901 for a_target in $TARGETS_TO_BUILD; do
902   if test "$a_target" = "$LLVM_NATIVE_ARCH"; then
903     AC_DEFINE_UNQUOTED(LLVM_NATIVE_ARCH, $LLVM_NATIVE_ARCH,
904       [LLVM architecture name for the native architecture, if available])
905     LLVM_NATIVE_TARGET="LLVMInitialize${LLVM_NATIVE_ARCH}Target"
906     LLVM_NATIVE_TARGETINFO="LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo"
907     LLVM_NATIVE_TARGETMC="LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC"
908     LLVM_NATIVE_ASMPRINTER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter"
909     if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/Makefile ; then
910       LLVM_NATIVE_ASMPARSER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser"
911     fi
912     if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/Disassembler/Makefile ; then
913       LLVM_NATIVE_DISASSEMBLER="LLVMInitialize${LLVM_NATIVE_ARCH}Disassembler"
914     fi
915     AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGET, $LLVM_NATIVE_TARGET,
916       [LLVM name for the native Target init function, if available])
917     AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGETINFO, $LLVM_NATIVE_TARGETINFO,
918       [LLVM name for the native TargetInfo init function, if available])
919     AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGETMC, $LLVM_NATIVE_TARGETMC,
920       [LLVM name for the native target MC init function, if available])
921     AC_DEFINE_UNQUOTED(LLVM_NATIVE_ASMPRINTER, $LLVM_NATIVE_ASMPRINTER,
922       [LLVM name for the native AsmPrinter init function, if available])
923     if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/Makefile ; then
924       AC_DEFINE_UNQUOTED(LLVM_NATIVE_ASMPARSER, $LLVM_NATIVE_ASMPARSER,
925        [LLVM name for the native AsmParser init function, if available])
926     fi
927     if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/Disassembler/Makefile ; then
928       AC_DEFINE_UNQUOTED(LLVM_NATIVE_DISASSEMBLER, $LLVM_NATIVE_DISASSEMBLER,
929        [LLVM name for the native Disassembler init function, if available])
930     fi
931   fi
932 done
933
934 dnl Build the LLVM_TARGET and LLVM_... macros for Targets.def and the individual
935 dnl target feature def files.
936 LLVM_ENUM_TARGETS=""
937 LLVM_ENUM_ASM_PRINTERS=""
938 LLVM_ENUM_ASM_PARSERS=""
939 LLVM_ENUM_DISASSEMBLERS=""
940 for target_to_build in $TARGETS_TO_BUILD; do
941   LLVM_ENUM_TARGETS="LLVM_TARGET($target_to_build) $LLVM_ENUM_TARGETS"
942   if test -f ${srcdir}/lib/Target/${target_to_build}/*AsmPrinter.cpp ; then
943     LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS";
944   fi
945   if test -f ${srcdir}/lib/Target/${target_to_build}/AsmParser/Makefile ; then
946     LLVM_ENUM_ASM_PARSERS="LLVM_ASM_PARSER($target_to_build) $LLVM_ENUM_ASM_PARSERS";
947   fi
948   if test -f ${srcdir}/lib/Target/${target_to_build}/Disassembler/Makefile ; then
949     LLVM_ENUM_DISASSEMBLERS="LLVM_DISASSEMBLER($target_to_build) $LLVM_ENUM_DISASSEMBLERS";
950   fi
951 done
952 AC_SUBST(LLVM_ENUM_TARGETS)
953 AC_SUBST(LLVM_ENUM_ASM_PRINTERS)
954 AC_SUBST(LLVM_ENUM_ASM_PARSERS)
955 AC_SUBST(LLVM_ENUM_DISASSEMBLERS)
956
957 dnl Override the option to use for optimized builds.
958 AC_ARG_WITH(optimize-option,
959   AS_HELP_STRING([--with-optimize-option],
960                  [Select the compiler options to use for optimized builds]),,
961                  withval=default)
962 AC_MSG_CHECKING([optimization flags])
963 case "$withval" in
964   default)
965     case "$llvm_cv_os_type" in
966     FreeBSD) optimize_option=-O2 ;;
967     MingW) optimize_option=-O2 ;;
968     *)     optimize_option=-O3 ;;
969     esac ;;
970   *) optimize_option="$withval" ;;
971 esac
972 AC_SUBST(OPTIMIZE_OPTION,$optimize_option)
973 AC_MSG_RESULT([$optimize_option])
974
975 dnl Specify extra build options
976 AC_ARG_WITH(extra-options,
977   AS_HELP_STRING([--with-extra-options],
978                  [Specify additional options to compile LLVM with]),,
979                  withval=default)
980 case "$withval" in
981   default) EXTRA_OPTIONS= ;;
982   *) EXTRA_OPTIONS=$withval ;;
983 esac
984 AC_SUBST(EXTRA_OPTIONS,$EXTRA_OPTIONS)
985
986 dnl Specify extra linker build options
987 AC_ARG_WITH(extra-ld-options,
988   AS_HELP_STRING([--with-extra-ld-options],
989                  [Specify additional options to link LLVM with]),,
990                  withval=default)
991 case "$withval" in
992   default) EXTRA_LD_OPTIONS= ;;
993   *) EXTRA_LD_OPTIONS=$withval ;;
994 esac
995 AC_SUBST(EXTRA_LD_OPTIONS,$EXTRA_LD_OPTIONS)
996
997 dnl Allow specific bindings to be specified for building (or not)
998 AC_ARG_ENABLE([bindings],AS_HELP_STRING([--enable-bindings],
999     [Build specific language bindings: all,auto,none,{binding-name} (default=auto)]),,
1000     enableval=default)
1001 BINDINGS_TO_BUILD=""
1002 case "$enableval" in
1003   yes | default | auto) BINDINGS_TO_BUILD="auto" ;;
1004   all ) BINDINGS_TO_BUILD="ocaml" ;;
1005   none | no) BINDINGS_TO_BUILD="" ;;
1006   *)for a_binding in `echo $enableval|sed -e 's/,/ /g' ` ; do
1007       case "$a_binding" in
1008         ocaml) BINDINGS_TO_BUILD="ocaml $BINDINGS_TO_BUILD" ;;
1009         *) AC_MSG_ERROR([Unrecognized binding $a_binding]) ;;
1010       esac
1011   done
1012   ;;
1013 esac
1014
1015 dnl Allow the ocaml libdir to be overridden. This could go in a configure
1016 dnl script for bindings/ocaml/configure, except that its auto value depends on
1017 dnl OCAMLC, which is found here to support tests.
1018 AC_ARG_WITH([ocaml-libdir],
1019   [AS_HELP_STRING([--with-ocaml-libdir],
1020     [Specify install location for ocaml bindings (default is stdlib)])],
1021   [],
1022   [withval=auto])
1023 case "$withval" in
1024   auto) with_ocaml_libdir="$withval" ;;
1025   /* | [[A-Za-z]]:[[\\/]]*) with_ocaml_libdir="$withval" ;;
1026   *) AC_MSG_ERROR([Invalid path for --with-ocaml-libdir. Provide full path]) ;;
1027 esac
1028
1029 AC_ARG_WITH(clang-srcdir,
1030   AS_HELP_STRING([--with-clang-srcdir],
1031     [Directory to the out-of-tree Clang source]),,
1032     withval="-")
1033 case "$withval" in
1034   -) clang_src_root="" ;;
1035   /* | [[A-Za-z]]:[[\\/]]*) clang_src_root="$withval" ;;
1036   *) clang_src_root="$ac_pwd/$withval" ;;
1037 esac
1038 AC_SUBST(CLANG_SRC_ROOT,[$clang_src_root])
1039
1040 AC_ARG_WITH(clang-resource-dir,
1041   AS_HELP_STRING([--with-clang-resource-dir],
1042     [Relative directory from the Clang binary for resource files]),,
1043     withval="")
1044 AC_DEFINE_UNQUOTED(CLANG_RESOURCE_DIR,"$withval",
1045                    [Relative directory for resource files])
1046
1047 AC_ARG_WITH(c-include-dirs,
1048   AS_HELP_STRING([--with-c-include-dirs],
1049     [Colon separated list of directories clang will search for headers]),,
1050     withval="")
1051 AC_DEFINE_UNQUOTED(C_INCLUDE_DIRS,"$withval",
1052                    [Directories clang will search for headers])
1053
1054 # Clang normally uses the system c++ headers and libraries. With this option,
1055 # clang will use the ones provided by a gcc installation instead. This option should
1056 # be passed the same value that was used with --prefix when configuring gcc.
1057 AC_ARG_WITH(gcc-toolchain,
1058   AS_HELP_STRING([--with-gcc-toolchain],
1059     [Directory where gcc is installed.]),,
1060     withval="")
1061 AC_DEFINE_UNQUOTED(GCC_INSTALL_PREFIX,"$withval",
1062                    [Directory where gcc is installed.])
1063
1064 AC_ARG_WITH(default-sysroot,
1065   AS_HELP_STRING([--with-default-sysroot],
1066     [Add --sysroot=<path> to all compiler invocations.]),,
1067     withval="")
1068 AC_DEFINE_UNQUOTED(DEFAULT_SYSROOT,"$withval",
1069                    [Default <path> to all compiler invocations for --sysroot=<path>.])
1070
1071 dnl Allow linking of LLVM with GPLv3 binutils code.
1072 AC_ARG_WITH(binutils-include,
1073   AS_HELP_STRING([--with-binutils-include],
1074     [Specify path to binutils/include/ containing plugin-api.h file for gold plugin.]),,
1075   withval=default)
1076 case "$withval" in
1077   default) WITH_BINUTILS_INCDIR=default ;;
1078   /* | [[A-Za-z]]:[[\\/]]*)      WITH_BINUTILS_INCDIR=$withval ;;
1079   *) AC_MSG_ERROR([Invalid path for --with-binutils-include. Provide full path]) ;;
1080 esac
1081 if test "x$WITH_BINUTILS_INCDIR" != xdefault ; then
1082   AC_SUBST(BINUTILS_INCDIR,$WITH_BINUTILS_INCDIR)
1083   if test ! -f "$WITH_BINUTILS_INCDIR/plugin-api.h"; then
1084      echo "$WITH_BINUTILS_INCDIR/plugin-api.h"
1085      AC_MSG_ERROR([Invalid path to directory containing plugin-api.h.]);
1086   fi
1087 fi
1088
1089 dnl Specify the URL where bug reports should be submitted.
1090 AC_ARG_WITH(bug-report-url,
1091   AS_HELP_STRING([--with-bug-report-url],
1092     [Specify the URL where bug reports should be submitted (default=http://llvm.org/bugs/)]),,
1093     withval="http://llvm.org/bugs/")
1094 AC_DEFINE_UNQUOTED(BUG_REPORT_URL,"$withval",
1095                    [Bug report URL.])
1096
1097 dnl --enable-terminfo: check whether the user wants to control use of terminfo:
1098 AC_ARG_ENABLE(terminfo,AS_HELP_STRING(
1099   [--enable-terminfo],
1100   [Query the terminfo database if available (default is YES)]),
1101   [case "$enableval" in
1102     yes) llvm_cv_enable_terminfo="yes" ;;
1103     no)  llvm_cv_enable_terminfo="no"  ;;
1104     *) AC_MSG_ERROR([Invalid setting for --enable-terminfo. Use "yes" or "no"]) ;;
1105   esac],
1106   llvm_cv_enable_terminfo="yes")
1107
1108 dnl --enable-libffi : check whether the user wants to turn off libffi:
1109 AC_ARG_ENABLE(libffi,AS_HELP_STRING(
1110   --enable-libffi,[Check for the presence of libffi (default is NO)]),
1111   [case "$enableval" in
1112     yes) llvm_cv_enable_libffi="yes" ;;
1113     no)  llvm_cv_enable_libffi="no"  ;;
1114     *) AC_MSG_ERROR([Invalid setting for --enable-libffi. Use "yes" or "no"]) ;;
1115   esac],
1116   llvm_cv_enable_libffi=no)
1117
1118 AC_ARG_WITH(internal-prefix,
1119   AS_HELP_STRING([--with-internal-prefix],
1120     [Installation directory for internal files]),,
1121     withval="")
1122 AC_SUBST(INTERNAL_PREFIX,[$withval])
1123
1124 dnl===-----------------------------------------------------------------------===
1125 dnl===
1126 dnl=== SECTION 4: Check for programs we need and that they are the right version
1127 dnl===
1128 dnl===-----------------------------------------------------------------------===
1129
1130 AC_PROG_NM
1131 AC_SUBST(NM)
1132
1133 dnl Check for the tools that the makefiles require
1134 AC_CHECK_GNU_MAKE
1135 AC_PROG_LN_S
1136 AC_PATH_PROG(CMP, [cmp], [cmp])
1137 AC_PATH_PROG(CP, [cp], [cp])
1138 AC_PATH_PROG(DATE, [date], [date])
1139 AC_PATH_PROG(FIND, [find], [find])
1140 AC_PATH_PROG(GREP, [grep], [grep])
1141 AC_PATH_PROG(MKDIR,[mkdir],[mkdir])
1142 AC_PATH_PROG(MV,   [mv],   [mv])
1143 AC_PROG_RANLIB
1144 AC_CHECK_TOOL(AR, ar, false)
1145 AC_PATH_PROG(RM,   [rm],   [rm])
1146 AC_PATH_PROG(SED,  [sed],  [sed])
1147 AC_PATH_PROG(TAR,  [tar],  [gtar])
1148 AC_PATH_PROG(BINPWD,[pwd],  [pwd])
1149
1150 dnl Looking for misc. graph plotting software
1151 AC_PATH_PROG(GRAPHVIZ, [Graphviz], [echo Graphviz])
1152 if test "$GRAPHVIZ" != "echo Graphviz" ; then
1153   AC_DEFINE([HAVE_GRAPHVIZ],[1],[Define if the Graphviz program is available])
1154   dnl If we're targeting for mingw we should emit windows paths, not msys
1155   if test "$llvm_cv_os_type" = "MingW" ; then
1156     GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1157   fi
1158   AC_DEFINE_UNQUOTED([LLVM_PATH_GRAPHVIZ],"$GRAPHVIZ${EXEEXT}",
1159    [Define to path to Graphviz program if found or 'echo Graphviz' otherwise])
1160 fi
1161 AC_PATH_PROG(DOT, [dot], [echo dot])
1162 if test "$DOT" != "echo dot" ; then
1163   AC_DEFINE([HAVE_DOT],[1],[Define if the dot program is available])
1164   dnl If we're targeting for mingw we should emit windows paths, not msys
1165   if test "$llvm_cv_os_type" = "MingW" ; then
1166     DOT=`echo $DOT | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1167   fi
1168   AC_DEFINE_UNQUOTED([LLVM_PATH_DOT],"$DOT${EXEEXT}",
1169    [Define to path to dot program if found or 'echo dot' otherwise])
1170 fi
1171 AC_PATH_PROG(FDP, [fdp], [echo fdp])
1172 if test "$FDP" != "echo fdp" ; then
1173   AC_DEFINE([HAVE_FDP],[1],[Define if the neat program is available])
1174   dnl If we're targeting for mingw we should emit windows paths, not msys
1175   if test "$llvm_cv_os_type" = "MingW" ; then
1176     FDP=`echo $FDP | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1177   fi
1178   AC_DEFINE_UNQUOTED([LLVM_PATH_FDP],"$FDP${EXEEXT}",
1179    [Define to path to fdp program if found or 'echo fdp' otherwise])
1180 fi
1181 AC_PATH_PROG(NEATO, [neato], [echo neato])
1182 if test "$NEATO" != "echo neato" ; then
1183   AC_DEFINE([HAVE_NEATO],[1],[Define if the neat program is available])
1184   dnl If we're targeting for mingw we should emit windows paths, not msys
1185   if test "$llvm_cv_os_type" = "MingW" ; then
1186     NEATO=`echo $NEATO | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1187   fi
1188   AC_DEFINE_UNQUOTED([LLVM_PATH_NEATO],"$NEATO${EXEEXT}",
1189    [Define to path to neato program if found or 'echo neato' otherwise])
1190 fi
1191 AC_PATH_PROG(TWOPI, [twopi], [echo twopi])
1192 if test "$TWOPI" != "echo twopi" ; then
1193   AC_DEFINE([HAVE_TWOPI],[1],[Define if the neat program is available])
1194   dnl If we're targeting for mingw we should emit windows paths, not msys
1195   if test "$llvm_cv_os_type" = "MingW" ; then
1196     TWOPI=`echo $TWOPI | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1197   fi
1198   AC_DEFINE_UNQUOTED([LLVM_PATH_TWOPI],"$TWOPI${EXEEXT}",
1199    [Define to path to twopi program if found or 'echo twopi' otherwise])
1200 fi
1201 AC_PATH_PROG(CIRCO, [circo], [echo circo])
1202 if test "$CIRCO" != "echo circo" ; then
1203   AC_DEFINE([HAVE_CIRCO],[1],[Define if the neat program is available])
1204   dnl If we're targeting for mingw we should emit windows paths, not msys
1205   if test "$llvm_cv_os_type" = "MingW" ; then
1206     CIRCO=`echo $CIRCO | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1207   fi
1208   AC_DEFINE_UNQUOTED([LLVM_PATH_CIRCO],"$CIRCO${EXEEXT}",
1209    [Define to path to circo program if found or 'echo circo' otherwise])
1210 fi
1211 AC_PATH_PROGS(GV, [gv gsview32], [echo gv])
1212 if test "$GV" != "echo gv" ; then
1213   AC_DEFINE([HAVE_GV],[1],[Define if the gv program is available])
1214   dnl If we're targeting for mingw we should emit windows paths, not msys
1215   if test "$llvm_cv_os_type" = "MingW" ; then
1216     GV=`echo $GV | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1217   fi
1218   AC_DEFINE_UNQUOTED([LLVM_PATH_GV],"$GV${EXEEXT}",
1219    [Define to path to gv program if found or 'echo gv' otherwise])
1220 fi
1221 AC_PATH_PROG(DOTTY, [dotty], [echo dotty])
1222 if test "$DOTTY" != "echo dotty" ; then
1223   AC_DEFINE([HAVE_DOTTY],[1],[Define if the dotty program is available])
1224   dnl If we're targeting for mingw we should emit windows paths, not msys
1225   if test "$llvm_cv_os_type" = "MingW" ; then
1226     DOTTY=`echo $DOTTY | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1227   fi
1228   AC_DEFINE_UNQUOTED([LLVM_PATH_DOTTY],"$DOTTY${EXEEXT}",
1229    [Define to path to dotty program if found or 'echo dotty' otherwise])
1230 fi
1231 AC_PATH_PROGS(XDOT, [xdot xdot.py], [echo xdot])
1232 if test "$XDOT" != "echo xdot" ; then
1233   AC_DEFINE([HAVE_XDOT],[1],[Define if the xdot program is available])
1234   dnl If we're targeting for mingw we should emit windows paths, not msys
1235   if test "$llvm_cv_os_type" = "MingW" ; then
1236     XDOT=`echo $XDOT | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1237   fi
1238   AC_DEFINE_UNQUOTED([LLVM_PATH_XDOT],"$XDOT${EXEEXT}",
1239    [Define to path to xdot program if found or 'echo xdot' otherwise])
1240 fi
1241
1242 dnl Find the install program
1243 AC_PROG_INSTALL
1244 dnl Prepend src dir to install path dir if it's a relative path
1245 dnl This is a hack for installs that take place in something other
1246 dnl than the top level.
1247 case "$INSTALL" in
1248  [[\\/$]]* | ?:[[\\/]]* ) ;;
1249  *)  INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
1250 esac
1251
1252 dnl Checks for documentation and testing tools that we can do without. If these
1253 dnl are not found then they are set to "true" which always succeeds but does
1254 dnl nothing. This just lets the build output show that we could have done
1255 dnl something if the tool was available.
1256 AC_PATH_PROG(BZIP2, [bzip2])
1257 AC_PATH_PROG(CAT, [cat])
1258 AC_PATH_PROG(DOXYGEN, [doxygen])
1259 AC_PATH_PROG(GROFF, [groff])
1260 AC_PATH_PROG(GZIPBIN, [gzip])
1261 AC_PATH_PROG(PDFROFF, [pdfroff])
1262 AC_PATH_PROG(ZIP, [zip])
1263 AC_PATH_PROGS(OCAMLC, [ocamlc])
1264 AC_PATH_PROGS(OCAMLOPT, [ocamlopt])
1265 AC_PATH_PROGS(OCAMLDEP, [ocamldep])
1266 AC_PATH_PROGS(OCAMLDOC, [ocamldoc])
1267 AC_PATH_PROGS(GAS, [gas as])
1268
1269 dnl Get the version of the linker in use.
1270 AC_LINK_GET_VERSION
1271
1272 dnl Determine whether the linker supports the -R option.
1273 AC_LINK_USE_R
1274
1275 dnl Determine whether the compiler supports the -rdynamic option.
1276 AC_LINK_EXPORT_DYNAMIC
1277
1278 dnl Determine whether the linker supports the --version-script option.
1279 AC_LINK_VERSION_SCRIPT
1280
1281 dnl Check for libtool and the library that has dlopen function (which must come
1282 dnl before the AC_PROG_LIBTOOL check in order to enable dlopening libraries with
1283 dnl libtool).
1284 AC_LIBTOOL_DLOPEN
1285 AC_LIB_LTDL
1286
1287 AC_MSG_CHECKING([tool compatibility])
1288
1289 dnl Ensure that compilation tools are GCC or a GNU compatible compiler such as
1290 dnl ICC; we use GCC specific options in the makefiles so the compiler needs
1291 dnl to support those options.
1292 dnl "icc" emits gcc signatures
1293 dnl "icc -no-gcc" emits no gcc signature BUT is still compatible
1294 ICC=no
1295 IXX=no
1296 case $CC in
1297   icc*|icpc*)
1298     ICC=yes
1299     IXX=yes
1300     ;;
1301    *)
1302     ;;
1303 esac
1304
1305 if test "$GCC" != "yes" && test "$ICC" != "yes"
1306 then
1307   AC_MSG_ERROR([gcc|icc required but not found])
1308 fi
1309
1310 dnl Ensure that compilation tools are compatible with GCC extensions
1311 if test "$GXX" != "yes" && test "$IXX" != "yes"
1312 then
1313   AC_MSG_ERROR([g++|clang++|icc required but not found])
1314 fi
1315
1316 dnl Verify that GCC is version 3.0 or higher
1317 if test "$GCC" = "yes"
1318 then
1319   AC_COMPILE_IFELSE(
1320 [
1321   AC_LANG_SOURCE([[
1322     #if !defined(__GNUC__) || __GNUC__ < 3
1323     #error Unsupported GCC version
1324     #endif
1325   ]])
1326 ],
1327 [], [AC_MSG_ERROR([gcc 3.x required, but you have a lower version])])
1328 fi
1329
1330 dnl Check for GNU Make.  We use its extensions, so don't build without it
1331 if test -z "$llvm_cv_gnu_make_command"
1332 then
1333   AC_MSG_ERROR([GNU Make required but not found])
1334 fi
1335
1336 dnl Tool compatibility is okay if we make it here.
1337 AC_MSG_RESULT([ok])
1338
1339 dnl Check optional compiler flags.
1340 AC_MSG_CHECKING([optional compiler flags])
1341 CXX_FLAG_CHECK(NO_VARIADIC_MACROS, [-Wno-variadic-macros])
1342 CXX_FLAG_CHECK(NO_MISSING_FIELD_INITIALIZERS, [-Wno-missing-field-initializers])
1343 CXX_FLAG_CHECK(COVERED_SWITCH_DEFAULT, [-Wcovered-switch-default])
1344
1345 dnl GCC's potential uninitialized use analysis is weak and presents lots of
1346 dnl false positives, so disable it.
1347 NO_UNINITIALIZED=
1348 NO_MAYBE_UNINITIALIZED=
1349 if test "$GXX" = "yes"
1350 then
1351   CXX_FLAG_CHECK(NO_MAYBE_UNINITIALIZED, [-Wno-maybe-uninitialized])
1352   dnl gcc 4.7 introduced -Wmaybe-uninitialized to distinguish cases which are
1353   dnl known to be uninitialized from cases which might be uninitialized.  We
1354   dnl still want to catch the first kind of errors.
1355   if test -z "$NO_MAYBE_UNINITIALIZED"
1356   then
1357     CXX_FLAG_CHECK(NO_UNINITIALIZED, [-Wno-uninitialized])
1358   fi
1359 fi
1360 AC_MSG_RESULT([$NO_VARIADIC_MACROS $NO_MISSING_FIELD_INITIALIZERS $COVERED_SWITCH_DEFAULT $NO_UNINITIALIZED $NO_MAYBE_UNINITIALIZED])
1361
1362 AC_ARG_WITH([python],
1363             [AS_HELP_STRING([--with-python], [path to python])],
1364             [PYTHON="$withval"])
1365
1366 if test -n "$PYTHON" && test -x "$PYTHON" ; then
1367   AC_MSG_CHECKING([for python])
1368   AC_MSG_RESULT([user defined: $with_python])
1369 else
1370   if test -n "$PYTHON" ; then
1371     AC_MSG_WARN([specified python ($PYTHON) is not usable, searching path])
1372   fi
1373
1374   AC_PATH_PROG([PYTHON], [python python2 python26],
1375                [AC_MSG_RESULT([not found])
1376                 AC_MSG_ERROR([could not find python 2.5 or higher])])
1377 fi
1378
1379 AC_MSG_CHECKING([for python >= 2.5])
1380 ac_python_version=`$PYTHON -c 'import sys; print sys.version.split()[[0]]'`
1381 ac_python_version_major=`echo $ac_python_version | cut -d'.' -f1`
1382 ac_python_version_minor=`echo $ac_python_version | cut -d'.' -f2`
1383 ac_python_version_patch=`echo $ac_python_version | cut -d'.' -f3`
1384 if   test "$ac_python_version_major" -eq "2" \
1385    && test "$ac_python_version_minor" -ge "5" ; then
1386   AC_MSG_RESULT([$PYTHON ($ac_python_version)])
1387 else
1388   AC_MSG_RESULT([not found])
1389   AC_MSG_FAILURE([found python $ac_python_version ($PYTHON); required >= 2.5])
1390 fi
1391
1392 dnl===-----------------------------------------------------------------------===
1393 dnl===
1394 dnl=== SECTION 5: Check for libraries
1395 dnl===
1396 dnl===-----------------------------------------------------------------------===
1397
1398 AC_CHECK_LIB(m,sin)
1399 if test "$llvm_cv_os_type" = "MingW" ; then
1400   AC_CHECK_LIB(imagehlp, main)
1401   AC_CHECK_LIB(psapi, main)
1402 fi
1403
1404 dnl dlopen() is required for plugin support.
1405 AC_SEARCH_LIBS(dlopen,dl,AC_DEFINE([HAVE_DLOPEN],[1],
1406                [Define if dlopen() is available on this platform.]),
1407                AC_MSG_WARN([dlopen() not found - disabling plugin support]))
1408
1409 dnl Search for the clock_gettime() function. Note that we rely on the POSIX
1410 dnl macros to detect whether clock_gettime is available, this just finds the
1411 dnl right libraries to link with.
1412 AC_SEARCH_LIBS(clock_gettime,rt)
1413
1414 dnl The curses library is optional; used for querying terminal info
1415 if test "$llvm_cv_enable_terminfo" = "yes" ; then
1416   dnl We need the has_color functionality in curses for it to be useful.
1417   AC_SEARCH_LIBS(setupterm,tinfo terminfo curses ncurses ncursesw,
1418                  AC_DEFINE([HAVE_TERMINFO],[1],
1419                            [Define if the setupterm() function is supported this platform.]))
1420 fi
1421
1422 dnl libffi is optional; used to call external functions from the interpreter
1423 if test "$llvm_cv_enable_libffi" = "yes" ; then
1424   AC_SEARCH_LIBS(ffi_call,ffi,AC_DEFINE([HAVE_FFI_CALL],[1],
1425                  [Define if libffi is available on this platform.]),
1426                  AC_MSG_ERROR([libffi not found - configure without --enable-libffi to compile without it]))
1427 fi
1428
1429 dnl mallinfo is optional; the code can compile (minus features) without it
1430 AC_SEARCH_LIBS(mallinfo,malloc,AC_DEFINE([HAVE_MALLINFO],[1],
1431                [Define if mallinfo() is available on this platform.]))
1432
1433 dnl pthread locking functions are optional - but llvm will not be thread-safe
1434 dnl without locks.
1435 if test "$LLVM_ENABLE_THREADS" -eq 1 && test "$ENABLE_PTHREADS" -eq 1 ; then
1436   AC_CHECK_LIB(pthread, pthread_mutex_init)
1437   AC_SEARCH_LIBS(pthread_mutex_lock,pthread,
1438                  AC_DEFINE([HAVE_PTHREAD_MUTEX_LOCK],[1],
1439                            [Have pthread_mutex_lock]))
1440   AC_SEARCH_LIBS(pthread_rwlock_init,pthread,
1441                  AC_DEFINE([HAVE_PTHREAD_RWLOCK_INIT],[1],
1442                  [Have pthread_rwlock_init]))
1443   AC_SEARCH_LIBS(pthread_getspecific,pthread,
1444                  AC_DEFINE([HAVE_PTHREAD_GETSPECIFIC],[1],
1445                  [Have pthread_getspecific]))
1446 fi
1447
1448 dnl zlib is optional; used for compression/uncompression
1449 if test "$LLVM_ENABLE_ZLIB" -eq 1 ; then
1450   AC_CHECK_LIB(z, compress2)
1451 fi
1452
1453 dnl Allow extra x86-disassembler library
1454 AC_ARG_WITH(udis86,
1455   AS_HELP_STRING([--with-udis86=<path>],
1456     [Use udis86 external x86 disassembler library]),
1457     [
1458       AC_SUBST(USE_UDIS86, [1])
1459       case "$withval" in
1460         /usr/lib|yes) ;;
1461         *) LDFLAGS="$LDFLAGS -L${withval}" ;;
1462       esac
1463       AC_CHECK_LIB(udis86, ud_init, [], [
1464         echo "Error! You need to have libudis86 around."
1465         exit -1
1466       ])
1467     ],
1468     AC_SUBST(USE_UDIS86, [0]))
1469 AC_DEFINE_UNQUOTED([USE_UDIS86],$USE_UDIS86,
1470                    [Define if use udis86 library])
1471
1472 dnl Allow OProfile support for JIT output.
1473 AC_ARG_WITH(oprofile,
1474   AS_HELP_STRING([--with-oprofile=<prefix>],
1475     [Tell OProfile >= 0.9.4 how to symbolize JIT output]),
1476     [
1477       AC_SUBST(USE_OPROFILE, [1])
1478       case "$withval" in
1479         /usr|yes) llvm_cv_oppath=/usr/lib/oprofile ;;
1480         no) llvm_cv_oppath=
1481             AC_SUBST(USE_OPROFILE, [0]) ;;
1482         *) llvm_cv_oppath="${withval}/lib/oprofile"
1483            CPPFLAGS="-I${withval}/include";;
1484       esac
1485       case $llvm_cv_os_type in
1486         Linux)
1487           if test -n "$llvm_cv_oppath" ; then
1488             LIBS="$LIBS -lopagent -L${llvm_cv_oppath} -Wl,-rpath,${llvm_cv_oppath}"
1489             dnl Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537744:
1490             dnl libbfd is not included properly in libopagent in some Debian
1491             dnl versions.  If libbfd isn't found at all, we assume opagent works
1492             dnl anyway.
1493             AC_SEARCH_LIBS(bfd_init, bfd, [], [])
1494             AC_SEARCH_LIBS(op_open_agent, opagent, [], [
1495               echo "Error! You need to have libopagent around."
1496               exit -1
1497             ])
1498             AC_CHECK_HEADER([opagent.h], [], [
1499               echo "Error! You need to have opagent.h around."
1500               exit -1
1501               ])
1502           fi ;;
1503         *)
1504           AC_MSG_ERROR([OProfile support is available on Linux only.]) ;;
1505       esac 
1506     ],
1507     [
1508       AC_SUBST(USE_OPROFILE, [0])
1509     ])
1510 AC_DEFINE_UNQUOTED([LLVM_USE_OPROFILE],$USE_OPROFILE,
1511                    [Define if we have the oprofile JIT-support library])
1512
1513 dnl Enable support for Intel JIT Events API.
1514 AC_ARG_WITH(intel-jitevents,
1515   AS_HELP_STRING([--with-intel-jitevents  Notify Intel JIT profiling API of generated code]),
1516     [
1517        case "$withval" in
1518           yes) AC_SUBST(USE_INTEL_JITEVENTS,[1]);;
1519           no)  AC_SUBST(USE_INTEL_JITEVENTS,[0]);;
1520           *) AC_MSG_ERROR([Invalid setting for --with-intel-jitevents. Use "yes" or "no"]);;
1521        esac
1522
1523       case $llvm_cv_os_type in
1524         Linux|Win32|Cygwin|MingW) ;;
1525         *) AC_MSG_ERROR([Intel JIT API support is available on Linux and Windows only.]);;
1526       esac
1527
1528       case "$llvm_cv_target_arch" in
1529         x86|x86_64) ;;
1530         *) AC_MSG_ERROR([Target architecture $llvm_cv_target_arch does not support Intel JIT Events API.]);;
1531       esac
1532     ],
1533     [
1534       AC_SUBST(USE_INTEL_JITEVENTS, [0])
1535     ])
1536 AC_DEFINE_UNQUOTED([LLVM_USE_INTEL_JITEVENTS],$USE_INTEL_JITEVENTS,
1537                    [Define if we have the Intel JIT API runtime support library])
1538
1539 dnl Check for libxml2
1540 dnl Right now we're just checking for the existence, we could also check for a
1541 dnl particular version via --version on xml2-config
1542 AC_CHECK_PROGS(XML2CONFIG, xml2-config)
1543
1544 AC_MSG_CHECKING(for libxml2 includes)
1545 if test "x$XML2CONFIG" = "x"; then
1546  AC_MSG_RESULT(xml2-config not found)
1547 else
1548  LIBXML2_INC=`$XML2CONFIG --cflags`
1549  AC_MSG_RESULT($LIBXML2_INC)
1550  AC_CHECK_LIB(xml2, xmlReadFile,[AC_DEFINE([CLANG_HAVE_LIBXML],1,[Define if we have libxml2])
1551                                 LIBXML2_LIBS="-lxml2"])
1552 fi
1553 AC_SUBST(LIBXML2_LIBS)
1554 AC_SUBST(LIBXML2_INC)
1555
1556 dnl===-----------------------------------------------------------------------===
1557 dnl===
1558 dnl=== SECTION 6: Check for header files
1559 dnl===
1560 dnl===-----------------------------------------------------------------------===
1561
1562 dnl First, use autoconf provided macros for specific headers that we need
1563 dnl We don't check for ancient stuff or things that are guaranteed to be there
1564 dnl by the C++ standard. We always use the <cfoo> versions of <foo.h> C headers.
1565 dnl Generally we're looking for POSIX headers.
1566 AC_HEADER_DIRENT
1567 AC_HEADER_MMAP_ANONYMOUS
1568 AC_HEADER_STAT
1569 AC_HEADER_SYS_WAIT
1570 AC_HEADER_TIME
1571
1572 AC_LANG_PUSH([C++])
1573 AC_CHECK_HEADERS([cxxabi.h])
1574 AC_LANG_POP([C++])
1575 AC_CHECK_HEADERS([dlfcn.h execinfo.h fcntl.h inttypes.h link.h])
1576 AC_CHECK_HEADERS([malloc.h setjmp.h signal.h stdint.h termios.h unistd.h])
1577 AC_CHECK_HEADERS([utime.h])
1578 AC_CHECK_HEADERS([sys/mman.h sys/param.h sys/resource.h sys/time.h sys/uio.h])
1579 AC_CHECK_HEADERS([sys/ioctl.h malloc/malloc.h mach/mach.h])
1580 AC_CHECK_HEADERS([valgrind/valgrind.h])
1581 AC_CHECK_HEADERS([fenv.h])
1582 AC_CHECK_DECLS([FE_ALL_EXCEPT, FE_INEXACT], [], [], [[#include <fenv.h>]])
1583 if test "$LLVM_ENABLE_THREADS" -eq 1 && test "$ENABLE_PTHREADS" -eq 1 ; then
1584   AC_CHECK_HEADERS(pthread.h,
1585                    AC_SUBST(HAVE_PTHREAD, 1),
1586                    AC_SUBST(HAVE_PTHREAD, 0))
1587 else
1588   AC_SUBST(HAVE_PTHREAD, 0)
1589 fi
1590 if test "$LLVM_ENABLE_ZLIB" -eq 1 ; then
1591   AC_CHECK_HEADERS(zlib.h,
1592                    AC_SUBST(HAVE_LIBZ, 1),
1593                    AC_SUBST(HAVE_LIBZ, 0))
1594 else
1595   AC_SUBST(HAVE_LIBZ, 0)
1596 fi
1597
1598 dnl Try to find ffi.h.
1599 if test "$llvm_cv_enable_libffi" = "yes" ; then
1600   AC_CHECK_HEADERS([ffi.h ffi/ffi.h])
1601 fi
1602
1603 dnl Try to find Darwin specific crash reporting libraries.
1604 AC_CHECK_HEADERS([CrashReporterClient.h])
1605
1606 dnl Try to find Darwin specific crash reporting global.
1607 AC_MSG_CHECKING([__crashreporter_info__])
1608 AC_LINK_IFELSE(
1609 [
1610   AC_LANG_SOURCE([[
1611     extern const char *__crashreporter_info__;
1612     int main() {
1613       __crashreporter_info__ = "test";
1614       return 0;
1615     }
1616   ]])
1617 ],
1618 [
1619   AC_MSG_RESULT([yes])
1620   AC_DEFINE([HAVE_CRASHREPORTER_INFO], [1], [can use __crashreporter_info__])
1621 ],
1622 [
1623   AC_MSG_RESULT([no])
1624   AC_DEFINE([HAVE_CRASHREPORTER_INFO], [0], [can use __crashreporter_info__])
1625 ])
1626
1627 dnl===-----------------------------------------------------------------------===
1628 dnl===
1629 dnl=== SECTION 7: Check for types and structures
1630 dnl===
1631 dnl===-----------------------------------------------------------------------===
1632
1633 AC_HUGE_VAL_CHECK
1634 AC_TYPE_PID_T
1635 AC_TYPE_SIZE_T
1636 AC_DEFINE_UNQUOTED([RETSIGTYPE],[void],[Define as the return type of signal handlers (`int' or `void').])
1637 AC_STRUCT_TM
1638 AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found]))
1639 AC_CHECK_TYPES([uint64_t],,
1640          AC_CHECK_TYPES([u_int64_t],,
1641          AC_MSG_ERROR([Type uint64_t or u_int64_t required but not found])))
1642
1643 dnl===-----------------------------------------------------------------------===
1644 dnl===
1645 dnl=== SECTION 8: Check for specific functions needed
1646 dnl===
1647 dnl===-----------------------------------------------------------------------===
1648
1649 AC_CHECK_FUNCS([backtrace ceilf floorf roundf rintf nearbyintf getcwd ])
1650 AC_CHECK_FUNCS([powf fmodf strtof round ])
1651 AC_CHECK_FUNCS([log log2 log10 exp exp2])
1652 AC_CHECK_FUNCS([getpagesize getrusage getrlimit setrlimit gettimeofday ])
1653 AC_CHECK_FUNCS([isatty mkdtemp mkstemp ])
1654 AC_CHECK_FUNCS([mktemp posix_spawn pread realpath sbrk setrlimit ])
1655 AC_CHECK_FUNCS([strerror strerror_r setenv arc4random ])
1656 AC_CHECK_FUNCS([strtoll strtoq sysconf malloc_zone_statistics ])
1657 AC_CHECK_FUNCS([setjmp longjmp sigsetjmp siglongjmp writev])
1658 AC_CHECK_FUNCS([futimes futimens])
1659 AC_C_PRINTF_A
1660 AC_FUNC_RAND48
1661
1662 dnl Check the declaration "Secure API" on Windows environments.
1663 AC_CHECK_DECLS([strerror_s])
1664
1665 dnl Check symbols in libgcc.a for JIT on Mingw.
1666 if test "$llvm_cv_os_type" = "MingW" ; then
1667   AC_CHECK_LIB(gcc,_alloca,AC_DEFINE([HAVE__ALLOCA],[1],[Have host's _alloca]))
1668   AC_CHECK_LIB(gcc,__alloca,AC_DEFINE([HAVE___ALLOCA],[1],[Have host's __alloca]))
1669   AC_CHECK_LIB(gcc,__chkstk,AC_DEFINE([HAVE___CHKSTK],[1],[Have host's __chkstk]))
1670   AC_CHECK_LIB(gcc,___chkstk,AC_DEFINE([HAVE____CHKSTK],[1],[Have host's ___chkstk]))
1671
1672   AC_CHECK_LIB(gcc,__ashldi3,AC_DEFINE([HAVE___ASHLDI3],[1],[Have host's __ashldi3]))
1673   AC_CHECK_LIB(gcc,__ashrdi3,AC_DEFINE([HAVE___ASHRDI3],[1],[Have host's __ashrdi3]))
1674   AC_CHECK_LIB(gcc,__divdi3,AC_DEFINE([HAVE___DIVDI3],[1],[Have host's __divdi3]))
1675   AC_CHECK_LIB(gcc,__fixdfdi,AC_DEFINE([HAVE___FIXDFDI],[1],[Have host's __fixdfdi]))
1676   AC_CHECK_LIB(gcc,__fixsfdi,AC_DEFINE([HAVE___FIXSFDI],[1],[Have host's __fixsfdi]))
1677   AC_CHECK_LIB(gcc,__floatdidf,AC_DEFINE([HAVE___FLOATDIDF],[1],[Have host's __floatdidf]))
1678   AC_CHECK_LIB(gcc,__lshrdi3,AC_DEFINE([HAVE___LSHRDI3],[1],[Have host's __lshrdi3]))
1679   AC_CHECK_LIB(gcc,__moddi3,AC_DEFINE([HAVE___MODDI3],[1],[Have host's __moddi3]))
1680   AC_CHECK_LIB(gcc,__udivdi3,AC_DEFINE([HAVE___UDIVDI3],[1],[Have host's __udivdi3]))
1681   AC_CHECK_LIB(gcc,__umoddi3,AC_DEFINE([HAVE___UMODDI3],[1],[Have host's __umoddi3]))
1682
1683   AC_CHECK_LIB(gcc,__main,AC_DEFINE([HAVE___MAIN],[1],[Have host's __main]))
1684   AC_CHECK_LIB(gcc,__cmpdi2,AC_DEFINE([HAVE___CMPDI2],[1],[Have host's __cmpdi2]))
1685 fi
1686
1687 dnl Check Win32 API EnumerateLoadedModules.
1688 if test "$llvm_cv_os_type" = "MingW" ; then
1689   AC_MSG_CHECKING([whether EnumerateLoadedModules() accepts new decl])
1690   AC_COMPILE_IFELSE(
1691 [
1692   AC_LANG_SOURCE([[
1693     #include <windows.h>
1694     #include <imagehlp.h>
1695     extern void foo(PENUMLOADED_MODULES_CALLBACK);
1696     extern void foo(BOOL(CALLBACK*)(PCSTR,ULONG_PTR,ULONG,PVOID));
1697   ]])
1698 ],
1699 [
1700   AC_MSG_RESULT([yes])
1701   llvm_cv_win32_elmcb_pcstr="PCSTR"
1702 ],
1703 [
1704   AC_MSG_RESULT([no])
1705   llvm_cv_win32_elmcb_pcstr="PSTR"
1706 ])
1707   AC_DEFINE_UNQUOTED([WIN32_ELMCB_PCSTR],$llvm_cv_win32_elmcb_pcstr,[Type of 1st arg on ELM Callback])
1708 fi
1709
1710 dnl Check for variations in the Standard C++ library and STL. These macros are
1711 dnl provided by LLVM in the autoconf/m4 directory.
1712 AC_FUNC_ISNAN
1713 AC_FUNC_ISINF
1714
1715 dnl Check for mmap support.We also need to know if /dev/zero is required to
1716 dnl be opened for allocating RWX memory.
1717 dnl Make sure we aren't attempting to configure for an unknown system
1718 if test "$llvm_cv_platform_type" = "Unix" ; then
1719   AC_FUNC_MMAP
1720   AC_FUNC_MMAP_FILE
1721   AC_NEED_DEV_ZERO_FOR_MMAP
1722
1723   if test "$ac_cv_func_mmap_fixed_mapped" = "no"
1724   then
1725     AC_MSG_WARN([mmap() of a fixed address required but not supported])
1726   fi
1727   if test "$ac_cv_func_mmap_file" = "no"
1728   then
1729     AC_MSG_WARN([mmap() of files required but not found])
1730   fi
1731 fi
1732
1733 dnl atomic builtins are required for threading support.
1734 AC_MSG_CHECKING(for GCC atomic builtins)
1735 dnl Since we'll be using these atomic builtins in C++ files we should test
1736 dnl the C++ compiler.
1737 AC_LANG_PUSH([C++])
1738 AC_LINK_IFELSE(
1739 [
1740   AC_LANG_SOURCE([[
1741     int main() {
1742       volatile unsigned long val = 1;
1743       __sync_synchronize();
1744       __sync_val_compare_and_swap(&val, 1, 0);
1745       __sync_add_and_fetch(&val, 1);
1746       __sync_sub_and_fetch(&val, 1);
1747       return 0;
1748     }
1749   ]])
1750 ],
1751 [
1752   AC_MSG_RESULT([yes])
1753   AC_DEFINE([LLVM_HAS_ATOMICS], [1], [Has gcc/MSVC atomic intrinsics])
1754 ],
1755 [
1756   AC_MSG_RESULT([no])
1757   AC_DEFINE([LLVM_HAS_ATOMICS], [0], [Has gcc/MSVC atomic intrinsics])
1758   AC_MSG_WARN([LLVM will be built thread-unsafe because atomic builtins are missing])
1759 ])
1760 AC_LANG_POP([C++])
1761
1762 dnl===-----------------------------------------------------------------------===
1763 dnl===
1764 dnl=== SECTION 9: Additional checks, variables, etc.
1765 dnl===
1766 dnl===-----------------------------------------------------------------------===
1767
1768 dnl Handle 32-bit linux systems running a 64-bit kernel.
1769 dnl This has to come after section 4 because it invokes the compiler.
1770 if test "$llvm_cv_os_type" = "Linux" -a "$llvm_cv_target_arch" = "x86_64" ; then
1771   AC_IS_LINUX_MIXED
1772   if test "$llvm_cv_linux_mixed" = "yes"; then
1773     llvm_cv_target_arch="x86"
1774     ARCH="x86"
1775   fi
1776 fi
1777
1778 dnl Check whether __dso_handle is present
1779 AC_CHECK_FUNCS([__dso_handle])
1780
1781 dnl Propagate the shared library extension that the libltdl checks did to
1782 dnl the Makefiles so we can use it there too
1783 AC_SUBST(SHLIBEXT,$libltdl_cv_shlibext)
1784
1785 dnl Propagate the run-time library path variable that the libltdl
1786 dnl checks found to the Makefiles so we can use it there too
1787 AC_SUBST(SHLIBPATH_VAR,$libltdl_cv_shlibpath_var)
1788
1789 dnl Translate the various configuration directories and other basic
1790 dnl information into substitutions that will end up in Makefile.config.in
1791 dnl that these configured values can be used by the makefiles
1792 if test "${prefix}" = "NONE" ; then
1793   prefix="/usr/local"
1794 fi
1795 eval LLVM_PREFIX="${prefix}";
1796 eval LLVM_BINDIR="${prefix}/bin";
1797 eval LLVM_DATADIR="${prefix}/share/llvm";
1798 eval LLVM_DOCSDIR="${prefix}/share/doc/llvm";
1799 eval LLVM_ETCDIR="${prefix}/etc/llvm";
1800 eval LLVM_INCLUDEDIR="${prefix}/include";
1801 eval LLVM_INFODIR="${prefix}/info";
1802 eval LLVM_MANDIR="${prefix}/man";
1803 LLVM_CONFIGTIME=`date`
1804 AC_SUBST(LLVM_PREFIX)
1805 AC_SUBST(LLVM_BINDIR)
1806 AC_SUBST(LLVM_DATADIR)
1807 AC_SUBST(LLVM_DOCSDIR)
1808 AC_SUBST(LLVM_ETCDIR)
1809 AC_SUBST(LLVM_INCLUDEDIR)
1810 AC_SUBST(LLVM_INFODIR)
1811 AC_SUBST(LLVM_MANDIR)
1812 AC_SUBST(LLVM_CONFIGTIME)
1813
1814 dnl Disable embedding timestamps in the build directory, with ENABLE_TIMESTAMPS.
1815 if test "${ENABLE_TIMESTAMPS}" = "0"; then
1816   LLVM_CONFIGTIME="(timestamp not enabled)"
1817 fi
1818
1819 dnl Place the various directories into the config.h file as #defines so that we
1820 dnl can know about the installation paths within LLVM.
1821 AC_DEFINE_UNQUOTED(LLVM_PREFIX,"$LLVM_PREFIX",
1822                    [Installation prefix directory])
1823 AC_DEFINE_UNQUOTED(LLVM_BINDIR, "$LLVM_BINDIR",
1824                    [Installation directory for binary executables])
1825 AC_DEFINE_UNQUOTED(LLVM_DATADIR, "$LLVM_DATADIR",
1826                    [Installation directory for data files])
1827 AC_DEFINE_UNQUOTED(LLVM_DOCSDIR, "$LLVM_DOCSDIR",
1828                    [Installation directory for documentation])
1829 AC_DEFINE_UNQUOTED(LLVM_ETCDIR, "$LLVM_ETCDIR",
1830                    [Installation directory for config files])
1831 AC_DEFINE_UNQUOTED(LLVM_INCLUDEDIR, "$LLVM_INCLUDEDIR",
1832                    [Installation directory for include files])
1833 AC_DEFINE_UNQUOTED(LLVM_INFODIR, "$LLVM_INFODIR",
1834                    [Installation directory for .info files])
1835 AC_DEFINE_UNQUOTED(LLVM_MANDIR, "$LLVM_MANDIR",
1836                    [Installation directory for man pages])
1837 AC_DEFINE_UNQUOTED(LLVM_CONFIGTIME, "$LLVM_CONFIGTIME",
1838                    [Time at which LLVM was configured])
1839 AC_DEFINE_UNQUOTED(LLVM_HOST_TRIPLE, "$host",
1840                    [Host triple LLVM will be executed on])
1841 AC_DEFINE_UNQUOTED(LLVM_DEFAULT_TARGET_TRIPLE, "$target",
1842                    [Target triple LLVM will generate code for by default])
1843
1844 dnl Determine which bindings to build.
1845 if test "$BINDINGS_TO_BUILD" = auto ; then
1846   BINDINGS_TO_BUILD=""
1847   if test "x$OCAMLC" != x -a "x$OCAMLDEP" != x ; then
1848     BINDINGS_TO_BUILD="ocaml $BINDINGS_TO_BUILD"
1849   fi
1850 fi
1851 AC_SUBST(BINDINGS_TO_BUILD,$BINDINGS_TO_BUILD)
1852
1853 dnl This isn't really configurey, but it avoids having to repeat the list in
1854 dnl other files.
1855 AC_SUBST(ALL_BINDINGS,ocaml)
1856
1857 dnl Do any work necessary to ensure that bindings have what they need.
1858 binding_prereqs_failed=0
1859 for a_binding in $BINDINGS_TO_BUILD ; do
1860   case "$a_binding" in
1861   ocaml)
1862     if test "x$OCAMLC" = x ; then
1863       AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamlc not found. Try configure OCAMLC=/path/to/ocamlc])
1864       binding_prereqs_failed=1
1865     fi
1866     if test "x$OCAMLDEP" = x ; then
1867       AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamldep not found. Try configure OCAMLDEP=/path/to/ocamldep])
1868       binding_prereqs_failed=1
1869     fi
1870     if test "x$OCAMLOPT" = x ; then
1871       AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamlopt not found. Try configure OCAMLOPT=/path/to/ocamlopt])
1872       dnl ocamlopt is optional!
1873     fi
1874     if test "x$with_ocaml_libdir" != xauto ; then
1875       AC_SUBST(OCAML_LIBDIR,$with_ocaml_libdir)
1876     else
1877       ocaml_stdlib="`"$OCAMLC" -where`"
1878       if test "$LLVM_PREFIX" '<' "$ocaml_stdlib" -a "$ocaml_stdlib" '<' "$LLVM_PREFIX~"
1879       then
1880         # ocaml stdlib is beneath our prefix; use stdlib
1881         AC_SUBST(OCAML_LIBDIR,$ocaml_stdlib)
1882       else
1883         # ocaml stdlib is outside our prefix; use libdir/ocaml
1884         AC_SUBST(OCAML_LIBDIR,${prefix}/lib/ocaml)
1885       fi
1886     fi
1887     ;;
1888   esac
1889 done
1890 if test "$binding_prereqs_failed" = 1 ; then
1891   AC_MSG_ERROR([Prequisites for bindings not satisfied. Fix them or use configure --disable-bindings.])
1892 fi
1893
1894 dnl Determine whether the compiler supports -fvisibility-inlines-hidden.
1895 AC_CXX_USE_VISIBILITY_INLINES_HIDDEN
1896
1897 dnl Determine linker rpath flag
1898 if test "$llvm_cv_link_use_r" = "yes" ; then
1899   RPATH="-Wl,-R"
1900 else
1901   RPATH="-Wl,-rpath"
1902 fi
1903 AC_SUBST(RPATH)
1904
1905 dnl Determine linker rdynamic flag
1906 if test "$llvm_cv_link_use_export_dynamic" = "yes" ; then
1907   RDYNAMIC="-rdynamic"
1908 else
1909   RDYNAMIC=""
1910 fi
1911 AC_SUBST(RDYNAMIC)
1912
1913 dnl===-----------------------------------------------------------------------===
1914 dnl===
1915 dnl=== SECTION 10: Specify the output files and generate it
1916 dnl===
1917 dnl===-----------------------------------------------------------------------===
1918
1919 dnl Configure header files
1920 dnl WARNING: dnl If you add or remove any of the following config headers, then
1921 dnl you MUST also update Makefile so that the variable FilesToConfig
1922 dnl contains the same list of files as AC_CONFIG_HEADERS below. This ensures the
1923 dnl files can be updated automatically when their *.in sources change.
1924 AC_CONFIG_HEADERS([include/llvm/Config/config.h include/llvm/Config/llvm-config.h])
1925 AH_TOP([#ifndef CONFIG_H
1926 #define CONFIG_H])
1927 AH_BOTTOM([#endif])
1928
1929 AC_CONFIG_FILES([include/llvm/Config/Targets.def])
1930 AC_CONFIG_FILES([include/llvm/Config/AsmPrinters.def])
1931 AC_CONFIG_FILES([include/llvm/Config/AsmParsers.def])
1932 AC_CONFIG_FILES([include/llvm/Config/Disassemblers.def])
1933 AC_CONFIG_HEADERS([include/llvm/Support/DataTypes.h])
1934
1935 dnl Configure the makefile's configuration data
1936 AC_CONFIG_FILES([Makefile.config])
1937
1938 dnl Configure the RPM spec file for LLVM
1939 AC_CONFIG_FILES([llvm.spec])
1940
1941 dnl Configure doxygen's configuration file
1942 AC_CONFIG_FILES([docs/doxygen.cfg])
1943
1944 dnl Configure clang, if present
1945 if test "${clang_src_root}" = ""; then
1946   clang_src_root="$srcdir/tools/clang"
1947 fi
1948 if test -f ${clang_src_root}/README.txt; then
1949   dnl Use variables to stay under 80 columns.
1950   configh="include/clang/Config/config.h"
1951   doxy="docs/doxygen.cfg"
1952   AC_CONFIG_HEADERS([tools/clang/${configh}:${clang_src_root}/${configh}.in])
1953   AC_CONFIG_FILES([tools/clang/${doxy}:${clang_src_root}/${doxy}.in])
1954 fi
1955
1956 dnl OCaml findlib META file
1957 AC_CONFIG_FILES([bindings/ocaml/llvm/META.llvm])
1958
1959 dnl Add --program-prefix value to Makefile.rules. Already an ARG variable.
1960 test "x$program_prefix" = "xNONE" && program_prefix=""
1961 AC_SUBST([program_prefix])
1962
1963
1964 dnl Do special configuration of Makefiles
1965 AC_CONFIG_COMMANDS([setup],,[llvm_src="${srcdir}"])
1966 AC_CONFIG_MAKEFILE(Makefile)
1967 AC_CONFIG_MAKEFILE(Makefile.common)
1968 AC_CONFIG_MAKEFILE(examples/Makefile)
1969 AC_CONFIG_MAKEFILE(lib/Makefile)
1970 AC_CONFIG_MAKEFILE(runtime/Makefile)
1971 AC_CONFIG_MAKEFILE(test/Makefile)
1972 AC_CONFIG_MAKEFILE(test/Makefile.tests)
1973 AC_CONFIG_MAKEFILE(unittests/Makefile)
1974 AC_CONFIG_MAKEFILE(tools/Makefile)
1975 AC_CONFIG_MAKEFILE(utils/Makefile)
1976 AC_CONFIG_MAKEFILE(projects/Makefile)
1977 AC_CONFIG_MAKEFILE(bindings/Makefile)
1978 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml)
1979
1980 dnl Finally, crank out the output
1981 AC_OUTPUT