Changeset 120a28c3 for configure.ac
- Timestamp:
- Jun 17, 2019, 11:26:14 AM (4 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8b34df0
- Parents:
- 462a7c7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r462a7c7 r120a28c3 94 94 # skip the target hosts 95 95 \'--with-target-hosts=*) ;; 96 97 # skip gprofiler for libcfa 98 \'--enable-gprofiler=*) ;; 99 \'--disable-gprofiler) ;; 96 100 97 101 # append all other arguments to the sub configure arguments … … 125 129 target_hosts=$withval, target_hosts=${default_target}) 126 130 131 AC_ARG_ENABLE(gprofiler, 132 [ --enable-gprofiler whether or not to enable gprofiler tools (if available)], 133 enable_gprofiler=$enableval, enable_gprofiler=yes) 134 127 135 AC_SUBST(TARGET_HOSTS, ${target_hosts}) 128 136 … … 192 200 193 201 AC_CHECK_LIB([profiler], [ProfilingIsEnabledForAllThreads], [HAVE_LIBPROFILER=1], [HAVE_LIBPROFILER=0]) 194 AM_CONDITIONAL([WITH_LIBPROFILER], [test " $HAVE_LIBPROFILER" -eq 1])202 AM_CONDITIONAL([WITH_LIBPROFILER], [test "x$enable_gprofiler" = "xyes" -a "$HAVE_LIBPROFILER" -eq 1]) 195 203 196 204 AC_CHECK_LIB([tcmalloc], [malloc], [HAVE_LIBTCMALLOC=1], [HAVE_LIBTCMALLOC=0]) 197 AM_CONDITIONAL([WITH_LIBTCMALLOC], [test " $HAVE_LIBTCMALLOC" -eq 1])205 AM_CONDITIONAL([WITH_LIBTCMALLOC], [test "x$enable_gprofiler" = "xyes" -a "$HAVE_LIBTCMALLOC" -eq 1]) 198 206 199 207 # Checks for header files.
Note: See TracChangeset
for help on using the changeset viewer.