(1) Pass 'VAR=string' arguments to gmake
[oota-llvm.git] / configure.ac
1 dnl Autoconf requirements
2 dnl AC_INIT(package, version, bug-report-address)
3 dnl information on the package
4 dnl checks for programs
5 dnl checks for libraries
6 dnl checks for header files
7 dnl checks for types
8 dnl checks for structures
9 dnl checks for compiler characteristics
10 dnl checks for library functions
11 dnl checks for system services
12 dnl AC_CONFIG_FILES([file...])
13 dnl AC_OUTPUT
14
15 dnl **************************************************************************
16 dnl * Initialize
17 dnl **************************************************************************
18 AC_INIT([[[LLVM]]],[[[1.0]]],[llvmbugs@cs.uiuc.edu])
19
20 dnl * Configure a header file
21 AC_CONFIG_HEADERS(include/Config/config.h)
22
23 dnl **************************************************************************
24 dnl * Determine which system we are building on
25 dnl **************************************************************************
26
27 dnl Check the install program (needs to be done before canonical stuff)
28 AC_PROG_INSTALL
29
30 dnl Check which host for which we're compiling.  This will tell us which LLVM
31 dnl compiler will be used for compiling SSA into object code.
32 AC_CANONICAL_TARGET
33
34 dnl
35 dnl Now, for some of our own magic:
36 dnl We will use the build machine information to set some variables.
37 dnl
38 case $build in
39         *i*86*)  AC_SUBST(OS,[Linux])
40                  AC_SUBST(DISABLE_LLC_DIFFS,[[DISABLE_LLC_DIFFS:=1]])
41                  AC_SUBST(LLVMGCCDIR,[/home/vadve/lattner/local/x86/llvm-gcc/])
42                  ;;
43
44         *sparc*) AC_SUBST(OS,[SunOS])
45                  AC_SUBST(LLVMGCCDIR,[/home/vadve/lattner/local/sparc/llvm-gcc/])
46                  ;;
47
48         *)       AC_SUBST(OS,[Unknown])
49                  ;;
50 esac
51
52 dnl
53 dnl If we are targetting a Sparc machine running Solaris, pretend that it is
54 dnl V9, since that is all that we support at the moment, and autoconf will only
55 dnl tell us we're a sparc.
56 dnl
57 case $target in
58         *sparc*solaris*)  AC_SUBST(target,[[sparcv9-sun-solaris2.8]])
59                           ;;
60 esac
61
62 dnl
63 dnl Determine what our target architecture is and configure accordingly.
64 dnl This will allow Makefiles to make a distinction between the hardware and
65 dnl the OS.
66 dnl
67 case $target in
68         *i*86*)           AC_SUBST(ARCH,[x86])
69                           ;;
70         *sparc*solaris*)  AC_SUBST(ARCH,[Sparc])
71                           ;;
72 esac
73
74 dnl **************************************************************************
75 dnl * Check for programs.
76 dnl **************************************************************************
77
78 dnl Check for compilation tools
79 AC_PROG_CXX
80 AC_PROG_CC(gcc)
81 AC_PROG_CPP
82
83 dnl Ensure that compilation tools are GCC; we use GCC specific extensions
84 if test "$GCC" != "yes"
85 then
86         AC_MSG_ERROR([gcc required but not found])
87 fi
88
89 if test "$GXX" != "yes"
90 then
91         AC_MSG_ERROR([g++ required but not found])
92 fi
93
94 dnl Check for GNU Make.  We use its extensions to, so don't build without it
95 CHECK_GNU_MAKE
96 if test -z "$_cv_gnu_make_command"
97 then
98         AC_MSG_ERROR([GNU Make required but not found])
99 fi
100
101 dnl Check for compiler-compiler tools (reminds me of Little Caesar's Pizza)
102 AC_PROG_FLEX
103 AC_PROG_BISON
104
105 dnl Check for libtool
106 AC_PROG_LIBTOOL
107
108 dnl Check for our special programs
109 AC_PATH_PROG(AR,[ar])
110 AC_PATH_PROG(SED,[sed])
111 AC_PATH_PROG(RM,[rm])
112 AC_PATH_PROG(ECHO,[echo])
113 AC_PATH_PROG(MKDIR,[mkdir])
114 AC_PATH_PROG(DATE,[date])
115 AC_PATH_PROG(MV,[mv])
116 AC_PATH_PROG(DOT,[dot])
117 AC_PATH_PROG(ETAGS,[etags])
118 AC_PATH_PROG(PURIFY,[purify])
119
120 dnl Verify that the source directory is valid
121 AC_CONFIG_SRCDIR(["Makefile.config.in"])
122
123 dnl **************************************************************************
124 dnl * Check for libraries.
125 dnl **************************************************************************
126
127 dnl libelf is for sparc only; we can ignore it if we don't have it
128 AC_CHECK_LIB(elf, elf_begin)
129
130 dnl dlopen() is required.  If we don't find it, quit.
131 AC_SEARCH_LIBS(dlopen,dl,,AC_MSG_ERROR([dlopen() required but not found]))
132
133 dnl mallinfo is optional; the code can compile (minus features) without it
134 AC_SEARCH_LIBS(mallinfo,malloc,AC_DEFINE([HAVE_MALLINFO],[1]))
135
136 dnl
137 dnl The math libraries are used by the test code, but not by the actual LLVM
138 dnl code.
139 dnl
140 dnl AC_CHECK_LIB(m, cos)
141
142 dnl **************************************************************************
143 dnl * Checks for header files.
144 dnl *   Chances are, if the standard C or POSIX type header files are missing,
145 dnl *   then LLVM just isn't going to compile.  However, it is possible that
146 dnl *   the necessary functions/macros will be included from other
147 dnl *   (non-standard and non-obvious) header files.
148 dnl *
149 dnl *   So, we'll be gracious, give it a chance, and try to go on without
150 dnl *   them.
151 dnl **************************************************************************
152 AC_HEADER_STDC
153 AC_HEADER_SYS_WAIT
154
155 dnl Check for ANSI C/POSIX header files
156 AC_CHECK_HEADERS(assert.h fcntl.h limits.h sys/time.h unistd.h errno.h signal.h math.h)
157
158 dnl Check for system specific header files
159 AC_CHECK_HEADERS(malloc.h strings.h sys/mman.h sys/resource.h)
160
161 dnl Check for header files associated with dlopen and friends
162 AC_CHECK_HEADERS(dlfcn.h link.h)
163
164 dnl **************************************************************************
165 dnl * Checks for typedefs, structures, and compiler characteristics.
166 dnl **************************************************************************
167
168 dnl Check for const and inline keywords
169 AC_C_CONST
170 AC_C_INLINE
171
172 dnl Check for machine endian-ness
173 AC_C_BIGENDIAN(AC_DEFINE([ENDIAN_BIG]),AC_DEFINE(ENDIAN_LITTLE))
174
175 dnl Check for types
176 AC_TYPE_PID_T
177 AC_TYPE_SIZE_T
178 AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found]))
179 AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not found]))
180 AC_HEADER_TIME
181 AC_STRUCT_TM
182
183 dnl Check for C++ extensions
184 AC_CXX_HAVE_EXT_HASH_MAP
185 AC_CXX_HAVE_EXT_HASH_SET
186 AC_CXX_HAVE_EXT_SLIST
187 AC_CXX_HAVE_STD_ITERATOR
188 AC_CXX_HAVE_BI_ITERATOR
189 AC_CXX_HAVE_FWD_ITERATOR
190
191 dnl **************************************************************************
192 dnl * Checks for library functions.
193 dnl **************************************************************************
194 AC_FUNC_ALLOCA
195 AC_PROG_GCC_TRADITIONAL
196 AC_FUNC_MEMCMP
197 AC_FUNC_MMAP
198 AC_FUNC_MMAP_FILE
199 if test ${ac_cv_func_mmap_file} = "no"
200 then
201         AC_MSG_ERROR([mmap() of files required but not found])
202 fi
203 AC_HEADER_MMAP_ANONYMOUS
204 AC_TYPE_SIGNAL
205 AC_CHECK_FUNCS(getcwd gettimeofday strcspn strdup strerror strspn strstr strtod strtol)
206
207 dnl
208 dnl Need to check mmap for MAP_PRIVATE, MAP_ANONYMOUS, MAP_ANON, MAP_FIXED
209 dnl MAP_FIXED is only needed for Sparc
210 dnl MAP_ANON is used for Sparc and BSD
211 dnl Everyone should have MAP_PRIVATE
212 dnl
213
214 dnl Check for certain functions (even if we've already found them) so that we
215 dnl can quit with an error if they are unavailable.
216 dnl
217 dnl As the code is made more portable (i.e. less reliant on these functions,
218 dnl these checks should go away.
219 AC_CHECK_FUNC(mmap,,AC_MSG_ERROR([Function mmap() required but not found]))
220 AC_CHECK_FUNC(mprotect,,AC_MSG_ERROR([Function mprotect() required but not found]))
221
222 dnl **************************************************************************
223 dnl * Enable various compile-time options
224 dnl **************************************************************************
225 AC_ARG_ENABLE(purify,AC_HELP_STRING([--enable-purify],[Compile with purify (default is NO)]), AC_SUBST(ENABLE_PURIFY,[[ENABLE_PURIFY=1]]), AC_SUBST(ENABLE_PURIFY,[[]]))
226 AC_ARG_ENABLE(optimized,AC_HELP_STRING([--enable-optimized],[Compile with optimizations enabled (default is NO)]), AC_SUBST(ENABLE_OPTIMIZED,[[ENABLE_OPTIMIZED=1]]), AC_SUBST(ENABLE_OPTIMIZED,[[]]))
227 AC_ARG_ENABLE(spec,AC_HELP_STRING([--enable-spec],[Compile SPEC benchmarks (default is NO)]), AC_SUBST(USE_SPEC,[[USE_SPEC=1]]), AC_SUBST(USE_SPEC,[[]]))
228 AC_ARG_ENABLE(precompiled_bytecode,AC_HELP_STRING([--enable-precompiled_bytecode],[Use pre-compiled bytecode (default is NO)]), AC_SUBST(UPB,[[USE_PRECOMPILED_BYTECODE=1]]), AC_SUBST(UPB,[[]]))
229 case $build in
230         *i*86*)  AC_ARG_ENABLE(jit,AC_HELP_STRING([--enable-jit],[Enable Just In Time Compiling (default is NO)]), AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]), AC_SUBST(JIT,[[]]))
231                  ;;
232         *)
233                  ;;
234 esac
235
236 dnl **************************************************************************
237 dnl * Set the location of various third-party software packages
238 dnl **************************************************************************
239 AC_ARG_WITH(spec,AC_HELP_STRING([--with-spec],[Location of SPEC benchmarks]),AC_SUBST(SPEC_ROOT,[$withval]),AC_SUBST(SPEC_ROOT,[/home/vadve/shared/benchmarks/speccpu2000/benchspec]))
240 AC_ARG_WITH(llvmgccdir,AC_HELP_STRING([--with-llvmgccdir],[Location of LLVM GCC front-end]),AC_SUBST(LLVMGCCDIR,[$withval]))
241 AC_ARG_WITH(bcrepos,AC_HELP_STRING([--with-bcrepos],[Location of Bytecode Repository]),AC_SUBST(BCR,[$withval]),AC_SUBST(BCR,[/home/vadve/lattner/LLVMPrograms]))
242 AC_ARG_WITH(papi,AC_HELP_STRING([--with-papi],[Location of PAPI]),AC_SUBST(PAPIDIR,[$withval]),AC_SUBST(PAPIDIR,[/home/vadve/shared/papi-2.3.4.1]))
243 AC_ARG_WITH(objroot,AC_HELP_STRING([--with-objroot],[Location where object files should be placed (default is .)]),AC_SUBST(OBJROOT,[$withval]),AC_SUBST(OBJROOT,[.]))
244 AC_ARG_WITH(purify,AC_HELP_STRING([--with-purify],[Location of purify program]),AC_SUBST(PURIFY,[$withval]))
245
246 AC_OUTPUT(Makefile.config)