blob: 172be4c49241409b1f2f076d727dbb482cd9b6a4 [file] [log] [blame]
Brian Gaeke26be9c52004-01-13 06:43:16 +00001dnl Initialize autoconf
Reid Spencera91929d2004-08-20 09:03:12 +00002AC_INIT([[LLVM]],[[1.4]],[llvmbugs@cs.uiuc.edu])
John Criswell4ea390d2003-07-22 19:13:20 +00003
4dnl Place all of the extra autoconf files into the config subdirectory
5AC_CONFIG_AUX_DIR([autoconf])
6
John Criswell93e1c722003-09-15 17:04:06 +00007dnl Quit if the source directory has already been configured.
John Criswell1b824322003-09-15 17:19:42 +00008dnl NOTE: This relies upon undocumented autoconf behavior.
9if test ${srcdir} != "."
John Criswell93e1c722003-09-15 17:04:06 +000010then
John Criswell1b824322003-09-15 17:19:42 +000011 if test -f ${srcdir}/include/Config/config.h
12 then
13 AC_MSG_ERROR([Already configured in ${srcdir}])
14 fi
John Criswell93e1c722003-09-15 17:04:06 +000015fi
16
John Criswell33a911a2003-11-25 20:36:46 +000017dnl Configure all of the projects present in our source tree.
John Criswell33a911a2003-11-25 20:36:46 +000018for i in `ls ${srcdir}/projects`
19do
20 if test ${i} != "CVS"
21 then
John Criswell9493c972003-12-12 20:09:33 +000022 if test -f ${srcdir}/projects/${i}/configure
John Criswell33a911a2003-11-25 20:36:46 +000023 then
24 AC_CONFIG_SUBDIRS(projects/${i})
25 fi
26 fi
27done
John Criswell559a6c12003-09-30 16:31:48 +000028
John Criswelldc76e322004-07-23 15:40:57 +000029dnl Configure header files
John Criswell4ea390d2003-07-22 19:13:20 +000030AC_CONFIG_HEADERS(include/Config/config.h)
John Criswelldc76e322004-07-23 15:40:57 +000031
32dnl Configure other output file
33AC_CONFIG_FILES(Makefile.config
34 include/Support/DataTypes.h
35 include/Support/ThreadSupport.h
36 include/Support/hash_map
37 include/Support/hash_set
38 include/Support/iterator)
39
40dnl Do special configuration of Makefiles
John Criswell2d533082003-09-06 14:46:19 +000041AC_CONFIG_MAKEFILE(Makefile)
42AC_CONFIG_MAKEFILE(Makefile.common)
Reid Spencer367754a2004-08-24 16:31:01 +000043AC_CONFIG_MAKEFILE(examples/Makefile)
John Criswell2d533082003-09-06 14:46:19 +000044AC_CONFIG_MAKEFILE(lib/Makefile)
John Criswell2d533082003-09-06 14:46:19 +000045AC_CONFIG_MAKEFILE(runtime/Makefile)
John Criswell2d533082003-09-06 14:46:19 +000046AC_CONFIG_MAKEFILE(test/Makefile)
47AC_CONFIG_MAKEFILE(test/Makefile.tests)
John Criswellf424d742003-10-07 21:13:47 +000048AC_CONFIG_MAKEFILE(test/QMTest/llvm.py)
49AC_CONFIG_MAKEFILE(test/QMTest/llvmdb.py)
John Criswell2d533082003-09-06 14:46:19 +000050AC_CONFIG_MAKEFILE(test/Programs/Makefile)
51AC_CONFIG_MAKEFILE(test/Programs/Makefile.programs)
John Criswell8a54a1e2004-06-22 21:35:10 +000052AC_CONFIG_MAKEFILE(test/Programs/Makefile.tests)
John Criswell2d533082003-09-06 14:46:19 +000053AC_CONFIG_MAKEFILE(test/Programs/TEST.aa.Makefile)
54AC_CONFIG_MAKEFILE(test/Programs/TEST.dsgraph.report)
John Criswell2d533082003-09-06 14:46:19 +000055AC_CONFIG_MAKEFILE(test/Programs/TEST.aa.report)
56AC_CONFIG_MAKEFILE(test/Programs/TEST.example.Makefile)
57AC_CONFIG_MAKEFILE(test/Programs/TEST.nightly.Makefile)
58AC_CONFIG_MAKEFILE(test/Programs/TEST.buildrepo.Makefile)
59AC_CONFIG_MAKEFILE(test/Programs/TEST.jit.Makefile)
60AC_CONFIG_MAKEFILE(test/Programs/TEST.nightly.report)
61AC_CONFIG_MAKEFILE(test/Programs/TEST.dsgraph.Makefile)
62AC_CONFIG_MAKEFILE(test/Programs/TEST.jit.report)
63AC_CONFIG_MAKEFILE(test/Programs/TEST.typesafe.Makefile)
64AC_CONFIG_MAKEFILE(test/Programs/TEST.dsgraph.gnuplot)
John Criswell878be7d2004-02-24 21:43:38 +000065AC_CONFIG_MAKEFILE(test/Programs/TEST.vtl.Makefile)
John Criswell2d533082003-09-06 14:46:19 +000066AC_CONFIG_MAKEFILE(test/Programs/External/Makefile)
67AC_CONFIG_MAKEFILE(test/Programs/External/SPEC/Makefile)
John Criswell27bb35e2003-09-11 18:04:00 +000068AC_CONFIG_MAKEFILE(test/Programs/External/SPEC/Makefile.spec)
Alkis Evlogimenos271143f2004-02-26 04:14:10 +000069AC_CONFIG_MAKEFILE(test/Programs/External/SPEC/Makefile.spec2000)
John Criswellb607cc82004-02-10 22:29:06 +000070AC_CONFIG_MAKEFILE(test/Programs/External/SPEC/Makefile.spec95)
John Criswell2d533082003-09-06 14:46:19 +000071AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Makefile)
72AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Makefile.multisrc)
Misha Brukman960624b2003-11-12 22:16:23 +000073AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/analyzer/test.in)
Misha Brukman3e910fe2003-11-12 19:39:10 +000074AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/distray/Makefile)
Misha Brukman960624b2003-11-12 22:16:23 +000075AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/distray/test.in)
Misha Brukman3e910fe2003-11-12 19:39:10 +000076AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/fourinarow/Makefile)
Misha Brukman960624b2003-11-12 22:16:23 +000077AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/fourinarow/test.in)
Misha Brukman3e910fe2003-11-12 19:39:10 +000078AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/mason/Makefile)
Misha Brukman960624b2003-11-12 22:16:23 +000079AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/mason/test.in)
Misha Brukman3e910fe2003-11-12 19:39:10 +000080AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/neural/Makefile)
Misha Brukman960624b2003-11-12 22:16:23 +000081AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/neural/test.in)
Misha Brukman3e910fe2003-11-12 19:39:10 +000082AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/Makefile)
Misha Brukman960624b2003-11-12 22:16:23 +000083AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/pcompress2/test.in)
Misha Brukman3e910fe2003-11-12 19:39:10 +000084AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/pifft/Makefile)
Misha Brukman960624b2003-11-12 22:16:23 +000085AC_CONFIG_MAKEFILE(test/Programs/MultiSource/Benchmarks/FreeBench/pifft/test.in)
John Criswell2d533082003-09-06 14:46:19 +000086AC_CONFIG_MAKEFILE(test/Programs/SingleSource/Makefile)
87AC_CONFIG_MAKEFILE(test/Programs/SingleSource/Makefile.singlesrc)
Alkis Evlogimenos271143f2004-02-26 04:14:10 +000088AC_CONFIG_MAKEFILE(test/Programs/SingleSource/UnitTests/SetjmpLongjmp/Makefile)
John Criswell2d533082003-09-06 14:46:19 +000089AC_CONFIG_MAKEFILE(tools/Makefile)
Chris Lattner5c866e12003-10-06 02:09:25 +000090AC_CONFIG_MAKEFILE(utils/Makefile)
John Criswell2d533082003-09-06 14:46:19 +000091AC_CONFIG_MAKEFILE(projects/Makefile)
John Criswell4ea390d2003-07-22 19:13:20 +000092
Brian Gaeke26be9c52004-01-13 06:43:16 +000093dnl Find the install program (needs to be done before canonical stuff)
John Criswell4ea390d2003-07-22 19:13:20 +000094AC_PROG_INSTALL
95
96dnl Check which host for which we're compiling. This will tell us which LLVM
97dnl compiler will be used for compiling SSA into object code.
98AC_CANONICAL_TARGET
99
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000100dnl Set the "OS" Makefile variable based on the system we are building on.
John Criswell4ea390d2003-07-22 19:13:20 +0000101dnl We will use the build machine information to set some variables.
John Criswell4ea390d2003-07-22 19:13:20 +0000102case $build in
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000103 *-*-linux*)
104 AC_SUBST(OS,[Linux])
Brian Gaeke908647f2003-11-16 18:37:46 +0000105 if test -d /home/vadve/lattner/local/x86/llvm-gcc
106 then
107 AC_SUBST(LLVMGCCDIR,[/home/vadve/lattner/local/x86/llvm-gcc/])
108 fi
John Criswell4ea390d2003-07-22 19:13:20 +0000109 ;;
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000110 *-*-solaris*)
111 AC_SUBST(OS,[SunOS])
Brian Gaeke908647f2003-11-16 18:37:46 +0000112 if test -d /home/vadve/lattner/local/sparc/llvm-gcc
113 then
114 AC_SUBST(LLVMGCCDIR,[/home/vadve/lattner/local/sparc/llvm-gcc/])
115 fi
John Criswell4ea390d2003-07-22 19:13:20 +0000116 ;;
Chris Lattner44afcb72004-06-02 23:32:17 +0000117 *-*-cygwin*)
118 AC_SUBST(OS,[Cygwin])
119 ;;
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000120 *-*-darwin*)
121 AC_SUBST(OS,[Darwin])
122 ;;
Misha Brukman7b42a752004-06-22 15:32:08 +0000123 *-*-aix*)
124 AC_SUBST(OS,[AIX])
125 ;;
John Criswell4ea390d2003-07-22 19:13:20 +0000126 *) AC_SUBST(OS,[Unknown])
127 ;;
128esac
129
John Criswell4ea390d2003-07-22 19:13:20 +0000130dnl If we are targetting a Sparc machine running Solaris, pretend that it is
131dnl V9, since that is all that we support at the moment, and autoconf will only
132dnl tell us we're a sparc.
John Criswell4ea390d2003-07-22 19:13:20 +0000133case $target in
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000134 sparc*-*-solaris*) AC_SUBST(target,[[sparcv9-sun-solaris2.8]])
135 ;;
John Criswell4ea390d2003-07-22 19:13:20 +0000136esac
137
John Criswell4ea390d2003-07-22 19:13:20 +0000138dnl Determine what our target architecture is and configure accordingly.
139dnl This will allow Makefiles to make a distinction between the hardware and
140dnl the OS.
John Criswell4ea390d2003-07-22 19:13:20 +0000141case $target in
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000142 i*86-*) AC_SUBST(ARCH,[x86])
John Criswell4ea390d2003-07-22 19:13:20 +0000143 ;;
Brian Gaeke3e66e8b2003-11-17 00:30:48 +0000144 sparc*-*) AC_SUBST(ARCH,[Sparc])
145 ;;
146 powerpc*-*) AC_SUBST(ARCH,[PowerPC])
147 ;;
148 *) AC_SUBST(ARCH,[Unknown])
John Criswell4ea390d2003-07-22 19:13:20 +0000149 ;;
150esac
151
John Criswell4ea390d2003-07-22 19:13:20 +0000152dnl Check for compilation tools
153AC_PROG_CXX
154AC_PROG_CC(gcc)
155AC_PROG_CPP
156
157dnl Ensure that compilation tools are GCC; we use GCC specific extensions
158if test "$GCC" != "yes"
159then
160 AC_MSG_ERROR([gcc required but not found])
161fi
John Criswell4ea390d2003-07-22 19:13:20 +0000162if test "$GXX" != "yes"
163then
164 AC_MSG_ERROR([g++ required but not found])
165fi
166
John Criswellde00db22003-08-25 16:49:54 +0000167dnl Verify that GCC is version 3.0 or higher
168gccmajor=`$CC --version | head -n 1 | awk '{print $NF;}' | cut -d. -f1`
169if test "$gccmajor" -lt "3"
170then
Brian Gaeke26be9c52004-01-13 06:43:16 +0000171 AC_MSG_ERROR([gcc 3.x required, but you have a lower version])
John Criswellde00db22003-08-25 16:49:54 +0000172fi
173
Brian Gaeke26be9c52004-01-13 06:43:16 +0000174dnl Check for GNU Make. We use its extensions too, so don't build without it
John Criswell4ea390d2003-07-22 19:13:20 +0000175CHECK_GNU_MAKE
176if test -z "$_cv_gnu_make_command"
177then
178 AC_MSG_ERROR([GNU Make required but not found])
179fi
180
Brian Gaeke26be9c52004-01-13 06:43:16 +0000181dnl Checks for other tools
John Criswell4ea390d2003-07-22 19:13:20 +0000182AC_PROG_FLEX
183AC_PROG_BISON
John Criswell4ea390d2003-07-22 19:13:20 +0000184AC_PROG_LIBTOOL
185
Brian Gaeke26be9c52004-01-13 06:43:16 +0000186dnl Checks for tools we can get away with not having:
187AC_PATH_PROG(DOT,[dot],[true dot])
188AC_PATH_PROG(ETAGS,[etags],[true etags])
Brian Gaeke027b7462004-01-22 21:55:15 +0000189dnl Check if we know how to tell etags we are using C++:
190etags_version=`$ETAGS --version 2>&1`
191case "$etags_version" in
192 *[Ee]xuberant*) ETAGSFLAGS="--language-force=c++" ;;
193 *GNU\ Emacs*) ETAGSFLAGS="-l c++" ;;
194 *) ETAGSFLAGS="" ;;
195esac
196AC_SUBST(ETAGSFLAGS,$ETAGSFLAGS)
Brian Gaeke26be9c52004-01-13 06:43:16 +0000197AC_PATH_PROG(PYTHON,[python],[true python])
198if test "$PYTHON" = "false"
John Criswell39827c82003-09-23 15:28:52 +0000199then
Brian Gaeke26be9c52004-01-13 06:43:16 +0000200 AC_MSG_WARN([Python is required for the test suite, but it was not found])
John Criswell39827c82003-09-23 15:28:52 +0000201fi
Brian Gaeke26be9c52004-01-13 06:43:16 +0000202AC_PATH_PROG(QMTEST,[qmtest],[true qmtest])
203if test "$QMTEST" = "false"
John Criswell39827c82003-09-23 15:28:52 +0000204then
Brian Gaeke26be9c52004-01-13 06:43:16 +0000205 AC_MSG_WARN([QMTest is required for the test suite, but it was not found])
John Criswell39827c82003-09-23 15:28:52 +0000206fi
John Criswellde00db22003-08-25 16:49:54 +0000207
208dnl Verify that the version of python available is high enough for qmtest
209pyversion=`$PYTHON -V 2>&1 | cut -d\ -f2`
210pymajor=`echo $pyversion | cut -d. -f1`
211pyminor=`echo $pyversion | cut -d. -f2`
212
213if test "$pymajor" -ge "2"
214then
215 if test "$pymajor" -eq "2"
216 then
217 if test "$pyminor" -lt "2"
218 then
Brian Gaeke26be9c52004-01-13 06:43:16 +0000219 AC_MSG_WARN([QMTest requires Python 2.2 or later])
John Criswellde00db22003-08-25 16:49:54 +0000220 fi
221 fi
222else
Brian Gaeke26be9c52004-01-13 06:43:16 +0000223 AC_MSG_WARN([QMTest requires Python 2.2 or later])
John Criswellde00db22003-08-25 16:49:54 +0000224fi
John Criswell4ea390d2003-07-22 19:13:20 +0000225
226dnl Verify that the source directory is valid
227AC_CONFIG_SRCDIR(["Makefile.config.in"])
228
Brian Gaeke26be9c52004-01-13 06:43:16 +0000229dnl Checks for libraries:
John Criswell4ea390d2003-07-22 19:13:20 +0000230dnl libelf is for sparc only; we can ignore it if we don't have it
231AC_CHECK_LIB(elf, elf_begin)
232
Brian Gaeke4c423782003-10-07 05:03:36 +0000233dnl dlopen() is required for plugin support.
Brian Gaekea25d7ca2003-10-08 21:44:07 +0000234AC_SEARCH_LIBS(dlopen,dl,AC_DEFINE([HAVE_DLOPEN],[1],[Define if dlopen() is available on this platform.]),AC_MSG_WARN([dlopen() not found - disabling plugin support]))
John Criswell4ea390d2003-07-22 19:13:20 +0000235
236dnl mallinfo is optional; the code can compile (minus features) without it
Brian Gaekea25d7ca2003-10-08 21:44:07 +0000237AC_SEARCH_LIBS(mallinfo,malloc,AC_DEFINE([HAVE_MALLINFO],[1],[Define if mallinfo() is available on this platform.]))
John Criswell4ea390d2003-07-22 19:13:20 +0000238
Brian Gaeke5f268f72003-12-05 19:29:01 +0000239dnl pthread locking functions are optional - but llvm will not be thread-safe
240dnl without locks.
Brian Gaeke2e3bdba2004-02-23 21:30:36 +0000241AC_SEARCH_LIBS(pthread_mutex_lock,pthread,HAVE_PTHREAD_MUTEX_LOCK=1,HAVE_PTHREAD_MUTEX_LOCK=0)
242AC_SUBST(HAVE_PTHREAD_MUTEX_LOCK)
Brian Gaeke5f268f72003-12-05 19:29:01 +0000243
Brian Gaeke26be9c52004-01-13 06:43:16 +0000244dnl Checks for header files.
245dnl We don't check for ancient stuff or things that are guaranteed to be there
246dnl by the C++ standard. We always use the <cfoo> versions of <foo.h> C headers.
John Criswell4ea390d2003-07-22 19:13:20 +0000247AC_HEADER_STDC
248AC_HEADER_SYS_WAIT
249
Brian Gaeke26be9c52004-01-13 06:43:16 +0000250dnl Checks for POSIX and other various system-specific header files
John Criswellb2815e02004-05-27 20:40:39 +0000251AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h malloc.h sys/mman.h sys/resource.h dlfcn.h link.h execinfo.h windows.h)
John Criswell4ea390d2003-07-22 19:13:20 +0000252
Brian Gaeke1133eaf2004-02-23 22:07:01 +0000253dnl Check for things that need to be included in public headers, and so
254dnl for which we may not have access to a HAVE_* preprocessor #define.
255dnl (primarily used in DataTypes.h)
256AC_CHECK_HEADER([sys/types.h],
257 [INCLUDE_SYS_TYPES_H='#include <sys/types.h>'],
258 [INCLUDE_SYS_TYPES_H=''])
259AC_SUBST(INCLUDE_SYS_TYPES_H)
260AC_CHECK_HEADER([inttypes.h],
261 [INCLUDE_INTTYPES_H='#include <inttypes.h>'],
262 [INCLUDE_INTTYPES_H=''])
263AC_SUBST(INCLUDE_INTTYPES_H)
John Criswell7ed43ad2004-07-19 16:12:29 +0000264AC_CHECK_HEADER([stdint.h],
265 [INCLUDE_STDINT_H='#include <stdint.h>'],
266 [INCLUDE_STDINT_H=''])
267AC_SUBST(INCLUDE_STDINT_H)
268
Brian Gaeke1133eaf2004-02-23 22:07:01 +0000269
John Criswell4ea390d2003-07-22 19:13:20 +0000270dnl Check for types
271AC_TYPE_PID_T
272AC_TYPE_SIZE_T
273AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found]))
274AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not found]))
275AC_HEADER_TIME
276AC_STRUCT_TM
277
John Criswella0137d32003-10-13 16:22:01 +0000278dnl Check for various C features
279AC_C_PRINTF_A
280
John Criswell0021c312004-02-13 21:57:29 +0000281dnl Check for the endianness of the target
282AC_C_BIGENDIAN(AC_SUBST([ENDIAN],[big]),AC_SUBST([ENDIAN],[little]))
283
John Criswell4ea390d2003-07-22 19:13:20 +0000284dnl Check for C++ extensions
Brian Gaeke278a4ac2003-11-10 03:06:09 +0000285AC_CXX_HAVE_HASH_MAP
286AC_CXX_HAVE_HASH_SET
John Criswell4ea390d2003-07-22 19:13:20 +0000287AC_CXX_HAVE_STD_ITERATOR
288AC_CXX_HAVE_BI_ITERATOR
289AC_CXX_HAVE_FWD_ITERATOR
290
Brian Gaeke8828eb52004-06-22 23:43:04 +0000291AC_FUNC_ISNAN
Brian Gaeke3869b272004-07-21 03:14:51 +0000292AC_FUNC_ISINF
Brian Gaeke8828eb52004-06-22 23:43:04 +0000293
Brian Gaeke26be9c52004-01-13 06:43:16 +0000294dnl Checks for library functions.
John Criswell4ea390d2003-07-22 19:13:20 +0000295AC_FUNC_ALLOCA
John Criswell4ea390d2003-07-22 19:13:20 +0000296AC_FUNC_MMAP
Brian Gaeke26be9c52004-01-13 06:43:16 +0000297if test "$ac_cv_func_mmap_fixed_mapped" = "no"
298then
John Criswellf3ecf3a2004-05-27 00:57:50 +0000299 AC_MSG_WARN([mmap() required but not found])
Brian Gaeke26be9c52004-01-13 06:43:16 +0000300fi
John Criswell4ea390d2003-07-22 19:13:20 +0000301AC_FUNC_MMAP_FILE
Brian Gaeke26be9c52004-01-13 06:43:16 +0000302if test "$ac_cv_func_mmap_file" = "no"
John Criswell4ea390d2003-07-22 19:13:20 +0000303then
John Criswellf3ecf3a2004-05-27 00:57:50 +0000304 AC_MSG_WARN([mmap() of files required but not found])
John Criswell4ea390d2003-07-22 19:13:20 +0000305fi
306AC_HEADER_MMAP_ANONYMOUS
307AC_TYPE_SIGNAL
Brian Gaeke8828eb52004-06-22 23:43:04 +0000308AC_CHECK_FUNCS(getcwd gettimeofday strdup strtoq strtoll backtrace isatty mkstemp getrusage)
John Criswell4ea390d2003-07-22 19:13:20 +0000309AC_CHECK_FUNC(mprotect,,AC_MSG_ERROR([Function mprotect() required but not found]))
310
John Criswellcb7a1eb2003-11-17 19:46:02 +0000311dnl Determine if the linker supports the -R option.
Brian Gaeke26be9c52004-01-13 06:43:16 +0000312AC_LINK_USE_R
John Criswellcb7a1eb2003-11-17 19:46:02 +0000313
Brian Gaeke26be9c52004-01-13 06:43:16 +0000314dnl --enable/--with command-line options:
315dnl Check whether they want to do an optimized build:
John Criswell79a8f092003-07-22 20:59:52 +0000316AC_ARG_ENABLE(optimized,AC_HELP_STRING([--enable-optimized],[Compile with optimizations enabled (default is NO)]),,enableval=no)
317if test ${enableval} = "no"
318then
319 AC_SUBST(ENABLE_OPTIMIZED,[[]])
320else
321 AC_SUBST(ENABLE_OPTIMIZED,[[ENABLE_OPTIMIZED=1]])
322fi
323
Brian Gaekedbaf9812004-04-16 17:13:33 +0000324AC_DEFUN(EXTERNAL_BENCHMARK,
325[m4_define([allcapsname],translit($1,a-z,A-Z))
326 AC_ARG_ENABLE($1,
327 AC_HELP_STRING([--enable-$1=ARG],
328 [Use $1 as a benchmark (srcs in DIR)]),
329 checkresult=$enableval,
330 checkresult=auto)
331AC_MSG_CHECKING([for $1 benchmark sources])
332case "$checkresult" in
Chris Lattnerac847282004-04-14 16:32:34 +0000333auto|yes)
Brian Gaekedbaf9812004-04-16 17:13:33 +0000334 defaultdir=$2
335 if test -d "$defaultdir"
John Criswell0538d422004-02-20 22:30:22 +0000336 then
Brian Gaekedbaf9812004-04-16 17:13:33 +0000337 AC_SUBST(allcapsname()[_ROOT],[$defaultdir])
338 AC_SUBST([USE_]allcapsname(),[USE_]allcapsname()=1)
339 checkresult="yes, found in $defaultdir"
Brian Gaekebc7b85f2004-04-13 19:02:51 +0000340 else
Brian Gaekedbaf9812004-04-16 17:13:33 +0000341 checkresult=no
Brian Gaekebc7b85f2004-04-13 19:02:51 +0000342 fi
343 ;;
Chris Lattnerac847282004-04-14 16:32:34 +0000344no)
Brian Gaekedbaf9812004-04-16 17:13:33 +0000345 AC_SUBST(allcapsname()[_ROOT],[])
346 AC_SUBST([USE_]allcapsname(),[])
347 checkresult=no
Brian Gaekebc7b85f2004-04-13 19:02:51 +0000348 ;;
Brian Gaekedbaf9812004-04-16 17:13:33 +0000349*) if test -d "$checkresult"
Brian Gaekebc7b85f2004-04-13 19:02:51 +0000350 then
Brian Gaekedbaf9812004-04-16 17:13:33 +0000351 AC_SUBST(allcapsname()[_ROOT],"$checkresult")
352 AC_SUBST([USE_]allcapsname(),[USE_]allcapsname()=1)
353 checkresult="yes, in $checkresult"
Brian Gaekebc7b85f2004-04-13 19:02:51 +0000354 else
Brian Gaekedbaf9812004-04-16 17:13:33 +0000355 AC_SUBST(allcapsname()[_ROOT],[])
356 AC_SUBST([USE_]allcapsname(),[])
357 checkresult="no, not found in $checkresult"
Brian Gaekebc7b85f2004-04-13 19:02:51 +0000358 fi
359 ;;
360esac
Brian Gaekedbaf9812004-04-16 17:13:33 +0000361AC_MSG_RESULT($checkresult)
362m4_undefine([allcapsname])
363])
364
365EXTERNAL_BENCHMARK(spec95,/home/vadve/shared/benchmarks/spec95/benchspec)
366EXTERNAL_BENCHMARK(spec2000,/home/vadve/shared/benchmarks/speccpu2000/benchspec)
367EXTERNAL_BENCHMARK(povray,/home/vadve/shared/benchmarks/povray31)
John Criswell0538d422004-02-20 22:30:22 +0000368
John Criswell79a8f092003-07-22 20:59:52 +0000369dnl Precompiled Bytecode Option
370AC_ARG_ENABLE(precompiled_bytecode,AC_HELP_STRING([--enable-precompiled_bytecode],[Use pre-compiled bytecode (default is NO)]),,enableval=no)
371if test ${enableval} = "no"
372then
373 AC_SUBST(UPB,[[]])
374else
375 AC_SUBST(UPB,[[USE_PRECOMPILED_BYTECODE=1]])
376fi
377
John Criswell79a8f092003-07-22 20:59:52 +0000378dnl LLC Diff Option
379AC_ARG_ENABLE(llc_diffs,AC_HELP_STRING([--enable-llc_diffs],[Enable LLC Diffs when testing (default is YES)]),,enableval=yes)
380if test ${enableval} = "no"
381then
382 AC_SUBST(DISABLE_LLC_DIFFS,[DISABLE_LLC_DIFFS:=1])
383else
384 AC_SUBST(DISABLE_LLC_DIFFS,[[]])
385fi
386
387dnl JIT Option
John Criswellc78022e2003-07-29 19:11:58 +0000388AC_ARG_ENABLE(jit,AC_HELP_STRING([--enable-jit],[Enable Just In Time Compiling (default is YES)]),,enableval=default)
John Criswell79a8f092003-07-22 20:59:52 +0000389if test ${enableval} = "no"
390then
391 AC_SUBST(JIT,[[]])
392else
John Criswellc78022e2003-07-29 19:11:58 +0000393 case $target in
394 *i*86*)
395 AC_SUBST(JIT,[[TARGET_HAS_JIT=1]])
396 ;;
397 *sparc*)
398 AC_SUBST(JIT,[[TARGET_HAS_JIT=1]])
399 ;;
400 *)
401 AC_SUBST(JIT,[[]])
402 ;;
403 esac
John Criswell79a8f092003-07-22 20:59:52 +0000404fi
John Criswell4ea390d2003-07-22 19:13:20 +0000405
Brian Gaeke26be9c52004-01-13 06:43:16 +0000406dnl Find the LLVM GCC-based C/C++ front end
John Criswell4ea390d2003-07-22 19:13:20 +0000407AC_ARG_WITH(llvmgccdir,AC_HELP_STRING([--with-llvmgccdir],[Location of LLVM GCC front-end]),AC_SUBST(LLVMGCCDIR,[$withval]))
Brian Gaeke908647f2003-11-16 18:37:46 +0000408AC_MSG_CHECKING([for llvm-gcc])
409LLVM_GCC_CHECK=no
410if test -d "$LLVMGCCDIR"
411then
412 if test -x "$LLVMGCCDIR/bin/gcc"
413 then
414 LLVM_GCC_CHECK="$LLVMGCCDIR/bin/gcc"
415 fi
416fi
417llvmgccwarn=no
418AC_MSG_RESULT($LLVM_GCC_CHECK)
419if test "$LLVM_GCC_CHECK" = "no"
420then
421 llvmgccwarn=yes
422fi
Brian Gaeke908647f2003-11-16 18:37:46 +0000423AC_MSG_CHECKING([whether llvm-gcc is sane])
424LLVM_GCC_SANE=no
425if test -x "$LLVM_GCC_CHECK"
426then
427 cp /dev/null conftest.c
428 "$LLVM_GCC_CHECK" -S -o - conftest.c | grep implementation > /dev/null 2>&1
429 if test $? -eq 0
430 then
431 LLVM_GCC_SANE=yes
432 fi
433 rm conftest.c
Brian Gaeked05e39d2004-01-16 21:31:22 +0000434 llvmcc1path=`"$LLVM_GCC_CHECK" --print-prog-name=cc1`
435 AC_SUBST(LLVMCC1,$llvmcc1path)
436 llvmcc1pluspath=`"$LLVM_GCC_CHECK" --print-prog-name=cc1plus`
437 AC_SUBST(LLVMCC1PLUS,$llvmcc1pluspath)
Brian Gaeke908647f2003-11-16 18:37:46 +0000438fi
439AC_MSG_RESULT($LLVM_GCC_SANE)
440if test "$LLVM_GCC_SANE" = "no"
441then
442 llvmgccwarn=yes
443fi
444
John Criswellc78022e2003-07-29 19:11:58 +0000445dnl Location of the bytecode repository
John Criswell4ea390d2003-07-22 19:13:20 +0000446AC_ARG_WITH(bcrepos,AC_HELP_STRING([--with-bcrepos],[Location of Bytecode Repository]),AC_SUBST(BCR,[$withval]),AC_SUBST(BCR,[/home/vadve/lattner/LLVMPrograms]))
John Criswellc78022e2003-07-29 19:11:58 +0000447
448dnl Location of PAPI
Chris Lattner1b9ddd52003-08-14 18:59:53 +0000449AC_ARG_WITH(papi,AC_HELP_STRING([--with-papi],[Location of PAPI]),AC_SUBST(PAPIDIR,[$withval]),AC_SUBST(PAPIDIR,[/home/vadve/shared/Sparc/papi-2.3.4.1]))
John Criswellc78022e2003-07-29 19:11:58 +0000450
Brian Gaekecea9a602004-01-21 19:38:56 +0000451dnl Get libtool's idea of what the shared library suffix is.
452dnl (This is a hack; it relies on undocumented behavior.)
453AC_MSG_CHECKING([for shared library suffix])
454eval "SHLIBEXT=$shrext"
455AC_MSG_RESULT($SHLIBEXT)
456dnl Propagate it to the Makefiles and config.h (for gccld & bugpoint).
457AC_SUBST(SHLIBEXT,$SHLIBEXT)
458AC_DEFINE_UNQUOTED(SHLIBEXT,"$SHLIBEXT",
459 [Extension that shared libraries have, e.g., ".so".])
460
Reid Spencera91929d2004-08-20 09:03:12 +0000461# Translate the various configuration directories and other basic
462# information into substitutions that will end up in config.h.in so
463# that these configured values can be hard-wired into a program.
464eval LLVM_PREFIX="${prefix}";
465eval LLVM_BINDIR="${prefix}/bin";
466eval LLVM_LIBDIR="${prefix}/lib";
467eval LLVM_DATADIR="${prefix}/data";
468eval LLVM_DOCSDIR="${prefix}/docs";
469eval LLVM_ETCDIR="${prefix}/etc";
470eval LLVM_INCLUDEDIR="${prefix}/include";
471eval LLVM_INFODIR="${prefix}/info";
472eval LLVM_MANDIR="${prefix}/man";
473LLVM_CONFIGTIME=`date`
474AC_SUBST(LLVM_PREFIX)
475AC_SUBST(LLVM_BINDIR)
476AC_SUBST(LLVM_LIBDIR)
477AC_SUBST(LLVM_DATADIR)
478AC_SUBST(LLVM_DOCSDIR)
479AC_SUBST(LLVM_ETCDIR)
480AC_SUBST(LLVM_INCLUDEDIR)
481AC_SUBST(LLVM_INFODIR)
482AC_SUBST(LLVM_MANDIR)
483AC_SUBST(LLVM_CONFIGTIME)
484AC_DEFINE_UNQUOTED(LLVM_PREFIX,"$LLVM_PREFIX", [Installation prefix directory])
485AC_DEFINE_UNQUOTED(LLVM_BINDIR, "$LLVM_BINDIR", [Installation directory for binary executables])
486AC_DEFINE_UNQUOTED(LLVM_LIBDIR, "$LLVM_LIBDIR", [Installation directory for libraries])
487AC_DEFINE_UNQUOTED(LLVM_DATADIR, "$LLVM_DATADIR", [Installation directory for data files])
488AC_DEFINE_UNQUOTED(LLVM_DATADIR, "$LLVM_DOCSDIR", [Installation directory for documentation])
Reid Spencer19d96ee2004-08-20 09:08:57 +0000489AC_DEFINE_UNQUOTED(LLVM_ETCDIR, "$LLVM_ETCDIR", [Installation directory for config files])
Reid Spencera91929d2004-08-20 09:03:12 +0000490AC_DEFINE_UNQUOTED(LLVM_INCLUDEDIR, "$LLVM_INCLUDEDIR", [Installation directory for include files])
491AC_DEFINE_UNQUOTED(LLVM_INFODIR, "$LLVM_INFODIR", [Installation directory for .info files])
492AC_DEFINE_UNQUOTED(LLVM_MANDIR, "$LLVM_MANDIR", [Installation directory for man pages])
493AC_DEFINE_UNQUOTED(LLVM_CONFIGTIME, "$LLVM_CONFIGTIME", [Time at which LLVM was configured])
494
Brian Gaeke26be9c52004-01-13 06:43:16 +0000495dnl Create the output files
John Criswelldc76e322004-07-23 15:40:57 +0000496AC_OUTPUT()
Brian Gaeke908647f2003-11-16 18:37:46 +0000497
Brian Gaeke26be9c52004-01-13 06:43:16 +0000498dnl Warn loudly if llvm-gcc was not obviously working
Brian Gaeke908647f2003-11-16 18:37:46 +0000499if test $llvmgccwarn = yes
500then
501 AC_MSG_WARN([***** llvm C/C++ front end was not found, or does not])
502 AC_MSG_WARN([***** appear to be working.])
503 AC_MSG_WARN([***** ])
504 AC_MSG_WARN([***** Please check configure's --with-llvmgccdir option.])
505 AC_MSG_WARN([***** Runtime libraries (in llvm/runtime) will not be built,])
506 AC_MSG_WARN([***** but you should be able to build the llvm tools.])
507fi
Brian Gaekecea9a602004-01-21 19:38:56 +0000508