source: libcfa/configure.ac @ 566fde0

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 566fde0 was 7c6b262, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Added option to limit bandwith during the distribution phase of th build (when using distcc)

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[c59712e]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])
[38d12e7]6AC_CONFIG_AUX_DIR([automake])
7AC_CONFIG_MACRO_DIRS([automake])
[575a6e5]8AM_SILENT_RULES([yes])
[c59712e]9
[37fe352]10m4_include([../automake/cfa.m4])
11
[c59712e]12AM_INIT_AUTOMAKE([subdir-objects])
13
[575a6e5]14# don't use the default CFLAGS as they unconditonnaly add -O2
15: ${CFLAGS=""}
16
[2b3d6ff]17# define this to override
18AR_FLAGS="cr"
19
[c59712e]20# Allow program name tansformation
21# will fill program_transform_name with appropriate sed regex
22AC_ARG_PROGRAM
23
[37fe352]24AC_ARG_VAR(ARCHITECTURE,  [The architecture  to use when building libcfa])
[c59712e]25AC_ARG_VAR(CONFIGURATION, [The configuration to use when building libcfa, options are: deubg, nodebug, nolib (prelude-only)])
[ff1e0f38]26AC_ARG_VAR(DRIVER_DIR, [The path to the cforall driver directory])
[c6bbcdb]27AC_ARG_VAR(CFA_VERSION, [The long version of cfa])
[ff1e0f38]28
[bbfd0e0]29AC_ARG_ENABLE(distcc,
30        [  --enable-distcc     whether or not to enable distributed compilation],
31        enable_distcc=$enableval, enable_distcc=no)
32
[7c6b262]33AC_ARG_WITH(bwlimit,
34        [  --with-bwlimit=RATE     RATE the maximum rate at which rsync will be limited when using distributed builds],
35        DIST_BWLIMIT=$withval, DIST_BWLIMIT=0)
36
[bbfd0e0]37echo -n "checking for distributated build... "
38if test x$enable_distcc = xno; then
39        CFACC=${DRIVER_DIR}cfa
40        echo "no"
41else
[d65f92c]42        tools="$(readlink -m $ac_confdir/)/../tools/build"
43        config=$(basename $(readlink -f .))
44        echo "$tools/distcc_hash $config"
45        CFADIR_HASH=$($tools/distcc_hash $config)
[14347ac]46        CFACC="distcc ~/.cfadistcc/${CFADIR_HASH}/cfa"
[bbfd0e0]47        echo "yes (hash=${CFADIR_HASH})"
48fi
[14347ac]49CFACPP=${DRIVER_DIR}cfa-cpp
[bbfd0e0]50LOCAL_CFACC=${DRIVER_DIR}cfa
[81e60f7]51LOCAL_CC1=${DRIVER_DIR}cc1
[bbfd0e0]52
53AM_CONDITIONAL([ENABLE_DISTCC], [test x$enable_distcc = xyes])
54
[ff1e0f38]55AC_SUBST(CFACC)
56AC_SUBST(CFACPP)
[bbfd0e0]57AC_SUBST(LOCAL_CFACC)
[81e60f7]58AC_SUBST(LOCAL_CC1)
[bbfd0e0]59AC_SUBST(CFADIR_HASH)
[c6bbcdb]60AC_SUBST(CFA_VERSION)
[7c6b262]61AC_SUBST(DIST_BWLIMIT)
[ff1e0f38]62
[575a6e5]63#==============================================================================
64#Handle specific flags
[37fe352]65case $ARCHITECTURE in
66        "x64"        ) ARCH_FLAGS="-m64";;
67        "x86"        ) ARCH_FLAGS="-m32";;
68        "arm"        ) ARCH_FLAGS="";;
69esac
[ff1e0f38]70
[37fe352]71AC_SUBST(ARCH_FLAGS)
[ff1e0f38]72
[575a6e5]73case $CONFIGURATION in
74        "debug"   )
[c8c0c7c5]75                CONFIG_CFLAGS="-O0 -g"
[575a6e5]76                CONFIG_CFAFLAGS="-debug"
[e523b07]77                CONFIG_BUILDLIB="yes"
[575a6e5]78        ;;
79        "nodebug" )
[3fcbdca1]80                CONFIG_CFLAGS="-O3 -s"
[575a6e5]81                CONFIG_CFAFLAGS="-nodebug"
[e523b07]82                CONFIG_BUILDLIB="yes"
[575a6e5]83        ;;
84        "nolib"   )
[3fcbdca1]85                CONFIG_CFLAGS="-O3 -s"
[c9e640e]86                CONFIG_CFAFLAGS="-nolib"
[e523b07]87                CONFIG_BUILDLIB="no"
[575a6e5]88        ;;
[3fcbdca1]89        "profile" )
90                CONFIG_CFLAGS="-O3 -g -fno-omit-frame-pointer"
91                CONFIG_CFAFLAGS="-nodebug"
92                CONFIG_BUILDLIB="yes"
93        ;;
[d119b984]94        *)
95        AC_MSG_ERROR('Invalid value $CONFIGURATION for \$CONFIGURATION')
96        ;;
[575a6e5]97esac
98
[13363f4]99CONFIG_CFAFLAGS="${CONFIG_CFAFLAGS} ${CFAFLAGS}"
100
[575a6e5]101AC_SUBST(CONFIG_CFLAGS)
102AC_SUBST(CONFIG_CFAFLAGS)
[e523b07]103AC_SUBST(CONFIG_BUILDLIB)
104
105AM_CONDITIONAL([BUILDLIB], [test "x${CONFIG_BUILDLIB}" = "xyes"])
[575a6e5]106
[37fe352]107#==============================================================================
108#Trasforming cc1 will break compilation
109M4CFA_PROGRAM_NAME
[ff1e0f38]110
[37fe352]111#==============================================================================
112# Installation paths
113M4CFA_PARSE_PREFIX
[c59712e]114
115# Checks for programs.
[04bc1c0]116LT_INIT([disable-static])
[38d12e7]117
[c59712e]118AC_PROG_CXX
119AC_PROG_CC
120AM_PROG_AS
[107b01a]121AC_PROG_LIBTOOL
[c59712e]122AC_PROG_INSTALL
123AC_PROG_MAKE_SET
124
[72828a8]125AC_CHECK_HEADERS([linux/io_uring.h])
[08a994e]126AC_CHECK_FUNCS([preadv2 pwritev2])
[27273f9]127
[c59712e]128AC_CONFIG_FILES([
129        Makefile
130        src/Makefile
131        prelude/Makefile
132        ])
133
[c680a4b]134AC_CONFIG_HEADERS(prelude/defines.hfa)
135
[c59712e]136AC_OUTPUT()
137
138# Final text
[27273f9]139AC_MSG_RESULT(Cforall library configuraton completed. Type "make -j 8 install".)
Note: See TracBrowser for help on using the repository browser.