[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]) |
---|
[107b01a] | 7 | AC_CONFIG_MACRO_DIRS([automake]) |
---|
[d3b7937] | 8 | #AC_CONFIG_SRCDIR([src/main.cc]) |
---|
[a5c722b] | 9 | AC_CONFIG_HEADERS([config.h:src/config.h.in]) |
---|
[575a6e5] | 10 | AM_SILENT_RULES([yes]) |
---|
[5d6ce1f] | 11 | |
---|
[534e4e4] | 12 | m4_include([automake/cfa.m4]) |
---|
| 13 | |
---|
[575a6e5] | 14 | # don't use the default CFLAGS as they unconditonnaly add -O2 |
---|
| 15 | : ${CFLAGS=""} |
---|
| 16 | |
---|
[44f44617] | 17 | AM_INIT_AUTOMAKE([subdir-objects]) |
---|
[00cc023] | 18 | |
---|
[df47e2f] | 19 | # Allow program name tansformation |
---|
[6363ad1] | 20 | # will fill program_transform_name with appropriate sed regex |
---|
[df47e2f] | 21 | AC_ARG_PROGRAM |
---|
| 22 | |
---|
[c59712e] | 23 | #============================================================================== |
---|
[df47e2f] | 24 | #Trasforming cc1 will break compilation |
---|
[37fe352] | 25 | M4CFA_PROGRAM_NAME |
---|
[c59712e] | 26 | |
---|
| 27 | #============================================================================== |
---|
| 28 | # version information |
---|
| 29 | |
---|
[65c61ec] | 30 | rm -f version |
---|
[2042d41] | 31 | echo ${PACKAGE_VERSION} > version # file containing version number for other tools |
---|
[65c61ec] | 32 | chmod ugo-w version |
---|
[2042d41] | 33 | ver_major=`cut -d '.' -f1 version` # subdivide version number into components at periods |
---|
| 34 | ver_minor=`cut -d '.' -f2 version` |
---|
| 35 | ver_patch=`cut -d '.' -f3 version` |
---|
| 36 | ver_build=`cut -d '.' -f4 version` |
---|
[47a8d17] | 37 | |
---|
[4b1afb6] | 38 | # AC_SUBST([CONFIG_STATUS_DEPENDENCIES], ['$(top_srcdir)/version']) |
---|
[47a8d17] | 39 | AC_DEFINE_UNQUOTED(CFA_VERSION_MAJOR, ${ver_major}, [Major version number.]) |
---|
| 40 | AC_DEFINE_UNQUOTED(CFA_VERSION_MINOR, ${ver_minor}, [Minor version number.]) |
---|
| 41 | AC_DEFINE_UNQUOTED(CFA_VERSION_PATCH, ${ver_patch}, [Patch version number.]) |
---|
| 42 | AC_DEFINE_UNQUOTED(CFA_VERSION_BUILD, ${ver_build}, [Build version number.]) |
---|
[4b1afb6] | 43 | AC_DEFINE_UNQUOTED(CFA_VERSION_SHORT, ["${ver_major}"], [Major]) |
---|
| 44 | AC_DEFINE_UNQUOTED(CFA_VERSION, ["${ver_major}.${ver_minor}"], [Major.Minor]) |
---|
| 45 | AC_DEFINE_UNQUOTED(CFA_VERSION_LONG, ["${ver_major}.${ver_minor}.${ver_patch}"], [Major.Minor.Patch]) |
---|
| 46 | AC_DEFINE_UNQUOTED(CFA_VERSION_FULL, ["${ver_major}.${ver_minor}.${ver_patch}.${ver_build}"], [Major.Minor.Patch.Build]) |
---|
[ec129c4] | 47 | |
---|
[c59712e] | 48 | #============================================================================== |
---|
| 49 | # HACK to be able to use conditionnals inside makefiles |
---|
[05f4b85] | 50 | DOifskipcompile='ifeq ($(skipcompile),yes) |
---|
| 51 | else' |
---|
| 52 | AC_SUBST([DOifskipcompile]) |
---|
| 53 | AM_SUBST_NOTMAKE([DOifskipcompile]) |
---|
| 54 | |
---|
| 55 | DOendif='endif' |
---|
| 56 | AC_SUBST([DOendif]) |
---|
| 57 | AM_SUBST_NOTMAKE([DOendif]) |
---|
| 58 | |
---|
[c59712e] | 59 | #============================================================================== |
---|
| 60 | # Installation paths |
---|
[534e4e4] | 61 | M4CFA_PARSE_PREFIX |
---|
[5d6ce1f] | 62 | |
---|
[c59712e] | 63 | #============================================================================== |
---|
[50697b0] | 64 | # Create variables for commonly used targets |
---|
[ff1e0f38] | 65 | |
---|
[8e485801] | 66 | TOP_SRCDIR="$(readlink -m $ac_confdir/)/" |
---|
| 67 | TOP_BUILDDIR="$(readlink -m $ac_pwd/)/" |
---|
[ff1e0f38] | 68 | |
---|
| 69 | AC_DEFINE_UNQUOTED(TOP_SRCDIR, "$TOP_SRCDIR", [Top src directory]) |
---|
| 70 | AC_DEFINE_UNQUOTED(TOP_BUILDDIR, "$TOP_BUILDDIR", [Top build directory]) |
---|
| 71 | |
---|
| 72 | DRIVER_DIR=${TOP_BUILDDIR}driver/ |
---|
| 73 | CFACC=${DRIVER_DIR}cfa |
---|
| 74 | CFACPP=${DRIVER_DIR}cfa-cpp |
---|
[7fb69f6] | 75 | AC_SUBST(DRIVER_DIR) |
---|
| 76 | AC_SUBST(CFACC) |
---|
[50697b0] | 77 | AC_SUBST(CFACPP) |
---|
| 78 | |
---|
[c59712e] | 79 | #============================================================================== |
---|
[7fb69f6] | 80 | # Flag variables needed to build in tree |
---|
[ff1e0f38] | 81 | LIBCFA_SRC='${TOP_SRCDIR}/libcfa/src' |
---|
| 82 | BUILD_IN_TREE_FLAGS="-XCFA -t -B${DRIVER_DIR}" |
---|
[7fb69f6] | 83 | AC_SUBST(BUILD_IN_TREE_FLAGS) |
---|
| 84 | |
---|
[ff1e0f38] | 85 | #============================================================================== |
---|
| 86 | # handle the list of hosts to build for |
---|
| 87 | for var in $ac_configure_args |
---|
| 88 | do |
---|
| 89 | #strip quotes surrouding values |
---|
| 90 | case $var in |
---|
| 91 | # skip cross compilation related arguments |
---|
[534e4e4] | 92 | \'--host=*) ;; \'host_alias=*) ;; \'--build=*) ;; \'build_alias=*) ;; \'--target=*) ;; \'target_alias=*) ;; |
---|
[ff1e0f38] | 93 | |
---|
| 94 | # skip the target hosts |
---|
[534e4e4] | 95 | \'--with-target-hosts=*) ;; |
---|
[ff1e0f38] | 96 | |
---|
[120a28c3] | 97 | # skip gprofiler for libcfa |
---|
| 98 | \'--enable-gprofiler=*) ;; |
---|
| 99 | \'--disable-gprofiler) ;; |
---|
| 100 | |
---|
[ff1e0f38] | 101 | # append all other arguments to the sub configure arguments |
---|
| 102 | *) LIBCFA_GENERAL_ARGS="${LIBCFA_GENERAL_ARGS} $var";; |
---|
| 103 | esac |
---|
| 104 | done |
---|
| 105 | |
---|
| 106 | #============================================================================== |
---|
| 107 | # handle the list of hosts to build for |
---|
| 108 | AC_CANONICAL_BUILD |
---|
| 109 | AC_CANONICAL_HOST |
---|
| 110 | |
---|
[47c1928] | 111 | if ! test "$host_cpu" = "$build_cpu"; then |
---|
| 112 | case $host_cpu in |
---|
| 113 | i386) |
---|
| 114 | HOST_FLAGS="-m32" |
---|
| 115 | ;; |
---|
| 116 | i686) |
---|
| 117 | HOST_FLAGS="-m32" |
---|
| 118 | ;; |
---|
| 119 | x86_64) |
---|
| 120 | HOST_FLAGS="-m64" |
---|
| 121 | ;; |
---|
| 122 | esac |
---|
| 123 | fi |
---|
| 124 | AC_SUBST(HOST_FLAGS) |
---|
| 125 | |
---|
[ff1e0f38] | 126 | default_target="${host_cpu}:debug, ${host_cpu}:nodebug" |
---|
| 127 | AC_ARG_WITH(target-hosts, |
---|
| 128 | [ --with-target-hosts=HOSTS HOSTS comma seperated list of hosts to build for, format ARCH:[debug|nodebug|nolib]], |
---|
| 129 | target_hosts=$withval, target_hosts=${default_target}) |
---|
| 130 | |
---|
[120a28c3] | 131 | AC_ARG_ENABLE(gprofiler, |
---|
| 132 | [ --enable-gprofiler whether or not to enable gprofiler tools (if available)], |
---|
| 133 | enable_gprofiler=$enableval, enable_gprofiler=yes) |
---|
| 134 | |
---|
[ff1e0f38] | 135 | AC_SUBST(TARGET_HOSTS, ${target_hosts}) |
---|
| 136 | |
---|
| 137 | LIBCFA_PATHS="DRIVER_DIR=${DRIVER_DIR}" |
---|
| 138 | |
---|
| 139 | for i in $(echo $target_hosts | sed "s/,/ /g") |
---|
| 140 | do |
---|
| 141 | # call your procedure/other scripts here below |
---|
[534e4e4] | 142 | arch_name=$(echo $i | sed -r "s/:(.*)//g") |
---|
[ff1e0f38] | 143 | lib_config=$(echo $i | sed -r "s/(.*)://g") |
---|
[37fe352] | 144 | |
---|
| 145 | case $lib_config in |
---|
| 146 | "nodebug") ;; |
---|
| 147 | "debug") ;; |
---|
| 148 | "nolib") ;; |
---|
[3fcbdca1] | 149 | "profile") ;; |
---|
[37fe352] | 150 | *) |
---|
| 151 | >&2 echo "Configuration must be 'debug', 'nodebug' or 'nolib'" |
---|
| 152 | exit 1 |
---|
| 153 | ;; |
---|
| 154 | esac |
---|
| 155 | |
---|
| 156 | M4CFA_CANNON_CPU([${arch_name}]) |
---|
| 157 | lib_arch=${cannon_arch_name} |
---|
[a5121bf] | 158 | lib_dir="libcfa/${lib_arch}-${lib_config}" |
---|
[ff1e0f38] | 159 | |
---|
| 160 | LIBCFA_TARGET_DIRS="${LIBCFA_TARGET_DIRS} ${lib_dir}" |
---|
| 161 | LIBCFA_TARGET_MAKEFILES="${LIBCFA_TARGET_MAKEFILES} ${lib_dir}/Makefile" |
---|
| 162 | |
---|
[a5121bf] | 163 | mkdir -p ${lib_dir} |
---|
| 164 | echo -n "${LIBCFA_GENERAL_ARGS} " > ${lib_dir}/config.data |
---|
| 165 | echo -n "${LIBCFA_PATHS} " >> ${lib_dir}/config.data |
---|
| 166 | echo -n "ARCHITECTURE=${lib_arch} " >> ${lib_dir}/config.data |
---|
[c6bbcdb] | 167 | echo -n "CONFIGURATION=${lib_config} " >> ${lib_dir}/config.data |
---|
| 168 | echo -n "CFA_VERSION=${ver_major}:${ver_minor}:${ver_patch}" >> ${lib_dir}/config.data |
---|
[ff1e0f38] | 169 | done |
---|
| 170 | |
---|
| 171 | AC_SUBST(LIBCFA_TARGET_DIRS) |
---|
| 172 | AC_SUBST(LIBCFA_TARGET_MAKEFILES) |
---|
| 173 | |
---|
[37fe352] | 174 | M4CFA_CANNON_CPU([${host_cpu}]) |
---|
| 175 | AC_DEFINE_UNQUOTED(CFA_DEFAULT_CPU, "$cannon_arch_name", [Default cpu to use if neither -m32 or -m64 are defined.]) |
---|
| 176 | AC_DEFINE_UNQUOTED(CFA_64_CPU, "x64", [CPU to use if the -m64 flags is given.]) |
---|
| 177 | AC_DEFINE_UNQUOTED(CFA_32_CPU, "x86", [CPU to use if the -m32 flags is given.]) |
---|
| 178 | |
---|
[c59712e] | 179 | #============================================================================== |
---|
| 180 | # CAFLAGS |
---|
[3f414ef] | 181 | AC_DEFINE_UNQUOTED(CFA_FLAGS, "${CFAFLAGS}", [compilation flags for cfa libraries and test programs.]) |
---|
| 182 | AC_SUBST(CFA_FLAGS, ${CFAFLAGS}) |
---|
| 183 | |
---|
[c59712e] | 184 | #============================================================================== |
---|
[5d6ce1f] | 185 | # Checks for programs. |
---|
| 186 | AC_PROG_CXX |
---|
| 187 | AC_PROG_CC |
---|
[8e5724e] | 188 | AM_PROG_AS |
---|
[c3a4385] | 189 | # These are often not installed and people miss seeing the "no", so stop the configure. |
---|
[56c3935] | 190 | AC_PROG_YACC |
---|
[c3a4385] | 191 | if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi |
---|
[56c3935] | 192 | AC_PROG_LEX |
---|
[c3a4385] | 193 | if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi |
---|
[107b01a] | 194 | AC_PROG_LIBTOOL |
---|
[5d6ce1f] | 195 | AC_PROG_INSTALL |
---|
| 196 | |
---|
| 197 | # Checks for libraries. |
---|
[41cca44] | 198 | AC_CHECK_LIB([fibre], [Fibre::yield], [HAVE_LIBFIBRE=1], [HAVE_LIBFIBRE=0]) |
---|
| 199 | AM_CONDITIONAL([WITH_LIBFIBRE], [test "$HAVE_LIBFIBRE" -eq 1]) |
---|
[5d6ce1f] | 200 | |
---|
[114936a] | 201 | AC_CHECK_LIB([profiler], [ProfilingIsEnabledForAllThreads], [HAVE_LIBPROFILER=1], [HAVE_LIBPROFILER=0]) |
---|
[120a28c3] | 202 | AM_CONDITIONAL([WITH_LIBPROFILER], [test "x$enable_gprofiler" = "xyes" -a "$HAVE_LIBPROFILER" -eq 1]) |
---|
[114936a] | 203 | |
---|
| 204 | AC_CHECK_LIB([tcmalloc], [malloc], [HAVE_LIBTCMALLOC=1], [HAVE_LIBTCMALLOC=0]) |
---|
[120a28c3] | 205 | AM_CONDITIONAL([WITH_LIBTCMALLOC], [test "x$enable_gprofiler" = "xyes" -a "$HAVE_LIBTCMALLOC" -eq 1]) |
---|
[114936a] | 206 | |
---|
[5d6ce1f] | 207 | # Checks for header files. |
---|
[1f86d5e] | 208 | AC_CHECK_HEADERS([libintl.h malloc.h unistd.h], [], [echo "Error: Missing required header"; exit 1]) |
---|
[5d6ce1f] | 209 | |
---|
| 210 | # Checks for typedefs, structures, and compiler characteristics. |
---|
[1f86d5e] | 211 | AC_CHECK_TYPES([_Float32], AC_DEFINE([HAVE_KEYWORDS_FLOATXX], [], [Have keywords _FloatXX.]), [], [[]]) |
---|
| 212 | |
---|
| 213 | # Checks for compiler flags. |
---|
| 214 | M4CFA_CHECK_COMPILE_FLAG([-Wcast-function-type], AC_DEFINE([HAVE_CAST_FUNCTION_TYPE], [], [Have compiler warning cast-function-type.])) |
---|
[5d6ce1f] | 215 | |
---|
[95d0a5db] | 216 | #============================================================================== |
---|
| 217 | # backend compiler implementation |
---|
| 218 | AC_DEFINE_UNQUOTED(CFA_BACKEND_CC, "${CC}", [Backend compiler to use.]) |
---|
| 219 | AC_SUBST(CFA_BACKEND_CC) |
---|
| 220 | |
---|
[c59712e] | 221 | #============================================================================== |
---|
[00cc023] | 222 | AC_CONFIG_FILES([ |
---|
| 223 | Makefile |
---|
[bf71cfd] | 224 | driver/Makefile |
---|
[00cc023] | 225 | src/Makefile |
---|
[bf71cfd] | 226 | benchmark/Makefile |
---|
| 227 | tests/Makefile |
---|
[1241851] | 228 | longrun_tests/Makefile |
---|
[4149d9d] | 229 | tools/Makefile |
---|
[2b7afbd] | 230 | tools/prettyprinter/Makefile |
---|
[00cc023] | 231 | ]) |
---|
[5d6ce1f] | 232 | |
---|
[bf71cfd] | 233 | AC_CONFIG_LINKS([tests/test.py:tests/test.py]) |
---|
[56de5932] | 234 | |
---|
[bf71cfd] | 235 | AC_OUTPUT(tests/config.py) |
---|
[7e91d4f] | 236 | |
---|
[5d6ce1f] | 237 | # Final text |
---|
| 238 | AC_MSG_RESULT(Cforall configuraton completed. Type "make -j 8 install".) |
---|