source: configure.ac@ 33a7b6d

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 resolv-new with_gc
Last change on this file since 33a7b6d was 65c61ec, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

file version is made read-only

  • Property mode set to 100644
File size: 4.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.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
20rm -f version
21echo ${PACKAGE_VERSION} > version # file containing version number for other tools
22chmod ugo-w version
23ver_major=`cut -d '.' -f1 version` # subdivide version number into components at periods
24ver_minor=`cut -d '.' -f2 version`
25ver_patch=`cut -d '.' -f3 version`
26ver_build=`cut -d '.' -f4 version`
27
28# AC_SUBST([CONFIG_STATUS_DEPENDENCIES], ['$(top_srcdir)/version'])
29AC_DEFINE_UNQUOTED(CFA_VERSION_MAJOR, ${ver_major}, [Major version number.])
30AC_DEFINE_UNQUOTED(CFA_VERSION_MINOR, ${ver_minor}, [Minor version number.])
31AC_DEFINE_UNQUOTED(CFA_VERSION_PATCH, ${ver_patch}, [Patch version number.])
32AC_DEFINE_UNQUOTED(CFA_VERSION_BUILD, ${ver_build}, [Build version number.])
33AC_DEFINE_UNQUOTED(CFA_VERSION_SHORT, ["${ver_major}"], [Major])
34AC_DEFINE_UNQUOTED(CFA_VERSION, ["${ver_major}.${ver_minor}"], [Major.Minor])
35AC_DEFINE_UNQUOTED(CFA_VERSION_LONG, ["${ver_major}.${ver_minor}.${ver_patch}"], [Major.Minor.Patch])
36AC_DEFINE_UNQUOTED(CFA_VERSION_FULL, ["${ver_major}.${ver_minor}.${ver_patch}.${ver_build}"], [Major.Minor.Patch.Build])
37
38# Installation paths
39
40AC_ARG_WITH(backend-compiler,
41 [ --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) ],
42 backendcompiler=$withval, backendcompiler="")
43if test "x$backendcompiler" != "x"; then
44 BACKEND_CC=${backendcompiler}
45else
46 AC_PATH_PROG(BACKEND_CC, gcc, []) # check gcc installed
47 if test "x$BACKEND_CC" = "x"; then
48 AC_MSG_ERROR(some version of gcc is needed. Get it at ftp://ftp.gnu.org)
49 exit 1
50 fi
51fi
52AC_DEFINE_UNQUOTED(CFA_BACKEND_CC, "${BACKEND_CC}", [Location of include files.])
53AC_SUBST(CFA_BACKEND_CC)
54
55if test "x$prefix" = "xNONE"; then
56 cfa_prefix=${ac_default_prefix}
57else
58 cfa_prefix=${prefix}
59fi
60AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
61AC_SUBST(CFA_PREFIX, ${cfa_prefix})
62
63if test "$includedir" = '${prefix}/include'; then
64 cfa_incdir="${cfa_prefix}/include"
65else
66 cfa_incdir=${includedir}
67fi
68AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
69AC_SUBST(CFA_INCDIR, ${cfa_incdir})
70
71if test "$bindir" = '${exec_prefix}/bin'; then
72 cfa_bindir="${cfa_prefix}/bin"
73else
74 cfa_bindir=${bindir}
75fi
76AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
77AC_SUBST(CFA_BINDIR, ${cfa_bindir})
78
79if test "$libdir" = '${exec_prefix}/lib'; then
80 cfa_libdir=${cfa_prefix}/lib
81else
82 cfa_libdir=${libdir}
83fi
84AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
85AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
86
87AC_DEFINE_UNQUOTED(CFA_FLAGS, "${CFAFLAGS}", [compilation flags for cfa libraries and test programs.])
88AC_SUBST(CFA_FLAGS, ${CFAFLAGS})
89
90# Checks for programs.
91AC_PROG_CXX
92AC_PROG_CC
93AM_PROG_CC_C_O # deprecated
94# These are often not installed and people miss seeing the "no", so stop the configure.
95AC_PROG_YACC
96if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi
97AC_PROG_LEX
98if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi
99AC_PROG_INSTALL
100AC_PROG_MAKE_SET
101AC_PROG_RANLIB
102
103# Checks for libraries.
104
105# Checks for header files.
106AC_FUNC_ALLOCA
107AC_CHECK_HEADERS([fenv.h float.h inttypes.h libintl.h limits.h malloc.h stddef.h stdlib.h string.h unistd.h])
108
109# Checks for typedefs, structures, and compiler characteristics.
110AC_HEADER_STDBOOL
111AC_C_INLINE
112AC_TYPE_INT16_T
113AC_TYPE_INT32_T
114AC_TYPE_INT8_T
115AC_C_RESTRICT
116AC_TYPE_SIZE_T
117AC_TYPE_UINT16_T
118AC_TYPE_UINT32_T
119AC_TYPE_UINT8_T
120
121# Checks for library functions.
122AC_CHECK_FUNCS([memset putenv strchr strtol])
123
124AC_CONFIG_FILES([
125 Makefile
126 src/driver/Makefile
127 src/Makefile
128 src/examples/Makefile
129 src/tests/Makefile
130 src/libcfa/Makefile
131 ])
132
133AC_OUTPUT
134
135# Final text
136AC_MSG_RESULT(Cforall configuraton completed. Type "make -j 8 install".)
Note: See TracBrowser for help on using the repository browser.