IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

Renaming --enable-profile to --enable-coverage (path coverage, not profiling).
Using --enable-profile to enable path coverage (link with "-pg").

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/configure.ac

    r7800 r7871  
    7171  [AS_HELP_STRING(--enable-profile,enable compiler profiler information inclusion)],
    7272  [AC_MSG_RESULT(compile optimization enabled)
    73    CFLAGS="${CFLAGS=} -pg"]
     73   CFLAGS="${CFLAGS=} -pg -g"
     74   LDFLAGS="${LDFLAGS=} -pg"]
     75)
     76
     77dnl handle path coverage checking
     78AC_ARG_ENABLE(coverage,
     79  [AS_HELP_STRING(--enable-coverage,enable path coverage checking)],
     80  [AC_MSG_RESULT(path coverage enabled)
     81   CFLAGS="${CFLAGS=} -fprofile-arcs -ftest-coverage -pg"]
    7482)
    7583
Note: See TracChangeset for help on using the changeset viewer.