source: configure.ac @ 7fb69f6

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since 7fb69f6 was 7fb69f6, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Added configure variable for building cfa source in tree

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