- Timestamp:
- Feb 20, 2017, 12:05:40 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- bd9bcc8
- Parents:
- cf97ccb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rcf97ccb rfacc44f 658 658 CFA_INCDIR 659 659 CFA_PREFIX 660 BUILD_CONCURRENCY_FALSE 661 BUILD_CONCURRENCY_TRUE 660 662 BUILD_NO_LIB_FALSE 661 663 BUILD_NO_LIB_TRUE … … 742 744 enable_target_release 743 745 enable_target_debug 746 enable_threading 744 747 enable_dependency_tracking 745 748 ' … … 1386 1389 --enable-target-release Build and install the release target 1387 1390 --enable-target-debug Build and install the debug target 1391 --enable-threading Build and install libcfa with threading support 1392 (Enabled by default) 1388 1393 --disable-dependency-tracking speeds up one-time build 1389 1394 --enable-dependency-tracking do not reject slow dependency extractors … … 3123 3128 fi 3124 3129 3130 # Check whether --enable-threading was given. 3131 if test "${enable_threading+set}" = set; then : 3132 enableval=$enable_threading; case "${enableval}" in 3133 yes) build_threading-"yes" ;; 3134 no) build_threading="no" ;; 3135 *) as_fn_error $? "bad value ${enableval} for --enable-debug" "$LINENO" 5 ;; 3136 esac 3137 else 3138 build_threading="yes" 3139 fi 3140 3125 3141 3126 3142 case "$enable_target_release" in … … 3197 3213 BUILD_NO_LIB_TRUE='#' 3198 3214 BUILD_NO_LIB_FALSE= 3215 fi 3216 3217 if test "x$build_threading" = "xyes"; then 3218 BUILD_CONCURRENCY_TRUE= 3219 BUILD_CONCURRENCY_FALSE='#' 3220 else 3221 BUILD_CONCURRENCY_TRUE='#' 3222 BUILD_CONCURRENCY_FALSE= 3199 3223 fi 3200 3224 … … 6318 6342 if test -z "${BUILD_NO_LIB_TRUE}" && test -z "${BUILD_NO_LIB_FALSE}"; then 6319 6343 as_fn_error $? "conditional \"BUILD_NO_LIB\" was never defined. 6344 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6345 fi 6346 if test -z "${BUILD_CONCURRENCY_TRUE}" && test -z "${BUILD_CONCURRENCY_FALSE}"; then 6347 as_fn_error $? "conditional \"BUILD_CONCURRENCY\" was never defined. 6320 6348 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6321 6349 fi
Note: See TracChangeset
for help on using the changeset viewer.