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