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