source: configure.ac@ baba5d8

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since baba5d8 was 90c3b1c, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

compile CFA with C++11, further update refrat with lstlisting macros, support varags, enumeration initialization, add implicit separators to output streams, update example programs that print

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[5d6ce1f]1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.68])
[42336618]5AC_INIT([cfa-cc],[1.0.0],[cforall@plg.uwaterloo.ca])
[00cc023]6AC_CONFIG_AUX_DIR([automake])
[d3b7937]7#AC_CONFIG_SRCDIR([src/main.cc])
[5d6ce1f]8AC_CONFIG_HEADERS([config.h])
9
[90c3b1c]10if test "x${CXXFLAGS}" = "x"; then
11 export CXXFLAGS="-std=c++11 -g -O2 ${CXXFLAGS}"
12else
13 export CXXFLAGS="-std=c++11 ${CXXFLAGS}"
14fi
15
[00cc023]16AM_INIT_AUTOMAKE
[a61fea9a]17AM_MAINTAINER_MODE(enable) # may require auto* software to be installed
[00cc023]18
[5d6ce1f]19# Installation paths
20
21AC_ARG_WITH(backend-compiler,
22 [ --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) ],
23 backcompiler=$withval, backcompiler="")
24 if test x$backcompiler != x; then
[00cc023]25 AC_DEFINE_UNQUOTED(GCC_PATH, "${backcompiler}")
26 BACKEND_CC=${backcompiler}
[5d6ce1f]27 else
[00cc023]28 AC_PATH_PROG(GCC_PATH, gcc, N/A)
29 if test "$GCC_PATH" = "N/A"; then
30 AC_MSG_ERROR(some version of gcc is needed. Get it at ftp://ftp.gnu.org)
31 exit 1
32 fi
33 AC_DEFINE_UNQUOTED(GCC_PATH, "${GCC_PATH}", [Path/name of C compiler.])
34 BACKEND_CC=${GCC_PATH}
[5d6ce1f]35 fi
36AC_SUBST(BACKEND_CC)
37
38if test "x$prefix" = "xNONE"; then
[00cc023]39 cfa_prefix=${ac_default_prefix}
[5d6ce1f]40else
[00cc023]41 cfa_prefix=${prefix}
[5d6ce1f]42fi
[d3b7937]43AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
[00cc023]44AC_SUBST(CFA_PREFIX, ${cfa_prefix})
[5d6ce1f]45
46if test "$includedir" = '${prefix}/include'; then
47 cfa_incdir="${cfa_prefix}/include"
48else
[faf8857]49 cfa_incdir=${includedir}
[5d6ce1f]50fi
51AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
[00cc023]52AC_SUBST(CFA_INCDIR, ${cfa_incdir})
[5d6ce1f]53
54if test "$bindir" = '${exec_prefix}/bin'; then
55 cfa_bindir="${cfa_prefix}/bin"
56else
57 cfa_bindir=${bindir}
58fi
59AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
[00cc023]60AC_SUBST(CFA_BINDIR, ${cfa_bindir})
[5d6ce1f]61
62if test "$libdir" = '${exec_prefix}/lib'; then
63 cfa_libdir=${cfa_prefix}/lib
64else
65 cfa_libdir=${libdir}
66fi
67AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
[00cc023]68AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
[5d6ce1f]69
70# Checks for programs.
71AC_PROG_CXX
72AC_PROG_CC
[00cc023]73AM_PROG_CC_C_O # deprecated
[c3a4385]74# These are often not installed and people miss seeing the "no", so stop the configure.
[56c3935]75AC_PROG_YACC
[c3a4385]76if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi
[56c3935]77AC_PROG_LEX
[c3a4385]78if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi
[5d6ce1f]79AC_PROG_INSTALL
80AC_PROG_MAKE_SET
[00cc023]81AC_PROG_RANLIB
[5d6ce1f]82
83# Checks for libraries.
84
85# Checks for header files.
86AC_FUNC_ALLOCA
87AC_CHECK_HEADERS([fenv.h float.h inttypes.h libintl.h limits.h malloc.h stddef.h stdlib.h string.h unistd.h])
88
89# Checks for typedefs, structures, and compiler characteristics.
90AC_HEADER_STDBOOL
91AC_C_INLINE
92AC_TYPE_INT16_T
93AC_TYPE_INT32_T
94AC_TYPE_INT8_T
95AC_C_RESTRICT
96AC_TYPE_SIZE_T
97AC_TYPE_UINT16_T
98AC_TYPE_UINT32_T
99AC_TYPE_UINT8_T
100
101# Checks for library functions.
102AC_CHECK_FUNCS([memset putenv strchr strtol])
103
[00cc023]104AC_CONFIG_FILES([
105 Makefile
[6e7e2b36]106 src/driver/Makefile
[00cc023]107 src/Makefile
108 src/examples/Makefile
[6e7e2b36]109 src/libcfa/Makefile
[00cc023]110 ])
[5d6ce1f]111
112AC_OUTPUT
[7e91d4f]113
[5d6ce1f]114# Final text
115AC_MSG_RESULT(Cforall configuraton completed. Type "make -j 8 install".)
Note: See TracBrowser for help on using the repository browser.