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