IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7869


Ignore:
Timestamp:
Jul 11, 2006, 5:45:36 PM (20 years ago)
Author:
Paul Price
Message:

Renaming --enable-profile to --enable-coverage (path coverage, not profiling).
Using --enable-profile to allow code profiling (link with -pg).
Introducing --disable-trace to turn off psTrace (-DPS_NO_TRACE).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/configure.ac

    r7804 r7869  
    5252  [AS_HELP_STRING(--enable-profile,enable compiler profiler information inclusion)],
    5353  [AC_MSG_RESULT(compile optimization enabled)
     54   CFLAGS="${CFLAGS=} -pg -g"
     55   LDFLAGS="${LDFLAGS=} -pg"]
     56)
     57
     58dnl handle path coverage checking
     59AC_ARG_ENABLE(coverage,
     60  [AS_HELP_STRING(--enable-coverage,enable path coverage checking)],
     61  [AC_MSG_RESULT(path coverage enabled)
    5462   CFLAGS="${CFLAGS=} -fprofile-arcs -ftest-coverage -pg"]
     63)
     64
     65dnl turn off trace messages
     66AC_ARG_ENABLE(trace,
     67  [AS_HELP_STRING(--disable-trace,disable psTrace functionality)],
     68  [AC_MSG_RESULT(psTrace disabled)
     69   PSLIB_CFLAGS="${PSLIB_CFLAGS=} -DPS_NO_TRACE"]
    5570)
    5671
Note: See TracChangeset for help on using the changeset viewer.