Changeset 66b9e86e for configure


Ignore:
Timestamp:
2006-07-07T13:33:31Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
f4aa393
Parents:
bf25fa3
Message:

Add support for checking test suite coverage using gcov.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rbf25fa3 r66b9e86e  
    2828debug=0
    2929strip=1
     30gcov=0
    3031ipv6=1
    3132
     
    6465--debug=0/1     Disable/enable debugging                $debug
    6566--strip=0/1     Disable/enable binary stripping         $strip
     67--gcov=0/1      Disable/enable test coverage reporting  $gcov
    6668
    6769--ipv6=0/1      IPv6 socket support                     $ipv6
     
    314316fi
    315317
     318if [ "$gcov" = "1" ]; then
     319        echo "CFLAGS+=-ftest-coverage -fprofile-arcs" >> Makefile.settings
     320        echo "EFLAGS+=-lgcov" >> Makefile.settings
     321fi
     322
    316323echo
    317324if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then
Note: See TracChangeset for help on using the changeset viewer.