source: configure.ac@ 2248dc7

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum with_gc
Last change on this file since 2248dc7 was 05f4b85, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Jenkins benchmark can now skipcompilation on demand and pin programs to core 1

  • Property mode set to 100644
File size: 7.2 KB
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.68])
5AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca])
6AC_CONFIG_AUX_DIR([automake])
7#AC_CONFIG_SRCDIR([src/main.cc])
8AC_CONFIG_HEADERS([config.h])
9AM_SILENT_RULES([no])
10
11AM_INIT_AUTOMAKE([subdir-objects])
12AM_MAINTAINER_MODE(enable) # may require auto* software to be installed
13
14# Allow program name tansformation
15# will fill program_transform_name with appropriate sed regex
16AC_ARG_PROGRAM
17
18#Trasforming cc1 will break compilation
19if test "${program_transform_name}" = ""; then
20 AC_MSG_ERROR([Program transform not supported.
21 Use --with-cfa-name='[[Desired name here]]' instead])
22fi
23
24AC_ARG_WITH(cfa-name,
25 [ --with-cfa-name=NAME NAME too which cfa will be installed],
26 cfa_name=$withval, cfa_name="cfa")
27
28#Define the new name of the installed command
29AC_SUBST(CFA_NAME, ${cfa_name})
30
31rm -f version
32echo ${PACKAGE_VERSION} > version # file containing version number for other tools
33chmod ugo-w version
34ver_major=`cut -d '.' -f1 version` # subdivide version number into components at periods
35ver_minor=`cut -d '.' -f2 version`
36ver_patch=`cut -d '.' -f3 version`
37ver_build=`cut -d '.' -f4 version`
38
39# AC_SUBST([CONFIG_STATUS_DEPENDENCIES], ['$(top_srcdir)/version'])
40AC_DEFINE_UNQUOTED(CFA_VERSION_MAJOR, ${ver_major}, [Major version number.])
41AC_DEFINE_UNQUOTED(CFA_VERSION_MINOR, ${ver_minor}, [Minor version number.])
42AC_DEFINE_UNQUOTED(CFA_VERSION_PATCH, ${ver_patch}, [Patch version number.])
43AC_DEFINE_UNQUOTED(CFA_VERSION_BUILD, ${ver_build}, [Build version number.])
44AC_DEFINE_UNQUOTED(CFA_VERSION_SHORT, ["${ver_major}"], [Major])
45AC_DEFINE_UNQUOTED(CFA_VERSION, ["${ver_major}.${ver_minor}"], [Major.Minor])
46AC_DEFINE_UNQUOTED(CFA_VERSION_LONG, ["${ver_major}.${ver_minor}.${ver_patch}"], [Major.Minor.Patch])
47AC_DEFINE_UNQUOTED(CFA_VERSION_FULL, ["${ver_major}.${ver_minor}.${ver_patch}.${ver_build}"], [Major.Minor.Patch.Build])
48
49# Installation paths
50
51AC_ARG_WITH(backend-compiler,
52 [ --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) ],
53 backendcompiler=$withval, backendcompiler="")
54if test "x$backendcompiler" != "x"; then
55 BACKEND_CC=${backendcompiler}
56else
57 AC_PATH_PROG(BACKEND_CC, gcc, []) # check gcc installed
58 if test "x$BACKEND_CC" = "x"; then
59 AC_MSG_ERROR(some version of gcc is needed. Get it at ftp://ftp.gnu.org)
60 exit 1
61 fi
62fi
63AC_DEFINE_UNQUOTED(CFA_BACKEND_CC, "${BACKEND_CC}", [Location of include files.])
64AC_SUBST(CFA_BACKEND_CC)
65
66
67
68AC_ARG_ENABLE(target-release, AS_HELP_STRING([--enable-target-release], [Build and install the release target]))
69AC_ARG_ENABLE(target-debug, AS_HELP_STRING([--enable-target-debug], [Build and install the debug target]))
70AC_ARG_ENABLE(threading, AS_HELP_STRING([--enable-threading], [Build and install libcfa with threading support (Enabled by default)]),
71[case "${enableval}" in
72 yes) build_threading="yes" ;;
73 no) build_threading="no" ;;
74 *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
75esac],[build_threading="yes"])
76
77case "$enable_target_release" in
78 yes)
79 case "$enable_target_debug" in
80 yes)
81 build_release="yes"
82 build_debug="yes"
83 ;;
84 no)
85 build_release="yes"
86 build_debug="no"
87 ;;
88 *)
89 build_release="yes"
90 build_debug="no"
91 ;;
92 esac
93 ;;
94 no)
95 case "$enable_target_debug" in
96 yes)
97 build_release="no"
98 build_debug="yes"
99 ;;
100 no)
101 build_release="no"
102 build_debug="no"
103 ;;
104 *)
105 build_release="no"
106 build_debug="yes"
107 ;;
108 esac
109 ;;
110 *)
111 case "$enable_target_debug" in
112 yes)
113 build_release="no"
114 build_debug="yes"
115 ;;
116 no)
117 build_release="yes"
118 build_debug="no"
119 ;;
120 *)
121 build_release="yes"
122 build_debug="yes"
123 ;;
124 esac
125 ;;
126esac
127
128AM_CONDITIONAL([BUILD_RELEASE], [test "x$build_release" = "xyes"])
129AM_CONDITIONAL([BUILD_DEBUG], [test "x$build_debug" = "xyes"])
130AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"])
131AM_CONDITIONAL([BUILD_CONCURRENCY], [test "x$build_threading" = "xyes"])
132
133DOifskipcompile='ifeq ($(skipcompile),yes)
134else'
135AC_SUBST([DOifskipcompile])
136AM_SUBST_NOTMAKE([DOifskipcompile])
137
138DOendif='endif'
139AC_SUBST([DOendif])
140AM_SUBST_NOTMAKE([DOendif])
141
142if test "x$prefix" = "xNONE"; then
143 cfa_prefix=${ac_default_prefix}
144else
145 cfa_prefix=${prefix}
146fi
147AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
148AC_SUBST(CFA_PREFIX, ${cfa_prefix})
149
150if test "$includedir" = '${prefix}/include'; then
151 cfa_incdir="${cfa_prefix}/include/${cfa_name}"
152else
153 cfa_incdir=${includedir}
154fi
155AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
156AC_SUBST(CFA_INCDIR, ${cfa_incdir})
157
158if test "$bindir" = '${exec_prefix}/bin'; then
159 cfa_bindir="${cfa_prefix}/bin"
160else
161 cfa_bindir=${bindir}
162fi
163AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
164AC_SUBST(CFA_BINDIR, ${cfa_bindir})
165
166if test "$libdir" = '${exec_prefix}/lib'; then
167 cfa_libdir="${cfa_prefix}/lib/${cfa_name}"
168else
169 cfa_libdir=${libdir}
170fi
171AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
172AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
173
174AC_CANONICAL_BUILD
175AC_CANONICAL_HOST
176AC_SUBST([MACHINE_TYPE],[$host_cpu])
177
178if ! test "$host_cpu" = "$build_cpu"; then
179 case $host_cpu in
180 i386)
181 CFLAGS+=" -m32 "
182 CXXFLAGS+=" -m32 "
183 CFAFLAGS+=" -m32 "
184 LDFLAGS+=" -m32 "
185 ;;
186 i686)
187 CFLAGS+=" -m32 "
188 CXXFLAGS+=" -m32 "
189 CFAFLAGS+=" -m32 "
190 LDFLAGS+=" -m32 "
191 ;;
192 x86_64)
193 CFLAGS+=" -m64 "
194 CXXFLAGS+=" -m64 "
195 CFAFLAGS+=" -m64 "
196 LDFLAGS+=" -m64 "
197 ;;
198 esac
199fi
200
201AC_DEFINE_UNQUOTED(CFA_FLAGS, "${CFAFLAGS}", [compilation flags for cfa libraries and test programs.])
202AC_SUBST(CFA_FLAGS, ${CFAFLAGS})
203
204# Checks for programs.
205AC_PROG_CXX
206AC_PROG_CC
207AM_PROG_AS
208AM_PROG_CC_C_O # deprecated
209# These are often not installed and people miss seeing the "no", so stop the configure.
210AC_PROG_YACC
211if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi
212AC_PROG_LEX
213if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi
214AC_PROG_INSTALL
215AC_PROG_MAKE_SET
216AC_PROG_RANLIB
217
218# Checks for libraries.
219
220# Checks for header files.
221AC_FUNC_ALLOCA
222AC_CHECK_HEADERS([fenv.h float.h inttypes.h libintl.h limits.h malloc.h stddef.h stdlib.h string.h unistd.h])
223
224# Checks for typedefs, structures, and compiler characteristics.
225AC_HEADER_STDBOOL
226AC_C_INLINE
227AC_TYPE_INT16_T
228AC_TYPE_INT32_T
229AC_TYPE_INT8_T
230AC_C_RESTRICT
231AC_TYPE_SIZE_T
232AC_TYPE_UINT16_T
233AC_TYPE_UINT32_T
234AC_TYPE_UINT8_T
235
236# Checks for library functions.
237AC_CHECK_FUNCS([memset putenv strchr strtol])
238
239AC_CONFIG_FILES([
240 Makefile
241 src/driver/Makefile
242 src/Makefile
243 src/benchmark/Makefile
244 src/examples/Makefile
245 src/tests/Makefile
246 src/tests/preempt_longrun/Makefile
247 src/prelude/Makefile
248 src/libcfa/Makefile
249 tools/Makefile
250 tools/prettyprinter/Makefile
251 ])
252
253AC_OUTPUT
254
255AM_COND_IF([BUILD_RELEASE],
256 [AM_COND_IF([BUILD_DEBUG],
257 [AC_MSG_NOTICE(Building libcfa for target: release & debug)],
258 [AC_MSG_NOTICE(Building libcfa for target: release)])],
259 [AM_COND_IF([BUILD_DEBUG],
260 [AC_MSG_NOTICE(Building libcfa for target: debug)],
261 [AC_MSG_NOTICE(Running cfa without libcfa)])])
262
263# Final text
264AC_MSG_RESULT(Cforall configuraton completed. Type "make -j 8 install".)
Note: See TracBrowser for help on using the repository browser.