Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    ra8d4b59 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)
     
    31843188
    31853189#==============================================================================
     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
     3215
     3216
     3217
     3218#==============================================================================
    31863219# Installation paths
    31873220
     
    34453478                "x86-64"     ) cannon_arch_name="x64";;
    34463479                "x86_64"     ) cannon_arch_name="x64";;
    3447                 "aarch64"    ) cannon_arch_name="arm";;
     3480                "aarch64"    ) cannon_arch_name="x64";;
    34483481                "x86"        ) cannon_arch_name="x86";;
    34493482                "i386"       ) cannon_arch_name="x86";;
     
    34873520                "x86-64"     ) cannon_arch_name="x64";;
    34883521                "x86_64"     ) cannon_arch_name="x64";;
    3489                 "aarch64"    ) cannon_arch_name="arm";;
     3522                "aarch64"    ) cannon_arch_name="x64";;
    34903523                "x86"        ) cannon_arch_name="x86";;
    34913524                "i386"       ) cannon_arch_name="x86";;
     
    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.