[omp] Add a configuration variable for the default OpenMP runtime.
[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 AC_ARG_WITH(clang-default-openmp-runtime,
1341   AS_HELP_STRING([--with-clang-default-openmp-runtime],
1342     [The default OpenMP runtime for Clang.]),,
1343     withval="")
1344 AC_DEFINE_UNQUOTED(CLANG_DEFAULT_OPENMP_RUNTIME,"$withval",
1345                    [Default OpenMP runtime used by -fopenmp.])
1346
1347 dnl Allow linking of LLVM with GPLv3 binutils code.
1348 AC_ARG_WITH(binutils-include,
1349   AS_HELP_STRING([--with-binutils-include],
1350     [Specify path to binutils/include/ containing plugin-api.h file for gold plugin.]),,
1351   withval=default)
1352 case "$withval" in
1353   default) WITH_BINUTILS_INCDIR=default ;;
1354   /* | [[A-Za-z]]:[[\\/]]*)      WITH_BINUTILS_INCDIR=$withval ;;
1355   *) AC_MSG_ERROR([Invalid path for --with-binutils-include. Provide full path]) ;;
1356 esac
1357 if test "x$WITH_BINUTILS_INCDIR" != xdefault ; then
1358   AC_SUBST(BINUTILS_INCDIR,$WITH_BINUTILS_INCDIR)
1359   if test ! -f "$WITH_BINUTILS_INCDIR/plugin-api.h"; then
1360      echo "$WITH_BINUTILS_INCDIR/plugin-api.h"
1361      AC_MSG_ERROR([Invalid path to directory containing plugin-api.h.]);
1362   fi
1363 fi
1364
1365 dnl Specify the URL where bug reports should be submitted.
1366 AC_ARG_WITH(bug-report-url,
1367   AS_HELP_STRING([--with-bug-report-url],
1368     [Specify the URL where bug reports should be submitted (default=http://llvm.org/bugs/)]),,
1369     withval="http://llvm.org/bugs/")
1370 AC_DEFINE_UNQUOTED(BUG_REPORT_URL,"$withval",
1371                    [Bug report URL.])
1372
1373 dnl --enable-terminfo: check whether the user wants to control use of terminfo:
1374 AC_ARG_ENABLE(terminfo,AS_HELP_STRING(
1375   [--enable-terminfo],
1376   [Query the terminfo database if available (default is YES)]),
1377   [case "$enableval" in
1378     yes) llvm_cv_enable_terminfo="yes" ;;
1379     no)  llvm_cv_enable_terminfo="no"  ;;
1380     *) AC_MSG_ERROR([Invalid setting for --enable-terminfo. Use "yes" or "no"]) ;;
1381   esac],
1382   llvm_cv_enable_terminfo="yes")
1383 case "$llvm_cv_enable_terminfo" in
1384   yes) AC_SUBST(ENABLE_TERMINFO,[1]) ;;
1385   no)  AC_SUBST(ENABLE_TERMINFO,[0]) ;;
1386 esac
1387
1388 dnl --enable-libedit: check whether the user wants to turn off libedit.
1389 AC_ARG_ENABLE(libedit,AS_HELP_STRING(
1390   [--enable-libedit],
1391   [Use libedit if available (default is YES)]),
1392   [case "$enableval" in
1393     yes) llvm_cv_enable_libedit="yes" ;;
1394     no)  llvm_cv_enable_libedit="no"  ;;
1395     *) AC_MSG_ERROR([Invalid setting for --enable-libedit. Use "yes" or "no"]) ;;
1396   esac],
1397   llvm_cv_enable_libedit="yes")
1398
1399 dnl --enable-libffi : check whether the user wants to turn off libffi:
1400 AC_ARG_ENABLE(libffi,AS_HELP_STRING(
1401   --enable-libffi,[Check for the presence of libffi (default is NO)]),
1402   [case "$enableval" in
1403     yes) llvm_cv_enable_libffi="yes" ;;
1404     no)  llvm_cv_enable_libffi="no"  ;;
1405     *) AC_MSG_ERROR([Invalid setting for --enable-libffi. Use "yes" or "no"]) ;;
1406   esac],
1407   llvm_cv_enable_libffi=no)
1408
1409 AC_ARG_WITH(internal-prefix,
1410   AS_HELP_STRING([--with-internal-prefix],
1411     [Installation directory for internal files]),,
1412     withval="")
1413 AC_SUBST(INTERNAL_PREFIX,[$withval])
1414
1415 dnl===-----------------------------------------------------------------------===
1416 dnl===
1417 dnl=== SECTION 4: Check for programs we need and that they are the right version
1418 dnl===
1419 dnl===-----------------------------------------------------------------------===
1420
1421 dnl Check for the tools that the makefiles require
1422 AC_CHECK_GNU_MAKE
1423 AC_PROG_LN_S
1424 AC_PATH_PROG(NM, [nm], [nm])
1425 AC_PATH_PROG(CMP, [cmp], [cmp])
1426 AC_PATH_PROG(CP, [cp], [cp])
1427 AC_PATH_PROG(DATE, [date], [date])
1428 AC_PATH_PROG(FIND, [find], [find])
1429 AC_PATH_PROG(GREP, [grep], [grep])
1430 AC_PATH_PROG(MKDIR,[mkdir],[mkdir])
1431 AC_PATH_PROG(MV,   [mv],   [mv])
1432 AC_PROG_RANLIB
1433 AC_CHECK_TOOL(AR, ar, false)
1434 AC_PATH_PROG(RM,   [rm],   [rm])
1435 AC_PATH_PROG(SED,  [sed],  [sed])
1436 AC_PATH_PROG(TAR,  [tar],  [gtar])
1437 AC_PATH_PROG(BINPWD,[pwd],  [pwd])
1438
1439 dnl Looking for misc. graph plotting software
1440 AC_PATH_PROG(DOT, [dot], [echo dot])
1441 if test "$DOT" != "echo dot" ; then
1442   AC_DEFINE([HAVE_DOT],[1],[Define if the dot program is available])
1443   dnl If we're targeting for mingw we should emit windows paths, not msys
1444   if test "$llvm_cv_os_type" = "MingW" ; then
1445     DOT=`echo $DOT | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
1446   fi
1447   AC_DEFINE_UNQUOTED([LLVM_PATH_DOT],"$DOT${EXEEXT}",
1448    [Define to path to dot program if found or 'echo dot' otherwise])
1449 fi
1450
1451 dnl Find the install program
1452 AC_PROG_INSTALL
1453 dnl Prepend src dir to install path dir if it's a relative path
1454 dnl This is a hack for installs that take place in something other
1455 dnl than the top level.
1456 case "$INSTALL" in
1457  [[\\/$]]* | ?:[[\\/]]* ) ;;
1458  *)  INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
1459 esac
1460
1461 dnl Checks for documentation and testing tools that we can do without. If these
1462 dnl are not found then they are set to "true" which always succeeds but does
1463 dnl nothing. This just lets the build output show that we could have done
1464 dnl something if the tool was available.
1465 AC_PATH_PROG(BZIP2, [bzip2])
1466 AC_PATH_PROG(CAT, [cat])
1467 AC_PATH_PROG(DOXYGEN, [doxygen])
1468 AC_PATH_PROG(GROFF, [groff])
1469 AC_PATH_PROG(GZIPBIN, [gzip])
1470 AC_PATH_PROG(PDFROFF, [pdfroff])
1471 AC_PATH_PROG(ZIP, [zip])
1472 AC_PATH_PROG(GO, [go])
1473 AC_PATH_PROGS(OCAMLFIND, [ocamlfind])
1474 AC_PATH_PROGS(GAS, [gas as])
1475
1476 dnl Get the version of the linker in use.
1477 AC_LINK_GET_VERSION
1478
1479 dnl Determine whether the linker supports the -R option.
1480 AC_LINK_USE_R
1481
1482 dnl Determine whether the compiler supports the -rdynamic option.
1483 AC_LINK_EXPORT_DYNAMIC
1484
1485 dnl Determine whether the linker supports the --version-script option.
1486 AC_LINK_VERSION_SCRIPT
1487
1488 AC_CHECK_HEADERS([errno.h])
1489
1490 case "$llvm_cv_os_type" in
1491   Cygwin|MingW|Win32) llvm_shlib_ext=.dll ;;
1492   Darwin) llvm_shlib_ext=.dylib ;;
1493   *) llvm_shlib_ext=.so ;;
1494 esac
1495
1496 AC_DEFINE_UNQUOTED([LTDL_SHLIB_EXT], ["$llvm_shlib_ext"], [The shared library extension])
1497
1498 AC_MSG_CHECKING([tool compatibility])
1499
1500 dnl Ensure that compilation tools are GCC or a GNU compatible compiler such as
1501 dnl ICC; we use GCC specific options in the makefiles so the compiler needs
1502 dnl to support those options.
1503 dnl "icc" emits gcc signatures
1504 dnl "icc -no-gcc" emits no gcc signature BUT is still compatible
1505 ICC=no
1506 IXX=no
1507 case $CC in
1508   icc*|icpc*)
1509     ICC=yes
1510     IXX=yes
1511     ;;
1512    *)
1513     ;;
1514 esac
1515
1516 if test "$GCC" != "yes" && test "$ICC" != "yes"
1517 then
1518   AC_MSG_ERROR([gcc|icc required but not found])
1519 fi
1520
1521 dnl Ensure that compilation tools are compatible with GCC extensions
1522 if test "$GXX" != "yes" && test "$IXX" != "yes"
1523 then
1524   AC_MSG_ERROR([g++|clang++|icc required but not found])
1525 fi
1526
1527 dnl Verify that GCC is version 3.0 or higher
1528 if test "$GCC" = "yes"
1529 then
1530   AC_COMPILE_IFELSE(
1531 [
1532   AC_LANG_SOURCE([[
1533     #if !defined(__GNUC__) || __GNUC__ < 3
1534     #error Unsupported GCC version
1535     #endif
1536   ]])
1537 ],
1538 [], [AC_MSG_ERROR([gcc 3.x required, but you have a lower version])])
1539 fi
1540
1541 dnl Check for GNU Make.  We use its extensions, so don't build without it
1542 if test -z "$llvm_cv_gnu_make_command"
1543 then
1544   AC_MSG_ERROR([GNU Make required but not found])
1545 fi
1546
1547 dnl Tool compatibility is okay if we make it here.
1548 AC_MSG_RESULT([ok])
1549
1550 dnl Check optional compiler flags.
1551 AC_MSG_CHECKING([optional compiler flags])
1552 CXX_FLAG_CHECK(NO_VARIADIC_MACROS, [-Wno-variadic-macros])
1553 CXX_FLAG_CHECK(NO_MISSING_FIELD_INITIALIZERS, [-Wno-missing-field-initializers])
1554 CXX_FLAG_CHECK(COVERED_SWITCH_DEFAULT, [-Wcovered-switch-default])
1555
1556 dnl GCC's potential uninitialized use analysis is weak and presents lots of
1557 dnl false positives, so disable it.
1558 NO_UNINITIALIZED=
1559 NO_MAYBE_UNINITIALIZED=
1560 if test "$GXX" = "yes"
1561 then
1562   CXX_FLAG_CHECK(NO_MAYBE_UNINITIALIZED, [-Wno-maybe-uninitialized])
1563   dnl gcc 4.7 introduced -Wmaybe-uninitialized to distinguish cases which are
1564   dnl known to be uninitialized from cases which might be uninitialized.  We
1565   dnl still want to catch the first kind of errors.
1566   if test -z "$NO_MAYBE_UNINITIALIZED"
1567   then
1568     CXX_FLAG_CHECK(NO_UNINITIALIZED, [-Wno-uninitialized])
1569   fi
1570 fi
1571
1572 dnl Check for misbehaving -Wcomment (gcc-4.7 has this) and maybe add
1573 dnl -Wno-comment to the flags.
1574 no_comment=
1575 llvm_cv_old_cxxflags="$CXXFLAGS"
1576 CXXFLAGS="$CXXFLAGS -Wcomment -Werror"
1577 AC_COMPILE_IFELSE(
1578 [
1579   AC_LANG_SOURCE([[// Comment \o\
1580 // Another comment
1581 int main() { return 0; }
1582   ]])
1583 ],
1584 [
1585   no_comment=-Wno-comment
1586 ],
1587 [])
1588 AC_SUBST(NO_COMMENT, [$no_comment])
1589 CXXFLAGS="$llvm_cv_old_cxxflags"
1590
1591 AC_MSG_RESULT([$NO_VARIADIC_MACROS $NO_MISSING_FIELD_INITIALIZERS $COVERED_SWITCH_DEFAULT $NO_UNINITIALIZED $NO_MAYBE_UNINITIALIZED $NO_COMMENT])
1592
1593 AC_ARG_WITH([python],
1594             [AS_HELP_STRING([--with-python], [path to python])],
1595             [PYTHON="$withval"])
1596
1597 if test -n "$PYTHON" && test -x "$PYTHON" ; then
1598   AC_MSG_CHECKING([for python])
1599   AC_MSG_RESULT([user defined: $with_python])
1600 else
1601   if test -n "$PYTHON" ; then
1602     AC_MSG_WARN([specified python ($PYTHON) is not usable, searching path])
1603   fi
1604
1605   AC_PATH_PROG([PYTHON], [python python2 python27],
1606                [AC_MSG_RESULT([not found])
1607                 AC_MSG_ERROR([could not find python 2.7 or higher])])
1608 fi
1609
1610 AC_MSG_CHECKING([for python >= 2.7])
1611 ac_python_version=`$PYTHON -V 2>&1 | cut -d' ' -f2`
1612 ac_python_version_major=`echo $ac_python_version | cut -d'.' -f1`
1613 ac_python_version_minor=`echo $ac_python_version | cut -d'.' -f2`
1614 ac_python_version_patch=`echo $ac_python_version | cut -d'.' -f3`
1615 if test "$ac_python_version_major" -gt "2" || \
1616    (test "$ac_python_version_major" -eq "2" && \
1617     test "$ac_python_version_minor" -ge "7") ; then
1618   AC_MSG_RESULT([$PYTHON ($ac_python_version)])
1619 else
1620   AC_MSG_RESULT([not found])
1621   AC_MSG_FAILURE([found python $ac_python_version ($PYTHON); required >= 2.7])
1622 fi
1623
1624 dnl===-----------------------------------------------------------------------===
1625 dnl===
1626 dnl=== SECTION 5: Check for libraries
1627 dnl===
1628 dnl===-----------------------------------------------------------------------===
1629
1630 AC_CHECK_LIB(m,sin)
1631 if test "$llvm_cv_os_type" = "MingW" ; then
1632   AC_CHECK_LIB(imagehlp, main)
1633   AC_CHECK_LIB(psapi, main)
1634   AC_CHECK_LIB(shell32, main)
1635 fi
1636
1637 dnl dlopen() is required for plugin support.
1638 AC_SEARCH_LIBS(dlopen,dl,LLVM_DEFINE_SUBST([HAVE_DLOPEN],[1],
1639                [Define if dlopen() is available on this platform.]),
1640                AC_MSG_WARN([dlopen() not found - disabling plugin support]))
1641
1642 dnl Search for the clock_gettime() function. Note that we rely on the POSIX
1643 dnl macros to detect whether clock_gettime is available, this just finds the
1644 dnl right libraries to link with.
1645 AC_SEARCH_LIBS(clock_gettime,rt)
1646
1647 dnl The curses library is optional; used for querying terminal info
1648 if test "$llvm_cv_enable_terminfo" = "yes" ; then
1649   dnl We need the has_color functionality in curses for it to be useful.
1650   AC_SEARCH_LIBS(setupterm,tinfo terminfo curses ncurses ncursesw,
1651                  LLVM_DEFINE_SUBST([HAVE_TERMINFO],[1],
1652                                    [Define if the setupterm() function is supported this platform.]))
1653 fi
1654
1655 dnl The libedit library is optional; used by lib/LineEditor
1656 if test "$llvm_cv_enable_libedit" = "yes" ; then
1657   AC_SEARCH_LIBS(el_init,edit,
1658                  AC_DEFINE([HAVE_LIBEDIT],[1],
1659                            [Define if libedit is available on this platform.]))
1660 fi
1661
1662 dnl libffi is optional; used to call external functions from the interpreter
1663 if test "$llvm_cv_enable_libffi" = "yes" ; then
1664   AC_SEARCH_LIBS(ffi_call,ffi,AC_DEFINE([HAVE_FFI_CALL],[1],
1665                  [Define if libffi is available on this platform.]),
1666                  AC_MSG_ERROR([libffi not found - configure without --enable-libffi to compile without it]))
1667 fi
1668
1669 dnl mallinfo is optional; the code can compile (minus features) without it
1670 AC_SEARCH_LIBS(mallinfo,malloc,AC_DEFINE([HAVE_MALLINFO],[1],
1671                [Define if mallinfo() is available on this platform.]))
1672
1673 dnl pthread locking functions are optional - but llvm will not be thread-safe
1674 dnl without locks.
1675 if test "$LLVM_ENABLE_THREADS" -eq 1 && test "$ENABLE_PTHREADS" -eq 1 ; then
1676   AC_CHECK_LIB(pthread, pthread_mutex_init)
1677   AC_SEARCH_LIBS(pthread_mutex_lock,pthread,
1678                  AC_DEFINE([HAVE_PTHREAD_MUTEX_LOCK],[1],
1679                            [Have pthread_mutex_lock]))
1680   AC_SEARCH_LIBS(pthread_rwlock_init,pthread,
1681                  AC_DEFINE([HAVE_PTHREAD_RWLOCK_INIT],[1],
1682                  [Have pthread_rwlock_init]))
1683   AC_SEARCH_LIBS(pthread_getspecific,pthread,
1684                  AC_DEFINE([HAVE_PTHREAD_GETSPECIFIC],[1],
1685                  [Have pthread_getspecific]))
1686 fi
1687
1688 dnl zlib is optional; used for compression/uncompression
1689 if test "$LLVM_ENABLE_ZLIB" -eq 1 ; then
1690   AC_CHECK_LIB(z, compress2)
1691 fi
1692
1693 dnl Allow OProfile support for JIT output.
1694 AC_ARG_WITH(oprofile,
1695   AS_HELP_STRING([--with-oprofile=<prefix>],
1696     [Tell OProfile >= 0.9.4 how to symbolize JIT output]),
1697     [
1698       AC_SUBST(USE_OPROFILE, [1])
1699       case "$withval" in
1700         /usr|yes) llvm_cv_oppath=/usr/lib/oprofile ;;
1701         no) llvm_cv_oppath=
1702             AC_SUBST(USE_OPROFILE, [0]) ;;
1703         *) llvm_cv_oppath="${withval}/lib/oprofile"
1704            CPPFLAGS="-I${withval}/include";;
1705       esac
1706       case $llvm_cv_os_type in
1707         Linux)
1708           if test -n "$llvm_cv_oppath" ; then
1709             LIBS="$LIBS -lopagent -L${llvm_cv_oppath} -Wl,-rpath,${llvm_cv_oppath}"
1710             dnl Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537744:
1711             dnl libbfd is not included properly in libopagent in some Debian
1712             dnl versions.  If libbfd isn't found at all, we assume opagent works
1713             dnl anyway.
1714             AC_SEARCH_LIBS(bfd_init, bfd, [], [])
1715             AC_SEARCH_LIBS(op_open_agent, opagent, [], [
1716               echo "Error! You need to have libopagent around."
1717               exit 1
1718             ])
1719             AC_CHECK_HEADER([opagent.h], [], [
1720               echo "Error! You need to have opagent.h around."
1721               exit 1
1722               ])
1723           fi ;;
1724         *)
1725           AC_MSG_ERROR([OProfile support is available on Linux only.]) ;;
1726       esac
1727     ],
1728     [
1729       AC_SUBST(USE_OPROFILE, [0])
1730     ])
1731 AC_DEFINE_UNQUOTED([LLVM_USE_OPROFILE],$USE_OPROFILE,
1732                    [Define if we have the oprofile JIT-support library])
1733
1734 dnl Enable support for Intel JIT Events API.
1735 AC_ARG_WITH(intel-jitevents,
1736   AS_HELP_STRING([--with-intel-jitevents  Notify Intel JIT profiling API of generated code]),
1737     [
1738        case "$withval" in
1739           yes) AC_SUBST(USE_INTEL_JITEVENTS,[1]);;
1740           no)  AC_SUBST(USE_INTEL_JITEVENTS,[0]);;
1741           *) AC_MSG_ERROR([Invalid setting for --with-intel-jitevents. Use "yes" or "no"]);;
1742        esac
1743
1744       case $llvm_cv_os_type in
1745         Linux|Win32|Cygwin|MingW) ;;
1746         *) AC_MSG_ERROR([Intel JIT API support is available on Linux and Windows only.]);;
1747       esac
1748
1749       case "$llvm_cv_target_arch" in
1750         x86|x86_64) ;;
1751         *) AC_MSG_ERROR([Target architecture $llvm_cv_target_arch does not support Intel JIT Events API.]);;
1752       esac
1753     ],
1754     [
1755       AC_SUBST(USE_INTEL_JITEVENTS, [0])
1756     ])
1757 AC_DEFINE_UNQUOTED([LLVM_USE_INTEL_JITEVENTS],$USE_INTEL_JITEVENTS,
1758                    [Define if we have the Intel JIT API runtime support library])
1759
1760 dnl Check for libxml2
1761 dnl Right now we're just checking for the existence, we could also check for a
1762 dnl particular version via --version on xml2-config
1763 AC_CHECK_PROGS(XML2CONFIG, xml2-config)
1764
1765 AC_MSG_CHECKING(for libxml2 includes)
1766 if test "x$XML2CONFIG" = "x"; then
1767  AC_MSG_RESULT(xml2-config not found)
1768 else
1769  LIBXML2_INC=`$XML2CONFIG --cflags`
1770  AC_MSG_RESULT($LIBXML2_INC)
1771  AC_CHECK_LIB(xml2, xmlReadFile,[AC_DEFINE([CLANG_HAVE_LIBXML],1,[Define if we have libxml2])
1772                                 LIBXML2_LIBS="-lxml2"])
1773 fi
1774 AC_SUBST(LIBXML2_LIBS)
1775 AC_SUBST(LIBXML2_INC)
1776
1777 dnl===-----------------------------------------------------------------------===
1778 dnl===
1779 dnl=== SECTION 6: Check for header files
1780 dnl===
1781 dnl===-----------------------------------------------------------------------===
1782
1783 dnl First, use autoconf provided macros for specific headers that we need
1784 dnl We don't check for ancient stuff or things that are guaranteed to be there
1785 dnl by the C++ standard. We always use the <cfoo> versions of <foo.h> C headers.
1786 dnl Generally we're looking for POSIX headers.
1787 AC_HEADER_DIRENT
1788 AC_HEADER_MMAP_ANONYMOUS
1789 AC_HEADER_STAT
1790 AC_HEADER_SYS_WAIT
1791 AC_HEADER_TIME
1792
1793 AC_LANG_PUSH([C++])
1794 dnl size_t must be defined before including cxxabi.h on FreeBSD 10.0.
1795 AC_CHECK_HEADERS([cxxabi.h], [], [],
1796 [#include <stddef.h>
1797 ])
1798 AC_LANG_POP([C++])
1799
1800 AC_CHECK_HEADERS([dlfcn.h execinfo.h fcntl.h inttypes.h link.h])
1801 AC_CHECK_HEADERS([malloc.h setjmp.h signal.h stdint.h termios.h unistd.h])
1802 AC_CHECK_HEADERS([utime.h])
1803 AC_CHECK_HEADERS([sys/mman.h sys/param.h sys/resource.h sys/time.h sys/uio.h])
1804 AC_CHECK_HEADERS([sys/ioctl.h malloc/malloc.h mach/mach.h])
1805 AC_CHECK_HEADERS([valgrind/valgrind.h])
1806 AC_CHECK_HEADERS([fenv.h])
1807 AC_CHECK_DECLS([FE_ALL_EXCEPT, FE_INEXACT], [], [], [[#include <fenv.h>]])
1808 if test "$LLVM_ENABLE_THREADS" -eq 1 && test "$ENABLE_PTHREADS" -eq 1 ; then
1809   AC_CHECK_HEADERS(pthread.h,
1810                    AC_SUBST(HAVE_PTHREAD, 1),
1811                    AC_SUBST(HAVE_PTHREAD, 0))
1812 else
1813   AC_SUBST(HAVE_PTHREAD, 0)
1814 fi
1815 if test "$LLVM_ENABLE_ZLIB" -eq 1 ; then
1816   AC_CHECK_HEADERS(zlib.h,
1817                    AC_SUBST(HAVE_LIBZ, 1),
1818                    AC_SUBST(HAVE_LIBZ, 0))
1819 else
1820   AC_SUBST(HAVE_LIBZ, 0)
1821 fi
1822
1823 dnl Try to find ffi.h.
1824 if test "$llvm_cv_enable_libffi" = "yes" ; then
1825   AC_CHECK_HEADERS([ffi.h ffi/ffi.h])
1826 fi
1827
1828 dnl Try to find Darwin specific crash reporting libraries.
1829 AC_CHECK_HEADERS([CrashReporterClient.h])
1830
1831 dnl Try to find Darwin specific crash reporting global.
1832 AC_MSG_CHECKING([__crashreporter_info__])
1833 AC_LINK_IFELSE(
1834 [
1835   AC_LANG_SOURCE([[
1836     extern const char *__crashreporter_info__;
1837     int main() {
1838       __crashreporter_info__ = "test";
1839       return 0;
1840     }
1841   ]])
1842 ],
1843 [
1844   AC_MSG_RESULT([yes])
1845   AC_DEFINE([HAVE_CRASHREPORTER_INFO], [1], [can use __crashreporter_info__])
1846 ],
1847 [
1848   AC_MSG_RESULT([no])
1849   AC_DEFINE([HAVE_CRASHREPORTER_INFO], [0], [can use __crashreporter_info__])
1850 ])
1851
1852 dnl===-----------------------------------------------------------------------===
1853 dnl===
1854 dnl=== SECTION 7: Check for types and structures
1855 dnl===
1856 dnl===-----------------------------------------------------------------------===
1857
1858 AC_HUGE_VAL_CHECK
1859 AC_TYPE_PID_T
1860 AC_TYPE_SIZE_T
1861 AC_DEFINE_UNQUOTED([RETSIGTYPE],[void],[Define as the return type of signal handlers (`int' or `void').])
1862 AC_STRUCT_TM
1863 AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found]))
1864 AC_CHECK_TYPES([uint64_t],,
1865          AC_CHECK_TYPES([u_int64_t],,
1866          AC_MSG_ERROR([Type uint64_t or u_int64_t required but not found])))
1867
1868 dnl===-----------------------------------------------------------------------===
1869 dnl===
1870 dnl=== SECTION 8: Check for specific functions needed
1871 dnl===
1872 dnl===-----------------------------------------------------------------------===
1873
1874 AC_CHECK_FUNCS([backtrace getcwd ])
1875 AC_CHECK_FUNCS([getpagesize getrusage getrlimit setrlimit gettimeofday ])
1876 AC_CHECK_FUNCS([isatty mkdtemp mkstemp ])
1877 AC_CHECK_FUNCS([mktemp posix_spawn pread realpath sbrk setrlimit ])
1878 AC_CHECK_FUNCS([strerror strerror_r setenv ])
1879 AC_CHECK_FUNCS([strtoll strtoq sysconf malloc_zone_statistics ])
1880 AC_CHECK_FUNCS([setjmp longjmp sigsetjmp siglongjmp writev])
1881 AC_CHECK_FUNCS([futimes futimens])
1882 AC_C_PRINTF_A
1883 AC_FUNC_RAND48
1884
1885 dnl Check for arc4random accessible via AC_INCLUDES_DEFAULT.
1886 AC_CHECK_DECLS([arc4random])
1887
1888 dnl Check the declaration "Secure API" on Windows environments.
1889 AC_CHECK_DECLS([strerror_s])
1890
1891 dnl Check symbols in libgcc.a for JIT on Mingw.
1892 if test "$llvm_cv_os_type" = "MingW" ; then
1893   AC_CHECK_LIB(gcc,_alloca,AC_DEFINE([HAVE__ALLOCA],[1],[Have host's _alloca]))
1894   AC_CHECK_LIB(gcc,__alloca,AC_DEFINE([HAVE___ALLOCA],[1],[Have host's __alloca]))
1895   AC_CHECK_LIB(gcc,__chkstk,AC_DEFINE([HAVE___CHKSTK],[1],[Have host's __chkstk]))
1896   AC_CHECK_LIB(gcc,__chkstk_ms,AC_DEFINE([HAVE___CHKSTK_MS],[1],[Have host's __chkstk_ms]))
1897   AC_CHECK_LIB(gcc,___chkstk,AC_DEFINE([HAVE____CHKSTK],[1],[Have host's ___chkstk]))
1898   AC_CHECK_LIB(gcc,___chkstk_ms,AC_DEFINE([HAVE____CHKSTK_MS],[1],[Have host's ___chkstk_ms]))
1899
1900   AC_CHECK_LIB(gcc,__ashldi3,AC_DEFINE([HAVE___ASHLDI3],[1],[Have host's __ashldi3]))
1901   AC_CHECK_LIB(gcc,__ashrdi3,AC_DEFINE([HAVE___ASHRDI3],[1],[Have host's __ashrdi3]))
1902   AC_CHECK_LIB(gcc,__divdi3,AC_DEFINE([HAVE___DIVDI3],[1],[Have host's __divdi3]))
1903   AC_CHECK_LIB(gcc,__fixdfdi,AC_DEFINE([HAVE___FIXDFDI],[1],[Have host's __fixdfdi]))
1904   AC_CHECK_LIB(gcc,__fixsfdi,AC_DEFINE([HAVE___FIXSFDI],[1],[Have host's __fixsfdi]))
1905   AC_CHECK_LIB(gcc,__floatdidf,AC_DEFINE([HAVE___FLOATDIDF],[1],[Have host's __floatdidf]))
1906   AC_CHECK_LIB(gcc,__lshrdi3,AC_DEFINE([HAVE___LSHRDI3],[1],[Have host's __lshrdi3]))
1907   AC_CHECK_LIB(gcc,__moddi3,AC_DEFINE([HAVE___MODDI3],[1],[Have host's __moddi3]))
1908   AC_CHECK_LIB(gcc,__udivdi3,AC_DEFINE([HAVE___UDIVDI3],[1],[Have host's __udivdi3]))
1909   AC_CHECK_LIB(gcc,__umoddi3,AC_DEFINE([HAVE___UMODDI3],[1],[Have host's __umoddi3]))
1910
1911   AC_CHECK_LIB(gcc,__main,AC_DEFINE([HAVE___MAIN],[1],[Have host's __main]))
1912   AC_CHECK_LIB(gcc,__cmpdi2,AC_DEFINE([HAVE___CMPDI2],[1],[Have host's __cmpdi2]))
1913 fi
1914
1915 dnl Check Win32 API EnumerateLoadedModules.
1916 if test "$llvm_cv_os_type" = "MingW" ; then
1917   AC_MSG_CHECKING([whether EnumerateLoadedModules() accepts new decl])
1918   AC_COMPILE_IFELSE(
1919 [
1920   AC_LANG_SOURCE([[
1921     #include <windows.h>
1922     #include <imagehlp.h>
1923     extern void foo(PENUMLOADED_MODULES_CALLBACK);
1924     extern void foo(BOOL(CALLBACK*)(PCSTR,ULONG_PTR,ULONG,PVOID));
1925   ]])
1926 ],
1927 [
1928   AC_MSG_RESULT([yes])
1929   llvm_cv_win32_elmcb_pcstr="PCSTR"
1930 ],
1931 [
1932   AC_MSG_RESULT([no])
1933   llvm_cv_win32_elmcb_pcstr="PSTR"
1934 ])
1935   AC_DEFINE_UNQUOTED([WIN32_ELMCB_PCSTR],$llvm_cv_win32_elmcb_pcstr,[Type of 1st arg on ELM Callback])
1936 fi
1937
1938 dnl Check for mmap support.We also need to know if /dev/zero is required to
1939 dnl be opened for allocating RWX memory.
1940 dnl Make sure we aren't attempting to configure for an unknown system
1941 if test "$llvm_cv_platform_type" = "Unix" ; then
1942   AC_FUNC_MMAP
1943   AC_FUNC_MMAP_FILE
1944   AC_NEED_DEV_ZERO_FOR_MMAP
1945
1946   if test "$ac_cv_func_mmap_fixed_mapped" = "no"
1947   then
1948     AC_MSG_WARN([mmap() of a fixed address required but not supported])
1949   fi
1950   if test "$ac_cv_func_mmap_file" = "no"
1951   then
1952     AC_MSG_WARN([mmap() of files required but not found])
1953   fi
1954 fi
1955
1956 dnl atomic builtins are required for threading support.
1957 AC_MSG_CHECKING(for GCC atomic builtins)
1958 dnl Since we'll be using these atomic builtins in C++ files we should test
1959 dnl the C++ compiler.
1960 AC_LANG_PUSH([C++])
1961 AC_LINK_IFELSE(
1962 [
1963   AC_LANG_SOURCE([[
1964     int main() {
1965       volatile unsigned long val = 1;
1966       __sync_synchronize();
1967       __sync_val_compare_and_swap(&val, 1, 0);
1968       __sync_add_and_fetch(&val, 1);
1969       __sync_sub_and_fetch(&val, 1);
1970       return 0;
1971     }
1972   ]])
1973 ],
1974 [
1975   AC_MSG_RESULT([yes])
1976   AC_DEFINE([LLVM_HAS_ATOMICS], [1], [Has gcc/MSVC atomic intrinsics])
1977 ],
1978 [
1979   AC_MSG_RESULT([no])
1980   AC_DEFINE([LLVM_HAS_ATOMICS], [0], [Has gcc/MSVC atomic intrinsics])
1981   AC_MSG_WARN([LLVM will be built thread-unsafe because atomic builtins are missing])
1982 ])
1983 AC_LANG_POP([C++])
1984
1985 dnl===-----------------------------------------------------------------------===
1986 dnl===
1987 dnl=== SECTION 9: Additional checks, variables, etc.
1988 dnl===
1989 dnl===-----------------------------------------------------------------------===
1990
1991 dnl Handle 32-bit linux systems running a 64-bit kernel.
1992 dnl This has to come after section 4 because it invokes the compiler.
1993 if test "$llvm_cv_os_type" = "Linux" -a "$llvm_cv_target_arch" = "x86_64" ; then
1994   AC_IS_LINUX_MIXED
1995   if test "$llvm_cv_linux_mixed" = "yes"; then
1996     llvm_cv_target_arch="x86"
1997     ARCH="x86"
1998   fi
1999 fi
2000
2001 dnl Check whether __dso_handle is present
2002 AC_CHECK_FUNCS([__dso_handle])
2003
2004 dnl Propagate the shared library extension that the libltdl checks did to
2005 dnl the Makefiles so we can use it there too
2006 AC_SUBST(SHLIBEXT,$llvm_shlib_ext)
2007
2008 dnl Translate the various configuration directories and other basic
2009 dnl information into substitutions that will end up in Makefile.config.in
2010 dnl that these configured values can be used by the makefiles
2011 if test "${prefix}" = "NONE" ; then
2012   prefix="/usr/local"
2013 fi
2014 eval LLVM_PREFIX="${prefix}";
2015 eval LLVM_BINDIR="${prefix}/bin";
2016 eval LLVM_DATADIR="${prefix}/share/llvm";
2017 eval LLVM_DOCSDIR="${prefix}/share/doc/llvm";
2018 eval LLVM_ETCDIR="${prefix}/etc/llvm";
2019 eval LLVM_INCLUDEDIR="${prefix}/include";
2020 eval LLVM_INFODIR="${prefix}/info";
2021 eval LLVM_MANDIR="${prefix}/man";
2022 LLVM_CONFIGTIME=`date`
2023 AC_SUBST(LLVM_PREFIX)
2024 AC_SUBST(LLVM_BINDIR)
2025 AC_SUBST(LLVM_DATADIR)
2026 AC_SUBST(LLVM_DOCSDIR)
2027 AC_SUBST(LLVM_ETCDIR)
2028 AC_SUBST(LLVM_INCLUDEDIR)
2029 AC_SUBST(LLVM_INFODIR)
2030 AC_SUBST(LLVM_MANDIR)
2031 AC_SUBST(LLVM_CONFIGTIME)
2032
2033 dnl Disable embedding timestamps in the build directory, with ENABLE_TIMESTAMPS.
2034 if test "${ENABLE_TIMESTAMPS}" = "0"; then
2035   LLVM_CONFIGTIME="(timestamp not enabled)"
2036 fi
2037
2038 dnl Place the various directories into the config.h file as #defines so that we
2039 dnl can know about the installation paths within LLVM.
2040 AC_DEFINE_UNQUOTED(LLVM_PREFIX,"$LLVM_PREFIX",
2041                    [Installation prefix directory])
2042 AC_DEFINE_UNQUOTED(LLVM_BINDIR, "$LLVM_BINDIR",
2043                    [Installation directory for binary executables])
2044 AC_DEFINE_UNQUOTED(LLVM_DATADIR, "$LLVM_DATADIR",
2045                    [Installation directory for data files])
2046 AC_DEFINE_UNQUOTED(LLVM_DOCSDIR, "$LLVM_DOCSDIR",
2047                    [Installation directory for documentation])
2048 AC_DEFINE_UNQUOTED(LLVM_ETCDIR, "$LLVM_ETCDIR",
2049                    [Installation directory for config files])
2050 AC_DEFINE_UNQUOTED(LLVM_INCLUDEDIR, "$LLVM_INCLUDEDIR",
2051                    [Installation directory for include files])
2052 AC_DEFINE_UNQUOTED(LLVM_INFODIR, "$LLVM_INFODIR",
2053                    [Installation directory for .info files])
2054 AC_DEFINE_UNQUOTED(LLVM_MANDIR, "$LLVM_MANDIR",
2055                    [Installation directory for man pages])
2056 AC_DEFINE_UNQUOTED(LLVM_CONFIGTIME, "$LLVM_CONFIGTIME",
2057                    [Time at which LLVM was configured])
2058 AC_DEFINE_UNQUOTED(LLVM_HOST_TRIPLE, "$host",
2059                    [Host triple LLVM will be executed on])
2060 AC_DEFINE_UNQUOTED(LLVM_DEFAULT_TARGET_TRIPLE, "$target",
2061                    [Target triple LLVM will generate code for by default])
2062
2063 dnl Determine which bindings to build.
2064 if test "$BINDINGS_TO_BUILD" = auto ; then
2065   BINDINGS_TO_BUILD=""
2066   if test "x$OCAMLFIND" != x ; then
2067     BINDINGS_TO_BUILD="ocaml $BINDINGS_TO_BUILD"
2068   fi
2069   if test "x$GO" != x ; then
2070     if $GO run ${srcdir}/bindings/go/conftest.go ; then
2071       BINDINGS_TO_BUILD="go $BINDINGS_TO_BUILD"
2072     fi
2073   fi
2074 fi
2075 AC_SUBST(BINDINGS_TO_BUILD,$BINDINGS_TO_BUILD)
2076
2077 dnl Do any work necessary to ensure that bindings have what they need.
2078 binding_prereqs_failed=0
2079 for a_binding in $BINDINGS_TO_BUILD ; do
2080   case "$a_binding" in
2081   ocaml)
2082     if test "x$OCAMLFIND" = x ; then
2083       AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamlfind not found. Try configure OCAMLFIND=/path/to/ocamlfind])
2084       binding_prereqs_failed=1
2085     fi
2086
2087     if $OCAMLFIND opt -version >/dev/null 2>/dev/null ; then
2088       HAVE_OCAMLOPT=1
2089     else
2090       HAVE_OCAMLOPT=0
2091     fi
2092     AC_SUBST(HAVE_OCAMLOPT)
2093
2094     if ! $OCAMLFIND query ctypes >/dev/null 2>/dev/null; then
2095       AC_MSG_WARN([--enable-bindings=ocaml specified, but ctypes is not installed])
2096       binding_prereqs_failed=1
2097     fi
2098
2099     if $OCAMLFIND query oUnit >/dev/null 2>/dev/null; then
2100       HAVE_OCAML_OUNIT=1
2101     else
2102       HAVE_OCAML_OUNIT=0
2103       AC_MSG_WARN([--enable-bindings=ocaml specified, but OUnit 2 is not installed. Tests will not run])
2104       dnl oUnit is optional!
2105     fi
2106     AC_SUBST(HAVE_OCAML_OUNIT)
2107
2108     if test "x$with_ocaml_libdir" != xauto ; then
2109       AC_SUBST(OCAML_LIBDIR,$with_ocaml_libdir)
2110     else
2111       ocaml_stdlib="`"$OCAMLFIND" ocamlc -where`"
2112       if test "$LLVM_PREFIX" '<' "$ocaml_stdlib" -a "$ocaml_stdlib" '<' "$LLVM_PREFIX~"
2113       then
2114         # ocaml stdlib is beneath our prefix; use stdlib
2115         AC_SUBST(OCAML_LIBDIR,$ocaml_stdlib)
2116       else
2117         # ocaml stdlib is outside our prefix; use libdir/ocaml
2118         AC_SUBST(OCAML_LIBDIR,${prefix}/lib/ocaml)
2119       fi
2120     fi
2121     ;;
2122   go)
2123     if test "x$GO" = x ; then
2124       AC_MSG_WARN([--enable-bindings=go specified, but go not found. Try configure GO=/path/to/go])
2125       binding_prereqs_failed=1
2126     else
2127       if $GO run ${srcdir}/bindings/go/conftest.go ; then
2128         :
2129       else
2130         AC_MSG_WARN([--enable-bindings=go specified, but need at least Go 1.2. Try configure GO=/path/to/go])
2131         binding_prereqs_failed=1
2132       fi
2133     fi
2134     ;;
2135   esac
2136 done
2137 if test "$binding_prereqs_failed" = 1 ; then
2138   AC_MSG_ERROR([Prequisites for bindings not satisfied. Fix them or use configure --disable-bindings.])
2139 fi
2140
2141 dnl Determine whether the compiler supports -fvisibility-inlines-hidden.
2142 AC_CXX_USE_VISIBILITY_INLINES_HIDDEN
2143
2144 dnl Determine linker rpath flag
2145 if test "$llvm_cv_link_use_r" = "yes" ; then
2146   RPATH="-Wl,-R"
2147 else
2148   RPATH="-Wl,-rpath"
2149 fi
2150 AC_SUBST(RPATH)
2151
2152 dnl Determine linker rdynamic flag
2153 if test "$llvm_cv_link_use_export_dynamic" = "yes" ; then
2154   RDYNAMIC="-rdynamic"
2155 else
2156   RDYNAMIC=""
2157 fi
2158 AC_SUBST(RDYNAMIC)
2159
2160 dnl===-----------------------------------------------------------------------===
2161 dnl===
2162 dnl=== SECTION 10: Specify the output files and generate it
2163 dnl===
2164 dnl===-----------------------------------------------------------------------===
2165
2166 dnl Configure header files
2167 dnl WARNING: dnl If you add or remove any of the following config headers, then
2168 dnl you MUST also update Makefile so that the variable FilesToConfig
2169 dnl contains the same list of files as AC_CONFIG_HEADERS below. This ensures the
2170 dnl files can be updated automatically when their *.in sources change.
2171 AC_CONFIG_HEADERS([include/llvm/Config/config.h include/llvm/Config/llvm-config.h])
2172 AH_TOP([#ifndef CONFIG_H
2173 #define CONFIG_H])
2174 AH_BOTTOM([#endif])
2175
2176 AC_CONFIG_FILES([include/llvm/Config/Targets.def])
2177 AC_CONFIG_FILES([include/llvm/Config/AsmPrinters.def])
2178 AC_CONFIG_FILES([include/llvm/Config/AsmParsers.def])
2179 AC_CONFIG_FILES([include/llvm/Config/Disassemblers.def])
2180 AC_CONFIG_HEADERS([include/llvm/Support/DataTypes.h])
2181
2182 dnl Configure the makefile's configuration data
2183 AC_CONFIG_FILES([Makefile.config])
2184
2185 dnl Configure the RPM spec file for LLVM
2186 AC_CONFIG_FILES([llvm.spec])
2187
2188 dnl Configure doxygen's configuration file
2189 AC_CONFIG_FILES([docs/doxygen.cfg])
2190
2191 dnl Configure clang, if present
2192 if test "${clang_src_root}" = ""; then
2193   clang_src_root="$srcdir/tools/clang"
2194 fi
2195 if test -f ${clang_src_root}/README.txt; then
2196   dnl Clang supports build systems which use the multilib libdir suffix.
2197   dnl The autoconf system doesn't support this so stub out that variable.
2198   AC_DEFINE_UNQUOTED(CLANG_LIBDIR_SUFFIX,"",
2199                      [Multilib suffix for libdir.])
2200
2201   dnl Use variables to stay under 80 columns.
2202   configh="include/clang/Config/config.h"
2203   doxy="docs/doxygen.cfg"
2204   AC_CONFIG_HEADERS([tools/clang/${configh}:${clang_src_root}/${configh}.in])
2205   AC_CONFIG_FILES([tools/clang/${doxy}:${clang_src_root}/${doxy}.in])
2206 fi
2207
2208 dnl OCaml findlib META file
2209 AC_CONFIG_FILES([bindings/ocaml/llvm/META.llvm])
2210
2211 dnl Add --program-prefix value to Makefile.rules. Already an ARG variable.
2212 test "x$program_prefix" = "xNONE" && program_prefix=""
2213 AC_SUBST([program_prefix])
2214
2215
2216 dnl Do special configuration of Makefiles
2217 AC_CONFIG_COMMANDS([setup],,[llvm_src="${srcdir}"])
2218 AC_CONFIG_MAKEFILE(Makefile)
2219 AC_CONFIG_MAKEFILE(Makefile.common)
2220 AC_CONFIG_MAKEFILE(examples/Makefile)
2221 AC_CONFIG_MAKEFILE(lib/Makefile)
2222 AC_CONFIG_MAKEFILE(test/Makefile)
2223 AC_CONFIG_MAKEFILE(test/Makefile.tests)
2224 AC_CONFIG_MAKEFILE(unittests/Makefile)
2225 AC_CONFIG_MAKEFILE(tools/Makefile)
2226 AC_CONFIG_MAKEFILE(utils/Makefile)
2227 AC_CONFIG_MAKEFILE(projects/Makefile)
2228 AC_CONFIG_MAKEFILE(bindings/Makefile)
2229 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml)
2230
2231 dnl Finally, crank out the output
2232 AC_OUTPUT