Files
rtems/cpukit/aclocal/enable-profiling.m4
2014-03-14 08:46:48 +01:00

10 lines
374 B
Plaintext

AC_DEFUN([RTEMS_ENABLE_PROFILING],
[AC_ARG_ENABLE(profiling,
[AS_HELP_STRING([--enable-profiling],[enable support for profiling (default=no)])],
[case "${enableval}" in
yes) RTEMS_HAS_PROFILING=yes ;;
no) RTEMS_HAS_PROFILING=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for enable profiling option) ;;
esac],
[RTEMS_HAS_PROFILING=no])])