Changeset bbfd0e0 for configure


Ignore:
Timestamp:
Aug 7, 2019, 3:23:56 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
14347ac
Parents:
7e0017f5
Message:

Tentative support for distcc in cforall, right now nothing works because distcc doesn't understand cfa

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r7e0017f5 rbbfd0e0  
    663663ac_ct_DUMPBIN
    664664DUMPBIN
    665 LD
    666665FGREP
    667666EGREP
     
    701700LDFLAGS
    702701CXXFLAGS
    703 CXX
    704702CFA_FLAGS
    705703LIBCFA_TARGET_MAKEFILES
     
    723721CFA_INCDIR
    724722CFA_PREFIX
     723LD
     724CXX
     725ENABLE_DISTCC_FALSE
     726ENABLE_DISTCC_TRUE
    725727DOendif
    726728DOifskipcompile
     
    797799enable_silent_rules
    798800with_cfa_name
     801enable_distcc
    799802with_target_hosts
    800803enable_gprofiler
     
    14591462  --enable-silent-rules   less verbose build output (undo: "make V=1")
    14601463  --disable-silent-rules  verbose build output (undo: "make V=0")
     1464  --enable-distcc     whether or not to enable distributed compilation
    14611465  --enable-gprofiler     whether or not to enable gprofiler tools (if available)
    14621466  --enable-demangler     whether or not to build the demangler (executable and library)
     
    31803184
    31813185DOendif='endif'
     3186
     3187
     3188
     3189#==============================================================================
     3190# distcc support
     3191
     3192# Check whether --enable-distcc was given.
     3193if test "${enable_distcc+set}" = set; then :
     3194  enableval=$enable_distcc; enable_distcc=$enableval
     3195else
     3196  enable_distcc=no
     3197fi
     3198
     3199
     3200 if test x$enable_distcc = xyes; then
     3201  ENABLE_DISTCC_TRUE=
     3202  ENABLE_DISTCC_FALSE='#'
     3203else
     3204  ENABLE_DISTCC_TRUE='#'
     3205  ENABLE_DISTCC_FALSE=
     3206fi
     3207
     3208
     3209if test x$enable_distcc = xyes; then
     3210        CXX="distcc ${CXX}"
     3211        LD="distcc ${LD} -lstdc++"
     3212        echo "Enabling distributed builds"
     3213fi
     3214
    31823215
    31833216
     
    1701717050fi
    1701817051
     17052if test -z "${ENABLE_DISTCC_TRUE}" && test -z "${ENABLE_DISTCC_FALSE}"; then
     17053  as_fn_error $? "conditional \"ENABLE_DISTCC\" was never defined.
     17054Usually this means the macro was only invoked conditionally." "$LINENO" 5
     17055fi
    1701917056if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
    1702017057  as_fn_error $? "conditional \"AMDEP\" was never defined.
Note: See TracChangeset for help on using the changeset viewer.