- Timestamp:
- Jun 17, 2019, 3:37:00 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:
- 54b3fde, 6e55240
- Parents:
- 89faa82 (diff), aba20d2 (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
-
TabularUnified configure ¶
r89faa82 r800bae1 796 796 with_cfa_name 797 797 with_target_hosts 798 enable_gprofiler 798 799 enable_dependency_tracking 799 800 enable_shared … … 1455 1456 --enable-silent-rules less verbose build output (undo: "make V=1") 1456 1457 --disable-silent-rules verbose build output (undo: "make V=0") 1458 --enable-gprofiler whether or not to enable gprofiler tools (if available) 1457 1459 --enable-dependency-tracking 1458 1460 do not reject slow dependency extractors … … 3283 3285 \'--with-target-hosts=*) ;; 3284 3286 3287 # skip gprofiler for libcfa 3288 \'--enable-gprofiler=*) ;; 3289 \'--disable-gprofiler) ;; 3290 3285 3291 # append all other arguments to the sub configure arguments 3286 3292 *) LIBCFA_GENERAL_ARGS="${LIBCFA_GENERAL_ARGS} $var";; … … 3384 3390 else 3385 3391 target_hosts=${default_target} 3392 fi 3393 3394 3395 # Check whether --enable-gprofiler was given. 3396 if test "${enable_gprofiler+set}" = set; then : 3397 enableval=$enable_gprofiler; enable_gprofiler=$enableval 3398 else 3399 enable_gprofiler=yes 3386 3400 fi 3387 3401 … … 16704 16718 fi 16705 16719 16706 if test " $HAVE_LIBPROFILER" -eq 1; then16720 if test "x$enable_gprofiler" = "xyes" -a "$HAVE_LIBPROFILER" -eq 1; then 16707 16721 WITH_LIBPROFILER_TRUE= 16708 16722 WITH_LIBPROFILER_FALSE='#' … … 16755 16769 fi 16756 16770 16757 if test " $HAVE_LIBTCMALLOC" -eq 1; then16771 if test "x$enable_gprofiler" = "xyes" -a "$HAVE_LIBTCMALLOC" -eq 1; then 16758 16772 WITH_LIBTCMALLOC_TRUE= 16759 16773 WITH_LIBTCMALLOC_FALSE='#'
Note: See TracChangeset
for help on using the changeset viewer.