source: configure.ac @ 6e4b913

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 6e4b913 was 6e4b913, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

allow 32-bit compilation of cfa-cpp, and 32-bit compilation of CFA programs (including CFA libraries)

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