blob: b9f95869b5c6e83857edf05ffe2246b4b164dc85 [file] [log] [blame]
John Criswell607b1ea2003-10-16 01:44:20 +00001dnl **************************************************************************
2dnl * Initialize
3dnl **************************************************************************
4AC_INIT([[[SAMPLE]]],[[[x.xx]]],[bugs@yourdomain])
5
Reid Spencer30ea4782006-04-18 06:27:47 +00006dnl Identify where LLVM source tree is
Peter Collingbourne1fbf5a42010-12-12 21:41:56 +00007LLVM_SRC_ROOT="../.."
8LLVM_OBJ_ROOT="../.."
9
10dnl Find absolute paths to LLVM source and object trees
11LLVM_ABS_SRC_ROOT="`cd $srcdir ; cd $LLVM_SRC_ROOT ; pwd`"
12LLVM_ABS_OBJ_ROOT="`cd $LLVM_OBJ_ROOT ; pwd`"
John Criswell607b1ea2003-10-16 01:44:20 +000013
Reid Spencer1a87ddc2005-02-24 18:50:53 +000014dnl Tell autoconf that this is an LLVM project being configured
15dnl This provides the --with-llvmsrc and --with-llvmobj options
Peter Collingbourne1fbf5a42010-12-12 21:41:56 +000016LLVM_CONFIG_PROJECT($LLVM_ABS_SRC_ROOT,$LLVM_ABS_OBJ_ROOT)
Reid Spencer1a87ddc2005-02-24 18:50:53 +000017
Daniel Dunbar2532fa22011-10-18 23:10:47 +000018dnl Try and find an llvm-config in the build directory. We are only using this
19dnl to detect the package level LLVM information (currently just the version),
20dnl so we just whatever one we find regardless of build mode.
21AC_MSG_CHECKING([llvm-config])
22llvm_config_path="`ls -1 $llvm_obj/*/bin/llvm-config 2> /dev/null | head -1`"
23if ! test -f "$llvm_config_path" ; then
24 llvm_config_path="no"
25fi
26AC_MSG_RESULT([$llvm_config_path])
27
28dnl Determine the LLVM version, which may be required by the current Makefile
29dnl rules.
30AC_MSG_CHECKING([LLVM package version])
31if test "$llvm_config_path" != no ; then
32 llvm_package_version=`$llvm_config_path --version`
33else
34 llvm_package_version="unknown";
35fi
36AC_MSG_RESULT([$llvm_package_version])
37AC_SUBST(LLVM_VERSION, [$llvm_package_version])
Eric Christopher1f109292010-01-25 04:10:28 +000038
Reid Spencer1a87ddc2005-02-24 18:50:53 +000039dnl Verify that the source directory is valid
40AC_CONFIG_SRCDIR(["Makefile.common.in"])
41
Daniel Dunbar2532fa22011-10-18 23:10:47 +000042dnl Place all of the extra autoconf files into the config subdirectory. Tell
43dnl various tools where the m4 autoconf macros are.
44AC_CONFIG_AUX_DIR([autoconf])
45
46dnl **************************************************************************
47dnl Begin LLVM configure.ac Import
48dnl **************************************************************************
49dnl
50dnl Derived from LLVM's configure.ac. This was imported directly here so that we
51dnl could reuse LLVM's build infrastructure without introducing a direct source
52dnl dependency on the LLVM files.
53
54dnl We need to check for the compiler up here to avoid anything else
55dnl starting with a different one.
56AC_PROG_CC(clang llvm-gcc gcc)
57AC_PROG_CXX(clang++ llvm-g++ g++)
58AC_PROG_CPP
59
60dnl Configure all of the projects present in our source tree. While we could
61dnl just AC_CONFIG_SUBDIRS on the set of directories in projects that have a
62dnl configure script, that usage of the AC_CONFIG_SUBDIRS macro is deprecated.
63dnl Instead we match on the known projects.
64
65dnl
66dnl One tricky part of doing this is that some projects depend upon other
67dnl projects. For example, several projects rely upon the LLVM test suite.
68dnl We want to configure those projects first so that their object trees are
69dnl created before running the configure scripts of projects that depend upon
70dnl them.
71dnl
72
73dnl Disable the build of polly, even if it is checked out into tools/polly.
74AC_ARG_ENABLE(polly,
75 AS_HELP_STRING([--enable-polly],
76 [Use polly if available (default is YES)]),,
77 enableval=default)
78case "$enableval" in
79 yes) AC_SUBST(ENABLE_POLLY,[1]) ;;
80 no) AC_SUBST(ENABLE_POLLY,[0]) ;;
81 default) AC_SUBST(ENABLE_POLLY,[1]) ;;
82 *) AC_MSG_ERROR([Invalid setting for --enable-polly. Use "yes" or "no"]) ;;
83esac
84
85
86dnl Check if polly is checked out into tools/polly and configure it if
87dnl available.
88if (test -d ${srcdir}/tools/polly) && (test $ENABLE_POLLY -eq 1) ; then
89 AC_SUBST(LLVM_HAS_POLLY,1)
90 AC_CONFIG_SUBDIRS([tools/polly])
91fi
92
93dnl===-----------------------------------------------------------------------===
94dnl===
95dnl=== SECTION 2: Architecture, target, and host checks
96dnl===
97dnl===-----------------------------------------------------------------------===
98
99dnl Check the target for which we're compiling and the host that will do the
100dnl compilations. This will tell us which LLVM compiler will be used for
101dnl compiling SSA into object code. This needs to be done early because
102dnl following tests depend on it.
103AC_CANONICAL_TARGET
104
105dnl Determine the platform type and cache its value. This helps us configure
106dnl the System library to the correct build platform.
107AC_CACHE_CHECK([type of operating system we're going to host on],
108 [llvm_cv_os_type],
109[case $host in
110 *-*-aix*)
111 llvm_cv_link_all_option="-Wl,--whole-archive"
112 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
113 llvm_cv_os_type="AIX"
114 llvm_cv_platform_type="Unix" ;;
115 *-*-irix*)
116 llvm_cv_link_all_option="-Wl,--whole-archive"
117 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
118 llvm_cv_os_type="IRIX"
119 llvm_cv_platform_type="Unix" ;;
120 *-*-cygwin*)
121 llvm_cv_link_all_option="-Wl,--whole-archive"
122 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
123 llvm_cv_os_type="Cygwin"
124 llvm_cv_platform_type="Unix" ;;
125 *-*-darwin*)
126 llvm_cv_link_all_option="-Wl,-all_load"
127 llvm_cv_no_link_all_option="-Wl,-noall_load"
128 llvm_cv_os_type="Darwin"
129 llvm_cv_platform_type="Unix" ;;
130 *-*-minix*)
131 llvm_cv_link_all_option="-Wl,-all_load"
132 llvm_cv_no_link_all_option="-Wl,-noall_load"
133 llvm_cv_os_type="Minix"
134 llvm_cv_platform_type="Unix" ;;
135 *-*-freebsd*)
136 llvm_cv_link_all_option="-Wl,--whole-archive"
137 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
138 llvm_cv_os_type="FreeBSD"
139 llvm_cv_platform_type="Unix" ;;
140 *-*-openbsd*)
141 llvm_cv_link_all_option="-Wl,--whole-archive"
142 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
143 llvm_cv_os_type="OpenBSD"
144 llvm_cv_platform_type="Unix" ;;
145 *-*-netbsd*)
146 llvm_cv_link_all_option="-Wl,--whole-archive"
147 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
148 llvm_cv_os_type="NetBSD"
149 llvm_cv_platform_type="Unix" ;;
150 *-*-dragonfly*)
151 llvm_cv_link_all_option="-Wl,--whole-archive"
152 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
153 llvm_cv_os_type="DragonFly"
154 llvm_cv_platform_type="Unix" ;;
155 *-*-hpux*)
156 llvm_cv_link_all_option="-Wl,--whole-archive"
157 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
158 llvm_cv_os_type="HP-UX"
159 llvm_cv_platform_type="Unix" ;;
160 *-*-interix*)
161 llvm_cv_link_all_option="-Wl,--whole-archive"
162 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
163 llvm_cv_os_type="Interix"
164 llvm_cv_platform_type="Unix" ;;
165 *-*-linux*)
166 llvm_cv_link_all_option="-Wl,--whole-archive"
167 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
168 llvm_cv_os_type="Linux"
169 llvm_cv_platform_type="Unix" ;;
170 *-*-solaris*)
171 llvm_cv_link_all_option="-Wl,-z,allextract"
172 llvm_cv_no_link_all_option="-Wl,-z,defaultextract"
173 llvm_cv_os_type="SunOS"
174 llvm_cv_platform_type="Unix" ;;
175 *-*-auroraux*)
176 llvm_cv_link_all_option="-Wl,-z,allextract"
177 llvm_cv_link_all_option="-Wl,-z,defaultextract"
178 llvm_cv_os_type="AuroraUX"
179 llvm_cv_platform_type="Unix" ;;
180 *-*-win32*)
181 llvm_cv_link_all_option="-Wl,--whole-archive"
182 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
183 llvm_cv_os_type="Win32"
184 llvm_cv_platform_type="Win32" ;;
185 *-*-mingw*)
186 llvm_cv_link_all_option="-Wl,--whole-archive"
187 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
188 llvm_cv_os_type="MingW"
189 llvm_cv_platform_type="Win32" ;;
190 *-*-haiku*)
191 llvm_cv_link_all_option="-Wl,--whole-archive"
192 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
193 llvm_cv_os_type="Haiku"
194 llvm_cv_platform_type="Unix" ;;
195 *-unknown-eabi*)
196 llvm_cv_link_all_option="-Wl,--whole-archive"
197 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
198 llvm_cv_os_type="Freestanding"
199 llvm_cv_platform_type="Unix" ;;
200 *-unknown-elf*)
201 llvm_cv_link_all_option="-Wl,--whole-archive"
202 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
203 llvm_cv_os_type="Freestanding"
204 llvm_cv_platform_type="Unix" ;;
205 *)
206 llvm_cv_link_all_option=""
207 llvm_cv_no_link_all_option=""
208 llvm_cv_os_type="Unknown"
209 llvm_cv_platform_type="Unknown" ;;
210esac])
211
212AC_CACHE_CHECK([type of operating system we're going to target],
213 [llvm_cv_target_os_type],
214[case $target in
215 *-*-aix*)
216 llvm_cv_target_os_type="AIX" ;;
217 *-*-irix*)
218 llvm_cv_target_os_type="IRIX" ;;
219 *-*-cygwin*)
220 llvm_cv_target_os_type="Cygwin" ;;
221 *-*-darwin*)
222 llvm_cv_target_os_type="Darwin" ;;
223 *-*-minix*)
224 llvm_cv_target_os_type="Minix" ;;
225 *-*-freebsd*)
226 llvm_cv_target_os_type="FreeBSD" ;;
227 *-*-openbsd*)
228 llvm_cv_target_os_type="OpenBSD" ;;
229 *-*-netbsd*)
230 llvm_cv_target_os_type="NetBSD" ;;
231 *-*-dragonfly*)
232 llvm_cv_target_os_type="DragonFly" ;;
233 *-*-hpux*)
234 llvm_cv_target_os_type="HP-UX" ;;
235 *-*-interix*)
236 llvm_cv_target_os_type="Interix" ;;
237 *-*-linux*)
238 llvm_cv_target_os_type="Linux" ;;
239 *-*-solaris*)
240 llvm_cv_target_os_type="SunOS" ;;
241 *-*-auroraux*)
242 llvm_cv_target_os_type="AuroraUX" ;;
243 *-*-win32*)
244 llvm_cv_target_os_type="Win32" ;;
245 *-*-mingw*)
246 llvm_cv_target_os_type="MingW" ;;
247 *-*-haiku*)
248 llvm_cv_target_os_type="Haiku" ;;
249 *-*-rtems*)
250 llvm_cv_target_os_type="RTEMS" ;;
251 *-*-nacl*)
252 llvm_cv_target_os_type="NativeClient" ;;
253 *-unknown-eabi*)
254 llvm_cv_target_os_type="Freestanding" ;;
255 *)
256 llvm_cv_target_os_type="Unknown" ;;
257esac])
258
259dnl Make sure we aren't attempting to configure for an unknown system
260if test "$llvm_cv_os_type" = "Unknown" ; then
261 AC_MSG_ERROR([Operating system is unknown, configure can't continue])
262fi
263
264dnl Set the "OS" Makefile variable based on the platform type so the
265dnl makefile can configure itself to specific build hosts
266AC_SUBST(OS,$llvm_cv_os_type)
267AC_SUBST(HOST_OS,$llvm_cv_os_type)
268AC_SUBST(TARGET_OS,$llvm_cv_target_os_type)
269
270dnl Set the LINKALL and NOLINKALL Makefile variables based on the platform
271AC_SUBST(LINKALL,$llvm_cv_link_all_option)
272AC_SUBST(NOLINKALL,$llvm_cv_no_link_all_option)
273
274dnl Set the "LLVM_ON_*" variables based on llvm_cv_platform_type
275dnl This is used by lib/Support to determine the basic kind of implementation
276dnl to use.
277case $llvm_cv_platform_type in
278 Unix)
279 AC_DEFINE([LLVM_ON_UNIX],[1],[Define if this is Unixish platform])
280 AC_SUBST(LLVM_ON_UNIX,[1])
281 AC_SUBST(LLVM_ON_WIN32,[0])
282 ;;
283 Win32)
284 AC_DEFINE([LLVM_ON_WIN32],[1],[Define if this is Win32ish platform])
285 AC_SUBST(LLVM_ON_UNIX,[0])
286 AC_SUBST(LLVM_ON_WIN32,[1])
287 ;;
288esac
289
290dnl Determine what our target architecture is and configure accordingly.
291dnl This will allow Makefiles to make a distinction between the hardware and
292dnl the OS.
293AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
294[case $target in
295 i?86-*) llvm_cv_target_arch="x86" ;;
296 amd64-* | x86_64-*) llvm_cv_target_arch="x86_64" ;;
297 sparc*-*) llvm_cv_target_arch="Sparc" ;;
298 powerpc*-*) llvm_cv_target_arch="PowerPC" ;;
299 alpha*-*) llvm_cv_target_arch="Alpha" ;;
300 arm*-*) llvm_cv_target_arch="ARM" ;;
301 mips-*) llvm_cv_target_arch="Mips" ;;
302 xcore-*) llvm_cv_target_arch="XCore" ;;
303 msp430-*) llvm_cv_target_arch="MSP430" ;;
Daniel Dunbar2532fa22011-10-18 23:10:47 +0000304 bfin-*) llvm_cv_target_arch="Blackfin" ;;
305 mblaze-*) llvm_cv_target_arch="MBlaze" ;;
306 ptx-*) llvm_cv_target_arch="PTX" ;;
307 *) llvm_cv_target_arch="Unknown" ;;
308esac])
309
310if test "$llvm_cv_target_arch" = "Unknown" ; then
311 AC_MSG_WARN([Configuring LLVM for an unknown target archicture])
312fi
313
314# Determine the LLVM native architecture for the target
315case "$llvm_cv_target_arch" in
316 x86) LLVM_NATIVE_ARCH="X86" ;;
317 x86_64) LLVM_NATIVE_ARCH="X86" ;;
318 *) LLVM_NATIVE_ARCH="$llvm_cv_target_arch" ;;
319esac
320
321dnl Define a substitution, ARCH, for the target architecture
322AC_SUBST(ARCH,$llvm_cv_target_arch)
323
324dnl Check for the endianness of the target
325AC_C_BIGENDIAN(AC_SUBST([ENDIAN],[big]),AC_SUBST([ENDIAN],[little]))
326
327dnl Check for build platform executable suffix if we're crosscompiling
328if test "$cross_compiling" = yes; then
329 AC_SUBST(LLVM_CROSS_COMPILING, [1])
330 AC_BUILD_EXEEXT
331 ac_build_prefix=${build_alias}-
332 AC_CHECK_PROG(BUILD_CXX, ${ac_build_prefix}g++, ${ac_build_prefix}g++)
333 if test -z "$BUILD_CXX"; then
334 AC_CHECK_PROG(BUILD_CXX, g++, g++)
335 if test -z "$BUILD_CXX"; then
336 AC_CHECK_PROG(BUILD_CXX, c++, c++, , , /usr/ucb/c++)
337 fi
338 fi
339else
340 AC_SUBST(LLVM_CROSS_COMPILING, [0])
341fi
342
343dnl Check to see if there's a .svn or .git directory indicating that this
344dnl build is being done from a checkout. This sets up several defaults for
345dnl the command line switches. When we build with a checkout directory,
346dnl we get a debug with assertions turned on. Without, we assume a source
347dnl release and we get an optimized build without assertions.
348dnl See --enable-optimized and --enable-assertions below
349if test -d ".svn" -o -d "${srcdir}/.svn" -o -d ".git" -o -d "${srcdir}/.git"; then
350 cvsbuild="yes"
351 optimize="no"
352 AC_SUBST(CVSBUILD,[[CVSBUILD=1]])
353else
354 cvsbuild="no"
355 optimize="yes"
356fi
357
358dnl===-----------------------------------------------------------------------===
359dnl===
360dnl=== SECTION 3: Command line arguments for the configure script.
361dnl===
362dnl===-----------------------------------------------------------------------===
363
364dnl --enable-optimized : check whether they want to do an optimized build:
365AC_ARG_ENABLE(optimized, AS_HELP_STRING(
366 --enable-optimized,[Compile with optimizations enabled (default is NO)]),,enableval=$optimize)
367if test ${enableval} = "no" ; then
368 AC_SUBST(ENABLE_OPTIMIZED,[[]])
369else
370 AC_SUBST(ENABLE_OPTIMIZED,[[ENABLE_OPTIMIZED=1]])
371fi
372
373dnl --enable-profiling : check whether they want to do a profile build:
374AC_ARG_ENABLE(profiling, AS_HELP_STRING(
375 --enable-profiling,[Compile with profiling enabled (default is NO)]),,enableval="no")
376if test ${enableval} = "no" ; then
377 AC_SUBST(ENABLE_PROFILING,[[]])
378else
379 AC_SUBST(ENABLE_PROFILING,[[ENABLE_PROFILING=1]])
380fi
381
382dnl --enable-assertions : check whether they want to turn on assertions or not:
383AC_ARG_ENABLE(assertions,AS_HELP_STRING(
384 --enable-assertions,[Compile with assertion checks enabled (default is YES)]),, enableval="yes")
385if test ${enableval} = "yes" ; then
386 AC_SUBST(DISABLE_ASSERTIONS,[[]])
387else
388 AC_SUBST(DISABLE_ASSERTIONS,[[DISABLE_ASSERTIONS=1]])
389fi
390
391dnl --enable-expensive-checks : check whether they want to turn on expensive debug checks:
392AC_ARG_ENABLE(expensive-checks,AS_HELP_STRING(
393 --enable-expensive-checks,[Compile with expensive debug checks enabled (default is NO)]),, enableval="no")
394if test ${enableval} = "yes" ; then
395 AC_SUBST(ENABLE_EXPENSIVE_CHECKS,[[ENABLE_EXPENSIVE_CHECKS=1]])
396 AC_SUBST(EXPENSIVE_CHECKS,[[yes]])
397else
398 AC_SUBST(ENABLE_EXPENSIVE_CHECKS,[[]])
399 AC_SUBST(EXPENSIVE_CHECKS,[[no]])
400fi
401
402dnl --enable-debug-runtime : should runtime libraries have debug symbols?
403AC_ARG_ENABLE(debug-runtime,
404 AS_HELP_STRING(--enable-debug-runtime,[Build runtime libs with debug symbols (default is NO)]),,enableval=no)
405if test ${enableval} = "no" ; then
406 AC_SUBST(DEBUG_RUNTIME,[[]])
407else
408 AC_SUBST(DEBUG_RUNTIME,[[DEBUG_RUNTIME=1]])
409fi
410
411dnl --enable-debug-symbols : should even optimized compiler libraries
412dnl have debug symbols?
413AC_ARG_ENABLE(debug-symbols,
414 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)
415if test ${enableval} = "no" ; then
416 AC_SUBST(DEBUG_SYMBOLS,[[]])
417else
418 AC_SUBST(DEBUG_SYMBOLS,[[DEBUG_SYMBOLS=1]])
419fi
420
421dnl --enable-jit: check whether they want to enable the jit
422AC_ARG_ENABLE(jit,
423 AS_HELP_STRING(--enable-jit,
424 [Enable Just In Time Compiling (default is YES)]),,
425 enableval=default)
426if test ${enableval} = "no"
427then
428 AC_SUBST(JIT,[[]])
429else
430 case "$llvm_cv_target_arch" in
431 x86) AC_SUBST(TARGET_HAS_JIT,1) ;;
432 Sparc) AC_SUBST(TARGET_HAS_JIT,0) ;;
433 PowerPC) AC_SUBST(TARGET_HAS_JIT,1) ;;
434 x86_64) AC_SUBST(TARGET_HAS_JIT,1) ;;
435 Alpha) AC_SUBST(TARGET_HAS_JIT,0) ;;
436 ARM) AC_SUBST(TARGET_HAS_JIT,1) ;;
437 Mips) AC_SUBST(TARGET_HAS_JIT,1) ;;
438 XCore) AC_SUBST(TARGET_HAS_JIT,0) ;;
439 MSP430) AC_SUBST(TARGET_HAS_JIT,0) ;;
Daniel Dunbar2532fa22011-10-18 23:10:47 +0000440 Blackfin) AC_SUBST(TARGET_HAS_JIT,0) ;;
441 MBlaze) AC_SUBST(TARGET_HAS_JIT,0) ;;
442 PTX) AC_SUBST(TARGET_HAS_JIT,0) ;;
443 *) AC_SUBST(TARGET_HAS_JIT,0) ;;
444 esac
445fi
446
447dnl Allow enablement of building and installing docs
448AC_ARG_ENABLE(docs,
449 AS_HELP_STRING([--enable-docs],
450 [Build documents (default is YES)]),,
451 enableval=default)
452case "$enableval" in
453 yes) AC_SUBST(ENABLE_DOCS,[1]) ;;
454 no) AC_SUBST(ENABLE_DOCS,[0]) ;;
455 default) AC_SUBST(ENABLE_DOCS,[1]) ;;
456 *) AC_MSG_ERROR([Invalid setting for --enable-docs. Use "yes" or "no"]) ;;
457esac
458
459dnl Allow enablement of doxygen generated documentation
460AC_ARG_ENABLE(doxygen,
461 AS_HELP_STRING([--enable-doxygen],
462 [Build doxygen documentation (default is NO)]),,
463 enableval=default)
464case "$enableval" in
465 yes) AC_SUBST(ENABLE_DOXYGEN,[1]) ;;
466 no) AC_SUBST(ENABLE_DOXYGEN,[0]) ;;
467 default) AC_SUBST(ENABLE_DOXYGEN,[0]) ;;
468 *) AC_MSG_ERROR([Invalid setting for --enable-doxygen. Use "yes" or "no"]) ;;
469esac
470
471dnl Allow disablement of threads
472AC_ARG_ENABLE(threads,
473 AS_HELP_STRING([--enable-threads],
474 [Use threads if available (default is YES)]),,
475 enableval=default)
476case "$enableval" in
477 yes) AC_SUBST(ENABLE_THREADS,[1]) ;;
478 no) AC_SUBST(ENABLE_THREADS,[0]) ;;
479 default) AC_SUBST(ENABLE_THREADS,[1]) ;;
480 *) AC_MSG_ERROR([Invalid setting for --enable-threads. Use "yes" or "no"]) ;;
481esac
482AC_DEFINE_UNQUOTED([ENABLE_THREADS],$ENABLE_THREADS,[Define if threads enabled])
483
484dnl Allow disablement of pthread.h
485AC_ARG_ENABLE(pthreads,
486 AS_HELP_STRING([--enable-pthreads],
487 [Use pthreads if available (default is YES)]),,
488 enableval=default)
489case "$enableval" in
490 yes) AC_SUBST(ENABLE_PTHREADS,[1]) ;;
491 no) AC_SUBST(ENABLE_PTHREADS,[0]) ;;
492 default) AC_SUBST(ENABLE_PTHREADS,[1]) ;;
493 *) AC_MSG_ERROR([Invalid setting for --enable-pthreads. Use "yes" or "no"]) ;;
494esac
495
496dnl Allow building without position independent code
497AC_ARG_ENABLE(pic,
498 AS_HELP_STRING([--enable-pic],
499 [Build LLVM with Position Independent Code (default is YES)]),,
500 enableval=default)
501case "$enableval" in
502 yes) AC_SUBST(ENABLE_PIC,[1]) ;;
503 no) AC_SUBST(ENABLE_PIC,[0]) ;;
504 default) AC_SUBST(ENABLE_PIC,[1]) ;;
505 *) AC_MSG_ERROR([Invalid setting for --enable-pic. Use "yes" or "no"]) ;;
506esac
507AC_DEFINE_UNQUOTED([ENABLE_PIC],$ENABLE_PIC,
508 [Define if position independent code is enabled])
509
510dnl Allow building a shared library and linking tools against it.
511AC_ARG_ENABLE(shared,
512 AS_HELP_STRING([--enable-shared],
513 [Build a shared library and link tools against it (default is NO)]),,
514 enableval=default)
515case "$enableval" in
516 yes) AC_SUBST(ENABLE_SHARED,[1]) ;;
517 no) AC_SUBST(ENABLE_SHARED,[0]) ;;
518 default) AC_SUBST(ENABLE_SHARED,[0]) ;;
519 *) AC_MSG_ERROR([Invalid setting for --enable-shared. Use "yes" or "no"]) ;;
520esac
521
522dnl Allow libstdc++ is embedded in LLVM.dll.
523AC_ARG_ENABLE(embed-stdcxx,
524 AS_HELP_STRING([--enable-embed-stdcxx],
525 [Build a shared library with embedded libstdc++ for Win32 DLL (default is YES)]),,
526 enableval=default)
527case "$enableval" in
528 yes) AC_SUBST(ENABLE_EMBED_STDCXX,[1]) ;;
529 no) AC_SUBST(ENABLE_EMBED_STDCXX,[0]) ;;
530 default) AC_SUBST(ENABLE_EMBED_STDCXX,[1]) ;;
531 *) AC_MSG_ERROR([Invalid setting for --enable-embed-stdcxx. Use "yes" or "no"]) ;;
532esac
533
534dnl Enable embedding timestamp information into build.
535AC_ARG_ENABLE(timestamps,
536 AS_HELP_STRING([--enable-timestamps],
537 [Enable embedding timestamp information in build (default is YES)]),,
538 enableval=default)
539case "$enableval" in
540 yes) AC_SUBST(ENABLE_TIMESTAMPS,[1]) ;;
541 no) AC_SUBST(ENABLE_TIMESTAMPS,[0]) ;;
542 default) AC_SUBST(ENABLE_TIMESTAMPS,[1]) ;;
543 *) AC_MSG_ERROR([Invalid setting for --enable-timestamps. Use "yes" or "no"]) ;;
544esac
545AC_DEFINE_UNQUOTED([ENABLE_TIMESTAMPS],$ENABLE_TIMESTAMPS,
546 [Define if timestamp information (e.g., __DATE___) is allowed])
547
548dnl Allow specific targets to be specified for building (or not)
549TARGETS_TO_BUILD=""
550AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
551 [Build specific host targets: all or target1,target2,... Valid targets are:
552 host, x86, x86_64, sparc, powerpc, alpha, arm, mips, spu,
Dan Gohman29074cc2011-10-24 23:48:32 +0000553 xcore, msp430, blackfin, ptx, cbe, and cpp (default=all)]),,
Daniel Dunbar2532fa22011-10-18 23:10:47 +0000554 enableval=all)
555if test "$enableval" = host-only ; then
556 enableval=host
557fi
558case "$enableval" in
Dan Gohman29074cc2011-10-24 23:48:32 +0000559 all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU XCore MSP430 Blackfin CBackend CppBackend MBlaze PTX" ;;
Daniel Dunbar2532fa22011-10-18 23:10:47 +0000560 *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
561 case "$a_target" in
562 x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
563 x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
564 sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
565 powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
566 alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
567 arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
568 mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
569 spu) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;;
570 xcore) TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
571 msp430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
Daniel Dunbar2532fa22011-10-18 23:10:47 +0000572 blackfin) TARGETS_TO_BUILD="Blackfin $TARGETS_TO_BUILD" ;;
573 cbe) TARGETS_TO_BUILD="CBackend $TARGETS_TO_BUILD" ;;
574 cpp) TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;
575 mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
576 ptx) TARGETS_TO_BUILD="PTX $TARGETS_TO_BUILD" ;;
577 host) case "$llvm_cv_target_arch" in
578 x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
579 x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
580 Sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
581 PowerPC) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
582 Alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
583 ARM) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
584 Mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
585 MBlaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
586 CellSPU|SPU) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;;
587 XCore) TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
588 MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
Daniel Dunbar2532fa22011-10-18 23:10:47 +0000589 Blackfin) TARGETS_TO_BUILD="Blackfin $TARGETS_TO_BUILD" ;;
590 PTX) TARGETS_TO_BUILD="PTX $TARGETS_TO_BUILD" ;;
591 *) AC_MSG_ERROR([Can not set target to build]) ;;
592 esac ;;
593 *) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
594 esac
595 done
596 ;;
597esac
598AC_SUBST(TARGETS_TO_BUILD,$TARGETS_TO_BUILD)
599
600# Determine whether we are building LLVM support for the native architecture.
601# If so, define LLVM_NATIVE_ARCH to that LLVM target.
602for a_target in $TARGETS_TO_BUILD; do
603 if test "$a_target" = "$LLVM_NATIVE_ARCH"; then
604 AC_DEFINE_UNQUOTED(LLVM_NATIVE_ARCH, $LLVM_NATIVE_ARCH,
605 [LLVM architecture name for the native architecture, if available])
606 LLVM_NATIVE_TARGET="LLVMInitialize${LLVM_NATIVE_ARCH}Target"
607 LLVM_NATIVE_TARGETINFO="LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo"
608 LLVM_NATIVE_TARGETMC="LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC"
609 LLVM_NATIVE_ASMPRINTER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter"
610 if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/Makefile ; then
611 LLVM_NATIVE_ASMPARSER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser"
612 fi
613 AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGET, $LLVM_NATIVE_TARGET,
614 [LLVM name for the native Target init function, if available])
615 AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGETINFO, $LLVM_NATIVE_TARGETINFO,
616 [LLVM name for the native TargetInfo init function, if available])
617 AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGETMC, $LLVM_NATIVE_TARGETMC,
618 [LLVM name for the native target MC init function, if available])
619 AC_DEFINE_UNQUOTED(LLVM_NATIVE_ASMPRINTER, $LLVM_NATIVE_ASMPRINTER,
620 [LLVM name for the native AsmPrinter init function, if available])
621 if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/Makefile ; then
622 AC_DEFINE_UNQUOTED(LLVM_NATIVE_ASMPARSER, $LLVM_NATIVE_ASMPARSER,
623 [LLVM name for the native AsmParser init function, if available])
624 fi
625 fi
626done
627
628# Build the LLVM_TARGET and LLVM_... macros for Targets.def and the individual
629# target feature def files.
630LLVM_ENUM_TARGETS=""
631LLVM_ENUM_ASM_PRINTERS=""
632LLVM_ENUM_ASM_PARSERS=""
633LLVM_ENUM_DISASSEMBLERS=""
634for target_to_build in $TARGETS_TO_BUILD; do
635 LLVM_ENUM_TARGETS="LLVM_TARGET($target_to_build) $LLVM_ENUM_TARGETS"
636 if test -f ${srcdir}/lib/Target/${target_to_build}/*AsmPrinter.cpp ; then
637 LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS";
638 fi
639 if test -f ${srcdir}/lib/Target/${target_to_build}/AsmParser/Makefile ; then
640 LLVM_ENUM_ASM_PARSERS="LLVM_ASM_PARSER($target_to_build) $LLVM_ENUM_ASM_PARSERS";
641 fi
642 if test -f ${srcdir}/lib/Target/${target_to_build}/Disassembler/Makefile ; then
643 LLVM_ENUM_DISASSEMBLERS="LLVM_DISASSEMBLER($target_to_build) $LLVM_ENUM_DISASSEMBLERS";
644 fi
645done
646AC_SUBST(LLVM_ENUM_TARGETS)
647AC_SUBST(LLVM_ENUM_ASM_PRINTERS)
648AC_SUBST(LLVM_ENUM_ASM_PARSERS)
649AC_SUBST(LLVM_ENUM_DISASSEMBLERS)
650
651dnl Prevent the CBackend from using printf("%a") for floating point so older
652dnl C compilers that cannot deal with the 0x0p+0 hex floating point format
653dnl can still compile the CBE's output
654AC_ARG_ENABLE([cbe-printf-a],AS_HELP_STRING([--enable-cbe-printf-a],
655 [Enable C Backend output with hex floating point via %a (default is YES)]),,
656 enableval=default)
657case "$enableval" in
658 yes) AC_SUBST(ENABLE_CBE_PRINTF_A,[1]) ;;
659 no) AC_SUBST(ENABLE_CBE_PRINTF_A,[0]) ;;
660 default) AC_SUBST(ENABLE_CBE_PRINTF_A,[1]) ;;
661 *) AC_MSG_ERROR([Invalid setting for --enable-cbe-printf-a. Use "yes" or "no"]) ;;
662esac
663AC_DEFINE_UNQUOTED([ENABLE_CBE_PRINTF_A],$ENABLE_CBE_PRINTF_A,
664 [Define if CBE is enabled for printf %a output])
665
666dnl Override the option to use for optimized builds.
667AC_ARG_WITH(optimize-option,
668 AS_HELP_STRING([--with-optimize-option],
669 [Select the compiler options to use for optimized builds]),,
670 withval=default)
671AC_MSG_CHECKING([optimization flags])
672case "$withval" in
673 default)
674 case "$llvm_cv_os_type" in
675 FreeBSD) optimize_option=-O2 ;;
676 MingW) optimize_option=-O2 ;;
677 *) optimize_option=-O3 ;;
678 esac ;;
679 *) optimize_option="$withval" ;;
680esac
681AC_SUBST(OPTIMIZE_OPTION,$optimize_option)
682AC_MSG_RESULT([$optimize_option])
683
684dnl Specify extra build options
685AC_ARG_WITH(extra-options,
686 AS_HELP_STRING([--with-extra-options],
687 [Specify additional options to compile LLVM with]),,
688 withval=default)
689case "$withval" in
690 default) EXTRA_OPTIONS= ;;
691 *) EXTRA_OPTIONS=$withval ;;
692esac
693AC_SUBST(EXTRA_OPTIONS,$EXTRA_OPTIONS)
694
695dnl Specify extra linker build options
696AC_ARG_WITH(extra-ld-options,
697 AS_HELP_STRING([--with-extra-ld-options],
698 [Specify additional options to link LLVM with]),,
699 withval=default)
700case "$withval" in
701 default) EXTRA_LD_OPTIONS= ;;
702 *) EXTRA_LD_OPTIONS=$withval ;;
703esac
704AC_SUBST(EXTRA_LD_OPTIONS,$EXTRA_LD_OPTIONS)
705
706dnl Allow specific bindings to be specified for building (or not)
707AC_ARG_ENABLE([bindings],AS_HELP_STRING([--enable-bindings],
708 [Build specific language bindings: all,auto,none,{binding-name} (default=auto)]),,
709 enableval=default)
710BINDINGS_TO_BUILD=""
711case "$enableval" in
712 yes | default | auto) BINDINGS_TO_BUILD="auto" ;;
713 all ) BINDINGS_TO_BUILD="ocaml" ;;
714 none | no) BINDINGS_TO_BUILD="" ;;
715 *)for a_binding in `echo $enableval|sed -e 's/,/ /g' ` ; do
716 case "$a_binding" in
717 ocaml) BINDINGS_TO_BUILD="ocaml $BINDINGS_TO_BUILD" ;;
718 *) AC_MSG_ERROR([Unrecognized binding $a_binding]) ;;
719 esac
720 done
721 ;;
722esac
723
724dnl Allow the ocaml libdir to be overridden. This could go in a configure
725dnl script for bindings/ocaml/configure, except that its auto value depends on
726dnl OCAMLC, which is found here to support tests.
727AC_ARG_WITH([ocaml-libdir],
728 [AS_HELP_STRING([--with-ocaml-libdir],
729 [Specify install location for ocaml bindings (default is stdlib)])],
730 [],
731 [withval=auto])
732case "$withval" in
733 auto) with_ocaml_libdir="$withval" ;;
734 /* | [[A-Za-z]]:[[\\/]]*) with_ocaml_libdir="$withval" ;;
735 *) AC_MSG_ERROR([Invalid path for --with-ocaml-libdir. Provide full path]) ;;
736esac
737
738AC_ARG_WITH(clang-resource-dir,
739 AS_HELP_STRING([--with-clang-resource-dir],
740 [Relative directory from the Clang binary for resource files]),,
741 withval="")
742AC_DEFINE_UNQUOTED(CLANG_RESOURCE_DIR,"$withval",
743 [Relative directory for resource files])
744
745AC_ARG_WITH(c-include-dirs,
746 AS_HELP_STRING([--with-c-include-dirs],
747 [Colon separated list of directories clang will search for headers]),,
748 withval="")
749AC_DEFINE_UNQUOTED(C_INCLUDE_DIRS,"$withval",
750 [Directories clang will search for headers])
751
752AC_ARG_WITH(cxx-include-root,
753 AS_HELP_STRING([--with-cxx-include-root],
754 [Directory with the libstdc++ headers.]),,
755 withval="")
756AC_DEFINE_UNQUOTED(CXX_INCLUDE_ROOT,"$withval",
757 [Directory with the libstdc++ headers.])
758
759AC_ARG_WITH(cxx-include-arch,
760 AS_HELP_STRING([--with-cxx-include-arch],
761 [Architecture of the libstdc++ headers.]),,
762 withval="")
763AC_DEFINE_UNQUOTED(CXX_INCLUDE_ARCH,"$withval",
764 [Arch the libstdc++ headers.])
765
766AC_ARG_WITH(cxx-include-32bit-dir,
767 AS_HELP_STRING([--with-cxx-include-32bit-dir],
768 [32 bit multilib dir.]),,
769 withval="")
770AC_DEFINE_UNQUOTED(CXX_INCLUDE_32BIT_DIR,"$withval",
771 [32 bit multilib directory.])
772
773AC_ARG_WITH(cxx-include-64bit-dir,
774 AS_HELP_STRING([--with-cxx-include-64bit-dir],
775 [64 bit multilib directory.]),,
776 withval="")
777AC_DEFINE_UNQUOTED(CXX_INCLUDE_64BIT_DIR,"$withval",
778 [64 bit multilib directory.])
779
780dnl Allow linking of LLVM with GPLv3 binutils code.
781AC_ARG_WITH(binutils-include,
782 AS_HELP_STRING([--with-binutils-include],
783 [Specify path to binutils/include/ containing plugin-api.h file for gold plugin.]),,
784 withval=default)
785case "$withval" in
786 default) WITH_BINUTILS_INCDIR=default ;;
787 /* | [[A-Za-z]]:[[\\/]]*) WITH_BINUTILS_INCDIR=$withval ;;
788 *) AC_MSG_ERROR([Invalid path for --with-binutils-include. Provide full path]) ;;
789esac
790if test "x$WITH_BINUTILS_INCDIR" != xdefault ; then
791 AC_SUBST(BINUTILS_INCDIR,$WITH_BINUTILS_INCDIR)
792 if test ! -f "$WITH_BINUTILS_INCDIR/plugin-api.h"; then
793 echo "$WITH_BINUTILS_INCDIR/plugin-api.h"
794 AC_MSG_ERROR([Invalid path to directory containing plugin-api.h.]);
795 fi
796fi
797
798dnl Specify the URL where bug reports should be submitted.
799AC_ARG_WITH(bug-report-url,
800 AS_HELP_STRING([--with-bug-report-url],
801 [Specify the URL where bug reports should be submitted (default=http://llvm.org/bugs/)]),,
802 withval="http://llvm.org/bugs/")
803AC_DEFINE_UNQUOTED(BUG_REPORT_URL,"$withval",
804 [Bug report URL.])
805
806dnl --enable-libffi : check whether the user wants to turn off libffi:
807AC_ARG_ENABLE(libffi,AS_HELP_STRING(
808 --enable-libffi,[Check for the presence of libffi (default is NO)]),
809 [case "$enableval" in
810 yes) llvm_cv_enable_libffi="yes" ;;
811 no) llvm_cv_enable_libffi="no" ;;
812 *) AC_MSG_ERROR([Invalid setting for --enable-libffi. Use "yes" or "no"]) ;;
813 esac],
814 llvm_cv_enable_libffi=no)
815
816dnl===-----------------------------------------------------------------------===
817dnl===
818dnl=== SECTION 4: Check for programs we need and that they are the right version
819dnl===
820dnl===-----------------------------------------------------------------------===
821
822AC_PROG_NM
823AC_SUBST(NM)
824
825dnl Check for the tools that the makefiles require
826AC_CHECK_GNU_MAKE
827AC_PROG_LN_S
828AC_PATH_PROG(CMP, [cmp], [cmp])
829AC_PATH_PROG(CP, [cp], [cp])
830AC_PATH_PROG(DATE, [date], [date])
831AC_PATH_PROG(FIND, [find], [find])
832AC_PATH_PROG(GREP, [grep], [grep])
833AC_PATH_PROG(MKDIR,[mkdir],[mkdir])
834AC_PATH_PROG(MV, [mv], [mv])
835AC_PROG_RANLIB
836AC_CHECK_TOOL(AR, ar, false)
837AC_PATH_PROG(RM, [rm], [rm])
838AC_PATH_PROG(SED, [sed], [sed])
839AC_PATH_PROG(TAR, [tar], [gtar])
840AC_PATH_PROG(BINPWD,[pwd], [pwd])
841
842dnl Looking for misc. graph plotting software
843AC_PATH_PROG(GRAPHVIZ, [Graphviz], [echo Graphviz])
844if test "$GRAPHVIZ" != "echo Graphviz" ; then
845 AC_DEFINE([HAVE_GRAPHVIZ],[1],[Define if the Graphviz program is available])
846 dnl If we're targeting for mingw we should emit windows paths, not msys
847 if test "$llvm_cv_os_type" = "MingW" ; then
848 GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
849 fi
850 AC_DEFINE_UNQUOTED([LLVM_PATH_GRAPHVIZ],"$GRAPHVIZ${EXEEXT}",
851 [Define to path to Graphviz program if found or 'echo Graphviz' otherwise])
852fi
853AC_PATH_PROG(DOT, [dot], [echo dot])
854if test "$DOT" != "echo dot" ; then
855 AC_DEFINE([HAVE_DOT],[1],[Define if the dot program is available])
856 dnl If we're targeting for mingw we should emit windows paths, not msys
857 if test "$llvm_cv_os_type" = "MingW" ; then
858 DOT=`echo $DOT | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
859 fi
860 AC_DEFINE_UNQUOTED([LLVM_PATH_DOT],"$DOT${EXEEXT}",
861 [Define to path to dot program if found or 'echo dot' otherwise])
862fi
863AC_PATH_PROG(FDP, [fdp], [echo fdp])
864if test "$FDP" != "echo fdp" ; then
865 AC_DEFINE([HAVE_FDP],[1],[Define if the neat program is available])
866 dnl If we're targeting for mingw we should emit windows paths, not msys
867 if test "$llvm_cv_os_type" = "MingW" ; then
868 FDP=`echo $FDP | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
869 fi
870 AC_DEFINE_UNQUOTED([LLVM_PATH_FDP],"$FDP${EXEEXT}",
871 [Define to path to fdp program if found or 'echo fdp' otherwise])
872fi
873AC_PATH_PROG(NEATO, [neato], [echo neato])
874if test "$NEATO" != "echo neato" ; then
875 AC_DEFINE([HAVE_NEATO],[1],[Define if the neat program is available])
876 dnl If we're targeting for mingw we should emit windows paths, not msys
877 if test "$llvm_cv_os_type" = "MingW" ; then
878 NEATO=`echo $NEATO | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
879 fi
880 AC_DEFINE_UNQUOTED([LLVM_PATH_NEATO],"$NEATO${EXEEXT}",
881 [Define to path to neato program if found or 'echo neato' otherwise])
882fi
883AC_PATH_PROG(TWOPI, [twopi], [echo twopi])
884if test "$TWOPI" != "echo twopi" ; then
885 AC_DEFINE([HAVE_TWOPI],[1],[Define if the neat program is available])
886 dnl If we're targeting for mingw we should emit windows paths, not msys
887 if test "$llvm_cv_os_type" = "MingW" ; then
888 TWOPI=`echo $TWOPI | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
889 fi
890 AC_DEFINE_UNQUOTED([LLVM_PATH_TWOPI],"$TWOPI${EXEEXT}",
891 [Define to path to twopi program if found or 'echo twopi' otherwise])
892fi
893AC_PATH_PROG(CIRCO, [circo], [echo circo])
894if test "$CIRCO" != "echo circo" ; then
895 AC_DEFINE([HAVE_CIRCO],[1],[Define if the neat program is available])
896 dnl If we're targeting for mingw we should emit windows paths, not msys
897 if test "$llvm_cv_os_type" = "MingW" ; then
898 CIRCO=`echo $CIRCO | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
899 fi
900 AC_DEFINE_UNQUOTED([LLVM_PATH_CIRCO],"$CIRCO${EXEEXT}",
901 [Define to path to circo program if found or 'echo circo' otherwise])
902fi
903AC_PATH_PROGS(GV, [gv gsview32], [echo gv])
904if test "$GV" != "echo gv" ; then
905 AC_DEFINE([HAVE_GV],[1],[Define if the gv program is available])
906 dnl If we're targeting for mingw we should emit windows paths, not msys
907 if test "$llvm_cv_os_type" = "MingW" ; then
908 GV=`echo $GV | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
909 fi
910 AC_DEFINE_UNQUOTED([LLVM_PATH_GV],"$GV${EXEEXT}",
911 [Define to path to gv program if found or 'echo gv' otherwise])
912fi
913AC_PATH_PROG(DOTTY, [dotty], [echo dotty])
914if test "$DOTTY" != "echo dotty" ; then
915 AC_DEFINE([HAVE_DOTTY],[1],[Define if the dotty program is available])
916 dnl If we're targeting for mingw we should emit windows paths, not msys
917 if test "$llvm_cv_os_type" = "MingW" ; then
918 DOTTY=`echo $DOTTY | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
919 fi
920 AC_DEFINE_UNQUOTED([LLVM_PATH_DOTTY],"$DOTTY${EXEEXT}",
921 [Define to path to dotty program if found or 'echo dotty' otherwise])
922fi
923AC_PATH_PROG(XDOT_PY, [xdot.py], [echo xdot.py])
924if test "$XDOT_PY" != "echo xdot.py" ; then
925 AC_DEFINE([HAVE_XDOT_PY],[1],[Define if the xdot.py program is available])
926 dnl If we're targeting for mingw we should emit windows paths, not msys
927 if test "$llvm_cv_os_type" = "MingW" ; then
928 XDOT_PY=`echo $XDOT_PY | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
929 fi
930 AC_DEFINE_UNQUOTED([LLVM_PATH_XDOT_PY],"$XDOT_PY${EXEEXT}",
931 [Define to path to xdot.py program if found or 'echo xdot.py' otherwise])
932fi
933
934dnl Look for a sufficiently recent version of Perl.
935LLVM_PROG_PERL([5.006])
936AC_SUBST(PERL)
937if test x"$PERL" = xnone; then
938 AC_SUBST(HAVE_PERL,0)
939 AC_MSG_ERROR([perl is required but was not found, please install it])
940else
941 AC_SUBST(HAVE_PERL,1)
942fi
943
944dnl Find the install program
945AC_PROG_INSTALL
946dnl Prepend src dir to install path dir if it's a relative path
947dnl This is a hack for installs that take place in something other
948dnl than the top level.
949case "$INSTALL" in
950 [[\\/$]]* | ?:[[\\/]]* ) ;;
951 *) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
952esac
953
954dnl Checks for documentation and testing tools that we can do without. If these
955dnl are not found then they are set to "true" which always succeeds but does
956dnl nothing. This just lets the build output show that we could have done
957dnl something if the tool was available.
958AC_PATH_PROG(BZIP2, [bzip2])
959AC_PATH_PROG(CAT, [cat])
960AC_PATH_PROG(DOXYGEN, [doxygen])
961AC_PATH_PROG(GROFF, [groff])
962AC_PATH_PROG(GZIPBIN, [gzip])
963AC_PATH_PROG(POD2HTML, [pod2html])
964AC_PATH_PROG(POD2MAN, [pod2man])
965AC_PATH_PROG(PDFROFF, [pdfroff])
966AC_PATH_PROG(RUNTEST, [runtest])
967DJ_AC_PATH_TCLSH
968AC_PATH_PROG(ZIP, [zip])
969AC_PATH_PROGS(OCAMLC, [ocamlc])
970AC_PATH_PROGS(OCAMLOPT, [ocamlopt])
971AC_PATH_PROGS(OCAMLDEP, [ocamldep])
972AC_PATH_PROGS(OCAMLDOC, [ocamldoc])
973AC_PATH_PROGS(GAS, [gas as])
974
975dnl Get the version of the linker in use.
976AC_LINK_GET_VERSION
977
978dnl Determine whether the linker supports the -R option.
979AC_LINK_USE_R
980
981dnl Determine whether the linker supports the -export-dynamic option.
982AC_LINK_EXPORT_DYNAMIC
983
984dnl Determine whether the linker supports the --version-script option.
985AC_LINK_VERSION_SCRIPT
986
987dnl Check for libtool and the library that has dlopen function (which must come
988dnl before the AC_PROG_LIBTOOL check in order to enable dlopening libraries with
989dnl libtool).
990AC_LIBTOOL_DLOPEN
991AC_LIB_LTDL
992
993AC_MSG_CHECKING([tool compatibility])
994
995dnl Ensure that compilation tools are GCC or a GNU compatible compiler such as
996dnl ICC; we use GCC specific options in the makefiles so the compiler needs
997dnl to support those options.
998dnl "icc" emits gcc signatures
999dnl "icc -no-gcc" emits no gcc signature BUT is still compatible
1000ICC=no
1001IXX=no
1002case $CC in
1003 icc*|icpc*)
1004 ICC=yes
1005 IXX=yes
1006 ;;
1007 *)
1008 ;;
1009esac
1010
1011if test "$GCC" != "yes" && test "$ICC" != "yes"
1012then
1013 AC_MSG_ERROR([gcc|icc required but not found])
1014fi
1015
1016dnl Ensure that compilation tools are compatible with GCC extensions
1017if test "$GXX" != "yes" && test "$IXX" != "yes"
1018then
1019 AC_MSG_ERROR([g++|clang++|icc required but not found])
1020fi
1021
1022dnl Verify that GCC is version 3.0 or higher
1023if test "$GCC" = "yes"
1024then
1025 AC_COMPILE_IFELSE([[#if !defined(__GNUC__) || __GNUC__ < 3
1026#error Unsupported GCC version
1027#endif
1028]], [], [AC_MSG_ERROR([gcc 3.x required, but you have a lower version])])
1029fi
1030
1031dnl Check for GNU Make. We use its extensions, so don't build without it
1032if test -z "$llvm_cv_gnu_make_command"
1033then
1034 AC_MSG_ERROR([GNU Make required but not found])
1035fi
1036
1037dnl Tool compatibility is okay if we make it here.
1038AC_MSG_RESULT([ok])
1039
1040dnl Check optional compiler flags.
1041AC_MSG_CHECKING([optional compiler flags])
1042CXX_FLAG_CHECK(NO_VARIADIC_MACROS, [-Wno-variadic-macros])
1043CXX_FLAG_CHECK(NO_MISSING_FIELD_INITIALIZERS, [-Wno-missing-field-initializers])
1044AC_MSG_RESULT([$NO_VARIADIC_MACROS $NO_MISSING_FIELD_INITIALIZERS])
1045
1046dnl===-----------------------------------------------------------------------===
1047dnl===
1048dnl=== SECTION 5: Check for libraries
1049dnl===
1050dnl===-----------------------------------------------------------------------===
1051
1052AC_CHECK_LIB(m,sin)
1053if test "$llvm_cv_os_type" = "MingW" ; then
1054 AC_CHECK_LIB(imagehlp, main)
1055 AC_CHECK_LIB(psapi, main)
1056fi
1057
1058dnl dlopen() is required for plugin support.
1059AC_SEARCH_LIBS(dlopen,dl,AC_DEFINE([HAVE_DLOPEN],[1],
1060 [Define if dlopen() is available on this platform.]),
1061 AC_MSG_WARN([dlopen() not found - disabling plugin support]))
1062
1063dnl libffi is optional; used to call external functions from the interpreter
1064if test "$llvm_cv_enable_libffi" = "yes" ; then
1065 AC_SEARCH_LIBS(ffi_call,ffi,AC_DEFINE([HAVE_FFI_CALL],[1],
1066 [Define if libffi is available on this platform.]),
1067 AC_MSG_ERROR([libffi not found - configure without --enable-libffi to compile without it]))
1068fi
1069
1070dnl mallinfo is optional; the code can compile (minus features) without it
1071AC_SEARCH_LIBS(mallinfo,malloc,AC_DEFINE([HAVE_MALLINFO],[1],
1072 [Define if mallinfo() is available on this platform.]))
1073
1074dnl pthread locking functions are optional - but llvm will not be thread-safe
1075dnl without locks.
1076if test "$ENABLE_THREADS" -eq 1 && test "$ENABLE_PTHREADS" -eq 1 ; then
1077 AC_CHECK_LIB(pthread, pthread_mutex_init)
1078 AC_SEARCH_LIBS(pthread_mutex_lock,pthread,
1079 AC_DEFINE([HAVE_PTHREAD_MUTEX_LOCK],[1],
1080 [Have pthread_mutex_lock]))
1081 AC_SEARCH_LIBS(pthread_rwlock_init,pthread,
1082 AC_DEFINE([HAVE_PTHREAD_RWLOCK_INIT],[1],
1083 [Have pthread_rwlock_init]))
1084 AC_SEARCH_LIBS(pthread_getspecific,pthread,
1085 AC_DEFINE([HAVE_PTHREAD_GETSPECIFIC],[1],
1086 [Have pthread_getspecific]))
1087fi
1088
1089dnl Allow extra x86-disassembler library
1090AC_ARG_WITH(udis86,
1091 AS_HELP_STRING([--with-udis86=<path>],
1092 [Use udis86 external x86 disassembler library]),
1093 [
1094 AC_SUBST(USE_UDIS86, [1])
1095 case "$withval" in
1096 /usr/lib|yes) ;;
1097 *) LDFLAGS="$LDFLAGS -L${withval}" ;;
1098 esac
1099 AC_CHECK_LIB(udis86, ud_init, [], [
1100 echo "Error! You need to have libudis86 around."
1101 exit -1
1102 ])
1103 ],
1104 AC_SUBST(USE_UDIS86, [0]))
1105AC_DEFINE_UNQUOTED([USE_UDIS86],$USE_UDIS86,
1106 [Define if use udis86 library])
1107
1108dnl Allow OProfile support for JIT output.
1109AC_ARG_WITH(oprofile,
1110 AS_HELP_STRING([--with-oprofile=<prefix>],
1111 [Tell OProfile >= 0.9.4 how to symbolize JIT output]),
1112 [
1113 AC_SUBST(USE_OPROFILE, [1])
1114 case "$withval" in
1115 /usr|yes) llvm_cv_oppath=/usr/lib/oprofile ;;
1116 no) llvm_cv_oppath=
1117 AC_SUBST(USE_OPROFILE, [0]) ;;
1118 *) llvm_cv_oppath="${withval}/lib/oprofile"
1119 CPPFLAGS="-I${withval}/include";;
1120 esac
1121 if test -n "$llvm_cv_oppath" ; then
1122 LIBS="$LIBS -L${llvm_cv_oppath} -Wl,-rpath,${llvm_cv_oppath}"
1123 dnl Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537744:
1124 dnl libbfd is not included properly in libopagent in some Debian
1125 dnl versions. If libbfd isn't found at all, we assume opagent works
1126 dnl anyway.
1127 AC_SEARCH_LIBS(bfd_init, bfd, [], [])
1128 AC_SEARCH_LIBS(op_open_agent, opagent, [], [
1129 echo "Error! You need to have libopagent around."
1130 exit -1
1131 ])
1132 AC_CHECK_HEADER([opagent.h], [], [
1133 echo "Error! You need to have opagent.h around."
1134 exit -1
1135 ])
1136 fi
1137 ],
1138 [
1139 AC_SUBST(USE_OPROFILE, [0])
1140 ])
1141AC_DEFINE_UNQUOTED([USE_OPROFILE],$USE_OPROFILE,
1142 [Define if we have the oprofile JIT-support library])
1143
1144dnl===-----------------------------------------------------------------------===
1145dnl===
1146dnl=== SECTION 6: Check for header files
1147dnl===
1148dnl===-----------------------------------------------------------------------===
1149
1150dnl First, use autoconf provided macros for specific headers that we need
1151dnl We don't check for ancient stuff or things that are guaranteed to be there
1152dnl by the C++ standard. We always use the <cfoo> versions of <foo.h> C headers.
1153dnl Generally we're looking for POSIX headers.
1154AC_HEADER_DIRENT
1155AC_HEADER_MMAP_ANONYMOUS
1156AC_HEADER_STAT
1157AC_HEADER_SYS_WAIT
1158AC_HEADER_TIME
1159
1160AC_CHECK_HEADERS([dlfcn.h execinfo.h fcntl.h inttypes.h limits.h link.h])
1161AC_CHECK_HEADERS([malloc.h setjmp.h signal.h stdint.h termios.h unistd.h])
1162AC_CHECK_HEADERS([utime.h windows.h])
1163AC_CHECK_HEADERS([sys/mman.h sys/param.h sys/resource.h sys/time.h sys/uio.h])
1164AC_CHECK_HEADERS([sys/types.h sys/ioctl.h malloc/malloc.h mach/mach.h])
1165AC_CHECK_HEADERS([valgrind/valgrind.h])
1166AC_CHECK_HEADERS([fenv.h])
1167if test "$ENABLE_THREADS" -eq 1 && test "$ENABLE_PTHREADS" -eq 1 ; then
1168 AC_CHECK_HEADERS(pthread.h,
1169 AC_SUBST(HAVE_PTHREAD, 1),
1170 AC_SUBST(HAVE_PTHREAD, 0))
1171else
1172 AC_SUBST(HAVE_PTHREAD, 0)
1173fi
1174
1175dnl Try to find ffi.h.
1176if test "$llvm_cv_enable_libffi" = "yes" ; then
1177 AC_CHECK_HEADERS([ffi.h ffi/ffi.h])
1178fi
1179
1180dnl Try to find Darwin specific crash reporting libraries.
1181AC_CHECK_HEADERS([CrashReporterClient.h])
1182
1183dnl Try to find Darwin specific crash reporting global.
1184AC_MSG_CHECKING([__crashreporter_info__])
1185AC_LINK_IFELSE(
1186 AC_LANG_SOURCE(
1187 [[extern const char *__crashreporter_info__;
1188 int main() {
1189 __crashreporter_info__ = "test";
1190 return 0;
1191 }
1192 ]]),
1193 AC_MSG_RESULT(yes)
1194 AC_DEFINE(HAVE_CRASHREPORTER_INFO, 1, Can use __crashreporter_info__),
1195 AC_MSG_RESULT(no)
1196 AC_DEFINE(HAVE_CRASHREPORTER_INFO, 0,
1197 Define if __crashreporter_info__ exists.))
1198
1199dnl===-----------------------------------------------------------------------===
1200dnl===
1201dnl=== SECTION 7: Check for types and structures
1202dnl===
1203dnl===-----------------------------------------------------------------------===
1204
1205AC_HUGE_VAL_CHECK
1206AC_TYPE_PID_T
1207AC_TYPE_SIZE_T
1208AC_DEFINE_UNQUOTED([RETSIGTYPE],[void],[Define as the return type of signal handlers (`int' or `void').])
1209AC_STRUCT_TM
1210AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found]))
1211AC_CHECK_TYPES([uint64_t],,
1212 AC_CHECK_TYPES([u_int64_t],,
1213 AC_MSG_ERROR([Type uint64_t or u_int64_t required but not found])))
1214
1215dnl===-----------------------------------------------------------------------===
1216dnl===
1217dnl=== SECTION 8: Check for specific functions needed
1218dnl===
1219dnl===-----------------------------------------------------------------------===
1220
1221AC_CHECK_FUNCS([backtrace ceilf floorf roundf rintf nearbyintf getcwd ])
1222AC_CHECK_FUNCS([powf fmodf strtof round ])
1223AC_CHECK_FUNCS([getpagesize getrusage getrlimit setrlimit gettimeofday ])
1224AC_CHECK_FUNCS([isatty mkdtemp mkstemp ])
1225AC_CHECK_FUNCS([mktemp posix_spawn realpath sbrk setrlimit strdup ])
1226AC_CHECK_FUNCS([strerror strerror_r setenv ])
1227AC_CHECK_FUNCS([strtoll strtoq sysconf malloc_zone_statistics ])
1228AC_CHECK_FUNCS([setjmp longjmp sigsetjmp siglongjmp writev])
1229AC_C_PRINTF_A
1230AC_FUNC_RAND48
1231
1232dnl Check the declaration "Secure API" on Windows environments.
1233AC_CHECK_DECLS([strerror_s])
1234
1235dnl Check symbols in libgcc.a for JIT on Mingw.
1236if test "$llvm_cv_os_type" = "MingW" ; then
1237 AC_CHECK_LIB(gcc,_alloca,AC_DEFINE([HAVE__ALLOCA],[1],[Have host's _alloca]))
1238 AC_CHECK_LIB(gcc,__alloca,AC_DEFINE([HAVE___ALLOCA],[1],[Have host's __alloca]))
1239 AC_CHECK_LIB(gcc,__chkstk,AC_DEFINE([HAVE___CHKSTK],[1],[Have host's __chkstk]))
1240 AC_CHECK_LIB(gcc,___chkstk,AC_DEFINE([HAVE____CHKSTK],[1],[Have host's ___chkstk]))
1241
1242 AC_CHECK_LIB(gcc,__ashldi3,AC_DEFINE([HAVE___ASHLDI3],[1],[Have host's __ashldi3]))
1243 AC_CHECK_LIB(gcc,__ashrdi3,AC_DEFINE([HAVE___ASHRDI3],[1],[Have host's __ashrdi3]))
1244 AC_CHECK_LIB(gcc,__divdi3,AC_DEFINE([HAVE___DIVDI3],[1],[Have host's __divdi3]))
1245 AC_CHECK_LIB(gcc,__fixdfdi,AC_DEFINE([HAVE___FIXDFDI],[1],[Have host's __fixdfdi]))
1246 AC_CHECK_LIB(gcc,__fixsfdi,AC_DEFINE([HAVE___FIXSFDI],[1],[Have host's __fixsfdi]))
1247 AC_CHECK_LIB(gcc,__floatdidf,AC_DEFINE([HAVE___FLOATDIDF],[1],[Have host's __floatdidf]))
1248 AC_CHECK_LIB(gcc,__lshrdi3,AC_DEFINE([HAVE___LSHRDI3],[1],[Have host's __lshrdi3]))
1249 AC_CHECK_LIB(gcc,__moddi3,AC_DEFINE([HAVE___MODDI3],[1],[Have host's __moddi3]))
1250 AC_CHECK_LIB(gcc,__udivdi3,AC_DEFINE([HAVE___UDIVDI3],[1],[Have host's __udivdi3]))
1251 AC_CHECK_LIB(gcc,__umoddi3,AC_DEFINE([HAVE___UMODDI3],[1],[Have host's __umoddi3]))
1252
1253 AC_CHECK_LIB(gcc,__main,AC_DEFINE([HAVE___MAIN],[1],[Have host's __main]))
1254 AC_CHECK_LIB(gcc,__cmpdi2,AC_DEFINE([HAVE___CMPDI2],[1],[Have host's __cmpdi2]))
1255fi
1256
1257dnl Check Win32 API EnumerateLoadedModules.
1258if test "$llvm_cv_os_type" = "MingW" ; then
1259 AC_MSG_CHECKING([whether EnumerateLoadedModules() accepts new decl])
1260 AC_COMPILE_IFELSE([[#include <windows.h>
1261#include <imagehlp.h>
1262extern void foo(PENUMLOADED_MODULES_CALLBACK);
1263extern void foo(BOOL(CALLBACK*)(PCSTR,ULONG_PTR,ULONG,PVOID));]],
1264[
1265 AC_MSG_RESULT([yes])
1266 llvm_cv_win32_elmcb_pcstr="PCSTR"
1267],
1268[
1269 AC_MSG_RESULT([no])
1270 llvm_cv_win32_elmcb_pcstr="PSTR"
1271])
1272 AC_DEFINE_UNQUOTED([WIN32_ELMCB_PCSTR],$llvm_cv_win32_elmcb_pcstr,[Type of 1st arg on ELM Callback])
1273fi
1274
1275dnl Check for variations in the Standard C++ library and STL. These macros are
1276dnl provided by LLVM in the autoconf/m4 directory.
1277AC_FUNC_ISNAN
1278AC_FUNC_ISINF
1279
1280dnl Check for mmap support.We also need to know if /dev/zero is required to
1281dnl be opened for allocating RWX memory.
1282dnl Make sure we aren't attempting to configure for an unknown system
1283if test "$llvm_cv_platform_type" = "Unix" ; then
1284 AC_FUNC_MMAP
1285 AC_FUNC_MMAP_FILE
1286 AC_NEED_DEV_ZERO_FOR_MMAP
1287
1288 if test "$ac_cv_func_mmap_fixed_mapped" = "no"
1289 then
1290 AC_MSG_WARN([mmap() of a fixed address required but not supported])
1291 fi
1292 if test "$ac_cv_func_mmap_file" = "no"
1293 then
1294 AC_MSG_WARN([mmap() of files required but not found])
1295 fi
1296fi
1297
1298dnl atomic builtins are required for threading support.
1299AC_MSG_CHECKING(for GCC atomic builtins)
1300dnl Since we'll be using these atomic builtins in C++ files we should test
1301dnl the C++ compiler.
1302AC_LANG_PUSH([C++])
1303AC_LINK_IFELSE(
1304 AC_LANG_SOURCE(
1305 [[int main() {
1306 volatile unsigned long val = 1;
1307 __sync_synchronize();
1308 __sync_val_compare_and_swap(&val, 1, 0);
1309 __sync_add_and_fetch(&val, 1);
1310 __sync_sub_and_fetch(&val, 1);
1311 return 0;
1312 }
1313 ]]),
1314 AC_LANG_POP([C++])
1315 AC_MSG_RESULT(yes)
1316 AC_DEFINE(LLVM_HAS_ATOMICS, 1, Has gcc/MSVC atomic intrinsics),
1317 AC_MSG_RESULT(no)
1318 AC_DEFINE(LLVM_HAS_ATOMICS, 0, Has gcc/MSVC atomic intrinsics)
1319 AC_MSG_WARN([LLVM will be built thread-unsafe because atomic builtins are missing]))
1320
1321dnl===-----------------------------------------------------------------------===
1322dnl===
1323dnl=== SECTION 9: Additional checks, variables, etc.
1324dnl===
1325dnl===-----------------------------------------------------------------------===
1326
1327dnl Handle 32-bit linux systems running a 64-bit kernel.
1328dnl This has to come after section 4 because it invokes the compiler.
1329if test "$llvm_cv_os_type" = "Linux" -a "$llvm_cv_target_arch" = "x86_64" ; then
1330 AC_IS_LINUX_MIXED
1331 if test "$llvm_cv_linux_mixed" = "yes"; then
1332 llvm_cv_target_arch="x86"
1333 ARCH="x86"
1334 fi
1335fi
1336
1337dnl Check whether __dso_handle is present
1338AC_CHECK_FUNCS([__dso_handle])
1339
1340dnl Propagate the shared library extension that the libltdl checks did to
1341dnl the Makefiles so we can use it there too
1342AC_SUBST(SHLIBEXT,$libltdl_cv_shlibext)
1343
1344dnl Propagate the run-time library path variable that the libltdl
1345dnl checks found to the Makefiles so we can use it there too
1346AC_SUBST(SHLIBPATH_VAR,$libltdl_cv_shlibpath_var)
1347
1348# Translate the various configuration directories and other basic
1349# information into substitutions that will end up in Makefile.config.in
1350# that these configured values can be used by the makefiles
1351if test "${prefix}" = "NONE" ; then
1352 prefix="/usr/local"
1353fi
1354eval LLVM_PREFIX="${prefix}";
1355eval LLVM_BINDIR="${prefix}/bin";
1356eval LLVM_LIBDIR="${prefix}/lib";
1357eval LLVM_DATADIR="${prefix}/share/llvm";
1358eval LLVM_DOCSDIR="${prefix}/share/doc/llvm";
1359eval LLVM_ETCDIR="${prefix}/etc/llvm";
1360eval LLVM_INCLUDEDIR="${prefix}/include";
1361eval LLVM_INFODIR="${prefix}/info";
1362eval LLVM_MANDIR="${prefix}/man";
1363LLVM_CONFIGTIME=`date`
1364AC_SUBST(LLVM_PREFIX)
1365AC_SUBST(LLVM_BINDIR)
1366AC_SUBST(LLVM_LIBDIR)
1367AC_SUBST(LLVM_DATADIR)
1368AC_SUBST(LLVM_DOCSDIR)
1369AC_SUBST(LLVM_ETCDIR)
1370AC_SUBST(LLVM_INCLUDEDIR)
1371AC_SUBST(LLVM_INFODIR)
1372AC_SUBST(LLVM_MANDIR)
1373AC_SUBST(LLVM_CONFIGTIME)
1374
1375# Place the various directores into the config.h file as #defines so that we
1376# can know about the installation paths within LLVM.
1377AC_DEFINE_UNQUOTED(LLVM_PREFIX,"$LLVM_PREFIX",
1378 [Installation prefix directory])
1379AC_DEFINE_UNQUOTED(LLVM_BINDIR, "$LLVM_BINDIR",
1380 [Installation directory for binary executables])
1381AC_DEFINE_UNQUOTED(LLVM_LIBDIR, "$LLVM_LIBDIR",
1382 [Installation directory for libraries])
1383AC_DEFINE_UNQUOTED(LLVM_DATADIR, "$LLVM_DATADIR",
1384 [Installation directory for data files])
1385AC_DEFINE_UNQUOTED(LLVM_DOCSDIR, "$LLVM_DOCSDIR",
1386 [Installation directory for documentation])
1387AC_DEFINE_UNQUOTED(LLVM_ETCDIR, "$LLVM_ETCDIR",
1388 [Installation directory for config files])
1389AC_DEFINE_UNQUOTED(LLVM_INCLUDEDIR, "$LLVM_INCLUDEDIR",
1390 [Installation directory for include files])
1391AC_DEFINE_UNQUOTED(LLVM_INFODIR, "$LLVM_INFODIR",
1392 [Installation directory for .info files])
1393AC_DEFINE_UNQUOTED(LLVM_MANDIR, "$LLVM_MANDIR",
1394 [Installation directory for man pages])
1395AC_DEFINE_UNQUOTED(LLVM_CONFIGTIME, "$LLVM_CONFIGTIME",
1396 [Time at which LLVM was configured])
1397AC_DEFINE_UNQUOTED(LLVM_HOSTTRIPLE, "$host",
1398 [Host triple we were built on])
1399
1400# Determine which bindings to build.
1401if test "$BINDINGS_TO_BUILD" = auto ; then
1402 BINDINGS_TO_BUILD=""
1403 if test "x$OCAMLC" != x -a "x$OCAMLDEP" != x ; then
1404 BINDINGS_TO_BUILD="ocaml $BINDINGS_TO_BUILD"
1405 fi
1406fi
1407AC_SUBST(BINDINGS_TO_BUILD,$BINDINGS_TO_BUILD)
1408
1409# This isn't really configurey, but it avoids having to repeat the list in
1410# other files.
1411AC_SUBST(ALL_BINDINGS,ocaml)
1412
1413# Do any work necessary to ensure that bindings have what they need.
1414binding_prereqs_failed=0
1415for a_binding in $BINDINGS_TO_BUILD ; do
1416 case "$a_binding" in
1417 ocaml)
1418 if test "x$OCAMLC" = x ; then
1419 AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamlc not found. Try configure OCAMLC=/path/to/ocamlc])
1420 binding_prereqs_failed=1
1421 fi
1422 if test "x$OCAMLDEP" = x ; then
1423 AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamldep not found. Try configure OCAMLDEP=/path/to/ocamldep])
1424 binding_prereqs_failed=1
1425 fi
1426 if test "x$OCAMLOPT" = x ; then
1427 AC_MSG_WARN([--enable-bindings=ocaml specified, but ocamlopt not found. Try configure OCAMLOPT=/path/to/ocamlopt])
1428 dnl ocamlopt is optional!
1429 fi
1430 if test "x$with_ocaml_libdir" != xauto ; then
1431 AC_SUBST(OCAML_LIBDIR,$with_ocaml_libdir)
1432 else
1433 ocaml_stdlib="`"$OCAMLC" -where`"
1434 if test "$LLVM_PREFIX" '<' "$ocaml_stdlib" -a "$ocaml_stdlib" '<' "$LLVM_PREFIX~"
1435 then
1436 # ocaml stdlib is beneath our prefix; use stdlib
1437 AC_SUBST(OCAML_LIBDIR,$ocaml_stdlib)
1438 else
1439 # ocaml stdlib is outside our prefix; use libdir/ocaml
1440 AC_SUBST(OCAML_LIBDIR,$LLVM_LIBDIR/ocaml)
1441 fi
1442 fi
1443 ;;
1444 esac
1445done
1446if test "$binding_prereqs_failed" = 1 ; then
1447 AC_MSG_ERROR([Prequisites for bindings not satisfied. Fix them or use configure --disable-bindings.])
1448fi
1449
1450dnl Determine whether the compiler supports -fvisibility-inlines-hidden.
1451AC_CXX_USE_VISIBILITY_INLINES_HIDDEN
1452
1453dnl Determine linker rpath flag
1454if test "$llvm_cv_link_use_r" = "yes" ; then
1455 RPATH="-Wl,-R"
1456else
1457 RPATH="-Wl,-rpath"
1458fi
1459AC_SUBST(RPATH)
1460
1461dnl Determine linker rdynamic flag
1462if test "$llvm_cv_link_use_export_dynamic" = "yes" ; then
1463 RDYNAMIC="-Wl,-export-dynamic"
1464else
1465 RDYNAMIC=""
1466fi
1467AC_SUBST(RDYNAMIC)
1468
1469dnl===-----------------------------------------------------------------------===
1470dnl===
1471dnl=== SECTION 10: Specify the output files and generate it
1472dnl===
1473dnl===-----------------------------------------------------------------------===
1474
1475dnl **************************************************************************
1476dnl End LLVM configure.ac Import
1477dnl **************************************************************************
1478
Reid Spencer1a87ddc2005-02-24 18:50:53 +00001479dnl Configure a common Makefile
Reid Spencer38fd88a2005-01-05 06:41:10 +00001480AC_CONFIG_FILES(Makefile.common)
Daniel Dunbar2532fa22011-10-18 23:10:47 +00001481AC_CONFIG_FILES(Makefile.llvm.config)
John Criswell607b1ea2003-10-16 01:44:20 +00001482
Reid Spencer1a87ddc2005-02-24 18:50:53 +00001483dnl Configure project makefiles
1484dnl List every Makefile that exists within your source tree
John Criswell607b1ea2003-10-16 01:44:20 +00001485AC_CONFIG_MAKEFILE(Makefile)
1486AC_CONFIG_MAKEFILE(lib/Makefile)
1487AC_CONFIG_MAKEFILE(lib/sample/Makefile)
1488AC_CONFIG_MAKEFILE(tools/Makefile)
1489AC_CONFIG_MAKEFILE(tools/sample/Makefile)
1490
Reid Spencer1a87ddc2005-02-24 18:50:53 +00001491dnl This must be last
Reid Spencer9964cd82005-01-01 09:26:55 +00001492AC_OUTPUT