- Timestamp:
- Feb 25, 2020, 1:17:33 PM (6 years ago)
- 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:
- 7dc2e015
- Parents:
- 9fb8f01 (diff), dd9e1ca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r9fb8f01 r3d5701e 663 663 ac_ct_DUMPBIN 664 664 DUMPBIN 665 LD666 665 FGREP 667 666 EGREP … … 701 700 LDFLAGS 702 701 CXXFLAGS 703 CXX704 702 CFA_FLAGS 705 703 LIBCFA_TARGET_MAKEFILES … … 717 715 BUILD_IN_TREE_FLAGS 718 716 CFACPP 717 CFACC_INSTALL 719 718 CFACC 720 719 DRIVER_DIR … … 723 722 CFA_INCDIR 724 723 CFA_PREFIX 724 HAS_DISTCC 725 LD 726 CXX 727 ENABLE_DISTCC_FALSE 728 ENABLE_DISTCC_TRUE 725 729 DOendif 726 730 DOifskipcompile … … 797 801 enable_silent_rules 798 802 with_cfa_name 803 enable_distcc 799 804 with_target_hosts 800 805 enable_gprofiler … … 1459 1464 --enable-silent-rules less verbose build output (undo: "make V=1") 1460 1465 --disable-silent-rules verbose build output (undo: "make V=0") 1466 --enable-distcc whether or not to enable distributed compilation 1461 1467 --enable-gprofiler whether or not to enable gprofiler tools (if available) 1462 1468 --enable-demangler whether or not to build the demangler (executable and library) … … 3184 3190 3185 3191 #============================================================================== 3192 # distcc support 3193 3194 # Check whether --enable-distcc was given. 3195 if test "${enable_distcc+set}" = set; then : 3196 enableval=$enable_distcc; enable_distcc=$enableval 3197 else 3198 enable_distcc=no 3199 fi 3200 3201 3202 if test x$enable_distcc = xyes; then 3203 ENABLE_DISTCC_TRUE= 3204 ENABLE_DISTCC_FALSE='#' 3205 else 3206 ENABLE_DISTCC_TRUE='#' 3207 ENABLE_DISTCC_FALSE= 3208 fi 3209 3210 HAS_DISTCC="False" 3211 3212 if test x$enable_distcc = xyes; then 3213 CXX="distcc ${CXX}" 3214 LD="distcc ${LD} -lstdc++" 3215 HAS_DISTCC="True" 3216 echo "Enabling distributed builds" 3217 fi 3218 3219 3220 3221 3222 3223 #============================================================================== 3186 3224 # Installation paths 3187 3225 … … 3266 3304 DRIVER_DIR=${TOP_BUILDDIR}driver/ 3267 3305 CFACC=${DRIVER_DIR}cfa 3306 CFACC_INSTALL=${CFA_BINDIR}${CFA_NAME} 3268 3307 CFACPP=${DRIVER_DIR}cfa-cpp 3308 3269 3309 3270 3310 … … 17017 17057 fi 17018 17058 17059 if test -z "${ENABLE_DISTCC_TRUE}" && test -z "${ENABLE_DISTCC_FALSE}"; then 17060 as_fn_error $? "conditional \"ENABLE_DISTCC\" was never defined. 17061 Usually this means the macro was only invoked conditionally." "$LINENO" 5 17062 fi 17019 17063 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 17020 17064 as_fn_error $? "conditional \"AMDEP\" was never defined.
Note:
See TracChangeset
for help on using the changeset viewer.