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