source: configure.ac @ ca4a7ba

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ca4a7ba was ef7d253, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

updated automake config to support less verbose build and compile the tests directory

  • Property mode set to 100644
File size: 3.0 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])
[ef7d253]9AM_SILENT_RULES([no])
[5d6ce1f]10
[90c3b1c]11if test "x${CXXFLAGS}" = "x"; then
12   export CXXFLAGS="-std=c++11 -g -O2 ${CXXFLAGS}"
13else
14   export CXXFLAGS="-std=c++11 ${CXXFLAGS}"
15fi
16
[00cc023]17AM_INIT_AUTOMAKE
[a61fea9a]18AM_MAINTAINER_MODE(enable)      # may require auto* software to be installed
[00cc023]19
[5d6ce1f]20# Installation paths
21
[ef7d253]22AC_ARG_WITH(backend-compiler,
23        [  --with-backend-compiler=PROGRAM     PROGRAM that performs the final code compilation (must be gcc-compatible) ],
[e24f13a]24        backendcompiler=$withval, backendcompiler="")
25if test "x$backendcompiler" != x; then
26        BACKEND_CC=${backendcompiler}
27else
28        AC_PATH_PROG(BACKEND_CC, gcc, [])
29        if test "x$BACKEND_CC" = "x"; then
[00cc023]30                AC_MSG_ERROR(some version of gcc is needed. Get it at ftp://ftp.gnu.org)
31                exit 1
32        fi
[e24f13a]33fi
34AC_DEFINE_UNQUOTED(CFA_BACKEND_CC, "${BACKEND_CC}", [Location of include files.])
35AC_SUBST(CFA_BACKEND_CC)
[5d6ce1f]36
37if test "x$prefix" = "xNONE"; then
[00cc023]38        cfa_prefix=${ac_default_prefix}
[5d6ce1f]39else
[00cc023]40        cfa_prefix=${prefix}
[ef7d253]41fi
[d3b7937]42AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
[00cc023]43AC_SUBST(CFA_PREFIX, ${cfa_prefix})
[5d6ce1f]44
45if test "$includedir" = '${prefix}/include'; then
46        cfa_incdir="${cfa_prefix}/include"
47else
[faf8857]48        cfa_incdir=${includedir}
[ef7d253]49fi
[5d6ce1f]50AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
[00cc023]51AC_SUBST(CFA_INCDIR, ${cfa_incdir})
[5d6ce1f]52
53if test "$bindir" = '${exec_prefix}/bin'; then
54        cfa_bindir="${cfa_prefix}/bin"
55else
56        cfa_bindir=${bindir}
[ef7d253]57fi
[5d6ce1f]58AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
[00cc023]59AC_SUBST(CFA_BINDIR, ${cfa_bindir})
[5d6ce1f]60
61if test "$libdir" = '${exec_prefix}/lib'; then
62        cfa_libdir=${cfa_prefix}/lib
63else
64        cfa_libdir=${libdir}
[ef7d253]65fi
[5d6ce1f]66AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
[00cc023]67AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
[5d6ce1f]68
69# Checks for programs.
70AC_PROG_CXX
71AC_PROG_CC
[00cc023]72AM_PROG_CC_C_O  # deprecated
[c3a4385]73# These are often not installed and people miss seeing the "no", so stop the configure.
[56c3935]74AC_PROG_YACC
[c3a4385]75if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi
[56c3935]76AC_PROG_LEX
[c3a4385]77if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi
[5d6ce1f]78AC_PROG_INSTALL
79AC_PROG_MAKE_SET
[00cc023]80AC_PROG_RANLIB
[5d6ce1f]81
82# Checks for libraries.
83
84# Checks for header files.
85AC_FUNC_ALLOCA
86AC_CHECK_HEADERS([fenv.h float.h inttypes.h libintl.h limits.h malloc.h stddef.h stdlib.h string.h unistd.h])
87
88# Checks for typedefs, structures, and compiler characteristics.
89AC_HEADER_STDBOOL
90AC_C_INLINE
91AC_TYPE_INT16_T
92AC_TYPE_INT32_T
93AC_TYPE_INT8_T
94AC_C_RESTRICT
95AC_TYPE_SIZE_T
96AC_TYPE_UINT16_T
97AC_TYPE_UINT32_T
98AC_TYPE_UINT8_T
99
100# Checks for library functions.
101AC_CHECK_FUNCS([memset putenv strchr strtol])
102
[00cc023]103AC_CONFIG_FILES([
104        Makefile
[6e7e2b36]105        src/driver/Makefile
[00cc023]106        src/Makefile
107        src/examples/Makefile
[ef7d253]108        src/tests/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.