- Timestamp:
- Sep 27, 2019, 3:35:46 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 90ce35aa
- Parents:
- 8e1467d (diff), 849720f (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
r8e1467d r4a60488 637 637 LIBOBJS 638 638 CFA_BACKEND_CC 639 DEMANGLER 640 LIBDEMANGLE 639 641 WITH_LIBTCMALLOC_FALSE 640 642 WITH_LIBTCMALLOC_TRUE … … 661 663 ac_ct_DUMPBIN 662 664 DUMPBIN 663 LD664 665 FGREP 665 666 EGREP … … 699 700 LDFLAGS 700 701 CXXFLAGS 701 CXX702 702 CFA_FLAGS 703 703 LIBCFA_TARGET_MAKEFILES … … 715 715 BUILD_IN_TREE_FLAGS 716 716 CFACPP 717 CFACC_INSTALL 717 718 CFACC 718 719 DRIVER_DIR … … 721 722 CFA_INCDIR 722 723 CFA_PREFIX 724 HAS_DISTCC 725 LD 726 CXX 727 ENABLE_DISTCC_FALSE 728 ENABLE_DISTCC_TRUE 723 729 DOendif 724 730 DOifskipcompile … … 795 801 enable_silent_rules 796 802 with_cfa_name 803 enable_distcc 797 804 with_target_hosts 798 805 enable_gprofiler 806 enable_demangler 799 807 enable_dependency_tracking 800 808 enable_shared … … 1456 1464 --enable-silent-rules less verbose build output (undo: "make V=1") 1457 1465 --disable-silent-rules verbose build output (undo: "make V=0") 1466 --enable-distcc whether or not to enable distributed compilation 1458 1467 --enable-gprofiler whether or not to enable gprofiler tools (if available) 1468 --enable-demangler whether or not to build the demangler (executable and library) 1459 1469 --enable-dependency-tracking 1460 1470 do not reject slow dependency extractors … … 3180 3190 3181 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 #============================================================================== 3182 3224 # Installation paths 3183 3225 … … 3262 3304 DRIVER_DIR=${TOP_BUILDDIR}driver/ 3263 3305 CFACC=${DRIVER_DIR}cfa 3306 CFACC_INSTALL=${CFA_BINDIR}${CFA_NAME} 3264 3307 CFACPP=${DRIVER_DIR}cfa-cpp 3308 3265 3309 3266 3310 … … 3401 3445 3402 3446 3447 # Check whether --enable-demangler was given. 3448 if test "${enable_demangler+set}" = set; then : 3449 enableval=$enable_demangler; enable_demangler=$enableval 3450 else 3451 enable_demangler=yes 3452 fi 3453 3454 3403 3455 TARGET_HOSTS=${target_hosts} 3404 3456 … … 3433 3485 "x86-64" ) cannon_arch_name="x64";; 3434 3486 "x86_64" ) cannon_arch_name="x64";; 3487 "aarch64" ) cannon_arch_name="arm";; 3435 3488 "x86" ) cannon_arch_name="x86";; 3436 3489 "i386" ) cannon_arch_name="x86";; … … 3442 3495 "armv7l" ) cannon_arch_name="arm";; 3443 3496 *) 3444 >&2 echo "Unk own architecture " $arch_name;3497 >&2 echo "Unknown architecture " $arch_name; 3445 3498 exit 1 3446 3499 ;; … … 3474 3527 "x86-64" ) cannon_arch_name="x64";; 3475 3528 "x86_64" ) cannon_arch_name="x64";; 3529 "aarch64" ) cannon_arch_name="arm";; 3476 3530 "x86" ) cannon_arch_name="x86";; 3477 3531 "i386" ) cannon_arch_name="x86";; … … 3483 3537 "armv7l" ) cannon_arch_name="arm";; 3484 3538 *) 3485 >&2 echo "Unk own architecture " $arch_name;3539 >&2 echo "Unknown architecture " $arch_name; 3486 3540 exit 1 3487 3541 ;; … … 16778 16832 16779 16833 16834 # conditionnally build the demangler 16835 if test "x$enable_demangler" == xyes; then 16836 LIBDEMANGLE="libdemangle.a" 16837 DEMANGLER="demangler" 16838 else 16839 LIBDEMANGLE="" 16840 DEMANGLER="" 16841 fi 16842 16843 16844 16780 16845 # Checks for header files. 16781 16846 for ac_header in libintl.h malloc.h unistd.h … … 16992 17057 fi 16993 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 16994 17063 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 16995 17064 as_fn_error $? "conditional \"AMDEP\" was never defined.
Note:
See TracChangeset
for help on using the changeset viewer.